Memoires of the Commonly Uncommon Tech Solutions

js

Writing JavaScript Promises

Certain situations like using the 3rd Party APIs, or even some new built-in APIs like Fetch provide circumstances that would keep you stuck to Promise flows. When this happens, you have to follow the general abstract rules of Promise chains, make it hard to use Promises in functions. To make it work, you can learn …

assembly

You Do Not Need ‘Sudo’ So Stop Using It

The constant advise to Linux/UNIX users to use sudo before many different commands is more common than it should be. Each time these words hit the internet, an angel loses its wings. Seriously, it’s a recipe for disaster. While this may seem overly dramatic, it is telling you to do something you don’t need to …

react redux

Using Redux Sagas with Optimal Design Patterns

The one thing that was always an issue for me when it came to Redux, were Thunks. Sure, Thunks are great, and they have their place, but did you know you could replace them with something much more functional? Even though everywhere you look you see thunks, if you look around, even at Dan Abramov’s …

assembly

Awesome Services for Developers

The internet is filled with awesome services to help you with so many things, and I wanted to take this opportunity to share my favorite, and most valued services in my arsenal. At the same time I would like to share the services I use to allow me to stay productive on my Chromebook with …

assembly

Great Programming Resources

When I started working with JavaScript late last year, I dived head first into a whole new world. As soon as I came back up for air, I realized I needed to stop watching videos, and truly learn the language. In my article Learning JavaScript: Filling In the Gaps So You Learn Effectively, I talk …

js

EcmaScript 5 versus ES6

I continue to hear professionals complain about ES6, and watch followers hold the same opinion due to a fear of change. Even being fairly new to JS, this is the first time I’ve seen people completely retaliate against their own language. I plan to cover what I’ve experienced, and why I think this is a …

js

Another Way of Using NPM

As I continue to read through blogs, books, and even watch videos, it seems there are many unknown ways of using NPM; at least to the masses. I wanted to create this quick article to show some of the ways I use NPM, as well as speed up the process of many operations. Seriously, I’m …

assembly

Learning to Code with Treehouse

When you start learning to code, you will find a long list of different places to learn. In my early years of JavaScript, I found myself looking for a place to refine my current knowledge. Visiting several different sites, a lot would cover basics, but I always had a hard time finding what I needed. …

js

Learning JavaScript Effectively and Efficiently

JavaScript is an awesome language, but there is and overwhelming amount of topics when you first start, so some important fundamentals can be easily overlooked. Here we’ll go over what you need for learning JavaScript effectively and efficiently, and where you can go do so, and not get lost in the process.

react redux

React Native On Android Without Issue

Building apps for mobile can often cause issues. Using a react-native setup can make it easier, but adding Android support can add different problems. All you need has been compiled into this article, explaining as we go. We will cover the process, errors, issues, as well as how to build react-native Android apps.