<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: TeeTeaTe</title>
    <description>The latest articles on DEV Community by TeeTeaTe (@teeteate).</description>
    <link>https://dev.to/teeteate</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3970476%2F7dc6e641-d88a-47ed-9d00-2e2e3c029a49.png</url>
      <title>DEV Community: TeeTeaTe</title>
      <link>https://dev.to/teeteate</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/teeteate"/>
    <language>en</language>
    <item>
      <title>Job hunting in 2026</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Sat, 15 Aug 2026 15:43:02 +0000</pubDate>
      <link>https://dev.to/teeteate/job-hunting-in-2026-1boa</link>
      <guid>https://dev.to/teeteate/job-hunting-in-2026-1boa</guid>
      <description>&lt;p&gt;Job hunting in 2026:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0qvw4e4sa0jfpnvoxk10.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0qvw4e4sa0jfpnvoxk10.gif" alt="What is happening?" width="480" height="270"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Anyone agree?&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>career</category>
      <category>ai</category>
    </item>
    <item>
      <title>How to switch between two (or more!) Github accounts in the command line</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Tue, 28 Jul 2026 20:33:12 +0000</pubDate>
      <link>https://dev.to/teeteate/how-to-switch-between-two-or-more-github-accounts-in-the-command-line-eip</link>
      <guid>https://dev.to/teeteate/how-to-switch-between-two-or-more-github-accounts-in-the-command-line-eip</guid>
      <description>&lt;h3&gt;
  
  
  What can happen with two Github accounts?
&lt;/h3&gt;

&lt;p&gt;Recently I needed to switch between my two Github accounts while working on personal projects.&lt;/p&gt;

&lt;p&gt;My primary Github account (which we'll refer to as my "personal Github") is for anything I work on during my personal web development learning. I created a second Github account that I can use for applying to jobs and other opportunities (we can call her my "work Github").&lt;/p&gt;

&lt;p&gt;I committed a project to what I thought was my work Github using the command line before realizing that I had actually made the commits on my personal Github account. The problem? This personal project was incomplete and would reflect poorly on me if a hiring manager saw it. So I had to figure out how to switch between my two Github account when in the CLI on my computer.&lt;/p&gt;

&lt;p&gt;So I went in search of a solution, and one in Github's documentation and in articles written by developers and hobbyists.&lt;/p&gt;

&lt;h3&gt;
  
  
  The command
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="gp"&gt;teeteate:~$&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;alias &lt;/span&gt;&lt;span class="nv"&gt;git_personal&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'git config --global user.email {personal@mail} &amp;amp;&amp;amp; git config --global user.name {personal_name}'&lt;/span&gt;
&lt;span class="gp"&gt;teeteate:~$&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nb"&gt;alias &lt;/span&gt;&lt;span class="nv"&gt;git_work&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s1"&gt;'git config --global user.email {work@mail} &amp;amp;&amp;amp; git config --global user.name {work_name}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These two commands allow you to enter your preferred Github account's associated user name and email address in order to switch between the instances that are pushing code from your terminal. Pick either one and edit them between the &lt;em&gt;{}&lt;/em&gt; by adding in your personal or work Github account details and removing the &lt;em&gt;{}&lt;/em&gt; afterward.&lt;/p&gt;

&lt;p&gt;I've been able to easily switch between my two Github accounts this way. I only use two accounts, but you could continue to switch between three or more Github accounts using the commands.&lt;/p&gt;

&lt;h3&gt;
  
  
  Another quirk
&lt;/h3&gt;

&lt;p&gt;One thing I noticed was that my personal Github account username was still somehow listed as a collaborator for a repository that was only on my work Github account.&lt;/p&gt;

&lt;p&gt;To fix this, I blocked my personal Github account username while logged into Github.com with my work Github account, and I blocked my work Github account while logged into Github.com using my personal Github account. This means that each of my accounts will be prevented from pushing my projects to the other account, and there will not be collaborator mixups between the two accounts.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is this useful?
&lt;/h3&gt;

&lt;p&gt;I use Github a few times a week right now while updating my current projects. Next month I will use it even more for pushing personal and portfolio projects. I loved learning about a way to switch between my two accounts easily from the command line. I hope you can use this tip in your own coding journey!&lt;/p&gt;

&lt;h3&gt;
  
  
  Let's connect!
&lt;/h3&gt;

&lt;p&gt;In the comments below, share your Github and one fun tip or trick you learned that is helpful for using Github.&lt;/p&gt;

</description>
      <category>github</category>
      <category>howto</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>How I'm Doing It: Vibe coding my first blog with free AI tools and Deadlogs blog engine</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Tue, 21 Jul 2026 02:11:17 +0000</pubDate>
      <link>https://dev.to/teeteate/how-im-doing-it-vibe-coding-my-first-blog-with-free-ai-tools-and-a-static-site-generator-4aph</link>
      <guid>https://dev.to/teeteate/how-im-doing-it-vibe-coding-my-first-blog-with-free-ai-tools-and-a-static-site-generator-4aph</guid>
      <description>&lt;h3&gt;
  
  
  Why Blogging?
&lt;/h3&gt;

&lt;p&gt;I've always loved &lt;del&gt;blogging&lt;/del&gt; writing. I believe in the ✨ magical✨ power of written expression. Over the years, I've enjoyed handwriting personal journal entries and making lists of all kinds. Writing has helped me with planning my days and setting goals, and I plan to delve back into academic writing sometime this year. Blogging has always been a logical part of expressing myself &lt;em&gt;online&lt;/em&gt;. I've used blogging platforms - Wordpress, Blogger, and even Livejournal way before that. I've missed the community of online blogging social media sites. Dev.To allows me to write in a community of writers and developers. But I wanted to create a place online that was just for me to write, rant, and create an archived of a life well-lived.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Issue
&lt;/h3&gt;

&lt;p&gt;As a beginner web developer, I have been able to admire personal websites built with static site generators like &lt;a href="https://www.11ty.dev/" rel="noopener noreferrer"&gt;11ty&lt;/a&gt; and &lt;a href="https://astro.build/" rel="noopener noreferrer"&gt;Astro&lt;/a&gt;. Since I am still not finished with my introductory HTML and CSS learning, I didn't want to jump into those Javascript-based tools yet. I needed a way to build my blog using a blog engine that was much more beginner-friendly.&lt;/p&gt;

&lt;h3&gt;
  
  
  Finding a Solution
&lt;/h3&gt;

&lt;p&gt;While scrolling through some &lt;a href="https://teeteate.neocities.org/" rel="noopener noreferrer"&gt;Neocities&lt;/a&gt; pages one day, I found the &lt;a href="https://deadlogs.shroom.ink/about.html" rel="noopener noreferrer"&gt;Deadlogs site generator&lt;/a&gt;. It helps users generate static sites using HTML and CSS with Javascript that helps the pages and navigation menus all work together. I was stoked to find a template for a blog that seemed easily editable by a newbie.&lt;/p&gt;

&lt;h3&gt;
  
  
  About Deadlogs
&lt;/h3&gt;

&lt;p&gt;As I mentioned in a &lt;strong&gt;&lt;a href="https://dev.to/teeteate/colors-fonts-and-chaos-css-blogging-5gfb"&gt;previous post&lt;/a&gt;&lt;/strong&gt;, the Deadlogs generator comes with a way to create a static blog page that includes a home page, an archives section, and a way to move between blog entries.&lt;/p&gt;

&lt;p&gt;I found a template I like - &lt;a href="https://deadlogs.shroom.ink/themes/wheat/" rel="noopener noreferrer"&gt;Wheat&lt;/a&gt; - and got to work!&lt;/p&gt;

&lt;p&gt;The default file structure of this template looks something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;wheat
├── assets
│   ├── images
│   │   ├── favicon.ico # Site icon
│   │   └── default.css # Primary stylesheet
│   ├── style
│   │   └── main.css # Secondary stylesheet
│   └── scripts
│       ├── console.js # Javascript for the console
│       ├── posts.js # Javascript for posts
│       └── deadlogs.js # Javascript for site structure and navigation
├── entry.html # Template for individual log entries / posts
└── index.html # Main homepage
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I knew that I wanted to include a few pages that were not included in the Wheat Template.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;/Now&lt;/em&gt;&lt;/strong&gt; would be a Now page that tells users what I'm doing right now and includes a status.cafe embedded page or link.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;/Garden&lt;/em&gt;&lt;/strong&gt; would be my fun online place to share things I collect and enjoy including sub-pages for /Reading, /Learning, and /Site Stuff&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Here's where vibecoding comes in&lt;/u&gt;&lt;/strong&gt;. I wanted to use an AI tool that was FREE and did not require an additional account or email address to register. Since I already use Google's services for my 50-11 email addresses, I decided to use Google's Gemini AI.&lt;/p&gt;

&lt;p&gt;I only wanted Gemini to update my navigation menus, and my templates for each page's index.html page&lt;/p&gt;

&lt;p&gt;Over the past few weeks with lots of breaks for water and coffee in between, I edited the Deadlogs template to create a blog site that I'm happy with. Gemini came in clutch. I used it to update my navigation menus, fix some of my file structure issues, update and change CSS to my liking. Overall, she is THAT GIRL for launching a site from zero to blog quickly.&lt;/p&gt;

&lt;h3&gt;
  
  
  Site Analytics
&lt;/h3&gt;

&lt;p&gt;I recently launched some small personal projects online that I will write about soon. With one of the projects, I was able to use a free analytics tool that is built into another free site hosting tool. This analytics tools lets me easily see my page views, how visitors get to my site, and from where my site visitors are logging in. My visitors are only from the United States and Poland (!) so far. &lt;strong&gt;&lt;em&gt;Co słychać u moich Polskich przyjaciół!&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This helpful tool offers everything I need for now. And for free! But I wanted something a bit easier to use with an admin portal that where I could see analytics for multiple sites at once. I also needed this new analytics tool to work on Github Pages sites. So I decided to go with another great free analytics tool that is standalone and can be used for free on many sites. Google Analytics is it!&lt;/p&gt;

&lt;p&gt;I added code to my site for Google Analytics and used Gemini to fix some of the outstanding issues.&lt;/p&gt;

&lt;h3&gt;
  
  
  Fun stuff
&lt;/h3&gt;

&lt;p&gt;I registered on &lt;a href="https://status.cafe/" rel="noopener noreferrer"&gt;status.cafe&lt;/a&gt;. Still waiting on my account activation. My status profile will eventually go on my now page.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Future of this blog
&lt;/h3&gt;

&lt;p&gt;I'll keep my Deadlogs blog around for a while - probably at least until I finish up The Odin Project's Foundations course and more Responsive Web Design learning. The template is simple enough to update with new blog posts a few times per week.&lt;/p&gt;

&lt;h3&gt;
  
  
  Check out my blog
&lt;/h3&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;&lt;a href="https://teeteate.github.io/blog/" rel="noopener noreferrer"&gt;teeteate.github.io/blog/&lt;/a&gt;&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;My site is ready for launch (while some things are still a WIP). I have to fix the blog sections over the next few days. But I wanted to get something up tonight. I hope you'll take a look! All of my site tools used can be found in the sources.txt file which is mentioned in my first blog post.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>vibecoding</category>
    </item>
    <item>
      <title>Vibe coding while learning</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Mon, 20 Jul 2026 15:13:01 +0000</pubDate>
      <link>https://dev.to/teeteate/vibe-coding-while-learning-2991</link>
      <guid>https://dev.to/teeteate/vibe-coding-while-learning-2991</guid>
      <description>&lt;p&gt;I practiced vibe coding yesterday, and have implemented vibe coding into some of my works in progress.&lt;/p&gt;

&lt;h4&gt;
  
  
  What is vibe coding?
&lt;/h4&gt;

&lt;p&gt;Vibe coding is "a software development workflow where you describe the goal of your app in plain language, and let artificial intelligence handle the technical implementation", and the term was coined by AI researcher Andrej Karpathy in 2025. &lt;/p&gt;

&lt;p&gt;You can use vibe coding to create entire websites and apps, or you can use vibe coding to improve certain parts of your product's architecture.&lt;/p&gt;

&lt;h4&gt;
  
  
  Should beginner learn to vibe code?
&lt;/h4&gt;

&lt;p&gt;Vibe coding as a beginner is not recommended by The Odin Project and other coding courses. But it is helpful when talking through technical problems, getting help with solutions in real time, and being able to reconfigure your projects or improve how you ask questions.&lt;/p&gt;

&lt;h4&gt;
  
  
  What are your thoughts?
&lt;/h4&gt;

&lt;p&gt;Do you vibe code? How do you use AI to help you with building projects?&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>vibecoding</category>
      <category>ai</category>
    </item>
    <item>
      <title>Colors, Fonts, and Chaos: CSS Blogging</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Wed, 15 Jul 2026 01:41:54 +0000</pubDate>
      <link>https://dev.to/teeteate/colors-fonts-and-chaos-css-blogging-5gfb</link>
      <guid>https://dev.to/teeteate/colors-fonts-and-chaos-css-blogging-5gfb</guid>
      <description>&lt;h3&gt;
  
  
  Getting started
&lt;/h3&gt;

&lt;p&gt;This weekend I started working on setting up a blog website using the site generator called &lt;a href="https://deadlogs.shroom.ink/" rel="noopener noreferrer"&gt;Deadlogs&lt;/a&gt;. I chose this site generator since it is based on HTML and CSS. There are Javascript elements used for the navigation and pagination, but overall it allows me to make and update a static site without needing much Javascript.&lt;/p&gt;

&lt;p&gt;I chose the &lt;a href="https://deadlogs.shroom.ink/themes/wheat/" rel="noopener noreferrer"&gt;Wheat&lt;/a&gt; template because I liked the cool floral geometric patterned background image, the transparent gray border for posts, and the simple fonts used.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frmbme3dyc0mzyyd0hh8b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Frmbme3dyc0mzyyd0hh8b.png" alt="The original Wheat Deadlogs template" width="800" height="637"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Downloading the template package from Github was simple.&lt;/p&gt;

&lt;p&gt;Then I edited a pink and gray patterned background online. I am obsessed at the moment with the Inter font from Google Fonts. It looks smooth and makes my writing feel very organized. I chose Inter for the main site text.&lt;/p&gt;

&lt;h3&gt;
  
  
  Choosing Fonts
&lt;/h3&gt;

&lt;p&gt;For my pink header, I used Momo Signature. It's a cursive font that reminds me of Monotype Corsiva, a cursive font that was popular &lt;a href="https://learn.microsoft.com/en-us/typography/font-list/monotype-corsiva" rel="noopener noreferrer"&gt;back in the day&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqxzb918rjkex395r2frr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fqxzb918rjkex395r2frr.png" alt=" " width="799" height="556"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Selecting Colors
&lt;/h3&gt;

&lt;p&gt;Pink is one of my favorite colors. So I used for #fb52a7 for accent color (links), hot pink for titles and headers, and #012410 a dark green for my main text color. And I kept the original template's gray color for the background on the main content area.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's Next?
&lt;/h3&gt;

&lt;p&gt;Next up, I plan to add content for my pages. I'll share an update soon with those next steps!&lt;/p&gt;

&lt;h3&gt;
  
  
  Talk to me
&lt;/h3&gt;

&lt;p&gt;Do you use static site generators? What is your favorite static site generator? &lt;strong&gt;Share your sites in the comments.&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>fonts</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Practicing CSS with Neocities</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Fri, 10 Jul 2026 19:48:27 +0000</pubDate>
      <link>https://dev.to/teeteate/practicing-css-with-neocities-2mke</link>
      <guid>https://dev.to/teeteate/practicing-css-with-neocities-2mke</guid>
      <description>&lt;p&gt;I built a static webpage for my Neocities site using HTML, CSS, and a couple lines of Javascript to force myself to understand CSS and the box model.&lt;/p&gt;

&lt;h2&gt;
  
  
  The issue
&lt;/h2&gt;

&lt;p&gt;I started the The Box model lesson around June 24, 2026. The lesson is short but has multiple resources for learning about and practicing the box model. For some reason, these lessons are not sticking. I read and watched each resource twice. After these reviews, I worked on a &lt;a href="https://teeteate.github.io/rothko/" rel="noopener noreferrer"&gt;Rothko painting&lt;/a&gt;, did a codealong to create a &lt;a href="https://teeteate.github.io/html-css-portfolio/" rel="noopener noreferrer"&gt;HTML/CSS portfolio&lt;/a&gt;, and began working on a recreating the iconic nutrition facts using HTML and CSS. Nothing is sticking because I cannot layout projects using the box model without continuing to refer to my notes or online resources.&lt;/p&gt;

&lt;h2&gt;
  
  
  Neocities
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://neocities.org/" rel="noopener noreferrer"&gt;Neocities&lt;/a&gt; is a website that allows users to create personal webpages that have the look and feel of the "old web". People get really creative and make beautiful looking static websites using pixelated graphics, cute cursors, and more.&lt;/p&gt;

&lt;p&gt;I created my account. This is what a Neocities page looks like before a user begins designing their own page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjj2zgreiq82cgkn9vuov.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjj2zgreiq82cgkn9vuov.png" alt="TeeTeaTe Neocities page before redesign" width="800" height="564"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I decided to create a simple webpage that would allow me to practice CSS - the box model, positioning, and basic HTML as well - forms, semantic HTML tags, and more.&lt;/p&gt;

&lt;p&gt;My site is structured with: a root directory, three additional directories, seven additional pages. I used one form and a bit of Javascript (from Google Gemini AI) on my contact page.&lt;/p&gt;

&lt;h3&gt;
  
  
  Pushing to Github
&lt;/h3&gt;

&lt;p&gt;I'm pretty comfortable pushing to Github. I created my repository (named neocities) first. Then I pushed my root directory to that folder.&lt;/p&gt;

&lt;h3&gt;
  
  
  Deploying from Github to Neocities
&lt;/h3&gt;

&lt;p&gt;Deploying my site from Github to Neocities was super confusing, so I'll dedicate time over the next week learning more about &lt;code&gt;Devops&lt;/code&gt;, &lt;code&gt;CI/CD&lt;/code&gt;, and working with &lt;code&gt;Github Actions&lt;/code&gt;. &lt;a href="https://scumsuck.com/resources/deployneocities/" rel="noopener noreferrer"&gt;This tutorial&lt;/a&gt; was easy to understand, and helped make the process simpler.&lt;/p&gt;

&lt;p&gt;As I continue through the Foundations course and eventually tackle the Fullstack Javascript learning path by The Odin Project, my Neocities page will be my fun, carefree home online where I can show what I've learned.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;My plan is to redesign my Neocities page monthly. No themes right now, so I'll redesign based on whatever inspires me at the moment. I want to add a few things so I'll list some of them:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;counters for page views&lt;/li&gt;
&lt;li&gt;a guestbook&lt;/li&gt;
&lt;li&gt;responsiveness so mobile viewers can actually enjoy my page&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Eventually I also want to design some free themes for Neocities users. Learning more about CSS is making me want to create and design pretty things on the web!&lt;/p&gt;

&lt;h2&gt;
  
  
  Come say hello!
&lt;/h2&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Check out my Neocities page at &lt;a href="https://teeteate.neocities.org/" rel="noopener noreferrer"&gt;teeteate.neocities.org&lt;/a&gt;&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Please follow me there. I'm excited to meet you, and to share my learning journey over there in real time :)&lt;/p&gt;

&lt;p&gt;And while you're at it, leave a comment and follow me on DEV.TO. Let's keep in touch!&lt;/p&gt;

&lt;p&gt;Article credits:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://www.w3schools.com/tools/tool_image_border.php" rel="noopener noreferrer"&gt;W3schools Add Border to Image&lt;/a&gt;: for quickly adding borders to my screenshots&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.freecodecamp.org/learn/responsive-web-design-v9/workshop-rothko-painting/" rel="noopener noreferrer"&gt;FreeCodeCamp&lt;/a&gt;: I used their assignment to practice the CSS box model by recreating a Rothko painting&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://scumsuck.com/" rel="noopener noreferrer"&gt;Temporal&lt;/a&gt;: for his excellent &lt;a href="https://scumsuck.com/resources/deployneocities/" rel="noopener noreferrer"&gt;Deploying to Neocities guide&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>css</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>neocities</category>
    </item>
    <item>
      <title>How I Spent The Past Few Weeks as a Beginner Web Developer</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Thu, 09 Jul 2026 17:57:04 +0000</pubDate>
      <link>https://dev.to/teeteate/how-i-spent-past-few-weeks-as-a-beginner-web-developer-2l75</link>
      <guid>https://dev.to/teeteate/how-i-spent-past-few-weeks-as-a-beginner-web-developer-2l75</guid>
      <description>&lt;p&gt;The past few weeks have been busy with learning. I started by working on a basic linktree style link site. My goal was to create my own version of &lt;a href="https://www.w3schools.com/howto/howto_website_create_linktree.asp" rel="noopener noreferrer"&gt;this one&lt;/a&gt; from w3schools:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4arabdu90os5udxtd08b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4arabdu90os5udxtd08b.png" alt="w3schools link site example - Courtesy of w3schools" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Issue
&lt;/h2&gt;

&lt;p&gt;I created my first version with the CSS inside &lt;code&gt;&amp;lt;style&amp;gt;&lt;/code&gt;&lt;code&gt;&amp;lt;/style&amp;gt;&lt;/code&gt; tags on the index.html page. This worked perfectly. Then, I moved the css into it's own file called styles.css in the root directory. Unfortunately, this broke the link between my css file and the html site somehow.&lt;/p&gt;

&lt;p&gt;Stuck, I tried creating a folder called mycss and putting the css there. This didn't do it either. I cleared cache from devtools using `Cmd + Option + I. Nothing. So I did what any self respecting beginner would do, and joined a Discord server for learning HTML.&lt;/p&gt;

&lt;p&gt;An engineer named &lt;strong&gt;Tokdev&lt;/strong&gt; helped me out, and I continued to work on my file setup. Eventually, my site went from this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwqf0uddygva9k1seq8bb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwqf0uddygva9k1seq8bb.png" alt="Site with issues linking the CSS" width="800" height="2210"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;to this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fk51xzv7gtj92kzf3t1gr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fk51xzv7gtj92kzf3t1gr.png" alt="Fixed the CSS link issue!" width="800" height="2210"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Resolution
&lt;/h2&gt;

&lt;p&gt;I worked a little more on aligning everything, and you can see the completed link site &lt;a href="https://teeteate.github.io/html-linksite/" rel="noopener noreferrer"&gt;here&lt;/a&gt;. The site is HTML and some CSS only since we had only covered HTML in The Odin Project so far.&lt;/p&gt;

&lt;h3&gt;
  
  
  🛠️ What I Did In The Past Few Weeks
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Joined the &lt;a href="https://discord.gg/YPetRmdS" rel="noopener noreferrer"&gt;Learn HTML&lt;/a&gt; discord&lt;/li&gt;
&lt;li&gt; Reviewed links and paths using &lt;a href="https://www.youtube.com/watch?v=HyCjbxRm08k" rel="noopener noreferrer"&gt;Steve Griffin's video&lt;/a&gt; and &lt;a href="https://codepen.io/editor/tok124/pen/019dd198-0cf7-7755-ae50-24be56f7339c" rel="noopener noreferrer"&gt;this game&lt;/a&gt; - Thanks Tokdev!&lt;/li&gt;
&lt;li&gt;Completed The Odin Projects HTML Foundations course, and successfully completed all projects! You can view my final project, a HTML recipes page called Odin-Recipes &lt;strong&gt;&lt;a href="https://teeteate.github.io/odin-recipes/" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Begin TOP's CSS Foundations course, and practice CSS by creating a few projects.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🧠 What I Learned In The Past Few Weeks
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;How to create a gradient using CSS. I want to learn more about this, but it was fun setting up a basic gradient for my link site.&lt;/li&gt;
&lt;li&gt;Some semantic HTML tags like &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;and &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;How to push my project to Github repository.&lt;/li&gt;
&lt;li&gt;How to write commit messages in Github so I understand changes made to my code.&lt;/li&gt;
&lt;li&gt;How to create a live demo of my project using &lt;strong&gt;&lt;a href="https://docs.github.com/en/pages/getting-started-with-github-pages/creating-a-github-pages-site" rel="noopener noreferrer"&gt;Github Pages&lt;/a&gt;&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;How to screenshot an entire site without losing context or readability Thanks to &lt;a href="https://www.reddit.com/r/chrome/comments/usuzcv/how_can_i_screenshot_an_entire_website/" rel="noopener noreferrer"&gt;Reddit&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;How to mimic this free &lt;a href="https://www.magnific.com/free-vector/watercolor-pink-green-background_40125052.htm#fromView=image_search_similar&amp;amp;page=1&amp;amp;position=0&amp;amp;uuid=972c84e1-121d-49ec-80ab-c830cd10418e&amp;amp;query=Pink+green+background" rel="noopener noreferrer"&gt;Magnific image&lt;/a&gt; by creating a &lt;a href="https://css-tricks.com/a-complete-guide-to-css-gradients/#h-radial-gradients" rel="noopener noreferrer"&gt;radial gradient&lt;/a&gt; background image.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  📆 Upcoming Plans
&lt;/h3&gt;

&lt;p&gt;Next week, I will work some more on understanding CSS and positioning using the box model, and then begin working through The Odin Project's Flexbox unit. I hope to finish their Javascript Basics course by the end of this month.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>theodinproject</category>
    </item>
    <item>
      <title>How I Chose My Web Development Path as a Beginner</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Sun, 21 Jun 2026 15:14:23 +0000</pubDate>
      <link>https://dev.to/teeteate/how-i-chose-my-web-development-path-as-a-beginner-kdo</link>
      <guid>https://dev.to/teeteate/how-i-chose-my-web-development-path-as-a-beginner-kdo</guid>
      <description>&lt;p&gt;Choosing a learning path is one of the most critical decisions you make as a beginner. When I set out to learn web development, I knew exactly what I needed: resources that were thorough, accessible 24/7, and completely free—both online and in print.&lt;/p&gt;

&lt;p&gt;Before settling on my 2026 learning path, I experimented with a few popular options. Here is a look at what I tried, why they didn’t quite stick, and where I ultimately landed.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Didn’t Work for Me
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Scrimba&lt;/strong&gt;&lt;br&gt;
Scrimba offers highly interactive introductory courses in web development. However, I realized a bit too late that the platform isn't entirely free; a paywall kicks in shortly after you begin the core HTML and CSS sections. Because I was looking for fully open resources, I had to move on.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Frontend Mentor&lt;/strong&gt;&lt;br&gt;
Frontend Mentor is an excellent platform for practicing UI design, but it operates on a freemium model. While the basic learning paths are free, accessing project solutions, starter files, and advanced challenges requires a paid upgrade.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;100Devs&lt;/strong&gt;&lt;br&gt;
100Devs is a free, self-paced, community-taught bootcamp led by Leon Noel. Originally broadcast live on Twitch, the full 30-week course repository is now available on YouTube and communitytaught.org.&lt;/p&gt;

&lt;p&gt;I actually joined the inaugural cohort in 2020 and attempted subsequent restarts. Leon is an engaging instructor, but the live-stream format presents some hurdles for self-paced learners. The videos are several hours long and include significant time spent interacting with the live chat, managing stream tangents, and breaking away from the core curriculum. Ultimately, the pacing made it difficult for me to stay focused and build momentum.&lt;/p&gt;

&lt;p&gt;(Note: I also found myself misaligned with some of the community’s culture and leadership choices over time, which made it easier to look for a fresh start elsewhere.)&lt;/p&gt;

&lt;h2&gt;
  
  
  What did I choose?
&lt;/h2&gt;

&lt;p&gt;Ultimately, I chose The Odin Project (TOP) as my primary framework, and I couldn't be happier with the decision.&lt;/p&gt;

&lt;p&gt;&lt;u&gt;The Odin Project checks every single box for me&lt;/u&gt;:&lt;/p&gt;

&lt;p&gt;100% Free: No hidden paywalls or premium tiers.&lt;/p&gt;

&lt;p&gt;Thorough &amp;amp; Deep: It provides an incredible foundation, guiding you through the Command Line, Git, GitHub, HTML, CSS, and JavaScript.&lt;/p&gt;

&lt;p&gt;Project-Based: You build real projects from scratch, including extra credit assignments that push your limits.&lt;/p&gt;

&lt;p&gt;Flexible: It’s fully online and accessible 24/7, allowing me to learn at my own pace.&lt;/p&gt;

&lt;h2&gt;
  
  
  Supplementing the Journey
&lt;/h2&gt;

&lt;p&gt;To round out my education, I am supplementing TOP’s curriculum with their curated external links and a personal goal: reading one non-fiction and/or web development book per month.&lt;/p&gt;

&lt;p&gt;Finding the right path is all about trial and error. It takes time to discover what aligns with your learning style, but finding the right fit makes all the difference. I’ll dive into the first book on my reading list in my next post—stay tuned!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>webdev</category>
      <category>productivity</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Here to Learn</title>
      <dc:creator>TeeTeaTe</dc:creator>
      <pubDate>Fri, 05 Jun 2026 22:44:33 +0000</pubDate>
      <link>https://dev.to/teeteate/here-to-learn-242j</link>
      <guid>https://dev.to/teeteate/here-to-learn-242j</guid>
      <description>&lt;p&gt;I'm Tee (&lt;a class="mentioned-user" href="https://dev.to/teeteate"&gt;@teeteate&lt;/a&gt;), and I'm here to learn. Dev.to will be my space to document my learning journey in public. I have spent time being afraid to learn, fail, and grow especially in view of other people. I no longer want to remain stagnant and in hiding.&lt;/p&gt;

&lt;p&gt;My goals are to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Complete a data analytics course&lt;/strong&gt;:&lt;br&gt;
This learning path will focus on Microsoft Excel, SQL, and Python. I may also include Power BI. My goal for learning data analytics is to gain an understanding of using and managing data along with backend web development.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Complete a full-stack web development learning path&lt;/strong&gt;:&lt;br&gt;
This learning path is one that I have started and quit more times than I can count. I want to learn full-stack web development well enough to build a portfolio of projects. I'm starting with HTML and CSS, and will continue to build from there using the MERN stack - MongoDB (NoSQL database), Express.js (backend framework), React (frontend library), and Node.js (runtime environment). &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Learn computer science and web development fundamentals&lt;/strong&gt;: The plan is to do some learning on web fundamentals using free and low-cost resources online.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Combine my love of art and color to learn some design and UX/UI basics&lt;/strong&gt;: I hope to build beautiful projects, and want to use UX and UI fundamentals to help me. I'm not sure yet how I will do this.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I hope the DEV.to community will join me on my learning journey! Let's connect here - follow me, leave a comment, and like and share this post! Excited to get started and learn with you!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>learning</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
