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
// ==UserScript== | |
// @name CoinBrawlAutomaton | |
// @description Вкачиваем натыренное золото по статам | |
// @author Gourytch | |
// @license WTFPL | |
// @version 1.1 | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js | |
// @include https://coinbrawl.com/* | |
// @include https://www.coinbrawl.com/* | |
// @grant GM_getValue |
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
// ==UserScript== | |
// @name HFCalc | |
// @description Подсчёт текущей профитности майнинга по истории | |
// @author Gourytch | |
// @license WTFPL | |
// @version 1.1 | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js | |
// @include https://hashflare.io/panel/history | |
// ==/UserScript== | |
(function (window, undefined) { |
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
// | |
// lazy quick-and-dirty solution for UNIGINE class | |
// made as an object for procrastination. | |
// about 4..5 hours of holiday was spent | |
// tested on g++ | |
// usage: | |
// freqs infile1 [...] outfile | |
// # build dictionary | |
// # from words in all input files | |
// # and write result to output file |
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
# file: /etc/apt/sources.list | |
# note: for Debian 8 Jessie | |
############################### | |
deb http://deb.debian.org/debian jessie main contrib non-free | |
deb-src http://deb.debian.org/debian jessie main contrib non-free | |
deb http://deb.debian.org/debian jessie-updates main contrib non-free | |
deb-src http://deb.debian.org/debian jessie-updates main contrib non-free | |
deb http://deb.debian.org/debian jessie-backports main contrib non-free | |
deb-src http://deb.debian.org/debian jessie-backports main contrib non-free | |
deb http://deb.debian.org/debian jessie-backports-sloppy main contrib non-free |
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/env python2.7 | |
import subprocess | |
import threading | |
import re | |
import tempfile | |
import os | |
tmpdir = tempfile.mkdtemp() | |
luafile = tmpdir + "/dump.lua" |
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
///////////////////////////////////////////////////////////////////////////////////////////////////////// | |
// | |
// LIVEMAP_REFORMATTED.JS | |
// SOURCE: http://map.playrust.io/js/rustio/livemap.js | |
// FORMAT: http://jsbeautifier.org/ | |
// | |
///////////////////////////////////////////////////////////////////////////////////////////////////////// | |
function initLiveMap() { | |
$('#signin').click(function() { |
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
// ==UserScript== | |
// @name FBCBot | |
// @namespace https://localhost/fbcbot | |
// @description freebitco.in bot | |
// @include https://freebitco.in/* | |
// @version 1 | |
// @grant none | |
// @noframes | |
// @run-at document-idle | |
// ==/UserScript== |
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> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="description" content="80x24 screen editor" /> | |
<title>80x24 screen editor</title> | |
<style type="text/css"> | |
@font-face { | |
font-family: "webfix"; |
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
#! /bin/bash | |
master_container="$HOME/Dropbox/.safe" | |
master_mountpoint="$HOME/safe" | |
keyfile="$HOME/.keys/encfs-safe" | |
mount_master() { | |
echo "* mounting master cryptocontainer..." | |
if [ ! -d "$master_container" ] |
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
package main | |
import ( | |
"bytes" | |
"fmt" | |
"io" | |
"net/http" | |
"time" | |
) |