Whenever developing a project, you will have common solution that will come up and it is always good practice to keep track of these solutions to speed up development in the future. That is why many modern programming languages have a vast amount of built in function for you to use. Predefined functions areContinue reading “JavaScript Built-in Functions”
Author Archives: stukene
Advanced Ruby Methods Continued
Like I discussed last week ruby has many useful built in functions, I will cover more of them in this blog post and show examples of how they are used. <=> Lets first talk about the sort operator this is a very useful yet simple operator to use. The sort operator simply returnsContinue reading “Advanced Ruby Methods Continued”
Advanced Ruby Loops
While we’ve most likely all heard of the traditional “while” and “for” loops that most modern programming languages use. Many languages have a wide variety of loops, iterators and functions that behave like loops that are used to resolve a wide array programming problems in an efficient manner. For this blog we will beContinue reading “Advanced Ruby Loops”
React Native
React native, simply put is the mobile version of the very popular Facebook’s react framework. This is very much true, mainly they both have very similar syntax but there are some distinct differences between them when it comes commons to components, UI rendering, or DOM rendering. React native is in fact a completely differentContinue reading “React Native”
Mobile App Development
Mobile app development is one of the biggest areas of expertise for a programmer to get a job in, just look at any job site and you will see thousands of jobs for mobile app developers of every level. The thing being there are many ways to develop a mobile application, when talking aboutContinue reading “Mobile App Development”
Binary Search Trees
There are many different data structures that serve many purposes and some can be more difficult to use than others. Some lack efficiency but are easy to use vice versa, a great data structure that is consistent in space and time efficiency is binary search tree or BST. For this blog we will be focusingContinue reading “Binary Search Trees”
Solving Coding Challenges
Being presented with an algorithm or whiteboarding problem can be daunting and is part of most software engineering interviews. It can be extremely challenging to solve a coding challenge on the fly where you have tons of pressure and you feel like you do not have time to think but there are a fewContinue reading “Solving Coding Challenges”
AJAX
Today we will be talking about something that many of you have already used knowing it or not; Asynchronous JavaScript and XML or AJAX. Now a days AJAX is not necessarily the best name for this set of web techniques as XML is not nearly as popular as it used to be. You might haveContinue reading “AJAX”
Firebase
Creating a full stack web, or mobile app can difficult as solo developer at times, there can be a lot of code to look out for to make sure your app is secure and efficient. Especially while creating a backend, and sometimes you need much more simplified backend, and it seems a bit tediousContinue reading “Firebase”
CSS Flexbox
Being a full-stack web developer, it can be difficult to design an app UI especially not knowing a ton of CSS. So, a lot of us resort to prebuilt styling like bootstrap and material UI, while both of these are easy to use and look pretty good it lacks a lot of customizability comparedContinue reading “CSS Flexbox”