-
Archives
- March 2019
- March 2018
- June 2017
- May 2017
- November 2016
- September 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- April 2015
- December 2014
- October 2014
- September 2014
- May 2014
- April 2014
- March 2014
- January 2014
- November 2013
- October 2013
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
-
Meta
Author Archives: ronaldpringadi
DSQUERY
dsquery * “CN=Users,DC=myadserver,DC=com” -scope onelevel -attr objectguid proxyaddresses -limit 2000 >C:\myadserver.user.list.txt
Posted in LDAP and Active Directory
Leave a comment
Calling a mysql query from linux or dos command line
There are times when you want to call a mysql command from the bash or dos script then call this script in a scheduler (cron job). The example below will show you how to do so. 1mysql -uYOURUSERNAME -pYOURPASSWORD -DYOURDATABASE … Continue reading
Posted in Database, Linux, MySQL
Leave a comment
Remove all svn directory
Subversion (SVN) sometimes clutter our source directory by creating .svn folder in each folder or sub folder that we version control. The easiest way to erase them is by using a bash command: 1find . -name ".svn" -type d -exec … Continue reading
Posted in Linux, Version Control
Leave a comment
Memcache test connection script
12345678910111213<?php error_reporting(E_ALL); $memcache = new Memcache; // Connect to memcached server $memcache->connect(’127.0.0.1′, 11211) or die ("Could not connect"); // Add it to memcached server // The parameters are: KEY, VALUE, USE COMPRESSION, EXPIRY IN SECONDS $memcache->set(’MyKey1′, ‘The value of My … Continue reading
Posted in php, Web Development
Leave a comment
Redis connection test script
1234567891011121314151617181920212223242526<?php require "../predis/autoload.php"; // Update with your location to predis Predis\Autoloader::register(); try { $redis = new Predis\Client(); // Uncomment the following lines and adjust them accordingly if you have a non-default redis configuration /* … Continue reading
Posted in php, Web Development
Leave a comment
Learning Ontario G1 Test through IOS App
Several colleagues of mine produced an app for iPhones and iPad to help people study Ontario G1 driver license test. This app can potentially boost your study in a very cost effective way at $1.99. Take a peak of the … Continue reading
Posted in Uncategorized
Leave a comment