Gulp for Web Designers – All You Want to Know

Have you ever wanted to automate boring tasks of web design and development? Let me introduce you to Gulp. Gulp is a streaming build system that will aims to make your workflow more productive and efficient. This is done by automating all those boring tasks such as minification and assets optimization you have to do… Continue reading Gulp for Web Designers – All You Want to Know

JavaScript Design Patterns – How to Make Sense of Chaos Pt2

How about to master some JavaScript design patterns? It’s been couple days since I wrote the first part of this mini-series. Thank you for your patience. Today, you are going to explore and learn about the rest of commonly used design patterns by JavaScript developers. In end of this post, you will also find a brief… Continue reading JavaScript Design Patterns – How to Make Sense of Chaos Pt2

JavaScript Design Patterns – How to Make Sense of Chaos Pt1

Writing a clean and maintainable code is not an easy task. Regardless of the size of our projects, we often find ourselves dealing with almost pure chaos. It is not a wonder that many of us want to know how to write clean and maintainable code. Fortunately, in this post you will explore one way… Continue reading JavaScript Design Patterns – How to Make Sense of Chaos Pt1

Having Fun with Object-Oriented JavaScript

It’s been a long time since we discussed or practiced object-oriented JavaScript. The last reference to JavaScript and objects was, I guess, in JavaScript 101 series part11 and part12. For today, you are going to have some fun while learning or recalling your older knowledge and memories on the subject of object-oriented JavaScript and programming as… Continue reading Having Fun with Object-Oriented JavaScript

Design patterns in JavaScript

Have you ever looked at your code and though … Man, this is a real mess! Well, this happened yesterday when I was looking at the JavaScript code of my website. I started to think about how to improve not just my coding skills, but the way the code is designed. After a few minutes… Continue reading Design patterns in JavaScript

Regex – Introduction to Regular Expression Pt2

In the first part you explored the basics or Regex – what it is and how it works – along with few examples. So it was focused more on theory. Today, you are going to switch to the practical side and practice on various examples. In these snippets you will also work with some methods… Continue reading Regex – Introduction to Regular Expression Pt2