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/lib/buildit b/lib/buildit | |
index f44d673..d43807d 100755 | |
--- a/lib/buildit | |
+++ b/lib/buildit | |
@@ -91,7 +91,7 @@ case $TRIPLE in | |
done | |
;; | |
esac | |
-$CC *.o $RC_CFLAGS $LDSHARED_FLAGS $EXTRA_FLAGS | |
+ar cru libc++abi.a *.o |
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
// ==UserScript== | |
// @name greasemonkey-appc-coverage | |
// @namespace https://github.com/ | |
// @description GitHub Code Coverage Heat Map (using Greasemonkey) | |
// @include https://github.com/* | |
// @grant GM_xmlhttpRequest | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js | |
// ==/UserScript== | |
// Make sure jQuery is in the scope |
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
// ==UserScript== | |
// @name greasemonkey-appc-coverage | |
// @namespace https://github.com/ | |
// @description GitHub Code Coverage Heat Map (using Greasemonkey) | |
// @include https://github.com/* | |
// @grant GM_xmlhttpRequest | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js | |
// ==/UserScript== | |
// Make sure jQuery is in the scope |
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
// ==UserScript== | |
// @name GitHub Blob Widescreen | |
// @namespace https://github.com | |
// @include https://github.com/*/blob/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
var style = document.createElement("style"); | |
style.type = "text/css"; | |
style.innerHTML = ".blob-wrapper .blob-code, .blob-wrapper .blob-num { \ |
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
#!/bin/sh | |
#Auto scan and set unused Wifi channel for Phantom 3 Standard / 4K | |
#Author : Gary Kan | |
#Date : 20/06/2016 | |
#Version 1.1 | |
# 1) Add new user argument option | |
# -ch for set channel number, eg. -ch 13 | |
# -booster will limit RC tx power to 20DBM, to protect your external booster | |
# 2) Add Restart udhcp and apsvr | |
# 3) Some Minor tweak |
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
function traverseReplace(find, replace, object, dest) { | |
Object.keys(opts).forEach(function (key) { | |
var copy = object[key]; | |
key = key.replace(find, replace); | |
if (typeof copy === 'object') { | |
dest[key] = {}; | |
return traverseReplace(find, replace, copy, dest[key]); | |
} | |
if (typeof copy === 'string') { | |
dest[key] = copy.replace(find, replace); |
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
FROM java:7 | |
RUN mkdir /opt/aem/ | |
WORKDIR /opt/aem/ | |
EXPOSE 4502 | |
ADD ./AEM_6.1_Quickstart.jar /opt/aem/AEM_6.1_Quickstart.jar | |
ADD ./license.properties /opt/aem/license.properties | |
RUN java -jar AEM_6.1_Quickstart.jar -unpack -v |
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 node | |
const path = require('path'); | |
const fs = require('fs'); | |
const _ = require('lodash'); | |
let p = (...args) => path.join.apply(this, [__dirname, '..', ...args]); | |
const NODE_MODULES_DIR = p('node_modules'); | |
const NODE_MODULES_COMPARE_DIR = p('node_modules.bk'); | |
const MANIFEST = require(p('package.json')); |
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
version: '3' | |
services: | |
web: | |
image: 'gitlab/gitlab-ce:latest' | |
restart: always | |
hostname: 'gitlab.example.com' | |
environment: | |
GITLAB_OMNIBUS_CONFIG: | | |
external_url 'https://gitlab.example.com' | |
nginx['listen_port'] = 80 |
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
# docker-compose.yml | |
... | |
command: npm run debug | |
ports: | |
- "3000:3000" | |
- "9229:9229" | |
... | |
-------------------------------------------------------- |
OlderNewer