Tool Creates Fresh Web Apps from Aging Code - Technology Review
Monday, August 27, 2012
Tuesday, July 3, 2012
Naming Files, Paths, and Namespaces in Windows
All file systems supported by Windows use the concept of files and directories to access data stored on a disk or device. Windows developers working with the Windows APIs for file and device I/O should understand the various rules, conventions, and limitations of names for files and directories.
Data can be accessed from disks, devices, and network shares using file I/O APIs. Files and directories, along with namespaces, are part of the concept of a path, which is a string representation of where to get the data regardless if it's from a disk or a device or a network connection for a specific operation.
More info: Naming Files, Paths, and Namespaces
Sunday, July 1, 2012
How Do I Use jQuery Selectors?
The basic concept of jQuery is to “select some elements and do something with them”. Selecting can arguably be considered the power behind the jQuery Library. Without the ability to easily select elements from the DOM I don’t think jQuery would be the powerful tool for the DOM as it is today.
What makes jQuery so easy to select elements is its selector engine, Sizzle, and it’s easy syntax, which is based on the same syntax you would use to select elements in CSS by borrowing from CSS 1-3. jQuery also adds additional pseudo selectors to enable you to narrow your selection further. You can find out more about selectors by reviewing the complete reference Selector category on jQuery API site.
What makes jQuery so easy to select elements is its selector engine, Sizzle, and it’s easy syntax, which is based on the same syntax you would use to select elements in CSS by borrowing from CSS 1-3. jQuery also adds additional pseudo selectors to enable you to narrow your selection further. You can find out more about selectors by reviewing the complete reference Selector category on jQuery API site.
Tuesday, April 24, 2012
Wednesday, April 11, 2012
Tuesday, April 10, 2012
Thursday, April 5, 2012
Quirks mode and strict mode in browsers
Quirks mode and strict mode
show page contents
Further information can be found atJukka K. Korpela’s Quirks Mode features page.
Browser comparison: which doctype triggers which mode?
IE 5 Windows and Netscape 4: Doctype switching not possible; permanently locked in quirks mode.
IE 6 Windows: CSS Enhancements in Internet IE 6
IE 5 Mac: No official support page, but Eric Meyer has summarized the differences.
Mozilla: DOCTYPEs and list of quirks.
Opera 7: The Opera 7 DOCTYPE Switches
Safari: No official support page, but it largely follows Mozilla.
Quirks mode and strict mode are the two ’modes’ modern browsers can use to interpret your CSS. This page gives a short overview of the reasons for and the differences between these two modes.
Wednesday, April 4, 2012
Monday, April 2, 2012
the type or namespace name could not be found
The type or namespace name 'PrjTest' could not be found (are you missing a using directive or an assembly reference?)
Can be a .Net Framework 4 Client Profile issue
Subscribe to:
Posts (Atom)