Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

want

The Origins of That New Gadget Smell [Stinky]
Tuesday, 05 October 2010 22:20
Recently I found myself asking someone why the hell his company's new product stinks so much that I want to leap out of my second floor window. Insulted by my question or not, he explained that new gadget smell. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/w-IveSl_X9k/the-origins-of-that-new-gadget-smell

 
Archie: Touring the Facility
Sunday, 03 October 2010 12:00

I want a girl with a mind like a diamond I want a girl who knows what's best I want a girl with shoes that cut And eyes that burn like cigarettes I want a girl with the right allocations Who's fast and thorough And sharp as a tack She's playing with her jewelry She's putting up her hair She's touring the facility And picking up slack I want a girl with a short skirt and a lonnnng jacket...... I want a girl who gets up early I want a girl who stays up late I want a girl with uninterrupted prosperity Who used a machette to cut through red tape With fingernails that shine like justice And a voice that is dark like tinted glass She is fast and thorough And sharp as a tack She's touring the facility And picking up slack I want a girl with a short skirt and a lonnnnng.... lonnng jacket I want a girl with a smooth liquidation I want a girl with good dividends And at the city bank we will meet accidentally We'll start to talk when she borrows my pen She wants a car with a cupholder arm rest She wants a car that will get her there She's changing her name from Kitty to Karen She's trading her MG for a white Chrysler La Baron I want a girl with a short skirt and a lonnnnggggggggg jacket

Read more: http://suicidegirls.com/girls/Archie/photos/Touring+the+Facility/

 
Simple WindowSets 3.6
Thursday, 23 September 2010 07:00
About Simple WindowSets
Makes it easy for you to manage groups (sets) of Finder windows. Are you always digging into the same folders? Do you often have several Finder windows open to perform a task? Then Simple WindowSets is for you! It sits in your menu bar and is always there when you need it!

You position some Finder windows on your desktop, arrange them however you want, with any view options you want, and then use Simple WindowSets to save them as a set. Your set can be comprised of as many windows as you like and you can save as many sets as you like. Now that you have a set saved, you can restore those windows any time you want by selecting the set from the menu. It’s that easy!

Read more: http://www.apple.com/downloads/macosx/productivity_tools/simplewindowsets.html

 
Simple Patch Tools
Friday, 30 July 2010 15:07

Simple Patch Tools

Creating: When all you want to do is build a patch file that contains only the changes you've made today. Installing: I typically want to take a backup of the files that are going to be overwritten so that I can quickly undo the patch if necessary.

Read more: http://howtoforge.com/simple-patch-tools

 
Replace Node in XML
Tuesday, 27 July 2010 08:09
// replaces a node with a new (textual node)
// @Node node - the node (or Document) you want to replace.
// @nodeToReplace - the node you want to replace
// @replacementNode - the node you want to replace it with!


private static void replaceNodeWithString(Node node, Node nodeToReplace, Node replacementNode) {
NodeList nodeList = node.getChildNodes();
for(int i=0; i < nodeList.getLength(); i++){
Node childNode = nodeList.item(i);

if(childNode.getNodeName().equals(nodeToReplace.getNodeName())){
Element parentElement = (Element)childNode.getParentNode();
parentElement.insertBefore(replacementNode, childNode);
childNode.getParentNode().removeChild(childNode);
parentElement.normalize();
i--;
}
replaceNodeWithString(childNode, nodeToReplace, replacementNode);
}
}

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Ey5psAr7tR8/11939

 
4
Next
End


Page 4 of 4
Taxonomy by Zaragoza Online