Click here to install. Firefox users should install Scriptish first.
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
C:/Users/Rossy/AppData/Local/SMPlayer2/mplayer2-i386.exe -noquiet -v -nomouseinput -sub-fuzziness 1 -identify -slave -vo gl3:srgb:lscale=lanczos3:cscale=lanczos2 -ao dsound -nokeepaspect -priority realtime -framedrop -dr -double -wid 524694 -monitorpixelaspect 1 -subcp UTF-8 -subpos 100 -volume 100 -nocache -osdlevel 0 -vf-add screenshot -noslices -channels 6 -format s24le D:/Rossy/itunes/compare.avs | |
MPlayer2 d44435a (C) 2000-2012 MPlayer Team | |
built 2012-02-23 on Patchouli (running openSUSE 12.1 (x86_64) 'Asparagus') | |
CPU vendor name: GenuineIntel max cpuid level: 11 | |
CPU: Intel(R) Core(TM) i5 CPU 650 @ 3.20GHz (Family: 6, Model: 37, Stepping: 2) | |
extended cpuid-level: 8 | |
extended cache-info: 16801856 |
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
function srgb2lrgb(r, g, b) | |
{ | |
if (r instanceof Array) | |
{ | |
b = r[2]; | |
g = r[1]; | |
r = r[0]; | |
} | |
return [ |
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
pre.prettyprint .str { color: #859900 !important; } | |
pre.prettyprint .kwd { color: #268bd2 !important; } | |
pre.prettyprint .com { color: #cb4b16 !important; font-style: italic; } | |
pre.prettyprint .typ { color: #2aa198 !important; } | |
pre.prettyprint .lit { color: #dc322f !important; } | |
pre.prettyprint .pun { color: #2aa198 !important; } | |
pre.prettyprint .pln { color: #839496 !important; } | |
pre.prettyprint .tag { color: #6c71c4 !important; } | |
pre.prettyprint .atn { color: #268bd2 !important; } | |
pre.prettyprint .atv { color: #2aa198 !important; } |
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
#include <stdio.h> | |
void sayHello(void (*log)(char*)) | |
{ | |
log("Hello, world!"); | |
} | |
int main(int argc, char** argv) | |
{ | |
void log(char* message) |
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
#!/system/xbin/sh | |
cd /data/local/arch | |
echo rainbow > /proc/sys/kernel/hostname | |
if ! mountpoint -q dev; then | |
mount -t proc /proc proc | |
mount -t sysfs sysfs sys | |
mount -o bind /dev dev |
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
Show hidden characters
{ | |
"show_output_panel": false, | |
"dont_prepend_clang_includes": true, | |
"additional_language_options": | |
{ | |
"c++" : | |
[ | |
"-std=gnu++11", | |
"-isystem", "C:\\cygwin\\usr\\i686-w64-mingw32\\sys-root\\mingw\\include\\c++\\4.8.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
require("child_process").spawn( | |
"montage", | |
require("fs") | |
.readdirSync(".") | |
.map(function(a) { | |
return a.match(/^.*_Tile_([-\d]{3})_([-\d]{3})_LOD0\.dds$/); | |
}) | |
.filter(function(a) { return a; }) | |
.sort(function(a, b) { | |
var x1 = Number(a[1]), |
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
#include <windows.h> | |
#include <wchar.h> | |
#define LOAD_LIBRARY_SEARCH_SYSTEM32 (0x00000800) | |
HMODULE loadlibrary_system(const wchar_t* name) | |
{ | |
/* If running on Windows 8 or a system with KB2533623, LoadLibraryEx with | |
LOAD_LIBRARY_SEARCH_SYSTEM32 does the right thing */ | |
if (GetProcAddress(GetModuleHandleW(L"kernel32.dll"), "AddDllDirectory")) |
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
#include <inttypes.h> | |
#include <stdio.h> | |
static uint64_t get_interrupt_time() | |
{ | |
const void* const shared_user_data = (void*)0x7ffe0000; | |
const volatile struct { | |
uint32_t low; | |
uint32_t high1; | |
uint32_t high2; |
OlderNewer