I hereby claim:
- I am blole on github.
- I am blole (https://keybase.io/blole) on keybase.
- I have a public key ASDhq7kfTFhradO2VbCY3qLjnWdYVypjVqomTbzmku7VGAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Connect a local CrashPlanDesktop to a remote CrashPlanService. | |
# Practically an automation of the steps to open an ssh tunnel and | |
# modifying .ui_info as described in | |
# https://support.code42.com/CrashPlan/4/Configuring/Using_CrashPlan_On_A_Headless_Computer | |
# | |
# | |
# For use from a windows computer with cygwin. Must be run with | |
# admin rights because the .ui_info file must be admin owned. |
#!/usr/bin/env python2 | |
import os | |
import gym | |
import sys | |
import random | |
import itertools | |
from time import time | |
from copy import copy | |
from math import sqrt, log |
#!/usr/bin/env python2 | |
# | |
# Schulze non-proportional ordering of the Eurovision 2016 final results. | |
# data from http://eurovisionworld.com/?eurovision=2016 | |
from pyvotecore.schulze_npr import SchulzeNPR | |
def transpose(matrix): | |
return map(list, zip(*matrix)) |
##Make win10 taskbar buttons Never combine, hide labels
Normally, this option isn't available, and the valid options for how the taskbar button should behave are:
option | registry value | hide bit | combine bit |
---|---|---|---|
Never combine | 2 | 0 | 0 |
Combine when taskbar is full | 1 | 0 | 1 |
Always combine, hide labels | 0 | 1 | 1 |
These options are set in Taskbar and Start Menu Properties
, accessible by right clicking the taskbar and selecting Properties.