<?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>Forem: Cole </title>
    <description>The latest articles on Forem by Cole  (@charleebrown).</description>
    <link>https://forem.com/charleebrown</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F413234%2Fb4055fe0-cfb0-45f0-a696-632389181b3b.png</url>
      <title>Forem: Cole </title>
      <link>https://forem.com/charleebrown</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/charleebrown"/>
    <language>en</language>
    <item>
      <title>Skill Up! - (Re)acting!</title>
      <dc:creator>Cole </dc:creator>
      <pubDate>Sat, 03 Sep 2022 03:46:27 +0000</pubDate>
      <link>https://forem.com/charleebrown/skill-up-reacting-512e</link>
      <guid>https://forem.com/charleebrown/skill-up-reacting-512e</guid>
      <description>&lt;h1&gt;
  
  
  Hi,
&lt;/h1&gt;

&lt;p&gt;To the new, Welcome; To the current, Thanks for coming back.&lt;br&gt;
I've been learning React and it has actually been fun. &lt;br&gt;
The MERN stack now has an official spot in my inventory. &lt;/p&gt;

&lt;p&gt;There is one thing that I've picked up along the way, that has made everything SO MUCH EASIER.&lt;/p&gt;

&lt;h2&gt;
  
  
  Perseverance
&lt;/h2&gt;

&lt;p&gt;I've been on and off coding since '05, and my issue was pushing through when I felt like I SHOULD HAVE known something, but I had just started. So my dreams grew faster than my skills, and my pride couldn't take it. So I stopped. &lt;/p&gt;

&lt;p&gt;But with React, I just kept going. Even if no one will look at that repo, finish the project. &lt;/p&gt;

&lt;p&gt;At a minimum, that's one more project. &lt;br&gt;
At maximum, you're now that much more competent at something.&lt;/p&gt;

&lt;p&gt;Thanks for reading. &lt;/p&gt;

</description>
      <category>react</category>
      <category>webdev</category>
      <category>theoffice</category>
      <category>javascript</category>
    </item>
    <item>
      <title>(React)ion news : Easy As Pie</title>
      <dc:creator>Cole </dc:creator>
      <pubDate>Mon, 02 May 2022 20:35:17 +0000</pubDate>
      <link>https://forem.com/charleebrown/reaction-news-easy-as-pie-204l</link>
      <guid>https://forem.com/charleebrown/reaction-news-easy-as-pie-204l</guid>
      <description>&lt;p&gt;So I've been busy.&lt;br&gt;
I've learned the basics of react, created a tutorial app, and re-did one of my past applications in react.&lt;/p&gt;

&lt;p&gt;Its actually really easy. I LOVE react hooks.&lt;br&gt;
From the outset, it seemed really confusing. &lt;br&gt;
But once you realize how they work, you won't be able to stop using it.&lt;/p&gt;

&lt;p&gt;Here is the component from my redone application.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import {useState} from "react";
import './quotes.css';
function Quote() {
    let [quoteText, setQuote] = useState("");
    function getText()
        {try{
            fetch('https://ron-swanson-quotes.herokuapp.com/v2/quotes')
            .then(response =&amp;gt; response.json())
                .then((data) =&amp;gt; setQuote(data));
            }
            catch(err){
                console.log(err);
            }
        }
    return (
        &amp;lt;div className="MainDiv"&amp;gt;
            &amp;lt;header className="quote-header"&amp;gt;
            &amp;lt;h1&amp;gt;Random Swanson Quotes&amp;lt;/h1&amp;gt;
                &amp;lt;div className="row"&amp;gt;
                    &amp;lt;div className="col"&amp;gt;
&amp;lt;button onClick={() =&amp;gt;getText(quoteText)}&amp;gt;Sage Wisdom&amp;lt;/button&amp;gt;
                    &amp;lt; hr/&amp;gt;
                        &amp;lt;/div&amp;gt;  
                    &amp;lt;/div&amp;gt;
                &amp;lt;div class="row" id="mainrow"&amp;gt;
                &amp;lt;div class="col-sm-12" id="quote"&amp;gt;
            &amp;lt;p id="quoteBlock"&amp;gt;{quoteText}&amp;lt;/p&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;/header&amp;gt;
    &amp;lt;/div&amp;gt;
    );}
export default Quote
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;From this, I've discovered that my biggest issue is getting ahead of myself.&lt;br&gt;
Especially when learning new tech, I put the cart before the horse and then wonder why I haven't moved.&lt;/p&gt;

&lt;p&gt;But now, I create micro apps to become adjusted with the language, and grow with the language from there.&lt;/p&gt;

&lt;p&gt;I highly recommend React to any beginners. Once you learn it, its a very helpful tool.&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
    <item>
      <title>General React Disclaimer</title>
      <dc:creator>Cole </dc:creator>
      <pubDate>Thu, 14 Apr 2022 20:57:20 +0000</pubDate>
      <link>https://forem.com/charleebrown/general-react-disclaimer-5e74</link>
      <guid>https://forem.com/charleebrown/general-react-disclaimer-5e74</guid>
      <description>&lt;p&gt;Once I finished the setup (which seems to be painful for no reason),&lt;br&gt;
React is both more helpful and easier than I thought to use.&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Creating a Wordle Clone (or How I Learned to Stop Worrying and Love the Vowel)</title>
      <dc:creator>Cole </dc:creator>
      <pubDate>Thu, 14 Apr 2022 13:12:23 +0000</pubDate>
      <link>https://forem.com/charleebrown/creating-a-wordle-clone-or-how-i-learned-to-stop-worrying-and-love-the-vowel-56g4</link>
      <guid>https://forem.com/charleebrown/creating-a-wordle-clone-or-how-i-learned-to-stop-worrying-and-love-the-vowel-56g4</guid>
      <description>&lt;h6&gt;
  
  
  *Disclaimer, I've never seen the film. Just love the title.
&lt;/h6&gt;

&lt;h2&gt;
  
  
  I had this &lt;a href="https://github.com/CharleeBrown/CrossUp-WordGame"&gt;idea&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HorLtPI1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2jwzzoo2sucwe6x9oli5.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HorLtPI1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2jwzzoo2sucwe6x9oli5.jpg" alt="Image description" width="444" height="160"&gt;&lt;/a&gt;&lt;br&gt;
for a wordle clone of sorts.&lt;br&gt;
Well, it is and it isn't a clone.&lt;br&gt;
My idea is to take the aspect of a crossword and merge it with the wordle idea.&lt;/p&gt;

&lt;p&gt;Rules are : you get one guess, but you do get a hint.&lt;br&gt;
I'm struggling with two main things at the moment.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I'm not sure how i want to style the inputs&lt;/li&gt;
&lt;li&gt;I'm not sure If it should be one try and three
:   One try may make the user more annoyed.
:   Three tries may be too many.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let me know your thoughts in the comments.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Building a Portfolio Pt 1.</title>
      <dc:creator>Cole </dc:creator>
      <pubDate>Tue, 12 Apr 2022 14:58:19 +0000</pubDate>
      <link>https://forem.com/charleebrown/building-a-portfolio-pt-1-227k</link>
      <guid>https://forem.com/charleebrown/building-a-portfolio-pt-1-227k</guid>
      <description>&lt;p&gt;So quick story, you've probably heard it. &lt;br&gt;
I've applied to numerous "entry level" positions and received numerous rejections and zero feedback.&lt;/p&gt;

&lt;p&gt;I'm also interested in starting my own business (possibly freelance or consulting) because as some of you may know, businesses aren't really paying too well. &lt;/p&gt;

&lt;p&gt;To be efficient as I like to be, I've decided to start posting my progress (however terrifying that may be). &lt;/p&gt;

&lt;p&gt;&lt;code&gt;a(href="https://swansonquotes-one.herokuapp.com/")|Ron Swanson Quotes (Node.js, Express, CSS, HTML) - Heroku&lt;br&gt;
      div(class="col")&lt;br&gt;
        h3|Desktop/Enterprise Projects&lt;br&gt;
        ul(class="projects")&lt;br&gt;
          li&lt;br&gt;
            a(href="https://github.com/CharleeBrown/Data-Entry-Form-Java-")|Data Entry Form (Java, Swing(UI), MongoDB) - Github&lt;br&gt;
            ul(class="projects")&lt;br&gt;
          li&lt;br&gt;
            a(href="https://github.com/CharleeBrown/RefFinder")| "  (Java, Swing(UI), MongoDB) - Github&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;I'm currently building a portfolio site, its very barebones right now, and I might keep it that way. Above is a snippet of the front page.&lt;br&gt;
My skills lie more in the backend rather than the front, so design is not my forte and I'd be lying in saying I'm interested in learning. &lt;/p&gt;

&lt;h1&gt;
  
  
  But
&lt;/h1&gt;

&lt;p&gt;I've seen the advice, warning?, that entrepreneurs wear many hats, at least at the beginning. So I'm learning React to become more modern in my frontend skills.&lt;/p&gt;

&lt;p&gt;Will he succeed, or drag his psyche further away from reality as the CSS haunts him in his sleep?&lt;/p&gt;

&lt;p&gt;Find out next time on Dragon Ball C-SS&lt;/p&gt;

</description>
    </item>
    <item>
      <title>19ths Time the Charm</title>
      <dc:creator>Cole </dc:creator>
      <pubDate>Sat, 16 Oct 2021 16:47:46 +0000</pubDate>
      <link>https://forem.com/charleebrown/19ths-time-the-charm-5dc1</link>
      <guid>https://forem.com/charleebrown/19ths-time-the-charm-5dc1</guid>
      <description>&lt;h3&gt;
  
  
  Hi, I'm Cole
&lt;/h3&gt;

&lt;p&gt;I've been programming since around '06/'07. &lt;br&gt;
Programming well for about a year and a half.&lt;/p&gt;

&lt;p&gt;The journey has been very start and stop. &lt;br&gt;
For instance, back in sophomore year of HS i was downloading python on the family computer. &lt;br&gt;
The installation finished, I stared at the syntax and immediately became discouraged.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What the hell was a variable?&lt;br&gt;
Why is there x and y everywhere?&lt;br&gt;
I deemed programming as : lame (read:difficult), yet interesting.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Senior year. New school, new classes.&lt;br&gt;
I took an introduction to programming class and learned VB.Net.&lt;br&gt;
It was way easier to work with. &lt;br&gt;
Combolists, Inputboxes. I could see exactly what I was working with. &lt;br&gt;
&lt;em&gt;(Thinking back on it now, I am most likely a visual learner, but besides the point).&lt;/em&gt; &lt;/p&gt;

&lt;p&gt;The final project was a Santa Claus kid list. It showed the kid, their alignment, and what they wanted. &lt;/p&gt;

&lt;p&gt;Fast-forward to around 4 years ago. My new job deals with ALOT of Excel. Realizing everything was super slowI discover macros and userforms, and from there it was like riding a bike. &lt;/p&gt;

&lt;p&gt;From writing macros, I started to learn C-sharp in the hopes of working my way into the company's Software Development department.&lt;/p&gt;

&lt;p&gt;C-sharp has a way steeper learning curve and I'm still learning the ins and outs through projects, but I wanted to pivot to web development.&lt;/p&gt;

&lt;p&gt;I've found that Web development innovates a lot faster and it isn't a field that I can ignore professionally. So as it is with most things, I threw myself headfirst into only web development topics. &lt;/p&gt;

&lt;p&gt;I'm currently using the MERN (Mongodb,Express,React,Nodejs) stack, without R. &lt;br&gt;
For front-end, I have been writing everything by hand, and just recently learned how to write/use Pug.&lt;/p&gt;

&lt;p&gt;As for me personally, I am a huge introvert, so forcing myself to write out my processes and make posts is both terrifying and cathartic. &lt;/p&gt;

&lt;p&gt;I look forward to posting my journey. You can also follow me on my &lt;a href="https://www.github.com/CharleeBrown"&gt;Github&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
