Category page
geekpulp
Page 2 of 3
Category archive
Posts
Page 2 of 3
- Listen to your heart
JavaScript is responsible for the behaviour of your website/app. At the heart of affecting the behaviour of the page is listening for user…
- This is our concern, Dude
In web development, there's a concept called "the separation of concerns" between your HTML, CSS and JavaScript. Each language plays a role in…
- GitHub flow
I've recently been attempting to contribute to some open-source GitHub projects with varying degrees of success. One thing that's extremely…
- No Comments
When I was first learning to code, something that came up a lot was to always comment your code. Code comments have value, but despite what my…
- DRY variables
The concept of DRY code is simple, Don’t Repeat Yourself. So if you look at some code you’ve just written and notice it’s looking a bit moist,…
- Zombie code
Part of developing (and certainly learning to develop) is creating code, commenting it out, and creating a better version. As you get into a…
- Keep your friends close and your variables closer
Back in the day, I used to have this habit of declaring all of my variables at the top of the file. My thinking at the time was it would keep…
- How to function correctly
Coding is a fairly amazing thing to be able to do. There are effectively no limits to what can be done when you’re more or less writing the…
- Simplify conditional statements
Consider the following code: Looks good right? It’s logical and easy to understand, just your standard if statement. All true, but over the…
- Avoid abbreviating variables
Do you know what's super annoying when reading someone else code? Abbreviated variable or function names. Until late 2017 I hadn't done any…