Posted by The TechMentor in cygwin, Scripts
on Dec 30th, 2014
I found that, under cygwin, chmod will not change groups permissions on a file that is stored on NTFS. The group owner needs to be change to User first. $ chown :Users filename Then chmod works as expected. $ chmod 700 filename

Posted by The TechMentor in Journal, Video
on Aug 15th, 2014
By default, on Windows, GoToMeeting uses the G2M3 compression codec on stored recordings. This can be turned off in preferences. However, if that was not done, use the following steps to convert to a normal WMV file. Convert Source WMV G2M3/G2M4 Codec Video to WMV WMV3 Codec Video Step One: Please click here to download and install the GoToMeeting codec. Step Two: If you have Windows XP or Windows 7(32-bit), please go to C:\Program Files\Citrix\GoToMeeting\<????> (a folder with numbers, which is the version of GTM you have installed). If you have Windows 7(64-bit), please go to C:\Program Files...

Posted by The TechMentor in git, Journal
on Aug 8th, 2014
Using Backwater as the remote server, su to gitpriv and change into the repo directory. $ sudo su - gitpriv $ cd gitrepo Here there are some top-level repos already, as well has some directories that contain like repos. These include “c-code” and “web.” If creating a repo to store a web app, change into the web directory and create an empty repo. Be sure it has a “.git” extension. Here I am creating a repo to store the pydio app for LiM. $ cd web $ git init --bare --shared lim.pydio.git Now that that is done, the empty repo must be copied to the system where work...

Posted by The TechMentor in System Configuration
on Jul 21st, 2014
Found the following script: #!/bin/bash ############################################# # AUTHOR: JONATHAN SCHWENN @JONSCHWENN # # MAC MINI VAULT - MAC MINI COLOCATION # # MACMINIVAULT.COM - @MACMINIVAULT # # VERSION 1.01 RELEASE DATE NOV 05 2013 # # DESC: CHANGES THE PORT SSH LISTENS ON # ############################################# #REQUIREMENTS: # OS X 10.8 or newer ############################################# #CHECK FOR OS X 10.8+ if [[ $(sw_vers -productVersion | grep '10.[8-9]') ]] then echo "THIS SCRIPT WILL CHANGE YOUR SSH PORT AND RESTART SSH." echo "THE DEFAULT...

Posted by The TechMentor in Wordpress
on Jun 2nd, 2014
Added the following to includes/default.php: <!-- SUB POST DIVISIONS --> <div class="subpost_wrap2"> <div class="subpost_wrap"> <div class="subpost_left"> <!-- 2014-06-02 Added Video to top of recent posts --> <div align="center"> <iframe style="border-width:5px; border-style:solid; border-color:#615E56;" width="450" height="253" src="//www.youtube.com/embed/4zEi8p1ZwNI" allowfullscreen></iframe> </div> <!-- End of 2014-06-02 video add --> <?php while...

Posted by The TechMentor in Wordpress
on Jun 2nd, 2014
Hi, please go to featured.php save the file just in case; there, find: $coldstone_featured_number= make this equal with the numbers of pages you will use for the slider, like: $coldstone_featured_number=3; find: $my_query = new WP_Query before this add: $args = array( ‘post_type’ => ‘page’, ‘post__in’ => array(2,78,55) ); where 2,78,55 are 3 id’s of the pages you want to show in the slider. You need to insert here the actual id’s of the pages you want to include in the slider; then replace the line: $my_query = new WP_Query(………...
