My Recent Pastes (253 and counting)

Pastes by Denis Defreyne (253 and counting)

Pages:

Below are the 13 most recent pasties by Denis Defreyne.

March 28, 2007
1:33PM EDT
by Denis Defreyne

                return (long)(
                        (mBytes[0] << 56) |
                        (mBytes[1] << 48) |
                        (mBytes[2] << 40) |
                        (mBytes[3] << 32) |

February 25, 2007
4:25PM EDT
by Denis Defreyne

class VereniaGame < Game
  name            'Verenia'
  description     'A long lost adventure game turns text-based'
  author          'Denis Defreyne'
  

January 04, 2007
5:10AM EDT
by Denis Defreyne

- (void)setJoined:(BOOL)aIsJoined
{
        [self willChangeValueForKey:@"isJoined"];
        mIsJoined = aIsJoined;
}        [self didChangeValueForKey:@"isJoined"];

December 22, 2006
3:23PM EDT
by Denis Defreyne

#!/usr/bin/env ruby

require 'rubygems'
require 'erb'
require 'feed_tools'

December 22, 2006
7:31AM EDT
by Denis Defreyne

BOOL NKPolygonContainsPoint(NKPolygon polygon, NSPoint point)
{
        // We could implement a fancy ray casting algorithm. but simply making a bezier path
        // And checking if it's inside, is much simpler.
        NSBezierPath *path = [NSBezierPath pathFromPolygon:polygon];

December 22, 2006
7:31AM EDT
by Denis Defreyne

}

December 11, 2006
12:41PM EDT
by Denis Defreyne

/* array structure */
typedef struct vd_array_s vd_array_t;

/* comparator callback type */
typedef int (*vd_array_comparator_callback_t)(void *value_1, void *value_2);

December 10, 2006
7:02AM EDT
by Denis Defreyne

/*
 * array.h
 * vdcore
 *
 * Copyright (c) 2006 Denis Defreyne

November 02, 2006
5:30AM EDT
by Denis Defreyne

{        name = 'constant.other.c';
        match = '\b[A-Z_]+(?!\()\b';
}

November 01, 2006
9:44AM EDT
by Denis Defreyne

this is a test

October 29, 2006
1:25PM EDT
by Denis Defreyne

this is a test 2

October 29, 2006
1:24PM EDT
by Denis Defreyne

this is a test

October 27, 2006
4:34PM EDT
by Denis Defreyne

        puts("> dictionary_create()");
        d = dictionary_create();
        printf("=> %p\n", (void *)d);

Previous page