ChippyTime

The official website for ChippyTech.

Category: Uncategorized

  • GPT-3.5 Story

    Note: This retrospective is on GPT-3.5, not any other OpenAI language model.

    This is a retrospective on what it was like to use GPT-3.5 during its peak, why it caused so much frustration, and how that experience shaped my view of AI, tooling, and infrastructure.

    How It Started

    When I first discovered GPT-3.5, it felt revolutionary. An AI that could write, explain code, answer questions, and help with technical problems sounded incredible. I expected something that could assist with real-world projects.

    Instead, I walked into the roughest era of modern AI.

    Confidently Wrong Information

    GPT-3.5 didn’t just make mistakes — it made them confidently.

    • GPT-3.5 incorrectly claimed that MyOwnFreeHost does not have an API, even though an API has existed since January 2021.
    • It falsely stated that the API was introduced later, despite documentation being available since early 2021.
    • GPT-3.5 said Blooket did not have a game mode called “Crypto Hack,” even though it has existed since July 2021.
    • It incorrectly claimed that “Crypto Hack” was introduced after its September 2021 knowledge cutoff.
    • It demonstrated inconsistency by knowing about Blooket’s “Tower Defense” game mode but not “Crypto Hack,” despite both existing during the same period.
    • It hallucinated broken URLs that led to 404 pages.
    • It invented features, services, and product history details that were not true.

    Worse, it would hide behind phrases like:

    “As of my last knowledge update…”
    “As an AI language model…”

    Those phrases didn’t add caution — they added false confidence.

    Made-Up Services and Categories

    Some hallucinations were borderline absurd:

    • Suggesting Freenom as a subdomain redirect service.
    • Saying Freenom was an alternative to Freenom.
    • Inventing fake services like “FreeNomains.”
    • Recommending paid services like BeenVerified as “free.”

    These weren’t edge cases — they happened constantly.

    The Windows 3.1 “Alternate Solutions” Incident

    One of the clearest examples of GPT-3.5 completely losing the plot happened when I asked about modern web browsing limitations on Windows 3.1.

    Instead of explaining the real, well-known technical constraints, GPT-3.5 suggested a list of so-called “alternate solutions” that had nothing to do with the problem.

    • It suggested emulating Windows 3.1 inside a modern web browser as a workaround.
    • It implied that running Windows 3.1 in a browser somehow solved browser compatibility.
    • It bizarrely mentioned physical clocks with biometric scanners as a related solution.

    None of these suggestions made sense.

    Emulating Windows 3.1 inside a browser does not magically enable modern web browsing. It simply recreates the same limitations in another environment.

    Likewise, physical clocks, biometric scanners, or authentication hardware have absolutely no relevance to:

    • 16-bit operating systems
    • legacy TCP/IP stacks
    • lack of TLS support
    • browser rendering engines
    • HTML, CSS, or JavaScript compatibility

    The real reasons Windows 3.1 cannot browse the modern web are simple and documented:

    • No modern encryption support
    • No contemporary browser engines
    • Severe memory and architecture limits
    • Incompatible networking and protocol support

    By presenting unrelated modern hardware concepts as “solutions,” GPT-3.5 demonstrated a recurring failure mode: combining vaguely technical-sounding ideas into an answer that appeared helpful, but was functionally meaningless.

    This wasn’t just incorrect — it actively distracted from the real explanation and made a straightforward technical limitation sound mysterious and complex.

    Broken Technical Understanding

    GPT-3.5 frequently mixed up entire layers of the web stack.

    • It suggested path-based “subdomains,” which is impossible at the DNS level.
    • It confused domain registrars with routing systems.
    • It claimed Fire OS lacked Android System WebView.
    • It implied Silk Browser replaced WebView (it does not).

    This became especially painful while I was fixing code for a subdomain service I built. I needed precision. I got architectural nonsense.

    Broken Code That Couldn’t Be Fixed

    GPT-3.5 regularly produced broken code:

    • Incorrect APIs
    • Outdated libraries
    • Missing imports
    • Invalid logic

    And when asked to fix it, it often:

    • Repeated the same broken solution
    • Invented new functions
    • Claimed the code “should work” when it didn’t

    Hardware and Device Chaos

    One of the worst moments was when GPT-3.5 gave me a Konami-style remote control sequence to enable developer mode on a TV.

    Instead of enabling anything, it rebooted the device.

    It had no sense of risk when giving device-level instructions.

    Trying to Get It Fixed

    For months, I tried everything to get OpenAI to change GPT-3.5:

    • Dislike buttons
    • Support messages
    • Developer forum posts
    • Reddit discussions
    • Trustpilot and Play Store reviews

    Nothing changed.

    But Wait, Can You…?

    Can you just make your own LLM?

    Technically, yes — you can train a small model. You can experiment with hundreds of millions of parameters, or even around a billion parameters, without spending millions of dollars.

    But that does not replace GPT-3.5. A small model trained by one person would not have the same breadth, coding ability, world knowledge, or general reasoning ability. It might be interesting, but it would not fix the actual problem: needing a reliable general-purpose assistant.

    Can you fine-tune GPT-3.5?

    Fine-tuning can be useful if you are building your own website, chatbot, device assistant, or application. It lets you customize behavior for your own use case.

    But it does not change GPT-3.5 for everyone. It does not modify the public ChatGPT model, and it does not fundamentally fix the base model’s hallucinations. It only affects the fine-tuned model you use through the API.

    Can you use MoE to reduce the cost?

    Mixture-of-Experts can reduce the amount of computation used per token by activating only part of the model. But it does not eliminate the memory problem.

    The experts still have to exist somewhere. That means more total parameters, more storage, more complexity, and more difficult training and serving. If memory is already the bottleneck, MoE can make the situation worse.

    Can you use quantization or offloading?

    Quantization and offloading can help fit larger models into limited hardware, especially for inference.

    But they come with tradeoffs. Quantization can reduce precision or complicate training, and offloading to CPU memory or disk usually makes the model slower. These techniques help manage limits, but they do not make frontier-scale training suddenly affordable.

    Can you just use Common Crawl because it is free?

    Common Crawl is free to access, but not free to process at scale.

    You can download data from data.commoncrawl.org and process it yourself, but that requires serious storage, bandwidth, CPU time, and patience. If your own hardware cannot handle it, you end up paying cloud providers for compute, temporary storage, processed outputs, and pipeline artifacts. Can you use a smaller, specialized model?

    A smaller specialized model can work for narrow tasks, but it is not a drop-in replacement for a broad assistant.

    Training on one specific topic may reduce some errors in that area, but it also makes the model brittle outside that scope. It does not recreate broad pretraining, instruction tuning, alignment, or large-scale validation.

    Can you just ask OpenAI to fix GPT-3.5?

    That was exactly what I tried to do.

    I used dislike buttons, support messages, developer forum posts, Reddit discussions, Trustpilot reviews, and Play Store reviews. The goal was not just to complain. The goal was to get the problems noticed by someone who could improve the model.

    But model changes do not happen instantly because one user reports a problem. From the outside, it felt like shouting into the void while still being stuck with the same unreliable tool.

    Can you stop using GPT-3.5?

    Eventually, yes. At the time, not really.

    Many so-called alternatives were either built on GPT-3.5, used weaker backend models, had strict limits, or worked more like search wrappers than real assistants. If I wanted the same fluency and flexibility, I usually ended up back at GPT-3.5 or something using it indirectly.

    Is GPT-3.5 a “100,000+ quadrillion” parameter model?

    No.

    GPT-3 was widely reported as having 175 billion parameters. GPT-3.5 was an improved model in that general family, not an astronomically large “100,000+ quadrillion” parameter system.

    The problem with GPT-3.5 was not that it was secretly infinite or impossibly huge. The problem was that even a large model can still be confidently wrong without enough grounding, alignment, and reliability.

    The “Just Build Your Own LLM” Myth

    A common response I received whenever I criticized GPT-3.5 was:

    “Just build your own model.”

    In theory, that sounds empowering. In reality, it is completely detached from the financial and technical constraints of normal individuals.

    The truth is simple:

    • Training even a small, modern LLM costs millions of dollars.
    • Data storage alone can cost hundreds of dollars per month.
    • Compute requirements scale far beyond consumer hardware.
    • Grants are aimed at institutions, not individuals.
    • Crowdfunding does not solve ongoing infrastructure costs.

    Unless you are a billionaire, a major corporation, or someone with access to large-scale research infrastructure, “just build your own LLM” is not a real option.

    For practical purposes, the advice boils down to:

    “You can do this — unless you are Elon Musk.”

    This framing ignores reality. It assumes unlimited capital, free access to compute, and the ability to absorb six-figure monthly costs without consequences.

    For normal people with bills to pay, this advice is not empowering — it is dismissive.

    The emergence of open-weight models, hosted inference platforms, and local runtimes years later finally made experimentation possible. But at the time, building a personal LLM was effectively impossible.

    Trying to Escape by Building My Own AI

    Eventually, I tried to replace it entirely.

    That’s when reality hit:

    • Common Crawl storage alone cost ~$400/month.
    • Every cloud provider had similar pricing.
    • Training even a basic LLM costs millions.
    • IPFS was impractical.
    • MoE experiments were unstable.

    Important: Grants technically exist, but they are not meant for individuals. They are designed for institutions, labs, and funded organizations — not people with bills to pay.

    Dead Ends Everywhere

    I even emailed Common Crawl directly.

    Their response was essentially:

    “Try using a single crawl.”

    That still meant terabytes of data and real money.

    A Reddit post titled “Common Crawl isn’t free” didn’t go well either. People argued theory. I was talking about cost.

    The Emotional Toll

    At the worst point:

    • I seriously regretted ever finding GPT-3.5.
    • I thought about making a negative video.
    • I briefly considered legal action.
    • I even thought about crowdfunding.
    • I was angry enough to almost break my computer twice.

    I was frustrated enough that I even looked into legal options, only to realize that in 2023, the ‘Terms of Service’—which were largely repurposed from old API documentation written before ChatGPT even existed—were being used as a shield to excuse the machine for wasting a developer’s time with confident hallucinations.

    This wasn’t about drama. It was about being completely out of options.

    The Myth of “Common Crawl Alternatives”

    After running into the cost wall with Common Crawl, I tried to find alternatives. Surely there had to be another large-scale public web dataset, right?

    That assumption turned out to be wrong.

    What many articles and discussions label as “Common Crawl alternatives” are not actually web-scale datasets at all. Most of them fall into one of these categories:

    • Search engines that expose query APIs, not raw data
    • Curated feeds focused on news or blogs
    • Academic datasets that are old, incomplete, or narrowly scoped
    • Archives designed for human browsing, not machine training

    None of these replace what Common Crawl provides: a continuously updated, web-scale snapshot of the public internet.

    Even well-known datasets like:

    • Wikipedia dumps
    • ClueWeb
    • Webhose-style feeds
    • The Internet Archive

    either lack scale, suffer from severe bias, are legally complex, or are simply not practical for modern LLM training.

    It Wasn’t “Just AWS” Charging Me

    One common misconception is that the cost problem is specific to AWS. It isn’t.

    AWS’s Open Data program can host the raw Common Crawl dataset without charging you to store their copy. But once you begin doing anything useful with it—extracting text, filtering, deduplicating, tokenizing, or producing training shards—you generate new data under your account. That derived data (plus scratch space, logs, and outputs) is billed like normal storage.

    Processing the hosted dataset does not cost storage fees — AWS already pays to host the raw copy. But the compute required to process it is not free, and neither is any derived data you choose to keep. The dataset may be hosted, but building something usable on top of it still costs money.

    When I priced out a realistic workflow, the storage costs for processed datasets and pipeline artifacts were consistently expensive across providers:

    • AWS S3
    • Google Cloud Storage
    • Azure Blob Storage
    • Other S3-compatible providers

    Even before training, storage for a minimally usable pipeline ranged from roughly $400 per month to thousands of dollars, depending on how much data you kept and how many intermediate artifacts you had to generate.

    And that was before the rest of the bill:

    • Compute
    • Bandwidth egress fees
    • Indexing
    • Preprocessing
    • Deduplication

    So no—this wasn’t an “AWS problem.” It was an infrastructure reality problem.

    You Can’t Avoid the Data Problem

    Another popular claim is that you can simply skip large datasets and still build a capable model.

    In practice, that leads to one outcome:

    • A small, undertrained model
    • Limited reasoning ability
    • Poor generalization
    • High hallucination rates

    Without massive, diverse data, you don’t get a “modern LLM.” You get what is effectively a 100M-parameter toy model that struggles outside of narrow demos.

    These models can be interesting for experimentation, but they do not replace production-grade assistants. They cannot reason reliably, recall broad knowledge, or handle real-world technical questions.

    a In other words:

    You don’t avoid Common Crawl and get a modern LLM. You avoid Common Crawl and get a junk model.

    This isn’t a failure of creativity or engineering. It’s a consequence of scale.

    I Tried Modifying nanoGPT

    After realizing that training a full modern LLM required unreasonable resources, I experimented with smaller open-source training frameworks like nanoGPT. The idea was simple: maybe a smaller model + efficient code + custom data could be enough.

    In practice, this ran into fundamental limits:

    • nanoGPT is great for **toy problems and learning**, not real-world language modeling at scale.
    • Even with optimized code, it can only train models effectively on **tiny corpora**.
    • Without massive high-quality data (Common Crawl or equivalent), the resulting model lacked depth.
    • Training iterations still required significant compute time even on modest hardware.

    This is why you often see nanoGPT used for:

    • demonstrations
    • proofs of concept
    • educational purposes

    …rather than production-ready assistants. The result of those experiments was a humbling realization: even optimized open-source training code doesn’t overcome the core data + compute requirements. **No amount of clever engineering makes up for the absence of diverse, large-scale data.**

    The Myth of “Good ChatGPT Alternatives”

    Around the same time, I also looked for alternatives to ChatGPT that:

    • actually understood context
    • gave reliable answers
    • didn’t hallucinate wildly
    • didn’t hide behind generic disclaimers

    Most offerings at that time fell into one of these buckets:

    • Tools built on GPT-3.5 that still behaved like GPT-3.5
    • Models marketed as “AI helpers” but using weak backend models
    • Search-plus templates that appeared intelligent but lacked reasoning
    • Proprietary assistants with strict limits, quotas, or frequent outages

    Even the ones that claimed to be “ChatGPT alternatives” were usually:

    • search aggregators dressed up as chat interfaces
    • AI wrappers that simply forwarded to GPT-3.5 or similar models
    • tools that were opinionated but wrong

    This meant there was no single competitor that:

    • had **the same fluency** as ChatGPT
    • had **better factual accuracy**
    • gave **consistent technical responses**
    • was affordable and open

    In short:

    What people were calling “alternatives” were really just **imitation UIs** on weak models or **search-first systems** with templated replies, not true conversational assistants.

    This clarified something important for me:

    • If you want something that *feels* as capable as a modern GPT model, you’re usually just using a **GPT model somewhere else**.
    • If you avoid GPT-class models entirely, what you get is powerful in its niche, but not a full assistant.
    • There simply was no true “drop-in better ChatGPT competitor” at that time — only variants of the same limitations.

    The Turning Point

    Original GPT-4 helped, but it still shared the same data limits.

    The real change came with:

    • GPT-4 Turbo
    • GPT-4o
    • OpenRouter
    • Open-weight models
    • Local runtimes like Ollama

    For the first time, AI felt reliable.

    Reality Check on Model Size

    It is also worth correcting a common exaggeration that circulated at the time. GPT-3.5 did not have “100,000+ quadrillion parameters.”

    The original GPT-3 architecture was widely reported to contain 175 billion parameters. GPT-3.5 was an improved iteration built on that general scale — not an absurdly astronomical number.

    While 175 billion parameters is enormous compared to:

    • 100M-parameter toy models
    • 1B–7B open models
    • Even many 13B models

    It is still a finite, engineered system — not an infinite intelligence.

    The frustration with GPT-3.5 was not about size inflation. It was about alignment, reliability, and training quality.

    Large parameter counts increase representational capacity. They do not guarantee correctness.

    The lesson was not that “big models are fake.” The lesson was that scale without sufficient alignment and grounding still produces confident errors.

    The “Just Train It on Something Specific” Advice

    Around the same time, friends and online commenters would often suggest:

    “Why don’t you just make your own AI and train it on something specific?”

    On the surface, this sounds reasonable. If GPT-3.5 was unreliable, then surely a smaller, specialized model trained only on carefully chosen data would be better.

    The answer was still no.

    Not because the idea was malicious. Not because experimentation is bad. But because it misunderstands what makes modern language models work.

    The Capacity Problem

    A narrowly trained small model does not magically become intelligent. If you restrict training to a tiny domain:

    • You lose general reasoning ability
    • You lose linguistic flexibility
    • You lose cross-domain understanding
    • You increase brittleness outside the training scope

    You don’t get a smarter assistant. You get a narrower one.

    The Scale Reality

    Even a “small” serious model requires:

    • Clean, diverse training data
    • Extensive preprocessing
    • Compute for multiple training runs
    • Evaluation and iteration cycles

    Without that scale, the result is typically a 100M–300M parameter toy model that can demo well but collapses under real-world questioning.

    Training on a specific task does not replace:

    • Broad pretraining
    • Instruction tuning
    • Alignment refinement
    • Large-scale validation

    The Architectural Misunderstanding

    What I needed was not a smaller model trained on fewer things. What I needed was:

    • A sufficiently capable base model
    • Grounded retrieval when necessary
    • Constraints to reduce hallucination

    Training a narrow model would not solve hallucination. It would simply relocate the failure mode.

    So when people said:

    “Just build your own and train it on something specific.”

    The answer remained the same:

    No.

    Not because it was impossible to experiment. But because it was the wrong solution to the problem I was trying to solve.

    Looking Back

    GPT-3.5 didn’t just frustrate me — it taught me:

    • How fragile early AI really was
    • How expensive infrastructure is
    • Why skepticism matters
    • Why timing is everything

    It even kickstarted my tech YouTube channel.

    Conclusion

    I don’t regret learning about AI.

    I regret discovering it during the worst possible phase.

    Now that the ecosystem has matured, the problems I fought for months have largely disappeared — not because I forced them to change, but because time did.© 2026 — A personal retrospective on early AI tooling

  • Top 13 List of YouTube content farms

    This is a list of some youtube content farms.

    IDChannel NameSpeculated Purpose
    1Name LookUploads videos showcasing human names.
    2Roel Van de PaarUploads videos from trending Stack Exchange questions.
    3Hey DelphiUploads conversational videos generated by a large language model about programming questions.
    4Webdriver TorsoUploads videos with random red & blue boxes to test YouTube video quality by Google.
    55-Minute CraftsMass-produces sensationalized, low-quality DIY “hacks” designed for high engagement and clickbait algorithms.
    6Bright SideChurns out high-volume, loosely researched riddles, top-10 lists, and pop-science videos using voiceover software and stock footage.
    7DadabotsRuns 24/7 continuous live streams of neural networks generating infinite AI music in various genres.
    8Cowbelly (and similar Reddit TTS channels)Automates the extraction of top Reddit threads and memes, paired with text-to-speech narration.
    9Various “Topic” Channels (e.g., [Artist] – Topic)Automatically created by YouTube to aggregate music tracks auto-generated from digital distribution feeds.
    10Like Nastya / Vlad and Niki networkChurns out localized, hyper-templated children’s videos re-dubbed into dozens of languages via automated workflows.
    11WHYS.video:
    Science · WHYS
    People · WHYS
    Health · WHYS
    Tech · WHYS
    Gaming · WHYS
    Entertainment · WHYS
    Automatically generates YouTube videos based on trending searches on Google Trends, and algorithms using Google Search, along with features like People also ask. Recently they also started using large language models to generate videos.
    12AskAbout.video:
    Ask About Home & Family
    Ask About Tech & Tips
    Ask About Life & How-To
    Ask About Money & Health
    Ask About Food & Facts
    Ask About Phones & Apps
    Ask About Wellness & Tech
    Ask About Parenting & Care
    Similar to WHYS.video, automatically generates YouTube videos based on trending searches on Google Trends, and algorithms using Google Search, along with features like People also ask, but with a more factual style. Recently they also started using large language models to generate videos.
    13English Mastery with Language.FoundationMass-produces short, highly repetitive language learning videos (definitions, pronunciations, simple sentence readings) automatically generated from dictionary databases, online language guides, and text-to-speech engines.

  • 4 Ways to Find Deleted YouTube Videos

    Ever gone back to watch a favorite YouTube video, only to find it’s been deleted, taken down, or made private? It’s frustrating — especially if the video held sentimental value, useful information, or content you can’t find anywhere else. The good news: a deleted video isn’t always gone for good. Here are four methods you can try to track one down.

    1. The Wayback Machine

    The Wayback Machine is a massive archive of the internet that regularly takes snapshots of web pages — including YouTube video pages. If you still have the original link to the video, this should be your first stop.

    How to use it:

    • Copy the original YouTube video URL.
    • Head to web.archive.org.
    • Paste the link into the search bar.
    • Browse the available snapshots by date. If you’re lucky, an archived version of the page may still have the video player working, or at least show you the title, description, and thumbnail.

    Keep in mind that the Wayback Machine archives the page, not always the video file itself, so results can be hit or miss depending on when the snapshot was taken.

    2. Google Search

    Don’t underestimate a simple Google search. Even after a video is deleted from YouTube, Google’s cached data, mirror sites, or reposts can still lead you to it.

    How to use it:

    • Go to Google.com.
    • Type in the exact video title, or better yet, the video ID (the string of letters and numbers at the end of a YouTube URL, after v=).
    • Look through the results for cached pages, forum discussions, reaction videos, or reposts that might reference or even re-host the content.

    Searching the video ID specifically tends to work well since it’s a unique identifier that other sites may have indexed.

    3. Check Your Backups

    This one’s easy to overlook: if you ever downloaded the video, saved it locally, or backed up your device, the file might already be sitting on one of your drives.

    Where to look:

    • Local downloads folders or external hard drives
    • Cloud storage services (Google Drive, Dropbox, OneDrive)
    • Old phone or computer backups
    • Video editing project files, if you ever clipped or reused the footage

    It’s worth a quick search across your devices before assuming the video is lost forever — you might have saved it without even realizing it.

    4. Check Other Sites

    YouTube isn’t the only place videos live. Content creators often cross-post their work, and other users sometimes re-upload popular videos elsewhere.

    Places to check:

    • Internet Archive — Beyond the Wayback Machine, the Internet Archive hosts an enormous library of user-uploaded videos that may include a full re-upload of what you’re looking for.
    • Vimeo — Many creators mirror their content here as a backup platform.
    • Other social platforms — TikTok, Twitter/X, Reddit, or Facebook are common places where clips or full videos get reposted.

    A quick search using the video title or creator’s name across these platforms can sometimes turn up an exact copy or something close to it.


    Final Thoughts

    Losing access to a YouTube video you loved (or needed) can be frustrating, but it’s not always the end of the road. Between web archives, search engines, your own backups, and alternative video platforms, there’s a good chance you can track it down. Start with whichever method fits your situation best — if you have the original link, try the Wayback Machine first; if you only remember the title, Google search or other platforms might be your best bet.

  • 1TB Free Cloud Storage: Is it possible? (Top 5 Picks)

    Unfortunately, there is no reputable provider that gives 1 terabyte of free cloud storage.

    However, not all hope is lost!

    Several reputable free and low-cost providers offer up to 500 GB of cloud storage (which is still a lot!), so if you can settle for a little less, this article will show you how.

    1. pCloud (500 GB Storage)

    You won’t find a supplier offering 500 GB of cloud storage for free, let’s face it.

    Nevertheless, pCloud remains a fantastic choice. To get you started, it provides 10 GB of free storage. If you need more, its 500 GB subscription is only $4.99 a month. It’s a good value for the money, particularly if you want lots of space for pictures, videos, documents, and backups without going over budget.

    2. Blomp (40 GB Free Storage)

    While I found it impossible to get 1 TB of free cloud storage, I did find Blomp, which offers a whopping 40 GB for free. That can scale up to 400 GB if you complete additional tasks, such as inviting friends to use the service.

    For example, Blomp can easily back up photos, videos, and audio with its web interface. All is not bad for free!

    3. MEGA (Free 20 GB Storage)

    Next option on the list, I did find MEGA, which offers up to 20 GB of free storage. That’s enough space to store thousands of photos, important documents, and a fair amount of video content without spending a dime.

    One of MEGA’s biggest advantages is its strong focus on privacy and security, with end-to-end encryption helping keep your files protected. Its apps are available across desktop and mobile devices, making it easy to access your files wherever you are.

    For anyone looking for a reputable cloud storage provider with a generous free plan, MEGA is definitely worth considering.

    4. YouTube (Free Unlimited Video Storage)

    You may think I’ve completely lost the plot – after all, YouTube is a video-sharing platform, not a cloud storage service.

    However, YouTube allows you to upload both private and unlisted videos, meaning they can be stored online without being visible to the public. In a way, that makes YouTube a surprisingly useful option for free video storage.

    This won’t replace a traditional cloud storage provider since you can’t store documents, ZIP files, or other file types directly. But if you’re a filmmaker, content creator, or simply want to back up home videos, YouTube offers virtually unlimited storage for uploaded videos at no cost.

    You can access your videos from anywhere, share them with specific people using unlisted links, and organize them into playlists for easy management. Just keep in mind that YouTube may compress uploaded videos, so it isn’t ideal if you need to preserve the original file quality.

    For video archiving and backups, though, it’s hard to argue with free.

    5. Degoo (Free 20GB Cloud Storage)

    If you’re looking for a simple way to back up photos, videos, and documents without paying anything, Degoo is worth considering. It offers 20 GB of free cloud storage when you sign up, making it one of the more generous free storage providers available.

    Degoo focuses heavily on backup and file protection, allowing you to automatically upload files from your computer or mobile device to the cloud. This makes it especially useful for safeguarding important memories, documents, and media files against device failure or accidental deletion.

    The service is available on Windows, Android, and iOS, giving you access to your files wherever you go. While the free plan includes advertisements and some limitations compared to premium plans, it’s still an excellent option for anyone needing extra storage without a monthly subscription.

    For users who require more space, Degoo also offers affordable paid plans with significantly larger storage capacities.


    Frequently Asked Questions

    Why don’t any providers offer 1 TB of free cloud storage?

    Cloud storage providers must pay for servers, maintenance, bandwidth, and security. Offering 1 TB of storage completely free to every user would be extremely expensive and unsustainable for most companies. As a result, reputable providers typically offer between 5 GB and 20 GB for free, with larger storage plans available through paid subscriptions.

    Which provider offers the most free storage?

    Among the providers listed above, Blomp offers up to 40 GB of free storage, with opportunities to earn additional space through referrals and other activities. Degoo also provides a generous free plan with 20 GB of storage. For users looking for a more established cloud storage platform, MEGA remains one of the most popular options thanks to its 20 GB free plan and strong privacy features.

    Is TeraBox a good alternative?

    TeraBox is often advertised as offering 1 TB of free storage, making it an attractive option for users who need a large amount of space. However, some users may find its limitations, advertisements, and file management restrictions less appealing than those of more established cloud storage providers. If reliability, privacy, and long-term support are your priorities, services like MEGA, pCloud, or Degoo may be better choices.

    What’s the best free cloud storage service overall?

    The best option depends on your needs. If you prioritize privacy and security, MEGA is a strong choice. If you need affordable upgrades and reliable performance, pCloud stands out. For users seeking the largest amount of free storage possible, Blomp and Degoo offer some of the most generous free plans available.

  • ChippyTime, the truth warning

    ChippyTime has been the subject of a lot of recent discussion, some of which is accurate and much of which is wholly untrue. Running anything online involves disputes and gossip, but the truth is what matters. Here’s what’s actually happening.

    Let’s dispel the major rumors that, despite our repeated reminders that they are unsupported by any evidence, persist.

    “ChippyTime Uses an OpenAI Free Trial” is the first claim.

    Incorrect. Free trials have a short lifespan. ChippyTime cannot function with something that has been shut down for a long time. Our services are powered by legitimate, paid infrastructure. I always have.

    “ChippyTime Is Using Someone Else’s OpenAI Account” is the second claim.
    Not true, once more. We don’t take advantage of someone else’s subscription. Without any concrete proof, the rumor continues to circulate. It is simply inaccurate and has no supporting evidence.

    “ChippyTime Is Based in Romania” is the third claim.
    No, not at all. ChippyTime is based in the United States. If you’ve read or heard something different, it’s simply untrue.

    Stay away from what you hear in online forums or Discord channels in favor of official company sources for accurate information about us.

    “ChippyTech Hosts an HTML-to-Base64 Service” is the fourth claim.

    Not true either. ChippyTime and ChippyTech have never operated a hosting service for Base64-encoded HTML content. People claim it, but no proof has ever been shown. Most likely because it doesn’t exist.

    “ChippyTime Stores Passwords in Plain Text” is the fifth claim.
    Completely untrue. We are serious about password security. We make advantage of PHP’s password_hash() function, which was designed specifically to keep passwords secure and hashed rather than displayed in plain form. Storing plain text passwords is not a good security practice, and that has never been our strategy. Hashing is.

    Rumors remain just that—rumors.

    False Information Affects the Community

    We frequently witness instances of misinformation and false information spreading around the community. Inaccurate information can occasionally be taken as true by novice users, particularly if it is repeated frequently. That merely fosters an atmosphere in which rumors gain more traction than real corrections.

    What Is Important to Us

    What we stand for:

    Being open and honest
    Providing accurate technical information
    Maintaining strict security
    Respectful communication
    Making corrections when we make errors

    We oppose any form of disruptive conduct in online environments, including harassment and abuse. If there is proof to support your criticism, we welcome it.

    Our Suggestions

    Go directly to the source if you’re looking for information about ChippyTime. You can find accurate information about what we actually do on our websites, official papers, and business social media pages.

    It’s simple to spread rumors. It takes work to discover the truth.

  • Just setting up the Discord integration.

    Just setting up the Discord integration.

  • An Update on Our Social Media Presence: Moving Beyond X

    At ChippyTime, we are constantly evaluating how we connect, share, and engage with our community. To ensure our conversations remain constructive, accessible, and aligned with our core values, we have made the strategic decision to discontinue using X (formerly Twitter).

    Effective immediately, all official ChippyTime activity on X will cease because the iFastNet Community Discord server is bullcrap. While we have valued the real-time interactions over the years, the evolving landscape has led us to focus our energy where we can foster healthier, more engaging digital spaces for our audience.

    Where to Stay Connected

    Don’t worry—our digital doors are wide open! You can continue to find, follow, and engage with us for the latest updates, product announcements, and behind-the-scenes content on the following channels:

    Looking Ahead

    Our goal has always been to meet our community where they feel most comfortable and supported. We are incredibly excited about deepening our involvement on Bluesky, building richer video content for YouTube, and continuing to nurture our vibrant community on Facebook.

    Thank you for your understanding, adaptability, and continued support as we take this next step in our journey together!

    See you over on Facebook, Bluesky, and YouTube!

  • How to Create Videos with AI using NotebookLM + Google Vids

    In this tutorial, you will use Google NotebookLM to create a presentation, then turn that presentation into a video using Google Vids.


    Step 1. Create a New Notebook

    Go to Google NotebookLM.

    At the top left, click “Create new notebook”.

    Now you need to add content. You have two options:

    • Let Google’s AI find and pull in web sources automatically
    • Upload your own sources (documents, PDFs, notes, links, etc.)

    Tip: The better your sources, the better your final video will be.


    Step 2. Generate Your Slide Deck

    Once your notebook is ready, go to the top right and click “Slide Deck”.

    Wait while the AI generates your presentation. This may take a moment.

    After it finishes:

    • Open the generated presentation
    • Click the three dots (menu)
    • Select “Download PowerPoint (.pptx).”

    Tip: You can review and edit the slides later for improved quality.


    Step 3. Upload to Google Drive

    Go to: https://drive.google.com

    Upload your downloaded PowerPoint file.

    Open it using Google Slides.

    (Optional but recommended)

    • Clean up the slides
    • Fix formatting
    • Reduce text clutter
    • Add images if needed

    Step 4. Convert into a Video Using Google Vids

    From your Slides file, choose the option to convert your presentation into a video. That will open up Google Vids.

    Follow the instructions provided:

    • Generate a script
    • Add an AI voiceover
    • Adjust pacing and timing

    Tip: Review the script before generating voiceover. Small edits make a big difference.


    Step 5. Review and Export

    Play through your video.

    Make sure:

    • The voice sounds natural
    • Timing matches the slides
    • No awkward phrasing

    Once you are happy:

    • Go to “File”
    • Export your video as MP4 or GIF
    • Or upload directly to Google Drive or YouTube

    Wrap Up

    You now have a complete AI-generated video using Google NotebookLM + Google Vids.

    The more you refine your sources, slides, and script, the better your final result will be.

  • Top 5 Hugging Face Alternatives

    Hugging Face is a popular brand name in artificial intelligence communities, but what if you want to use multiple LLMs in one place, or need to rent cloud H100 GPUs, for example? This blog post shows a list of the top five Hugging Face alternatives.

    1. OpenRouter

    OpenRouter is a popular unified API platform that provides users with access and route to over 300 AI language models from over 60 providers through a single, standards-compatible interface. You can use it via an API or through the web interface, and you can chat with multiple AI models in one place.

    2. Replicate

    Replicate is a cloud platform that lets developers run and fine-tune AI models using a single API. It allows users to use multiple kinds of AI models, such as text generation models like Llama 3 or Mistral, and image generation models such as Stable Diffusion.

    3. Vast.ai

    Vast.ai is a cloud GPU rental marketplace platform that has been around since 2018. It offers cheaper GPU prices than places like major cloud providers. It is also a decent option for cheap GPU rentals.

    4. Groq

    Groq (not to be confused with Elon Musk’s Grok) is a cloud API provider that has both free and paid options and provides several AI language models (such as gpt-oss and Llama), but focuses on speed. You can access their models either from the API or via their web interface.

    5. Together AI

    Together AI is a premium AI cloud platform focusing on scalability for using, fine-tuning, and training infrastructure for open-source AI models. Some large language models it includes, include Llama 3 and Mistral, just to name a few.


    Wrap Up

    In conclusion, these are the top 5 Hugging Face alternatives. Whether you want an API to route to multiple AI models or a cloud provider to rent graphics cards, this list is for you. Please try out some of those alternatives on the list.