- 75
- 491 494
ambITious
Australia
Приєднався 30 чер 2020
The #ambITious Channel is focused on SEO, AI, SaaS, Productivity and helping my community be successful
Subscribe or don't...
Subscribe or don't...
How To Use DeepSeek R1 Locally (No Internet 🛜)
Want to get more organic traffic? Go here: sigmaseo.io
Want to get some free SEO tools? Go here: getseotools.io
Want early access to tools and tips? Go here: bit.ly/Ambitious1
Is it safe to run DeepSeek R1-or any local AI model-on your computer? Running local AI is better for privacy, but… can we prove it?
How do we know when deepseek is run locally it is not secretly sending data to the internet?
In this video, I’ll show you how to run DeepSeek R1 LOCALLY, and prove that it is not doing anything sneaky. If you are concerned about privacy and safety ditch Cloud AI and use DeepSeek R1 locally.
Here is how:
To Install DeepSeek R1 model, follow this five-step process:
Step 1: Install Llama ollama.com/
Step 2 Part 1: Copy and paste Llama 3 install command using Terminal
Step 2 Part 2: Add DeepSeek R1 via terminal ollama.com/library
Note: Choose the default model first to make sure your computer can handle it
Step 3: Install Docker www.docker.com/
Step 4: Install OpenWebUI docs.openwebui.com/ Login to OpenWebUI, choose DeepSeek R1 from the model menu and start using your local AI chatbot.
Step 5: Proof that Deepseek is not sending data anywhere whilst in use
Open powershell
How to create the file:
Open Notepad (or any text editor)
Copy and paste the script below into it
Click "File" - "Save As"
In the "Save As" dialog:
Choose where you want to save it
Change "Save as type" to "All Files (.)"
Name it monitor_connections.ps1 (make sure it ends with .ps1)
Click Save
The .ps1 extension is what identifies it as a PowerShell script.
Just make sure not to accidentally save it as a .txt file, which is why changing the "Save as type" to "All Files" is important.
while($true) {
Clear-Host
Write-Host "=== Ollama Connection Monitor ===" -ForegroundColor Cyan
Write-Host "Current Time: $(Get-Date)" -ForegroundColor Yellow
$ollamaProcesses = Get-Process ollama -ErrorAction SilentlyContinue
$foundExternalConnections = $false
foreach ($proc in $ollamaProcesses) {
$id = $proc.Id
# Get all connections for Ollama
$connections = Get-NetTCPConnection |
Where-Object OwningProcess -eq $id |
Sort-Object State, RemoteAddress
Write-Host "`nOllama Process ID: $id" -ForegroundColor Green
Write-Host "Current Activity:" -ForegroundColor Magenta
Write-Host "`nLocal Connections (127.0.0.1):" -ForegroundColor Yellow
$localConns = $connections | Where-Object RemoteAddress -match '^127\.'
$localConns | Format-Table LocalAddress, LocalPort, RemoteAddress, RemotePort, State
Write-Host "External Connections:" -ForegroundColor Red
$externalConns = $connections | Where-Object RemoteAddress -notmatch '^(127\.|0\.0\.0\.0)'
$externalConns | Format-Table LocalAddress, LocalPort, RemoteAddress, RemotePort, State
if ($externalConns) {
$foundExternalConnections = $true
}
}
Write-Host "`n=== SUMMARY FOR NON-TECHNICAL USERS ===" -ForegroundColor Cyan
if ($foundExternalConnections) {
Write-Host "❌ ALERT: Ollama is currently making connections to the internet." -ForegroundColor Red
Write-Host "This means the program is communicating with external servers." -ForegroundColor Red
} else {
Write-Host "✅ SAFE: Ollama is currently only running locally on your computer." -ForegroundColor Green
Write-Host "How we know this:" -ForegroundColor Green
Write-Host "- All connections show as '127.0.0.1' (your computer's internal address)"
Write-Host "- No external IP addresses are present"
Write-Host "- This means the AI model is running entirely on your machine"
}
Write-Host "`nCommon Ports Reference:" -ForegroundColor Cyan
Write-Host "443: HTTPS (Secure Web)" -ForegroundColor Gray
Write-Host "80: HTTP (Web)" -ForegroundColor Gray
Write-Host "8883: MQTT (IoT/Message Queue)" -ForegroundColor Gray
Write-Host "`nWaiting 10 seconds..." -ForegroundColor Yellow
Write-Host "(This screen will refresh automatically)" -ForegroundColor Gray
Start-Sleep -Seconds 10
}
To run this script safely:
On Windows Open PowerShell as an administrator (right-click PowerShell and select "Run as administrator")
To run it, navigate to the directory containing the script and type:
.\monitor_connections.ps1
Step 6: Works without internet
Step 7: Gaurdrails removed or lowered…
Step 8: Uninstall
- Uninstall Docker via programs
- Uninstall ollama
- Find the .docker and .ollama folders (probably in C:\Users\[Your User Name])
- Open 'Turn Windows features on or off, deselect 'Windows Subsystem for Linux'
#deepseek #deepseekai
Want to get some free SEO tools? Go here: getseotools.io
Want early access to tools and tips? Go here: bit.ly/Ambitious1
Is it safe to run DeepSeek R1-or any local AI model-on your computer? Running local AI is better for privacy, but… can we prove it?
How do we know when deepseek is run locally it is not secretly sending data to the internet?
In this video, I’ll show you how to run DeepSeek R1 LOCALLY, and prove that it is not doing anything sneaky. If you are concerned about privacy and safety ditch Cloud AI and use DeepSeek R1 locally.
Here is how:
To Install DeepSeek R1 model, follow this five-step process:
Step 1: Install Llama ollama.com/
Step 2 Part 1: Copy and paste Llama 3 install command using Terminal
Step 2 Part 2: Add DeepSeek R1 via terminal ollama.com/library
Note: Choose the default model first to make sure your computer can handle it
Step 3: Install Docker www.docker.com/
Step 4: Install OpenWebUI docs.openwebui.com/ Login to OpenWebUI, choose DeepSeek R1 from the model menu and start using your local AI chatbot.
Step 5: Proof that Deepseek is not sending data anywhere whilst in use
Open powershell
How to create the file:
Open Notepad (or any text editor)
Copy and paste the script below into it
Click "File" - "Save As"
In the "Save As" dialog:
Choose where you want to save it
Change "Save as type" to "All Files (.)"
Name it monitor_connections.ps1 (make sure it ends with .ps1)
Click Save
The .ps1 extension is what identifies it as a PowerShell script.
Just make sure not to accidentally save it as a .txt file, which is why changing the "Save as type" to "All Files" is important.
while($true) {
Clear-Host
Write-Host "=== Ollama Connection Monitor ===" -ForegroundColor Cyan
Write-Host "Current Time: $(Get-Date)" -ForegroundColor Yellow
$ollamaProcesses = Get-Process ollama -ErrorAction SilentlyContinue
$foundExternalConnections = $false
foreach ($proc in $ollamaProcesses) {
$id = $proc.Id
# Get all connections for Ollama
$connections = Get-NetTCPConnection |
Where-Object OwningProcess -eq $id |
Sort-Object State, RemoteAddress
Write-Host "`nOllama Process ID: $id" -ForegroundColor Green
Write-Host "Current Activity:" -ForegroundColor Magenta
Write-Host "`nLocal Connections (127.0.0.1):" -ForegroundColor Yellow
$localConns = $connections | Where-Object RemoteAddress -match '^127\.'
$localConns | Format-Table LocalAddress, LocalPort, RemoteAddress, RemotePort, State
Write-Host "External Connections:" -ForegroundColor Red
$externalConns = $connections | Where-Object RemoteAddress -notmatch '^(127\.|0\.0\.0\.0)'
$externalConns | Format-Table LocalAddress, LocalPort, RemoteAddress, RemotePort, State
if ($externalConns) {
$foundExternalConnections = $true
}
}
Write-Host "`n=== SUMMARY FOR NON-TECHNICAL USERS ===" -ForegroundColor Cyan
if ($foundExternalConnections) {
Write-Host "❌ ALERT: Ollama is currently making connections to the internet." -ForegroundColor Red
Write-Host "This means the program is communicating with external servers." -ForegroundColor Red
} else {
Write-Host "✅ SAFE: Ollama is currently only running locally on your computer." -ForegroundColor Green
Write-Host "How we know this:" -ForegroundColor Green
Write-Host "- All connections show as '127.0.0.1' (your computer's internal address)"
Write-Host "- No external IP addresses are present"
Write-Host "- This means the AI model is running entirely on your machine"
}
Write-Host "`nCommon Ports Reference:" -ForegroundColor Cyan
Write-Host "443: HTTPS (Secure Web)" -ForegroundColor Gray
Write-Host "80: HTTP (Web)" -ForegroundColor Gray
Write-Host "8883: MQTT (IoT/Message Queue)" -ForegroundColor Gray
Write-Host "`nWaiting 10 seconds..." -ForegroundColor Yellow
Write-Host "(This screen will refresh automatically)" -ForegroundColor Gray
Start-Sleep -Seconds 10
}
To run this script safely:
On Windows Open PowerShell as an administrator (right-click PowerShell and select "Run as administrator")
To run it, navigate to the directory containing the script and type:
.\monitor_connections.ps1
Step 6: Works without internet
Step 7: Gaurdrails removed or lowered…
Step 8: Uninstall
- Uninstall Docker via programs
- Uninstall ollama
- Find the .docker and .ollama folders (probably in C:\Users\[Your User Name])
- Open 'Turn Windows features on or off, deselect 'Windows Subsystem for Linux'
#deepseek #deepseekai
Переглядів: 560
Відео
AI SEO Content ➡️ DEEPSEEK R1 vs ChatGPT (Guess The Winner 🥇)
Переглядів 1,8 тис.День тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want early access to tools and tips? Go here: bit.ly/Ambitious1 Want to stay ahead of Google's AI detection game? The DEEPSEEK R1 is here to help! In this video, we'll explore the cutting-edge features of this innovative tool and how it can help you outsmart Google's AI detection. Fro...
WORDPRESS IS 90’s Tech! DO This Instead ➡️ Website In 2 MIN ✅You Own Code✅Free Domain ✅Free Hosting
Переглядів 2,7 тис.День тому
Want to build a website in 2 mins? Go here: gitpage.site Want to get some free SEO tools? Go here: getseotools.io Want to create websites in your language without any coding skills? This video shows you how to leverage AI power to build stunning websites in your select languages! From design to deployment, we'll explore the latest AI-driven tool and technologies that make website builds a breez...
Build A CUSTOM SEO Website In 2 MINS ✅FREE Hosting ✅FREE URL ✅ Own The Code
Переглядів 7 тис.14 днів тому
Want to build a website in 2 mins? Go here: gitpage.site Join my Digital Marketing community? Go here: ninja200.online Want to build a full custom website in just 2 minutes? It's now possible with the power of AI and gitpage.site ! In this video, we'll show you how to create a complete website from scratch in about 2 minutes using the latest AI technology. No coding skills required, no design e...
Rank On First Page Google With Helpful Content Analysis (Better content = Higher Rankings!)
Переглядів 2,2 тис.Місяць тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get dominate your niche in 2025? Go here ninja200.online/ Want early access to tools and tips? Go here: bit.ly/Ambitious1 Want to dominate Google's first page and reach a massive audience? In this video, we're going to reveal the secret to ranking NUMBER ONE on Google using the power of AI-driven helpful content analysis. Learn how ...
How To Rank On First Page Of Google With SEO Data + AI (NEW APP)
Переглядів 3,9 тис.2 місяці тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Imagine outranking your competitors on Google without spending a fortune on tools like Ahrefs, SEMrush or Moz. Sound too good to be true? Stick around as I share how with real-time SERP data and AI you can rank of the first page of google fast without the overpriced tools. This is a g...
Generate UNLIMITED Books (No API Key No Credits) NEW APP🤯
Переглядів 9912 місяці тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want early access to tools and tips? Go here: bit.ly/Ambitious1 Better than ChatGPT or Claude Sonnet! Want to sell ebooks or explode your email list and get more sign-ups using a FREE eBook lead magnet? In this video, we'll show you how to create an high quality book that resonates wi...
Rank First Page Google With Humanized AI SEO Content (No ChatGPT or Claude)
Переглядів 2,6 тис.3 місяці тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want early access to tools and tips? Go here: bit.ly/Ambitious1 Discover the game-changing technology that's transforming the world of SEO content creation! The humanized AI writer is here, and it's about to revolutionize the way you produce high-quality, engaging, and optimized conte...
Rank #1 On Google With FREE SEO PageSpeed Insights Extension
Переглядів 1,2 тис.3 місяці тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want early access to tools and tips? Go here: bit.ly/Ambitious1 v1.3 of the FREE SEO PageSpeed Insights tool is now available. Join ~1,000 worldwide users that are leveraging the FREE SEO Chrome Extension. In this video, I'm going to show you how to install, provide a demo and explain...
Rank First Page On Google UPGRADED AI SEO Extension [6,000+ 😁 USERS ]
Переглядів 6 тис.3 місяці тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io v1.7 of the FREE AI SEO Extension For ChatGPT and Claude Sonnet 3.5 has new features as requested by YOU 🫵 Join 6,000 worldwide users that are leveraging the FREE AI SEO Chrome Extension. In this video, I'm going to show you the new updates including multi-language options and also ho...
Rank #1 Google With FREE Multi-Language AI SEO Extension (NEW)
Переглядів 3,7 тис.5 місяців тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io The AI SEO Extension For Claude 3.5 Sonnet and ChatGPT has just has an upgrade! Are you ready to take your SEO game to the next level? In this video, I'm going to show you a revolutionary technique for ranking on the first page of Google using a multi-language AI SEO Extension. This p...
FAST 5k Word SEO Blog | Claude 3.5 Book Outline Generator Extension ⚡
Переглядів 2,6 тис.6 місяців тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want to write ebooks? Go here: fastwriter.io This new extension app is built for crafting long and ultra long content. It works seamlessly with both Claude 3.5 Sonnet and ChatGPT 4o. If you are looking for a tool to help with 5,000 ~ 15,000 SEO blogs, or looking to generate ultra long...
Rank #1 Claude 3.5 Sonnet + ChatGPT AI SEO Extension 100% FREE
Переглядів 9 тис.6 місяців тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want early access to tools and tips? Go here: bit.ly/Ambitious1 This app converts both Claude 3.5 Sonnet and ChatGPT 4o into the most powerful SEO tools available. Add this ONE incredibly powerful SEO extension and in just a few clicks you will be dominating the first page of Google f...
OUTRANK Competitors By URL With Claude 3.5 Sonnet SEO Extension
Переглядів 8 тис.6 місяців тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want early access to tools and tips? Go here: bit.ly/Ambitious1 This is how to hack Claude 3.5 Sonnet and convert it to be your very own SEO machine. With this extension you can outrank existing content using just the URL as the base input reference. Get the extension here ➡️bit.ly/am...
Rank #1 With Claude 3.5 Interactive Elements (MASSIVE OPPORTUNITY 🚀)
Переглядів 2,8 тис.7 місяців тому
Want to get more organic traffic? Go here: sigmaseo.io Want to get some free SEO tools? Go here: getseotools.io Want to write ebooks? Go here: fastwriter.io Start using Claude 3.5 Artifacts to improve website ranking. With this free tool you can add interactive elements to your website or blogs pages. This will get you more backlinks, lower your bounce rate and improved rankings. With Claude yo...
Rank On First Page Google With Claude 3.5 SEO Extension
Переглядів 56 тис.7 місяців тому
Rank On First Page Google With Claude 3.5 SEO Extension
How To Get 99,568 Views With Just 1 Blog Post ✅Easy ❌No SEO ✅ Free
Переглядів 2,2 тис.7 місяців тому
How To Get 99,568 Views With Just 1 Blog Post ✅Easy ❌No SEO ✅ Free
Trojan Horse SEO: Find & Sign $20k Clients Without The Hassle (Stealth Method 🥷)
Переглядів 73010 місяців тому
Trojan Horse SEO: Find & Sign $20k Clients Without The Hassle (Stealth Method 🥷)
How To Generate UNLIMITED AI BOOKS (massive opportunity 💪) 1 Click
Переглядів 16 тис.11 місяців тому
How To Generate UNLIMITED AI BOOKS (massive opportunity 💪) 1 Click
How To Rank #1 On Google Fast Using BRUTE FORCE Indexing 💪
Переглядів 3,5 тис.Рік тому
How To Rank #1 On Google Fast Using BRUTE FORCE Indexing 💪
The SEO Game Changed | Do This To Rank #1 Google In 2024
Переглядів 2,7 тис.Рік тому
The SEO Game Changed | Do This To Rank #1 Google In 2024
How To Rank On First Page Of Google WITHOUT ChatGPT (ChatGPT Lies!)
Переглядів 810Рік тому
How To Rank On First Page Of Google WITHOUT ChatGPT (ChatGPT Lies!)
Unlocking the Power of the Ultimate AI Autoblogger (Version 2)
Переглядів 2,1 тис.Рік тому
Unlocking the Power of the Ultimate AI Autoblogger (Version 2)
I Built The ULTIMATE FREE AI SEO TOOL: 10,000 AI Blogs 1 Click
Переглядів 3,3 тис.Рік тому
I Built The ULTIMATE FREE AI SEO TOOL: 10,000 AI Blogs 1 Click
How To Rank On The First Page Of Bing In 24 Hours | SEO 100% FREE
Переглядів 2 тис.Рік тому
How To Rank On The First Page Of Bing In 24 Hours | SEO 100% FREE
How To Rank On The First Page Google In 24 Hours | 100% Free
Переглядів 4,1 тис.Рік тому
How To Rank On The First Page Google In 24 Hours | 100% Free
How To Rank On Google With PYTHON SEO + ChatGPT (Semantic Keyword Aggregator)
Переглядів 8 тис.Рік тому
How To Rank On Google With PYTHON SEO ChatGPT (Semantic Keyword Aggregator)
How To Rank On First Page Of Google With ChatGPT & Python 🐍
Переглядів 3,8 тис.Рік тому
How To Rank On First Page Of Google With ChatGPT & Python 🐍
🤯 Discover SEO Content Gaps Within A Niche Using Infranodus Visualisation UNBELIEVABLE
Переглядів 1,5 тис.Рік тому
🤯 Discover SEO Content Gaps Within A Niche Using Infranodus Visualisation UNBELIEVABLE
How to rank on Google in 2023 | SEO For Beginners Tutorial | Learn The Algorithm Factors
Переглядів 1,7 тис.Рік тому
How to rank on Google in 2023 | SEO For Beginners Tutorial | Learn The Algorithm Factors
Cool, thank you for sharing!
Glad it was helpful!
This is good mate. I'm going to try it out. Thanks
No problem 👍
I would have bought this except its on github no matter what i try to put on there i get the 404 error and no matter what i do to try to fix it nothing works its a shame really.
If you had purchased it would work like it does for all our users. There are no known issues.
Full step by step instructions in description. Copy the Powershell script if you want to test our network monitoring of Ollama.
Installing Communist China AI spyware on my PC? I think not. Why should I if I can see FREE Google Gemini safely?
🫡
Free Hosting can be Dangerous as if the company goes under water u will loose your site
GitHub is owned by Microsoft, should be ok.
great video. Wondering if it's possible to build this kind of websites for affiliate or dropshipping products
Thanks for the kind words. Yes, absolutely you can do this, if you decide to try it out you will a bit of discussion around this on the private discord channel for gitpage.site
@@ambitious1z thank you, keep going on with your informative videos. 👍
If you would like to try Gitpage.site PRO I can get you 50% discount - just enter 'gitpage' at Stripe checkout.
@@ambitious1z i just got a pro account fora few days. thank you
Where is the link
Arabic pls 😢
I don't know, but Undetectable AI and chatgpt are still useful for me😅
If you want to take your digital marketing skills to the next level join me at ➡️ ninja200.online
Im trying doing some content and im a beginner. Using this Undetectable AI is so easy to use. Also love the keywords
If you are wanting to rank #1 on google join me over at ninja200.online
@ambitious1z added on my list! Thanks!
see you on the other side!
Try deepseek R1 with sigmaseo to generate high quality, engaging, helpful. Get started here ➡sigmaseo.io/
If you want the Chinese Communist Party (CCP) to have access to all of your personal and public data, use DeepSeek.
News flash, blog posts are generally intended to be public so people can read them.
Next video how to get cheap sms verification number + KEEP GOING BROTHER❤
For New/latest llms its normal Thats those detectors Are trained on this. Its more important if google would Rank those content… Google is Not checking if content is llm created (Not now).
The thing is robotic ChatGPT content is not engaging and typically uses the same words, sentence structure, and lacks depth. This is why it does not rank, readers don’t read it therefore not sending those positive vibes to the google algo . AI detection tools are like a litmus test for higher quality content.
Thanks for watching 🙏. I built gitpage.site so I could build websites fast, own the code base, and not pay for hosting, not pay for removing branding, not pay for custom domains. Try Gitpage.site ➡Limited Offer 🚀 Use code 'GITPAGE' for extra 50% Off PRO (One-Time Purchase - this is NOT a SUBSCRIPTION). If you have any questions, drop em ⤵
Seems to be an amazing tool! However how to I change content lile text, images or add something later e.g a new page? Can it be used to create a directory website? Further I assume I can use unlimited websites and a unique domain for each? Thank you 🙏
Yes you can generate unlimited website and each has a free domain, you can also assign you own custom domain free. You can add extra pages, and update any of the existing content and styles.
Good investment. I have a great use case study for this AI tool. Thanks A Million.
You are welcome!
can u make pages with hyperlinks for affiliate links?
You can add can links, for affiliate links etc no problem.
It is not free
Is it good value or over priced do you think?
Excellent work!
Many thanks!
Wow this looks amazing. Is there a way to try before buying? I'm seriously interested...
You can use the code 'gitpage' and get and extra 50% discount (first 100 only). So you can try for $24.50
OK, you got me with your video. Automatic generated Website, unlimited Free hosting with ssl and a 50% discount. WOW I am not sure if I will be happy but I bought the PRO for 50 $. Cant wait to start over.
Thankyou! If you have any questions just head to the discord channel!
can you connect to Google Console?
Sure can! Add own domain, connect to GSC, GA and whatever else you like
So this looked like it was way to simple, so I took the punt and bought it with the blog option - Waaaaay cool! - I built a nice clean site in 2 minutes and then realised the potential...local ...affiliate...With all the coding sites out there this was the more gentle introduction for me to dip my toe in the water...Support is impeccable and very active in chat - Glad i got this!
Thankyou so much for the feedback and kind words! If you need any support I'll be in the discord!
I have a feeling in 2 years, AI sites will be like search engines from the 2000’s. It will all be free and ad based. Google will build an all included site and it will cost $10/month
Is there training for this? Is it free?
There is an active discord for users, access via dashboard when logged in. If you want to try if you purchase the basic plan and add code “gitpage” at stripe checkout you only pay $25 and I will upgrade your account to Pro.
@@ambitious1z is this offer of 50% off and upgrade to pro still available? Total newb here ,interested in trying this out and learning. Also can this be used with chatgpt api key? Thanks
What is a call to action link
Typically this would be a link to a contact form (as shown in video - Jotform or Typform) to get visitors details, or it could be for a free download etc. It can be whatever you want it to be...
can we integrate the contact form in it, if yes how
Super easy, I'd use typeform (there is a link to free typeform account in the footer of gitpage.site). Create your form, publish and this is the link that you provide when building your gitpage site. Help is available via the discord when logged in. If you want to try if you purchase the basic plan and add code “gitpage” at stripe checkout you only pay $25 and I will upgrade your account to Pro.
@ambitious1z so the pro i will be 25?
Yep, correct!
@@ambitious1z awesome, got it already!
Can you import your data from another webhosting page?
Not really, however you can create new pages and add content copied from other sources.
Great Video Again!
Appreciate you! 😊
great video , can you enter a website URL so it can build a website based on the competitors sitemap ?
Thanks! Currently it does not have that capability however it is an excellent idea.
@@ambitious1z thanks , just brought it , i also shared in a few Australian SEO groups
Thankyou! I appreciate that. 🙏
@ Very happy camper , i brought 2 pro versions and we have already started building websites and they look fantastic and only take 5 mins per site
🔥Appreciate the feedback! See you over in the discord 💬
A really eye opening video. Great content. Cheers.
Glad you enjoyed it!
Thanks for watching 🙏. I built gitpage.site so I could build websites fast, own the code base, and not pay for hosting, not pay for removing branding, not pay for custom domains from the big website players. Limited Offer 🚀 Use code 'GITPAGE' for extra 50% Off PRO (One-Time Purchase - this is NOT a SUBSCRIPTION). If you have any questions, drop em ⤵
so we don't get discord access unless we purchase pro? I have no experience coding and would like to give this a try...please advise,thx
Support is available via the chat on the the site and via discord 'get support' link via dashboard. Join the other members if you have any questions or need help .
How does the blog work? It looks like you have to do HTML pages?
Just like any other blog really. If you want to add another blog just copy and paste the existing blog.html, rename it say blog2.html and update the actual text. You can do this in github or using any other editor. html is not very difficult to understand, it is just marked up text to format in the browser. People pay a lot of have this managed but really anyone can do it.
@@ambitious1z So it is not wordpress? That was what I was asking.
No it is 100% NOT wordpress. I built gitpage.site cos I'm tired of paying hosting fees, getting locked into a platform and not owning the code. When you stop paying any of these platforms you loose everything.
@@ambitious1z So the "posts" would have to be HTML or something similar.
All posts on the web are html and css, this is just a more direct and transparent method.
Create a website in 2 mins that are most unlikely to be unusable on first built in real world production and then waste hours or days to figure out how to tweak and rebuilt...and that's only if you know how to code in order to figure out how to tweak...and then having to modify the code directly in github repository
Editing is actually super easy, can be direct as shown in video or any editor. GitHub co pilot now also free so no barrier for anyone that wants to have go.
Hello, This is AMAZING! My website is in both English and Bulgarian. Can I suggest Bulgarian language for the next version? Thanks! <3
Thankyou
one thing i observed using this Undetectable AI, it ensure that It doesn't replace your input but assists in crafting optimized content that aligns with SEO best practices.
Thanks for the feedback 🙌
I think you have to pay 5USD now to acces google ads
I was wrong, nevermind
thanks for this wonderful and profitable tutorial
You're welcome! 😊
Trying out Sigma. What's the best workflow to create topic clusters? Possible with Sigma?
I’d use the pSEO tool. Then generate blogs for best suggestions. If you were in travel enter “beach beach in”
What the price thanks you
Fastwriter.io
Do i need to enter in a certain promotion code for the youtube subs deal? or simply sign up?
Just sign up, and you’re in.