I hereby claim:
- I am kyuucr on github.
- I am kyuucr (https://keybase.io/kyuucr) on keybase.
- I have a public key whose fingerprint is 46EB 218B 35A1 809F 1FF8 2044 2B46 267C 0DA7 C4FA
To claim this, I am signing this object:
for i in */; do zip -r "${i%/}.zip" "$i"; done |
{ | |
"folders": | |
[ | |
{ | |
"path": "ns-3-dev-lbt", | |
"folder_exclude_patterns": [".git", ".hg", ".waf*", "build"], | |
"follow_symlinks": true | |
} | |
], | |
"settings": |
{ | |
"windows": { | |
"shell_cmd": "bash -c \"./waf build\"" | |
}, | |
"linux": { | |
"shell_cmd": "./waf build" | |
}, | |
"file_patterns": ["*.cc", "*.h"], | |
"working_dir": "$folder", | |
"variants": [ |
// ==UserScript== | |
// @name Steam Fast Sell | |
// @include http*://steamcommunity.com/profiles/*/inventory* | |
// @include http*://steamcommunity.com/id/*/inventory* | |
// @description Fast sell Steam items with current price | |
// @version 2 | |
// @updateURL https://gist.github.com/kyuucr/84c2d99ea09a65fc904a6e40358171c2/raw/steam-fast-sell.user.js | |
// @namespace kyuucr-steam-fast-sell | |
// ==/UserScript== | |
// |
// ==UserScript== | |
// @name Twitch bottom chat | |
// @namespace kyuucr-twitch-bottom-chat | |
// @description Set video top and chat on bottom, useful for vertical monitor setup. | |
// @include https://www.twitch.tv/* | |
// @exclude https://www.twitch.tv | |
// @exclude https://www.twitch.tv/directory* | |
// @exclude https://www.twitch.tv/messages* | |
// @exclude https://www.twitch.tv/subscription* | |
// @exclude https://www.twitch.tv/settings* |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
import re | |
filename = './MES/OPEN_1.MES' | |
with open(filename, 'rb') as f: | |
content = f.read() | |
# get lines from bytes start marker 0xBA 0x23-25 to end marker 0xBA 0x26 | |
# 0x23 == cole, 0x24 == doc, 0x25 == jack(?) | |
results = re.findall(br'(\xBA[\x23-\x25].*?)\xBA\x26', content) |
--- src/wizardpen.c.orig 2014-05-10 02:20:43.040405929 +0800 | |
+++ src/wizardpen.c 2014-05-10 02:19:56.852518688 +0800 | |
@@ -836,6 +836,7 @@ | |
} | |
} | |
+ dev->proximity = NULL; | |
if (InitProximityClassDeviceStruct (dev) == FALSE) | |
{ | |
xf86Msg(X_ERROR, "%s: unable to allocate ProximityClassDeviceStruct\n", local->name); |
{ | |
"esnext": true, | |
"undef": true, | |
"unused": "vars", | |
"predef": [ "imports", "global" ] | |
} |
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- | |
const Lang = imports.lang; | |
const Mainloop = imports.mainloop; | |
const Meta = imports.gi.Meta; | |
const Shell = imports.gi.Shell; | |
const Main = imports.ui.main; | |
const Me = imports.misc.extensionUtils.getCurrentExtension(); |