Alright so you are using bootstrap 3 and ROR 4, now it's time to start adding some alert messages to your application. If it's a simple warning class from bootstrap that needs to be added to a view, why should we create a class then pass a name to a function that … [Read more...] about Ruby on Rails 4 Flash messages with Bootstrap 3
Programming
MEAN STACK
Learning to become a full-stack developer is no easy task. You have to not only understand an entire stack but also understand how to compose any given development stack. If you try to go at this alone it could take you years of failure before you reach … [Read more...] about MEAN STACK
First Steps with Redis
Overview: What is Redis? Install Redis Get to know the cli Create simple C# console App using redis Production Keep learningd What is Redis? Redis is what we like to call an in-memory database that offers ridicules read and write speed. … [Read more...] about First Steps with Redis
7 steps to becoming a programmer
Know what you're getting into Anyone looking for guidance on what programming is and how to get started will be faced with some of the the general ideas that float around the community which are "you are a programmer" or "your simply not". Since this is some of … [Read more...] about 7 steps to becoming a programmer
How to create a MySQL (SQL) database, username, password, and privileges from the CLI?
Login in as an administrator to SQL CLI interface mysql -u root -p Now create a database where the user will belong to CREATE DATABASE TheDatabase; Now let's go ahead and create a user CREATE USER TheUser; Next will be to give permission to the user for … [Read more...] about How to create a MySQL (SQL) database, username, password, and privileges from the CLI?
How to setup a LAMP stack using ubuntu server
Why even bother with Linux? Whenever working on a client to server architecture it is always good practice ( in my opinion) to test and implement virtual environments of the actual production of the software project being deployed. In this blog post, I will be … [Read more...] about How to setup a LAMP stack using ubuntu server
What is computer science?
The definition of computer science can differ depending on who is answering the question. I have studied computer science for over 2 years, and i think i am getting closer to understanding what it's all about. Here is the thing computer science gets confused with … [Read more...] about What is computer science?
Touching the limits
The film How Long is a Piece of String, was in interesting watch. Because one i knew little to no information about physics let alone quantum mechanics, but somehow throughout the film as they explained what it was by trying to solve the problem of the string it … [Read more...] about Touching the limits
How to get an image scrolling on WordPress with js?
User: Have an image on the projects page that scrolls down showing off binary tree. Fix the binary tree spelling Write inline JS to figure out how WordPress works Fix boxing size issue with titles to put them in one box Create an image that fits post-18 … [Read more...] about How to get an image scrolling on WordPress with js?
How to echo out Zend select to SQL statement?
echo $select->__toString(); die(); … [Read more...] about How to echo out Zend select to SQL statement?