This file contains hidden or 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
--- a/example-clients/transport.c | |
+++ b/example-clients/transport.c | |
@@ -300,11 +300,11 @@ | |
/* Isolate the command word. */ | |
i = 0; | |
- while (line[i] && whitespace(line[i])) | |
+ while (line[i] && isspace(line[i])) | |
i++; | |
word = line + i; |
This file contains hidden or 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
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
This file contains hidden or 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
/* | |
* iTunes Javascript Class, added to the displayed pages. | |
* Catches iTunes-api calls from pages, such as | |
* http://r.mzstatic.com/htmlResources/6018/dt-storefront-base.jsz | |
*/ | |
/*global window */ | |
iTunes = { // All called from the page js: | |
getMachineID: function () { |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
import sys | |
import unittest | |
sys.path.append('src') | |
sys.path.append('../src') | |
from common import * |
This file contains hidden or 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
#!/usr/bin/env python | |
import sys | |
if sys.platform == "win32": | |
from time import clock as default_timer | |
else: | |
from time import time as default_timer | |
def bruno(n): |
This file contains hidden or 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
%% Stolen from the bbold package. | |
\NeedsTeXFormat{LaTeX2e} | |
\ProvidesPackage{dejavubb}[2011/10/08 dejavubb package] | |
\newcommand{\bbfamily}{\fontencoding{T1}\fontfamily{dejavubb}\selectfont} | |
\newcommand{\textbb}[1]{{\bbfamily#1}} | |
\DeclareMathAlphabet{\mathbb}{T1}{dejavubb}{m}{n} | |
\endinput |
This file contains hidden or 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
int mine(int n) | |
{ | |
int i, sum = 0; | |
for (i = 1; i <= n; i++) { | |
sum += i^2/4; | |
} | |
return sum; | |
} |
This file contains hidden or 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
rbrito@chagas:/media/lutz/devel/xpdf-poppler$ git reflog show origin/debian | |
63d878b refs/remotes/origin/debian@{0}: update by push | |
ed1d718 refs/remotes/origin/debian@{1}: update by push | |
bf233f7 refs/remotes/origin/debian@{2}: update by push | |
de82975 | |
rbrito@chagas:/media/lutz/devel/xpdf-poppler$ |
NewerOlder