# To understand recursion, see the bottom of this file 

 

/**
* For the brave souls who get this far: You are the chosen ones,
* the valiant knights of programming who toil away, without rest,
* fixing our most awful code. To you, true saviors, kings of men,
* I say this: never gonna give you up, never gonna let you down,
* never gonna run around and desert you. Never gonna make you cry,
* never gonna say goodbye. Never gonna tell a lie and hurt you.
*/

 

//
// Dear maintainer:
//
// Once you are done trying to 'optimize' this routine,
// and have realized what a terrible mistake that was,
// please increment the following counter as a warning
// to the next guy:
//
// total_hours_wasted_here = 39
// 
// I dedicate all this code, all my work, to my wife, Darlene, who will
// have to support me and our three children and the dog once it gets
// released into the public.
return 1; # returns 1
Catch (Exception e) {
 //who cares?
} 
/*
 * You may think you know what the following code does.
 * But you dont. Trust me.
 * Fiddle with it, and youll spend many a sleepless
 * night cursing the moment you thought youd be clever
 * enough to "optimize" the code below.
 * Now close this file and go play with something else.
 */ 
/* Please work */
//Dear future me. Please forgive me.
//I can't even begin to express how sorry I am.  
/* These magic numbers are fucking stupid. */

/* Dear free software world, do you NOW see we are fucking
   things up?! This is insane! */

/* We will NOT put a fucking timestamp in the header here. Every
   time you put it back, I will come in and take it out again. */

# However, this only works if there are MULTIPLE checkboxes!
# The fucking JS DOM *changes* based on one or multiple boxes!?!?!
# Damn damn damn I hate the JavaScript DOM so damn much!!!!!!

/* TODO: this is obviously not right ... this whole fucking module
   sucks anyway */

/* FIXME: please god, when will the hurting stop? Thus function is so
   fucking broken it's not even funny. */
# code below replaces code above - any problems?
 # yeah, it doesn't fucking work.
last = first; /* Biblical reference */
try {

}
catch (SQLException ex) {
    // Basically, without saying too much, you're screwed. Royally and totally.
}
catch(Exception ex)
{
    //If you thought you were screwed before, boy have I news for you!!!
}
// If you're reading this, that means you have been put in charge of my previous project.
// I am so, so sorry for you. God speed.
// If this code works, it was written by Paul DiLascia. If not, I don't know
// who wrote it
// The following strings are meant to be funny.  Do not edit these strings
// unless you are funny, too.  If you don't know if you're funny, you're
// not funny.  If fewer than 2 people unrelated to you have told you that
// you're funny, you're not funny.
$you = live("free") or die("hard");
stepOff(); //bitch
Catch (Exception e) {
    //eat it
}
// This should fix something that should never happen
// If I from the future read this I'll back in time and kill myself.
// This code was written by a genius so don't try to understand it with
// your tiny little brain.
/* Every time I re-visit this function, I feel like
 * I need to take a shower.
 *
 * Don't get too used to this function, its days are
 * numbered.
 */
		/************************************************************
		*                                                           *
		*  .=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-.       *
		*   |                     ______                     |      *
		*   |                  .-"      "-.                  |      *
		*   |                 /            \                 |      *
		*   |     _          |              |          _     |      *
		*   |    ( \         |,  .-.  .-.  ,|         / )    |      *
		*   |     > "=._     | )(__/  \__)( |     _.=" <     |      *
		*   |    (_/"=._"=._ |/     /\     \| _.="_.="\_)    |      *
		*   |           "=._"(_     ^^     _)"_.="           |      *
		*   |               "=\__|IIIIII|__/="               |      *
		*   |              _.="| \IIIIII/ |"=._              |      *
		*   |    _     _.="_.="\          /"=._"=._     _    |      *
		*   |   ( \_.="_.="     `--------`     "=._"=._/ )   |      *
		*   |    > _.="                            "=._ <    |      *
		*   |   (_/                                    \_)   |      *
		*   |                                                |      *
		*   '-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-='      *
		*                                                           *
		*      LASCIATE OGNI SPERANZA, VOI CH'ENTRATE               *
		*************************************************************/

So here comes:

# To understand recursion, see the top of this file
EasyComment: Add comment to your web page instantly

EasyComment is developed as a jQuery plugin to help you add comment function to your web page instantly. You can put EasyComment to any where within your web page, not only that, you can put as many EasyComments as you need within one web page. By simply specifying an element / or more elements as [...]

Image Blending Algorithm – Part V

This is the continuation of my series regarding digital image blending algorithms. If you want to read other posts in this series, here is the list just for your convenient: Image Blending Algorithm–Part I Image Blending Algorithm–Part II Image Blending Algorithm–Part III Image Blending Algorithm–Part IV This post will bring in four more image blending [...]

The RGB color model is an additive color model in which red, green, and blue light are added together to produce many other different colors. Typically, each channel are represented in the range of 0×00-0xff.  In theory, there could be 256x256x256 different colors generated from this color model. HSL color model is a common cylindrical-coordinate [...]

Image Blending Algorithm – Part IV

This is the continuation of my series regarding digital image blending algorithms. If you want to read other posts in this series, here is the list just for your convenient: Image Blending Algorithm–Part I Image Blending Algorithm–Part II Image Blending Algorithm–Part III This post will bring in four more image blending algorithms: Linear Light, Pin [...]

You do not have to have Mac machine and you do not have to join the Apple developer center, yet you can still develop apps for Apple’s i-devices. The following resources are great for beginners. The list will getting longer… … HOWTO: Create native-looking iPhone/iPad applications from HTML, CSS and JavaScript Written by Matthew Might [...]

jQuery Mobile Alpha 3 Released

jQuery Mobile, a touch-optimized web framework for smartphones & tablets were released Alpha 3 version. If you want your site looks and feels just like an touch-based app when accessed through mobile device, this framework will ease a lot of your pain.  The framework “increased our A-Grade browser support to include Firefox Mobile (Fennec), Opera [...]

Image Blending Algorithm–Part III

This is the continuation of my series regarding digital image blending algorithms. If you want to read other posts in this series, here is the list: Image Blending Algorithm–Part I Image Blending Algorithm–Part II This post will bring in five more image blending algorithms: Darken, Lighten, Difference, Exclusion and Reflex. Blending Mode: Darken Code Fragment: [...]

global-composite-operation_thumb.png

Since Microsoft released the beta version of IE 9 last September, I started waiting for the implementation of the globalCompositeOperation of the <canvas> element in the hope that it’s going to make my image process program more easier in some aspects. Since then rumors came out that Microsoft has no plan to support that but [...]

Image Blending Algorithm–Part II

This is the continuation of my previous post Image Blending Algorithm–Part I regarding digital image blending algorithms. I will continue to reveal more blending mode algorithms used in Adobe Photoshop and iPaintPro.  In part I, five image blending algorithms have been revealed: Multiply, Screen, Overlay, Hard Light and Soft Light.  This post will introduce another [...]

© 2011 iPaintPro Suffusion theme by Sayontan Sinha