-
File Shredder Shortcut using SDelete in Windows XP, Vista, 7
Computer enthusiasts have been using file shredders to delete files for many years. Sysinternals makes a very cool utility called “SDelete” that “shreds” a file See below for batch file code snippet to use with SDelete. Add to your “User/Administrator/AppData/Roaming/Microsoft/Windows/SendTo” (In Vista/7/Serv08) or “Documents and Settings\%username%\SendTo” (In XP). (%APPDATA% environment variable actually points to “C:\users\\AppData\Roaming”)…
-
Play Sound in .Net
Snippets below have been condensed from their original sources for brevity. See references for original articles. All examples are in C# .Net. Winforms: ASP .Net: (create an empty div in your page called “sound_element”) Note there are many ways to play audio in a page, and the above snippet is not necessarily the best approach…
-
JQuery Animation Reference
Can be used without additional parameters .animate() Perform a custom animation of a set of CSS properties. .clearQueue() Remove from the queue all items that have not yet been run. .delay() Set a timer to delay execution of subsequent items in the queue. .dequeue() Execute the next function on the queue for the matched elements.…
-
PHP on IIS7
If you are unfamiliar with the term; PHP is a very popular open source web development language. It runs server side like ASP.Net instead of client side like javascript, and has many of the same features also seen with .Net. Usage wise, it is arguable by many which language is “superior”, but they both have…
-
SVN Revision and Source Control
What is revision control, a.k.a source control? At it’s core, what this term really means is a way for you to track changes that you may make over time to a particular file. Each time you change the file and save/commit the change, it is stored as a transaction so you can easily roll back…
