My Recent Pastes (253 and counting)
Pastes by Denis Defreyne (253 and counting)
Below are the 13 most recent pasties by Denis Defreyne.
March 28, 2007
1:33PM EDT
by Denis Defreyne
View all 10 lines
return (long)(
(mBytes[0] << 56) |
(mBytes[1] << 48) |
(mBytes[2] << 40) |
(mBytes[3] << 32) |
February 25, 2007
4:25PM EDT
by Denis Defreyne
View all 82 lines
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
View all 60 lines
#!/usr/bin/env ruby require 'rubygems' require 'erb' require 'feed_tools'
December 22, 2006
7:31AM EDT
by Denis Defreyne
View all 9 lines
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 11, 2006
12:41PM EDT
by Denis Defreyne
View all 153 lines
/* 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
View all 146 lines
/* * array.h * vdcore * * Copyright (c) 2006 Denis Defreyne
November 02, 2006
5:30AM EDT
by Denis Defreyne
View
Includes file attachment.
{ name = 'constant.other.c';
match = '\b[A-Z_]+(?!\()\b';
}
October 27, 2006
4:34PM EDT
by Denis Defreyne
View
Includes file attachment.
puts("> dictionary_create()");
d = dictionary_create();
printf("=> %p\n", (void *)d);
