I was wanting to find a well-balanced tutorial on jQuery widgets. If you, like me, have searched far and wide only to find a mismash of tutorials, your wait is over.
I found this great tutorial on jQuery widget creation. It provides a concise overview, demonstrates the basic construction, and provides just the right amount of complexity for those looking at widgets for the first time.
http://bililite.com/blog/understanding-jquery-ui-widgets-a-tutorial
Enjoy!
Just some random development ramblings mostly related to the Microsoft .NET platform.
Thursday, April 4, 2013
Monday, April 1, 2013
Easily open command prompt from Windows Explorer
When using Windows Explorer it is nice to open a command prompt with the initial directory from the one selected.
I've known for years you could select a directory in the right window pane, then hold SHIFT and right click to get the context menu; the context menu contains an "Open command window here" option. Nice.
I recently learned there is another easy way to open the command prompt without using the mouse. With the directory selected in the right window pane, press F4 to move to the directory path input box at the top of the window, then simply type "cmd" and press Enter.
Presto! Look Mom, no mouse!
I recently learned there is another easy way to open the command prompt without using the mouse. With the directory selected in the right window pane, press F4 to move to the directory path input box at the top of the window, then simply type "cmd" and press Enter.
Presto! Look Mom, no mouse!
Subscribe to:
Posts (Atom)
Can't RDP? How to enable / disable virtual machine firewall for Azure VM
Oh no! I accidentally blocked the RDP port on an Azure virtual machine which resulted in not being able to log into the VM anymore. I did ...
-
Oh no! I accidentally blocked the RDP port on an Azure virtual machine which resulted in not being able to log into the VM anymore. I did ...
-
Here is a full test program that demonstrates how to use SharpZipLib to zip an XElement into a byte array. This allows you to transfer larg...