-
2083013·text·71.2 KB·2011-09-26 11:41 UTC
-
2083012·text·71.2 KB·2011-09-26 11:41 UTC
-
2083008·php·1.1 KB·2011-09-26 11:26 UTC
<?php
// test.php
$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read from
1 => array("pipe", "w"), // stdout is a pipe that the child will write
-
2083007·text·473 B·2011-09-26 11:21 UTC
static void Main(string[] args)
{
Observable
.Timer(TimeSpan.FromSeconds(0.5), Scheduler.Immediate)
.Do(_ => Debug.WriteLine("Start"))
-
2083001·text·876 B·2011-09-26 10:28 UTC
#!/usr/local/bin/bash
find . -name "*.flac" -print0 | while read -d $'\0' file
do
if [ -e "${file%.flac}.mp3" ]; then
echo Skipping "$file" because "${file%.flac}.mp3" is
-
2083000·text·339 B·2011-09-26 10:27 UTC
_____ _____ _____
| |_ _| |
| _)_(_ |
|__ __|_( )_|_ _|
| (_) |_ |_(_) |
| _) _)
-
2082999·text·337 B·2011-09-26 10:24 UTC
_____ _____ _____
| |_ _| |
| _)_(_ |
|__ __|_( )_|_ _|
| _) _) |
|_ _|_ _|_ _|
-
2082998·text·338 B·2011-09-26 10:23 UTC
__ __ _____
| _| |
_ _( _ _|
| ( |_ |_(_) |
| _) _) |
|_ |_ |_ _
-
2082997·text·516 B·2011-09-26 10:21 UTC
#!/usr/bin/perl
use strict;
use Socket;
use IO::Handle;
socket(TSOCK, PF_UNIX, SOCK_STREAM,0);
connect(TSOCK, sockaddr_un("/opt/dovecot/var/run/doveadm-server")) or print("ERROR!");
if (de
-
2082996·text·4 B·2011-09-26 10:18 UTC
0001
-
2082995·text·4 B·2011-09-26 10:17 UTC
0001
-
2082993·text·48.3 KB·2011-09-26 10:02 UTC
-
2082981·text·7.2 KB·2011-09-26 08:58 UTC
* ChanServ gives channel operator status to fyrepony
<meetvirginia> hmm?
<ixin> I prefer black lotus!
* Cydd has quit ()
* fyrepony sets ban on *!*@unaffiliated/mortomes
<
-
2082980·text·141 B·2011-09-26 08:56 UTC
//create a data source from linq to sql classes
// using System.Linq;
CMS_DataClassesDataContext db = new CMS_DataClassesDataContext();
-
2082979·text·207 B·2011-09-26 08:56 UTC
_____ _____ _____
| |_ _| |
| _)_(_ |
|__ __|_( )_|_ _|
| (_) |_ |_(_) |
| _) _) |
|_ _|_ _|_ _|
| (_)_| (_) |_(_) |
| (_ _) |
|_____|_____
-
2082978·text·931 B·2011-09-26 08:55 UTC
import bpy
USER_KEYCONFIG = 2
wm = bpy.context.window_manager
# border selection
for k in wm.keyconfigs[USER_KEYCONFIG].keymaps.find('Gesture Border').keymap_items:
if k.propvalue=='SELECT'
-
2082975·text·125 B·2011-09-26 08:17 UTC
[Video]
AllowHiResModes=yes
AllowVRAMSidebar=yes
VideoBackBuffer=no
ScreenWidth=1280
ScreenHeight=800
StretchMovies=yes
-
2082965·text·2.1 KB·2011-09-26 07:23 UTC
1 (rot 1) (rot 2) (rot 3) (rot 4)
_ _
_____ _( )_ _( )_ _____
| |_ | |_ _| | _| |
| _) | _) (_ | (_
-
2082964·c·738 B·2011-09-26 07:22 UTC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "tree.h"
#include "mylib.h"
int main(int argc, char **argv) {
tree t;
char word[256];
int i;
for (i = 1; i
-
2082963·c·4.9 KB·2011-09-26 07:21 UTC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "tree.h"
typedef enum colour_e { RED, BLACK } colour_t;
struct treenode {
char *key;
colour_t colour;
tree_type