-
Recent Posts
Recent Comments
Archives
Categories
Meta
Category Archives: Code
Installing Screen on Synology
Home page for screen To install on synology you need to have ipkg installed. Mine is located in /opt/bin. sudo /opt/bin/ipkg install screen If you just run /opt/bin/screen you will get a terminal error as you may not have a … Continue reading
Posted in Code, Software
Leave a comment
FFMPEG to crop MP3
Using ffmpeg to crop a file is fast and efficient if you know the time positions to crop. I used VLC to identify the positions (my version of vlc would not crop – sad face). fmpeg -i input-file.mp3 -ss 6:40:00 … Continue reading
Finding devices on local network
Run the following command on a UNIX based machine: ping -c 3 192.168.1.255 > /dev/null; arp -a The first command pools devices and the second outputs the known devices on the network
git & Synology
Setting up Synology with git A great article here with screenshots – How to install Git Server Some git commands now to use: Creating working store: cd git_repo mkdir project.git cd project.git git –bare init cd .. chown -R git:users … Continue reading
Great Tutorial on CSS Image Transitions
http://css3.bradshawenterprises.com/cfimg/
Subversion
Links for using subversion Best Practice Using keywords Command examples: svn import -m “Import new folder to the project” new_folder \ svn://SVN_REPO/projects/new_folder