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/bash | |
me=`basename "$0"` | |
## i.e. mkgif Untitled.mov 640x360 20 2d.gif -vf "hflip,vflip" | |
usage="Usage: $me INFILE WxH FPS OUTFILE ffmpeg_opts.." | |
if [ -z "$1" ] | |
then | |
echo "No input file supplied." |
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 libakasakacore vPGP bundle | |
// @namespace libakasakacore | |
// @description by popular demand, ported to FFox by Genjitsu Gadget Lab team | |
// @include *://vk.com/* | |
// @version 1 | |
// @grant GM_addStyle | |
// ==/UserScript== | |
function addJS_Node (text, s_URL, funcToRun, runOnLoad) { |
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 Pikabu Haruhiism | |
// @namespace http://ryuunosuke.me/ | |
// @version 0.1 | |
// @description thx to http://pikabu.ru/story/pechenki_po_suzumiya_haruhi_no_yuuutsu_3559752#comments | |
// @author Akasaka Ryuunosuke | |
// @match http://pikabu.ru/* | |
// @grant none | |
// ==/UserScript== |
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
// | |
// NSArray+pull.h | |
// Drunk | |
// | |
// Created by Akasaka Ryuunosuke on 08/07/15. | |
// Copyright (c) 2015 Akasaka Ryuunosuke. All rights reserved. | |
// | |
#ifndef Drunk_NSArray_pull_h | |
#define Drunk_NSArray_pull_h |
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/python | |
# -*- coding: utf-8 -*- | |
# v 0.1.3 | |
# | |
# __ ___ _ __ __ | |
# / |/ /___ (_)___/ /___ ____ / / ___ _ ___ | |
# / /|_/ // -_)/ // _ // _ \/ __// _ \/ _ `// _ \ | |
# /_/ /_/ \__//_/ \_,_/ \___/\__//_//_/\_,_//_//_/ | |
# |
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/bash | |
# Work Off! | |
# Disable annoying "Install a new update to iWork but first install our crap update to your OS" etc in iWork | |
# by akasaka, 2014 | |
echo QUIT IWORK BEFORE CONTINUING | |
echo QUIT IWORK BEFORE CONTINUING | |
echo QUIT IWORK BEFORE CONTINUING | |
echo QUIT IWORK BEFORE CONTINUING |
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
@font-face { | |
font-family: 'keyrus'; | |
src: url('http://vladkorotnev.me/keyrus.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */ | |
} | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_tab, #rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_out, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs, | |
#rb_box_fc_peer[YOUR_PSV_NUMERIC_ID] .fc_msgs_unread { | |
background: #000 !important; | |
} |
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/python | |
# -*- coding: utf-8 -*- | |
#return | |
# Dependencies | |
import vk_api, datetime | |
from vk_api import upload | |
import pdb | |
import json, urllib, random, uuid, os | |
from BeautifulSoup import BeautifulStoneSoup |
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
// Grab Ufanet Camera Streams | |
// By Akasaka Ryuunosuke | |
// 2014/03/01 | |
var cameras = ''; var k = ''; | |
for(var key in layouts) { if(key.substr(0,4) == 'cctv') k=key; } | |
for(var i in layouts[k]._layers) { | |
var cam = layouts[k]._layers[i]; | |
var url = "http://"+cam.server+"/"+cam.number+"/index.m3u8?token=maps&autoPlay=true"; |
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
IM.addMsgOrig=IM.addMsg; | |
// copy addMsg | |
IM.sendSys = function (msg, sendPeer) { | |
peer = sendPeer; | |
var peerTab = cur.tabs[peer]; | |
var msg_id = --peerTab.sent, | |
params = {act: 'a_send', to: peer, hash: peerTab.hash, msg: msg, title: "", ts: cur.ts}, |