Pseudo Code Pseudo code is another form that can help us represent what a program is doing at a high-level. The main purpose of pseudo code is to have a human-readable representation of your program. Remember pseudo code is NOT a programming language. You will … [Read more...] about Introduction to Pseudo Code
Software Engineering
Representing a flow in Flowcharts
Flow: Indicates the direction of a flow. … [Read more...] about Representing a flow in Flowcharts
Representing a process in Flowcharts
Process: Denotes a process or an action to be taken. … [Read more...] about Representing a process in Flowcharts
How to setup access to mongodb in production with local clients ( Robomongo HumongouS.io )
"Now I am not a security professional and I don't pretend to play one on the internet" - Rick H. Take this post with a grain of salt. I'm preparing to launch one of my web applications JSecademy. The backend of the application is using mongodb as a datastore. … [Read more...] about How to setup access to mongodb in production with local clients ( Robomongo HumongouS.io )
MEAN.IO Tutorial, PART 5 Integrating Ghost with MEAN
This tutorial is now outdated. If you want to stay up to date with the MEAN Stack you will want to check out this Complete Guide instead. How to integrate open source projects with MEAN. We are told not to reinvent the wheel, and sometimes that is the right … [Read more...] about MEAN.IO Tutorial, PART 5 Integrating Ghost with MEAN
MEAN.IO Tutorial, building a GOAL’S application from scratch. PART 2
This tutorial is now outdated. If you want to stay up to date with the MEAN Stack you will want to check out this Complete Guide instead. What the heck are we building? It's always a good practice to reflect on what you are building before you ever build … [Read more...] about MEAN.IO Tutorial, building a GOAL’S application from scratch. PART 2
If you fail to plan, you are planning to fail!
If you fail to plan, you are planning to fail! ― Benjamin Franklin Recently I pitch my idea to one of my close friends about rimas.co, since the idea is still in infancy, I pitched him what I would like to the computer to do in probably the most optimistic way … [Read more...] about If you fail to plan, you are planning to fail!
Finding a vertical in software development
' Have you had the feeling of launching 10 or 20 rockets all at the same time? Recently, I have felt that I am doing exactly that, with my consulting practice. Some clients want javascript others want PHP and some even want embedded C++ code. How in the … [Read more...] about Finding a vertical in software development
Why learn about Software Requirements?
Going through my bachelors degree in computer science, the more and more i think about where I stand in this entire web of systems it's more and more into a communication position but I know communication in computer science? o no that never happens it's all about … [Read more...] about Why learn about Software Requirements?
How to count all the words in a directory recursively?
Find the location that you want to search in, change into that location. wc -w **/*.md This will do a word count recursively over the directory and count all the words in files with the extension of .md. How to count how many lines are in a git project? The … [Read more...] about How to count all the words in a directory recursively?