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
Category Archives: Coding
Coursera – Data to Insights – Data Deduplicating
I finished the 1st course and onto the 2nd course, Data to Insights. Haven’t really learned anything that new that I haven’t done before in some other program like IBM SPSS Modeler. The course is interesting especially when the data … Continue reading
coursera -Exploring and Preparing your Data with BigQuery
Signed up for coursera today. What led me to sign up with them is that the completion of specialized tracks Certificates Course is by ‘Google Cloud’ .Decided to start with Exploring and Preparing your Data with BigQuery. This 4 week course … Continue reading
What are those command options? explainshell.com
If you ever wondered what those options to a command are like rsync -avh folder1 /path/to/remote/dir Command: rsync Options: avh explainshell.com is the place to go have those option deciphered.
Posted in Coding
Leave a comment
Way better technical problem site: Hackerrank.com
Screw the last post and interviewbits hackerrank way better. The site and challenges feels more legit with much more explanation of question and expected input and output. For the 2nd question totally missed the ability to run your code first … Continue reading
Posted in Coding
Leave a comment
Technical Interview example website: InterviewBit
Looking to brush up on technical interview questions. Ran across this site, InterviewBit. Only in the time complexity section, didn’t like the learning videos at all so skipped to the basic primer questions. It’s OK just to get some practice … Continue reading
DigitalOcean Ubuntu 14 -> 16
Finally getting around to upgrading my DigitalOcean Ubutu LAMP droplet from Ubuntu 14 -> 16. Steps: BACKUP db (I forgot this step!!). Ideally copy db dump to local Make a snapshot of droplet sudo apt-get update sudo apt-get upgrade sudo … Continue reading
Posted in Coding
Leave a comment
Configuration Management tool: Ansible
Been learning and playing with Ansible this week as a CM tool. What do we use it for? After you spin up an EC2 instance you can use a Ansible to add users/groups, ssh keys, install packages all from a … Continue reading
Posted in Coding
Leave a comment
CodeIgniter base project
If you are starting a CodeIgniter project, I’d recommend using https://github.com/kenjis/codeigniter-composer-installer as your base. Composer makes things so much easier. Then for User management and authentication use Ion_Auth (GitHub) If you need LDAP, Adldap2 is really easy to use. From … Continue reading
Selectize.js onInit load data for autocomplete
Selectize.js is a neat UI tool. I got introduced to it via a coworker used it in a project. I didn’t bother to really look into it until recently when I wanted to do autocomplete and multiple selects. I didn’t … Continue reading
CodeIgniter3 .htaccess removing index.php subdomain
Below is the general documentation for editing the .htaccess file to remove index.php from a url The documentation examples is example.com/index.php/news/article/my_article will be the same as example.com/news/article/my_article using .htaccess file of: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule … Continue reading