Skip to content

Instantly share code, notes, and snippets.

@kyuucr
kyuucr / steam-fast-sell.user.js
Last active December 26, 2021 11:50
Fast sell Steam inventory items for the lowest market price
// ==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==
//
@kyuucr
kyuucr / twitch-bottom-chat.user.js
Last active December 1, 2021 22:44
Simple script to modify a Twitch channel so the video will be on top and the chat on bottom, useful for vertical monitor setup. Currently only for theater mode.
// ==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*
for i in */; do zip -r "${i%/}.zip" "$i"; done
@kyuucr
kyuucr / ns-3.sublime-project
Created December 18, 2018 23:31
Sublime project file for ns-3, build system included
{
"folders":
[
{
"path": "ns-3-dev-lbt",
"folder_exclude_patterns": [".git", ".hg", ".waf*", "build"],
"follow_symlinks": true
}
],
"settings":
@kyuucr
kyuucr / ns-3.sublime-build
Created December 15, 2018 06:12
Sublime Text build system for ns-3
{
"windows": {
"shell_cmd": "bash -c \"./waf build\""
},
"linux": {
"shell_cmd": "./waf build"
},
"file_patterns": ["*.cc", "*.h"],
"working_dir": "$folder",
"variants": [

Keybase proof

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:

@kyuucr
kyuucr / ntust-dormweb-indicator.py
Last active December 15, 2015 03:39
This is an Ubuntu Unity Indicator to track your Dorm internet usage in NTUST. Added manual update quota, changed html parser. Written on Python 2.7
#!/usr/bin/env python
# -*- coding: utf8 -*-
import appindicator
import bs4
import datetime
import glib
import gtk
import logging
import pynotify
@kyuucr
kyuucr / mes-decrypt.py
Last active November 16, 2015 06:36
MES file text extractor from Dead of the Brain (PC-9801, 1992)
#!/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)
@kyuucr
kyuucr / gist:2667195
Created May 12, 2012 15:37
Android - Hide context menu on certain ListView item.
public class ExampleActivity extends ListActivity {
[...]
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
[...]
@kyuucr
kyuucr / gist:2658573
Created May 11, 2012 09:14
Android - Finish activity with result
Intent data = new Intent();
[...]
if (getParent() == null) {
setResult(Activity.RESULT_OK, data);
} else {
getParent().setResult(Activity.RESULT_OK, data);
}
finish();