XML resources

By - Last updated: Monday, October 29, 2012

http://htmledit.squarefree.com

http://www.w3schools.com/xml/default.asp

Filed in General

C# resources

By - Last updated: Monday, October 29, 2012

http://www.csharp-station.com/Tutorial.aspx

http://www.csharpkey.com/csharp

http://en.csharp-online.net/CSharp/Certification%2C/Development%2C/and/Training http://en.csharp-online.net/CSharp_Certification%2C_Development%2C_and_Training

http://compilr.com/

http://www.innovation.ch/java/java_compile.html

http://ideone.com

http://www.onlinecompiler.net

http://www.comeaucomputing.com/tryitout

http://www.compileonline.com

 

Filed in General

Object-oriented programming resources

By - Last updated: Monday, October 29, 2012

http://download.oracle.com/javase/tutorial/java/concepts

http://www.freecomputertutor.net/object-oriented-programming-concepts.php

http://www.codeproject.com/KB/architecture/OOP/Concepts/and_manymore.aspx http://www.codeproject.com/KB/architecture/OOP_Concepts_and_manymore.aspx

Filed in General

Recursive grep

By - Last updated: Monday, October 29, 2012

$ grep -r "searchTerm" ./directory

http://blamcast.net/articles/recursive-grep-find-strings-files

Introduction to Programming Using Java, Sixth Edition Version 6.0, June 2011 http://math.hws.edu/javanotes/

Filed in General

Date formats with Linux

By technese - Last updated: Tuesday, May 1, 2012
$ date +%B" "%d","" "%Y
May 02, 2012
$ date +"%m-%d-%y"
05-02-12

Filed in General, Linux

OpenVZ, KVM, Xen Management Tools for Linux

By technese - Last updated: Saturday, April 28, 2012

http://www.linux-kvm.org/page/Management_Tools

Filed in Virtualization

Bits, Bytes, and Bandwidth Conversion Utility

By technese - Last updated: Saturday, April 28, 2012

http://www.topcalc.com/bandwidth.php

Filed in General, Network

Generate a 1024-bit self-signed certificate

By technese - Last updated: Sunday, April 1, 2012

Generate a 1024-bit self-signed certificate for 3 x 365 days = 3 years

openssl req \
-x509 -nodes -days 1095 \
-subj '/C=US/ST=Nevada/L=Las Vegas/CN=www.technese.com' \
-newkey rsa:1024 -keyout selfcert.pem -out selfcert.pem

Reference: http://www.madboa.com/geek/openssl

Filed in General

7z backup folder to file with date

By technese - Last updated: Thursday, March 1, 2012

7z command line for Windows

7z a -t7z C:\BackupFilename_%date:~10,4%_%date:~4,2%_%date:~7,2%.7z
-r C:\FolderContents\*

7z command line for Linux

7z a -t7z 7z a -t7z filename_`date +%F`.7z -r foldername
Filed in General

7z backup with date

By technese - Last updated: Thursday, March 1, 2012

7z command-line for Windows

7z a -t7z C:\BackupFileName_%date:~10,4%_%date:~4,2%_%date:~7,2%.7z -r
"C:\FolderToBeBackup\*%date:~10,4%_%date:~4,2%_%date:~7,2%*"

7z command-line for Linux

7z a -t7z 7z a -t7z filename_`date +%F`.7z -r foldername
Filed in General