<?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>SuperConfuserUser</title>
		<description>{&quot;meta&quot;=&gt;&quot;SuperConfuserUser is Chely Ho's software development blog with a focus on lessons learned and the craft.&quot;, &quot;subtitle&quot;=&gt;&quot;SuperConfuserUser is Chely Ho's software development blog with a focus on lessons learned and the craft.&quot;}</description>
		<link>http://superconfuseruser.github.io</link>
		<atom:link href="http://superconfuseruser.github.io/feed.xml" rel="self" type="application/rss+xml" />
		
			<item>
				<title>Learning Languages</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;Coding is a completely different language. Like any language, it will take time to learn. How are you supposed to learn it? Babies learn their first language through repetition and copying. It starts with just making sounds. Then, they start to understand the context and use the right words for the right things. Then, they can start talking in more complex ways with proper sentence structure.&lt;/p&gt;

</description>
				
				<pubDate>Sat, 02 Mar 2019 01:25:31 +0000</pubDate>
				<link>http://superconfuseruser.github.io/learning_languages</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/learning_languages</guid>
			</item>
		
			<item>
				<title>Campus Recruiting Event</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;Flatiron offers alumni a chance to participate in recruiting events. Employee relationship specialists gather employers who are interested in hiring entry-level developers. I was lucky enough to be part of Houston’s very first one.&lt;/p&gt;

</description>
				
				<pubDate>Sat, 23 Feb 2019 05:04:43 +0000</pubDate>
				<link>http://superconfuseruser.github.io/campus_recruiting_event</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/campus_recruiting_event</guid>
			</item>
		
			<item>
				<title>Progression of Projects and Programming Skills</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;The Flatiron coursework includes major portfolio projects at the end of each module. The projects show the progression of skills gained. Beginning projects are simpler using one language, but the complexity increases with each.&lt;/p&gt;

</description>
				
				<pubDate>Sat, 16 Feb 2019 03:08:11 +0000</pubDate>
				<link>http://superconfuseruser.github.io/progression_of_projects_and_programming_skills</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/progression_of_projects_and_programming_skills</guid>
			</item>
		
			<item>
				<title>Programming Pace - How long does it take?</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;One of the most frequently asked questions for starting anything new is “How long does it take?” A good answer should always be “It depends.”&lt;/p&gt;

</description>
				
				<pubDate>Mon, 12 Nov 2018 19:32:29 +0000</pubDate>
				<link>http://superconfuseruser.github.io/programming_pace_-_how_long_does_it_take</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/programming_pace_-_how_long_does_it_take</guid>
			</item>
		
			<item>
				<title>Semantic CSS Frameworks with SASS</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;CSS frameworks are a quick and easy way to style your content. Basic styles and behaviors are taken care of, so you’re free to focus more on design and customization.&lt;/p&gt;

&lt;p&gt;I’ve shied away from them though because adding styling classes to your HTML elements isn’t very semantic. A basic page can become littered with extra classes.&lt;/p&gt;

</description>
				
				<pubDate>Wed, 07 Nov 2018 21:48:41 +0000</pubDate>
				<link>http://superconfuseruser.github.io/semantic_css_frameworks_with_sass</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/semantic_css_frameworks_with_sass</guid>
			</item>
		
			<item>
				<title>Rails Only Dynamic-ish Form Fields </title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;Dynamic form fields are generally built with JavaScript, but there’s a way to fake this in Rails. The page isn’t actually updated dynamically, but it &lt;em&gt;seems&lt;/em&gt; dynamic.&lt;/p&gt;

</description>
				
				<pubDate>Tue, 26 Jun 2018 07:58:13 +0000</pubDate>
				<link>http://superconfuseruser.github.io/rails_only_dynamic-ish_form_fields</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/rails_only_dynamic-ish_form_fields</guid>
			</item>
		
			<item>
				<title>Creating Custom API Data - Rails Serializer </title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;You can add more than just ActiveRecord model attributes created in the database schema and associated models to the Rails active model serializer.&lt;/p&gt;

</description>
				
				<pubDate>Mon, 25 Jun 2018 04:14:55 +0000</pubDate>
				<link>http://superconfuseruser.github.io/rails_serializer</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/rails_serializer</guid>
			</item>
		
			<item>
				<title>Validations for MVC Sinatra Project</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>
</description>
				
				<pubDate>Thu, 05 Apr 2018 16:42:31 +0000</pubDate>
				<link>http://superconfuseruser.github.io/validations_for_mvc_sinatra_project</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/validations_for_mvc_sinatra_project</guid>
			</item>
		
			<item>
				<title>Top 100 Films CLI App</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;p&gt;The very first portfolio project for Flatiron students is an application with a Command Line Interface (CLI) that uses data from an external source.  It a great final project testing your understanding of all the previous lessons.&lt;/p&gt;

</description>
				
				<pubDate>Thu, 01 Mar 2018 19:52:43 +0000</pubDate>
				<link>http://superconfuseruser.github.io/top_100_films_cli_app</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/top_100_films_cli_app</guid>
			</item>
		
			<item>
				<title>Hello, World</title>
				
					
						<dc:creator>{&quot;name&quot;=&gt;&quot;Chely Ho&quot;, &quot;email&quot;=&gt;&quot;chelyho@gmail.com&quot;, &quot;info&quot;=&gt;nil}</dc:creator>
					
				
				
					<description>&lt;h2 id=&quot;why-did-you-decide-to-learn-software-development&quot;&gt;Why did you decide to learn software development?&lt;/h2&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-c--&quot; data-lang=&quot;c++&quot;&gt;&lt;span class=&quot;n&quot;&gt;cout&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Hello, World&quot;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;I still remember the rush from running that first line of code and seeing it actually work.&lt;/p&gt;

</description>
				
				<pubDate>Thu, 01 Mar 2018 03:14:26 +0000</pubDate>
				<link>http://superconfuseruser.github.io/hello_world</link>
				<guid isPermaLink="true">http://superconfuseruser.github.io/hello_world</guid>
			</item>
		
	</channel>
</rss>
