- For gnome session:
$ gsettings set org.gnome.desktop.peripherals.touchpad click-method fingers
line_profiler https://github.com/rkern/line_profiler
pyinstrument https://pypi.python.org/pypi/pyinstrument/0.12
import json | |
import re | |
import requests | |
projects = [ | |
'tripleo-heat-templates', | |
'tripleo-common', | |
'tripleo-puppet-elements', | |
'puppet-tripleo', | |
] |
#!/usr/bin/env python | |
from github import Github | |
from getpass import getpass | |
USERNAME = raw_input("GitHub username: ") | |
PASSWORD = getpass() | |
ORGS = ("openstack", "stackforge", "openstack-dev", "openstack-infra") | |
g = Github(USERNAME, PASSWORD) |
open Mirage | |
let stack = generic_stackv4 default_network | |
let cond = conduit_direct stack | |
let http_srv = http_server @@ cond | |
let res_dns = resolver_dns stack |
from __future__ import print_function | |
import hexchat | |
__module_name__ = "keep_dialogs" | |
__module_author__ = "ansiwen" | |
__module_version__ = "1" | |
__module_description__ = "Saves current dialogs for next start" | |
def unload_cb(userdata): | |
networks = {} |
import ( | |
"fmt" | |
"math" | |
"strings" | |
) | |
func printGammaTable(start, end int, gamma float64) { | |
g_s := strings.ReplaceAll(fmt.Sprintf("%1.1f", gamma), ".", "_") | |
fmt.Printf("\nconst uint8_t PROGMEM gamma_%s_%dto%d_table[] = {\n", g_s, start, end) | |
for x := 0; x < 256; x++ { |
// Use if you want to force the software SPI subsystem to be used for some reason (generally, you don't) | |
// #define FASTLED_FORCE_SOFTWARE_SPI | |
// Use if you want to force non-accelerated pin access (hint: you really don't, it breaks lots of things) | |
// #define FASTLED_FORCE_SOFTWARE_SPI | |
// #define FASTLED_FORCE_SOFTWARE_PINS | |
#include <FastLED.h> | |
#include "rgbw.h" | |
// How many leds are in the strip? | |
#define NUM_LEDS 300 |
local hotkey = require "hs.hotkey" | |
local window = require "hs.window" | |
local spaces = require "hs._asm.undocumented.spaces" | |
function getGoodFocusedWindow(nofull) | |
local win = window.focusedWindow() | |
if not win or not win:isStandard() then return end | |
if nofull and win:isFullScreen() then return end | |
return win | |
end |