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
/** | |
* @file pipes-are-evil.c | |
* @author Ondřej Hošek <[email protected]> | |
*/ | |
#include <ctype.h> | |
#include <errno.h> | |
#include <signal.h> | |
#include <stdio.h> | |
#include <stdlib.h> |
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
diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c | |
index d50b783..5ded798 100644 | |
--- a/ext/ldap/ldap.c | |
+++ b/ext/ldap/ldap.c | |
@@ -155,6 +155,15 @@ PHP_MINIT_FUNCTION(ldap) | |
REGISTER_LONG_CONSTANT("LDAP_DEREF_FINDING", LDAP_DEREF_FINDING, CONST_PERSISTENT | CONST_CS); | |
REGISTER_LONG_CONSTANT("LDAP_DEREF_ALWAYS", LDAP_DEREF_ALWAYS, CONST_PERSISTENT | CONST_CS); | |
+ /* Constants to be used with ldap_modify_batch() */ | |
+ REGISTER_LONG_CONSTANT("LDAP_MODIFY_BATCH_ADD", LDAP_MODIFY_BATCH_ADD, CONST_PERSISTENT | CONST_CS); |
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
Slowly but surely, the gist became difficult to maintain. The game data have moved to: | |
https://github.com/RavuAlHemio/sourcemod-beta-gamedata |
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
diff -r 6ce275678a11 gamedata/sm-tf2.games.txt | |
--- a/gamedata/sm-tf2.games.txt Fri Mar 29 13:10:51 2013 -0700 | |
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000 | |
@@ -1,141 +0,0 @@ | |
-/** | |
- * Do not edit this file. Any changes will be overwritten by the gamedata | |
- * updater or by upgrading your SourceMod install. | |
- * | |
- * To override data in this file, create a subdirectory named "custom" and | |
- * place your own gamedata file(s) inside of it. Such files will be parsed |
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
# Maintainer: speps <speps at aur dot archlinux dot org> | |
_name=lua-lgi | |
pkgname=$_name-git | |
pkgver=20130410 | |
pkgrel=1 | |
pkgdesc="Lua binadings for gnome/gobject using gobject-introspection library." | |
arch=(i686 x86_64) | |
url="https://github.com/pavouk/lgi" | |
license=('custom:MIT') |
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
# Generated using nm libc.a | grep " T " | awk '{ print $3 }' | |
a64l | |
abort | |
abs | |
access | |
__adjust | |
__aeabi_atexit | |
__aeabi_memclr | |
__aeabi_memclr4 | |
__aeabi_memclr8 |
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
/* on Linux, compile me with: gcc -shared -o foreach.so foreach.c */ | |
#include <stddef.h> | |
typedef wchar_t (*transform_wct)(wchar_t); | |
void foreachwchar(wchar_t *cs, transform_wct func) | |
{ | |
while (cs[0] != L'\0') | |
{ |
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
diff --git a/src/Engine-Tests/MessageBuilderTests.cs b/src/Engine-Tests/MessageBuilderTests.cs | |
index 0389d3b..0d7b542 100644 | |
--- a/src/Engine-Tests/MessageBuilderTests.cs | |
+++ b/src/Engine-Tests/MessageBuilderTests.cs | |
@@ -434,5 +434,24 @@ namespace Smuxi.Engine | |
builder.Append(new TextMessagePartModel(@". This is another sentence.")); | |
TestMessage(msg, builder.ToMessage()); | |
} | |
+ | |
+ [Test] |
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 python2 | |
# Gresenter: the two-window PDF presentation viewer | |
# One window: presentation (projector) | |
# Other window: presentation and notes (two different PDF files) side by side | |
# (laptop screen) | |
# | |
# Released into the public domain. | |
# http://creativecommons.org/publicdomain/zero/1.0/ | |
from gi.repository import Gtk, Gdk, Poppler, Pango |
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
/** | |
* Simulates the frequency oscillation in a broken tape deck or damaged tape | |
* using SoundTouch and SoX. | |
* | |
* Released into the public domain. | |
* http://creativecommons.org/publicdomain/zero/1.0/ | |
*/ | |
#include <string> |