December 18, 2014 in Learn
Optimize Images for the Web
One of the best ways to create fast websites is to optimize images for the web. HTML, CSS, JavaScripts, and fonts can add up, but nothing will slow a page down like tons of unoptimized graphics. In my experience, images tend to…
December 15, 2014 in Learn
Java & Everyday Objects
In the real world there are objects we interact with everyday. We have objects in code, too. That’s because as programming evolves, it comes closer and closer to how we behave and think in the real world. There are two…
December 5, 2014 in Community
Mary Learned to Code While Working Full-time & Raising Kids
As a homeschooling mother of four, Mary found herself fed up of working a full-time job that she no longer enjoyed. With an increasing interest in learning to code she considered attending a coding bootcamp, but found they didn’t fit…
December 2, 2014 in Learn
HTML5 Local Storage
HTML5’s local storage feature allows the browser to store and retrieve specific data. In this post, we’ll pick up where we left off in the previous post where we built a real-time CSS editor using the HTML5 contenteditable attribute. Now we’re…
November 26, 2014 in Treehouse News
New Courses: Interactive Android Apps & Flask Basics
New Courses: Build an Interactive Story App In this course we will build a simple choose-your-own-adventure story app, complete with fantastic illustrations. We will model our story and introduce the Model-View-Controller pattern, and we will learn about getting input from…
November 20, 2014 in Learn
The Real Reason Why Everyone Should Learn to Code
Lots of people get into programming because they love the challenge, are excited by computers and want to build a career creating websites, mobile apps or desktop programs. But even if you don’t want to become a programmer for a…
November 17, 2014 in Learn
Progressive Enhancement: Past, Present, and Future
Progressive enhancement is a layered approach for building websites using HTML for content, CSS for presentation, and JavaScript for interactivity. If for some reason JavaScript breaks, the site should still work and look good. If the CSS doesn’t load correctly, the HTML content…
November 6, 2014 in Learn
Dependency Management In PHP Using Composer
Managing your dependencies manually in any programming language is a huge pain. This is why in most programming languages today you will find that they all have some implementation of a dependency management system or sometimes a package manger. Composer is the dependency…
November 5, 2014 in Learn
Eight Reasons You Should Learn Java
Let’s get one thing clear: learning how to program opens up endless opportunities and has endless benefits. You can learn it from the comfort of your own home, the job market wants and needs you, and it’s fun. Now, there…
November 3, 2014 in Career Advice
What Employers Are Looking for in a Junior Android Dev
We recently wrote a post that discussed what employers are looking for a in Jnr Ruby Dev. It was very popular so we thought we would tackle a different discipline this time – Android development. It is a wonderful time…
October 31, 2014 in Community
Miriam Went From Architect to Full-time Front-end Developer
It was love at first sight for Miriam when she first experimented with coding in the architecture office where she worked. Seeing an opportunity to apply her design skills and perspective in a new way, Miriam continued to embrace her…
October 28, 2014 in Learn
What are Enums and Structs in Swift?
If you know C or Objective-C then you might be familiar with Enums and Structs. However, if you don’t know either of those languages then you are probably wondering what is their purpose and why you should use them. In…