Archives
- January 2020
- October 2018
- September 2018
- August 2018
- June 2018
- April 2018
- February 2018
- January 2018
- July 2017
- June 2017
- March 2017
- October 2016
- July 2016
- September 2015
- August 2015
- February 2015
- October 2014
- September 2014
- August 2014
- June 2014
- May 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
Meta
Categories
- add
- admob
- algorithm
- android
- app
- App Idea
- beagleboard xm
- BigQuery
- broken
- C++
- cakephp
- case-sensitive
- clone
- codeigniter
- coding
- composer
- coursera
- cross compile
- crosstool
- dbus
- default value
- dependency injection
- diff
- eclipse
- emulator
- error
- file
- forbidden
- fragment
- gdb
- git
- gitolite
- google maps
- inorder
- install
- interview
- java
- jQuery
- link
- linux
- marakana
- mongodb
- NFS
- not working
- php
- preferences
- preorder
- process
- pulseaudio
- push
- qnx
- qt
- rails
- refactored
- reference
- relink
- remote
- ruby
- ruby on rails
- ruby on rails tutorial
- server
- service
- singleton
- svn
- TDD
- topcoder
- tortoisesvn
- troubleshooting
- ubuntu
- UI properties
- undefined
- user
- v3
- virtualbox
- zend
Top Clicks
- None
Monthly Archives: February 2014
Git Config Tips
To use co in place of the more verbose checkout command: $ git config –global alias.co checkout Set the editor Git will use for commit messages. If you use a graphical editor such as Sublime Text, TextMate, gVim, or … Continue reading
Access cross-domain data with AJAX using JSONP, JQuery
My JQuery skills are a bit non existent so you can expect quite a bit of stuff about it. I’ve run into the XMLHttpRequest cannot load …. not allowed by Access-Control-Allow-Origin. I do have my NodeJS server returning JSONP data but … Continue reading
NYT online job marketplace article
I’ve been using oDesk recently for a personal project. My thinking was instead of spending lots of time searching on google how to do something why don’t I just pay someone to do it especially if it is not time … Continue reading
Posted in Web
Leave a comment
RoR 4.0.2 issues
gem “mongoid”, github: “mongoid/mongoid” kept giving me the error: fatal: read error: Connection reset by peer Git error: command `git clone ‘git://github.com/mongoid/mongoid.git’ “/home/mfang/.rvm/gems/ruby-2.1.0/cache/bundler/git/mongoid-176c799a8a4589043b073e277e545d697119fa82” –bare –no-hardlinks` in directory /home/mfang/dev/ror/aws-iar_mygitstation has failed. Changed it to gem “mongoid”, :git => ‘https://github.com/mongoid/mongoid.git’ Now it … Continue reading
Linux: upstart job
Made a newbie mistake on my aws server. Started a node.js server as a user (node server.js &) and didn’t realize that after I logged out the node.js server would go down with it. Once I set the node.js to … Continue reading
Learning Full Stack Web Development
Catching up on a lot of web technologies these days. Keeping me pretty busy. Far different than when I was working on Linux kernel configurations and such. In a happier place now. It’s been challenging trying to cram and learn … Continue reading
Posted in Web
Leave a comment
Install Node.js MongoDB on Ubuntu
For Ubuntu 12.04 Node.js (v 0.6.12) sudo apt-get install nodejs MongoDB sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv 7F0CEB10 echo ‘deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen’ | sudo tee /etc/apt/sources.list.d/mongodb.list sudo apt-get update sudo apt-get install mongodb-10gen Reference: http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/