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
From 16fb4aa41e1ac236cf1f57747b70ab650292658d Mon Sep 17 00:00:00 2001 | |
From: =?UTF-8?q?=E5=B0=8F=E5=A4=AA?= <[email protected]> | |
Date: Thu, 4 Aug 2016 21:55:53 +1000 | |
Subject: [PATCH] Hack in C++ support | |
Also via a unusual method to update the musl version without creating a huge | |
diff that give won't accept. | |
musl needed to be updated because libc++ depends on a newer one than the one | |
provided. |
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
#!/usr/bin/python3 | |
import argparse, sys | |
import apt | |
import networkx as nx | |
parser = argparse.ArgumentParser( | |
description = "Find top-level packages of the dependency graph" | |
) | |
parser.add_argument( |
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
#!/usr/bin/nodejs | |
"use strict"; | |
require("prfun/smash"); | |
const co = require("co"); | |
const execFile = Promise.guard( | |
require("os").cpus().length + 1, | |
(cmd, args) => require("mz/child_process").execFile(cmd, args, {maxBuffer: 100 * 1024 * 1024}) | |
); | |
const fs = require("mz/fs"); |
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 examineMiddlewares(middlewares) { | |
"use strict"; | |
let results = []; | |
for (let middleware of middlewares) { | |
let script = %FunctionGetScript(middleware); | |
let position = %FunctionGetScriptSourcePosition(middleware); | |
let line = script.source.slice(0, position).split("\n").length - 1; | |
let source = %FunctionGetSourceCode(middleware); |
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
let printoutHeight = 18; // In centimetres | |
function xpath(node, path) { | |
let elems = document.evaluate(path, node, null, XPathResult.ANY_TYPE, null); | |
let elem; | |
let result = []; | |
while (elem = elems.iterateNext()) | |
result.push(elem); | |
return result; |
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 <nmmintrin.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
int main() { | |
for (uint64_t i = 0; i < 0x100000000ULL; ++i) | |
if (_mm_crc32_u32(0, i) == i) | |
printf("%08x\n", (uint32_t)i); | |
return 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
<!DOCTYPE html> | |
<section> | |
<input type="file" id="input" /> | |
<input type="number" id="maxWidth" /> × <input type="number" id="maxHeight" /> | |
<button onclick="convert()">Convert</button> | |
</section> | |
<section><pre id="output"></pre></section> | |
<section><img id="outputImage"></pre></section> | |
<script type="application/javascript"> | |
function convert() { |
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 <sys/socket.h> | |
#include <netinet/in.h> | |
#include <unistd.h> | |
#include <string.h> | |
int main() { | |
int listenfd = socket(AF_INET, SOCK_STREAM, 0); | |
setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, &(int){ 1 }, sizeof(int)); | |
struct sockaddr_in servaddr; |
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
#define _GNU_SOURCE | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <string.h> | |
#include <linux/perf_event.h> | |
#include <sched.h> | |
#include <sys/syscall.h> | |
#include <sys/wait.h> | |
#include <unistd.h> |
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
/** | |
* Room Avatar Commands | |
**/ | |
function fakeUnrecognized() { | |
var fullCmd = this.namespaces.concat(this.cmd).join(' '); | |
if (this.cmdToken === '!') { | |
return this.errorReply("The command '" + this.cmdToken + fullCmd + "' was unrecognized."); | |
} | |
return this.errorReply("The command '" + this.cmdToken + fullCmd + "' was unrecognized. To send a message starting with '" + this.cmdToken + fullCmd + "', type '" + this.cmdToken.repeat(2) + fullCmd + "'."); | |
} |