-
Andrew Ford 2008 Pagina oficială
-
Eric Berry 2008 [Pagina oficială][2]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%%% %% | |
%%%.%%. | |
<)_/\ /| | |
___(_,_),_)|___ | |
|| // \ / || Make love not warcraft! | |
--------------------------------------- | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
### BEGIN INIT INFO | |
# Provides: php-fastcgi | |
# Required-Start: $all | |
# Required-Stop: $all | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Start and stop php-cgi in external FASTCGI mode | |
# Description: Start and stop php-cgi in external FASTCGI mode | |
### END INIT INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library IEEE; | |
use IEEE.STD_LOGIC_1164.ALL; | |
use IEEE.STD_LOGIC_ARITH.ALL; | |
use IEEE.STD_LOGIC_UNSIGNED.ALL; | |
entity mpg is | |
Port ( clk : in STD_LOGIC; | |
btn : in STD_LOGIC; | |
led : out STD_LOGIC_VECTOR (3 downto 0); | |
catod : out STD_LOGIC_VECTOR (7 downto 0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
# VSFTPD.CONF for virtual users with write/read/delete permissions | |
### | |
anonymous_enable=NO | |
local_enable=YES | |
write_enable=YES | |
local_umask=022 | |
xferlog_enable=YES | |
connect_from_port_20=YES | |
chown_uploads=YES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Heapsort implementation | |
* 10 March, 2010, TUCN FA Labs | |
* Stas Suscov <[email protected]> | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
double attrs; // stored attributions | |
double comps; // stored comparisons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Bubble sort, insertion sort and selective sort. | |
* FA lab from 2nd March 2010 | |
* Stas Suscov <[email protected]> | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
double attrs; // stored attributions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import yaml | |
import urllib2 | |
from facebook.webappfb import FacebookCanvasHandler, FacebookRequestHandler | |
class CronPage(FacebookRequestHandler): | |
def get(self): | |
self.canvas() | |
def post(self): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.ics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- alpine-1.0+dfsg.orig/imap/src/c-client/mail.h | |
+++ alpine-1.0+dfsg/imap/src/c-client/mail.h | |
@@ -857,6 +857,7 @@ | |
unsigned int spare7 : 1; /* seventh spare bit */ | |
unsigned int spare8 : 1; /* eighth spare bit */ | |
void *sparep; /* spare pointer */ | |
+ char *maildirp; /* for the Maildir driver */ | |
unsigned long user_flags; /* user-assignable flags */ | |
} MESSAGECACHE; | |