vote up 13 vote down star
9

I am sure that at some point we all come up with a way of doing something that make us proud. It may not be something "worthy of production" because of performance or whatever, but you still like the concept. So, SOers, what is that snippet you are most proud of?

[EDIT] I had forgotten to mark it as community wiki...fixed that

flag
show 12 more comments

42 Answers

1 2
vote up 0 vote down

I like the perl oneliners. This kind of stuff:

    perl -ane 'if(scalar @F>1){++$c{$F[1]}} END{foreach(sort keys %c){print "$_ $c{$_}\n"}}'
link|flag
vote up 0 vote down

Date-parsing.

When the user can enter the date using almost any separator ( . or / or -) and any length numbers (such as 1 or 12 or 01) for the day, month and year numbers, such that '1/3.9' becomes '01-03-2009' or even '2009-03-01' when handed to the program which requires it.

link|flag
vote up 0 vote down

Good question!

Maybe this:

void gunwheel_cut_loose(struct game_obj_t *o, struct game_obj_t *child)
{
        if (child == NULL)
                return;

        if (child->otype == OBJ_TYPE_KGUN && child->tsd.kgun.attached_to == o) {
                child->tsd.kgun.attached_to = NULL;
                /* verlet integration to get velocity... */
                child->vx = child->x - child->lastx;
                child->vy = child->y - child->lasty;
                child->move = bomb_move;
                child->tsd.bomb.bank_shot_factor = 1;
        } else if (child->otype == OBJ_TYPE_GUNWHEEL) {
                child->vx = child->x - child->lastx;
                child->vy = child->y - child->lasty;
                child->move = bomb_move;
                child->tsd.bomb.bank_shot_factor = 1;
                gunwheel_cut_loose(child, child->tsd.gunwheel.left);
                child->tsd.gunwheel.left = NULL;
                gunwheel_cut_loose(child, child->tsd.gunwheel.right);
                child->tsd.gunwheel.right = NULL;
        }
}

Video of this code in action: http://video.google.com/videoplay?docid=-384567350864844238&ei=NXinSYPLPJTWqALcz4XrDw&q=gunwheels

Code is from this game: http://wordwarvi.sourceforge.net

There are a few interesting things going on here.

There's this notion of a gunwheel, which is a spinning bar that can have stuff attached to the ends, possilbly, another gunwheel, or possibly a laser gun.

When a gunwheel is destroyed, the things that are attached to it fly off in free fall. Their initial velocity is calculated by (what I ostentatiously call) verlet integration (subtracting current position from previous position). It's recursive, because gunwheels can be attached to gunwheels. Finally, the various parts of the gunwheel, when destroyed, fall to the ground, like bombs. This is accomplished by the extremely simple means of setting their "move" function pointer to the "bomb_move" function. (A bit like using a C++ class method as an lvalue, something which you cannot actually do in C++)

A lot going on in very few lines of code.

link|flag
vote up 0 vote down

The following patch against Nexuiz, an open source first-person shooter. The patch is an opt-in handicap system (i.e. it makes the game harder for you to win):

  1. You ask for a damage multiplier (at least 1)
  2. Nexuiz remembers it
  3. Whenever you're dealt damage, multiply it by your damage multiplier.

The code is short and to the point :)

Index: data/qcsrc/server/defs.qh
===================================================================
--- data/qcsrc/server/defs.qh   (revision 2761)
+++ data/qcsrc/server/defs.qh   (working copy)
@@ -259,6 +259,7 @@
 .float has_zoomed;

 .float() customizeentityforclient;
+.float cvar_cl_handicap;
 .float cvar_cl_zoomfactor;
 .float cvar_cl_zoomspeed;
 .float cvar_cl_playerdetailreduction;
Index: data/qcsrc/server/miscfunctions.qc
===================================================================
--- data/qcsrc/server/miscfunctions.qc  (revision 2761)
+++ data/qcsrc/server/miscfunctions.qc  (working copy)
@@ -484,6 +484,8 @@
 }
 void GetCvars(float f)
 {
+   GetCvars_handleFloat(f, cvar_cl_handicap, "cl_handicap");
+   self.cvar_cl_handicap = max(self.cvar_cl_handicap, 1.0);
    GetCvars_handleFloat(f, autoswitch, "cl_autoswitch");
    GetCvars_handleFloat(f, cvar_cl_hidewaypoints, "cl_hidewaypoints");
    GetCvars_handleFloat(f, cvar_cl_zoomfactor, "cl_zoomfactor");
Index: data/qcsrc/server/cl_player.qc
===================================================================
--- data/qcsrc/server/cl_player.qc  (revision 2761)
+++ data/qcsrc/server/cl_player.qc  (working copy)
@@ -218,6 +218,8 @@
 {
    local float take, save, waves, sdelay;

+   damage = damage * self.cvar_cl_handicap;
+
    te_blood (hitloc, force, damage);
    if (self.pain_finished < time)		//Don't switch pain sequences like crazy
    {
link|flag
vote up 0 vote down

Toggling comment blocks:

/**
$someCode = "goes here";
etc();
/*/
$someOther = "code goes here";
andSoOn()
//*/

And then add a single slash to the first line and you get this:

/**/
$someCode = "goes here";
etc();
/*/
$someOther = "code goes here";
andSoOn()
//*/
link|flag
vote up 0 vote down

for(int i=0; i<=700;i++) {

print "My younger brother wets the bed every night"; }

I was very young that time and learned this for loop and just to tease my brother i printed this on my computer screen and showed it to every one :-)

and since then it became my favourite code :-)

Dont want to share what he did to me after that ;-) .............

link|flag
vote up 0 vote down

When displaying a 32 bit hex number that happens to be stored as two 16 bit integers, rather than something like

int msw = 0x1234;
int lsw = 0x5678;

long combined = (msw << 16) | lsw;
printf(" 0x%08X", combined);

.. you can eliminate the shifting and OR'ing and just do

printf(" 0x%04X%04X", msw, lsw);

and let the user's cortex do the combination =)

link|flag
vote up 0 vote down

Maybe not what I am most proud of, but it's the only thing I can think of at the moment. It's a smarty output filter that allows templates designers to easily use OpenX ads calls that link to multiple zones without assigning OA_zones manually.

function smarty_outputfilter_openx($source, &$smarty) {
  $matches = array();

  if (preg_match_all('/<[^<>]*script.*src.*?=.*?["\'](.*?spcjs.php.*?)["\'].*?\/?>/im', $source, $matches, PREG_PATTERN_ORDER | PREG_OFFSET_CAPTURE)) {
    $scriptIncludeTag = $matches[0][0];

    $matches = array();

    if (preg_match_all('/<[^<>]*?script.*?>.*?OA_show\(([0-9]+)\).*?<.*?\/.*?script[^<>]*>/im', $source, $matches, PREG_PATTERN_ORDER | PREG_OFFSET_CAPTURE)) {
      $OA_ShowCalls = $matches[1];

      $OA_zones = array();

      foreach ($OA_ShowCalls as $key => $call) {
        $rand = "";

        do {
          $rand = sprintf('%x', rand(4026531840, 4294967295));
        } while (array_key_exists($rand, $OA_zones));

        $OA_ShowCalls[$key][2] = $rand;

        $OA_zones[$rand] = (int)$call[0];
      }

      if (count($OA_zones) > 0) {
        $reps = array();
        $offset = 0;

        $reps[] = array
          (
          'len' => 0,
          'offset' => $scriptIncludeTag[1],
          'with' => '<script type="text/javascript">var OA_zones = ' . json_encode($OA_zones) . ';</script>'
          );

        foreach ($OA_ShowCalls as $call) {
          $reps[] = array
            (
            'len' => strlen($call[0]),
            'offset' => $call[1],
            'with' => '\'' . $call[2] . '\''
            );
        }

        foreach ($reps as $rep) {
          $source = substr($source, 0, $rep['offset'] + $offset) . $rep['with'] . substr($source, $rep['offset'] + $offset + $rep['len']);
          $offset += strlen($rep['with']) - $rep['len'];
        }
      }
    }
  }

  return $source;
}
link|flag
vote up 0 vote down

My first ever four lines of code in Javascript, aged 7:

<script>
for(i=1;i<8;i++) {
	if(i != 7) {
		document.write(i + " - My name is James!<br>");
	}else{
		document.write("My name is James and I am " + i + " years old!");
	}
}
</script>

Kept safe on a floppy disk!

link|flag
vote up 0 vote down

Actually, I do have another piece of code which I am proud of... It's an error handling class which I use in an in-house framework. It allows to trigger errors within classes and return the calling line versus the line where the error has been triggered. It also allows to log the error to the display/email/logfile depending of the server type (Production or Dev). Completely replaces the crappy PHP error handler on anything other than syntax errors.

define('HANDLER_NORMAL', 0);

define('HANDLER_EXIT_FUNCTION', 1);
define('HANDLER_EXIT_CLASS', 2);

require_once ABSPATH . "includes/framework/functions/SiteLog.php";

class ErrorHandler {
    public static $DBfatal = true;
    public static $DBsilent = false;

    public static function custom_error_handler($code, $message, $type = 0) {
    	ErrorHandler::handle($code, $message, ErrorHandler::get_backtrace($type));
    }

    public static function php_error_handler($code, $message) {
    	ErrorHandler::handle($code, $message, ErrorHandler::get_backtrace(0));
    }

    public static function pear_error_handler($err) {
    	if (@is_a($err, 'MDB2_Error')) {
    		if(!ErrorHandler::$DBsilent) {
    			$level = (ErrorHandler::$DBfatal) ? E_USER_ERROR : E_USER_WARNING;

    			if ($err->userinfo) {
    				ErrorHandler::log(PEAR_LOG_NOTICE, trim(str_replace(array
    					(
    					"\n",
    					"\r"
    					), array
    					(
    					' ',
    					''
    					), $err->userinfo)));
    			}

    			ErrorHandler::handle($level, $err->message, ErrorHandler::get_backtrace(HANDLER_EXIT_CLASS));
    		}
    	} else ErrorHandler::handle($err->level, $err->message, ErrorHandler::get_backtrace(HANDLER_EXIT_CLASS));
    }

    private static function get_backtrace($type = 0) {
    	$regEx = "/^" . preg_quote(ABSPATH, '/') . '/' . ((server_is_windows()) ? 'i' : '');

    	$tmp = debug_backtrace();
    	$backtrace = array();

    	for ($i = 0; $i < count($tmp); $i++) {
    		unset($tmp[$i]['object']);

    		if ($tmp[$i]['file']) {
    			$tmp[$i]['file'] = str_replace('\\', '/', $tmp[$i]['file']);

    			if (preg_match($regEx, $tmp[$i]['file'])) {
    				$tmp[$i]['file'] = preg_replace($regEx, '', $tmp[$i]['file']);
    			}
    		}

    		if (count($backtrace) == 0) {
    			$isMyHandler = ($tmp[$i]['file'] == 'includes/framework/functions/ErrorHandler.php' || $tmp[$i]['class'] == 'ErrorHandler' || $tmp[$i]['function'] == 'trigger_php_error');
    			$isPearError = (!is_null($tmp[$i]['class']) && ($tmp[$i]['class'] == 'PEAR_Error' || is_subclass_of($tmp[$i]['class'], 'PEAR_Error')));
    			$isCallback = ($tmp[$i]['function'] == 'call_user_func' && (is_array($tmp[$i]['args'][0]) && $tmp[$i]['args'][0][0] == 'ErrorHandler'));
    			$isSomeHandler = (!is_null($tmp[$i]['function']) && stripos($tmp[$i]['function'], 'error') !== FALSE);
    			$isLast = ($i == (count($tmp) - 1));

    			if(!($isMyHandler || $isPearError || $isCallback || $isSomeHandler) || $isLast) {
    				$backtrace[] = $tmp[$i];
    			}
    		} else {
    			$backtrace[] = $tmp[$i];
    		}
    	}

    	switch ($type)
    		{
    		case HANDLER_EXIT_FUNCTION:
    			array_shift($backtrace);
    			break;

    		case HANDLER_EXIT_CLASS:
    			$orgClass = $backtrace[0]['class'];

    			if(!is_null($orgClass)) {
    				while (count($backtrace) > 1 && $backtrace[1]['class'] == $orgClass) {
    					array_shift($backtrace);
    				}
    			}
    			break;
    		}

    	return $backtrace;
    }

    private static function handle($code, $message, $backtrace) {
    	$logPriority = PEAR_LOG_INFO;

    	switch ($code)
    		{
    		case E_ERROR:
    		case E_USER_ERROR:
    			if ((error_reporting() & E_ERROR) == 0) exit(1);

    			$logPriority = PEAR_LOG_ERR;
    			break;

    		case E_WARNING:
    		case E_USER_WARNING:
    			if ((error_reporting() & E_WARNING) == 0) return;

    			$logPriority = PEAR_LOG_WARNING;
    			break;

    		case E_USER_NOTICE:
    			if ((error_reporting() & E_NOTICE) == 0) return;

    			$logPriority = PEAR_LOG_NOTICE;
    			break;

    		default:
    			return;

    			break;
    		}

    	$message = strip_tags($message);
    	$logText = $message . ' in ' . $backtrace[0]['file'] . ' at line ' . $backtrace[0]['line'];

    	ErrorHandler::log($logPriority, $logText);
    	ErrorHandler::write_dump($code, $message, $backtrace);

    	if ($code == E_USER_ERROR || $code == E_ERROR) exit(1);
    }

    private static function log($priority, $message) {
    	$logger = &SiteLog::get('php_sapi', true, SERVERTYPE == 'PROD');
    	$logger->log($message, $priority);
    }

    private static function write_dump($code, $message, $backtrace) {
    	global $argv;

    	$filename = date('YmdHis');
    	$codeName = 'Unknown';

    	switch ($code)
    		{
    		case E_ERROR:
    		case E_USER_ERROR:
    			$codeName = 'Error';
    			break;

    		case E_WARNING:
    		case E_USER_WARNING:
    			$codeName = 'Warning';
    			break;

    		case E_NOTICE:
    		case E_USER_NOTICE:
    			$codeName = 'Notice';
    			break;

    		default:
    			break;
    		}

    	$loginfo['type'] = $codeName;
    	$loginfo['msg'] = $message;
    	$loginfo['cli'] = ISCLI;

    	if ($loginfo['cli']) {
    		$loginfo['argv'] = $argv;
    	}
    	else {
    		$loginfo['request'] = @substr($_SERVER['REQUEST_URI'], strlen(RELADDR));
    		$loginfo['get'] = $_GET;
    		$loginfo['post'] = $_POST;
    	}

    	$loginfo['backtrace'] = $backtrace;

    	$logstr = Spyc::YAMLDump($loginfo, false, 0);

    	file_put_contents(sprintf("%sautomation/logs/error_dumps/%s_%s.log", ABSPATH, $filename, sha1($logstr)), $logstr);
    }
}

function trigger_php_error($message, $level, $mode = 0) {
    ErrorHandler::custom_error_handler($level, $message, $mode);
}

ini_set('track_errors', 1);
set_error_handler(array('ErrorHandler', 'php_error_handler'));
PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, array('ErrorHandler', 'pear_error_handler'));
link|flag
vote up 0 vote down

adding a

`#DEFINE if while'

to a friends code and watching him get very frustrated afterwards. Ended up buying him a beer afterwards to remain friends haha.

link|flag
vote up 0 vote down

A Python class called EightfoldPath() (now lost, but simple enough to recreate).

I was re-programming a hydrologic modeling framework by someone else. Each "block" had 8 surrounding blocks (a 3x3 grid). The program could only move water downhill to/from ONE of the surrounding blocks. In the real world, water might be routed to/from multiple blocks (into a ditch, for instance).

Solution: Put each block into a subclassed python dictionary that was indexed using binary arithmetic. Each surrounding block's dictionary key was a factor 2 number (1,2,4,8,16,32, etc.)

Routing water simultaneously was easy.

box = EightfoldPath(8) # initiate a box with 8 surrounding boxes (center of 3x3 grid)
.... # Fill dictionary with references to surrounding boxen.
     # Numbering starts top center and proceeds clockwise in powers of 2
upper_box = box[1] # return box at top center
lower_box = box[16] # return box at bottom center
this_box = box[0] # zero index is this box (center)
down_boxes = box[14] # return all boxes on right (2, 4, & 8) to pour water into
hill_boxes = box[255] # return all boxes surrounding us
up_boxes = box[-224] # NEGATIVE! return all boxes on left (128, 64, 32) to take water FROM.

I could have managed this differently, but changing the spaghetti code to allow multiple box routing was a nightmare compared to just staying with a single "box" (i.e. number) and making THAT work.

link|flag
1 2

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.