Testing, live data audits, and debuggabilty
When writing software systems, we are usually taught to ensure that code has unit and integration tests. In core curriculum, it’s not often taught that live
Software engineering blog for mobile and web
When writing software systems, we are usually taught to ensure that code has unit and integration tests. In core curriculum, it’s not often taught that live
Since I develop software on both Windows and Mac computers, I need an efficient way to back up my data from these two computers. I developed different strategies for daily and archival backups.
I have
For those of you launching your own web servers, Nginx is a popular upgrade to using Apache, a web server that handles http requests. Nginx has more flexibility in the types of backend it works with
Programming languages are human-readable languages that produce instructions for a computer to understand. Choosing a programming language, however, is currently tied to a hardware platform (e.g.,
OS X bash Update 1.0 – OS X Mavericks | |
OS X bash Update 1.0 – OS X Lion | |
OS X bash Update 1.0 – OS X Mountain Lion |
First, check which version of bash your Mac is running and if it is not 4.3.x then proceed:
1
2
3
|
$ bash --version
GNU bash, version 3.2.51(1)-release (x86_64-apple-darwin13)
Copyright (C) 2007 Free Software Foundation, Inc.
|
First you’ll need to install homebrew,
For the first part you will need to setup MongoDB 2.6+ using Homebrew in Mac OS X and second configure a database for building a REST API using NodeJS on a local machine. The second part should be similar
I’ve been thinking of strategies to build software with speed. Usually it takes several months to iterate on software systems during the engineering phase. In order to reduce the number of engineering
Thor Mitchell, a developer evangelist at Google, gave a presentation at APIWorld this September 2014. His
This is part five of my look into AngularJS.
AngularJS functions that can be used instead of using typeof(). For instance
This is part four of my look into AngularJS.
In AngularJS this is how you would use textarea in HTML.
1 |
<textarea name="multilinetext" ng-model="multitext" ng-change="changeTextArea()" rows="3" cols="40" wrap="off"></textarea>
|
For more information on attributes that are available,