Made possible with this reddit post.
wine regedit wine-breeze-dark.reg
wine regedit wine-reset-theme.reg
deb http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse | |
# deb-src http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse | |
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse | |
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse |
// This function matches all non-ASCII characters after splitting the string in a "unicode-safe" way (using `[...str]`). | |
// It then splits each unicode character up into its code-points, and gets the escape code for each, and then joins all | |
// all the ASCII characters and Unicode escapes into one string. | |
function escapeUnicode(str) { | |
return [...str].map(c => /^[\x00-\x7F]$/.test(c) ? c : c.split("").map(a => "\\u" + a.charCodeAt().toString(16).padStart(4, "0")).join("")).join(""); | |
} | |
// Based on discussion in this thread: https://gist.github.com/mathiasbynens/1243213 |
Made possible with this reddit post.
wine regedit wine-breeze-dark.reg
wine regedit wine-reset-theme.reg
#!/usr/bin/env python3 | |
from collections import namedtuple | |
import struct | |
import Xlib.display | |
class Edid: | |
# Modified from the original source: https://github.com/jojonas/pyedid/blob/master/edid.py |
#!/usr/bin/env python3 | |
import logging | |
import re | |
import shlex | |
import time | |
from argparse import ArgumentParser | |
from functools import reduce | |
from math import sqrt | |
from os import path, devnull as DEVNULL |
pragma solidity ^0.4.24; | |
contract ECDSA { | |
function verify() public returns (bool) { | |
bytes32 message = ethMessageHash("TEST"); | |
bytes memory sig = hex"bceab59162da5e511fb9c37fda207d443d05e438e5c843c57b2d5628580ce9216ffa0335834d8bb63d86fb42a8dd4d18f41bc3a301546e2c47aa1041c3a1823701"; | |
address addr = 0x999471bb43b9c9789050386f90c1ad63dca89106; |
# coding=utf-8 | |
import json | |
import time | |
from subprocess import check_output, CalledProcessError | |
class WHO: | |
FROM_ME = "key_from_me == 1" | |
OTHERS = "key_from_me != 1" | |
ALL = "" |
cue_file = 'file.cue' | |
d = open(cue_file).read().splitlines() | |
general = {} | |
tracks = [] | |
current_file = None |
[options] | |
# | |
# WARNING: | |
# If you use the Odoo Database utility to change the master password be aware | |
# that the formatting of this file WILL be LOST! A copy of this file named | |
# /etc/odoo/openerp-server.conf.template has been made in case this happens | |
# Note that the copy does not have any first boot changes | |
#----------------------------------------------------------------------------- | |
# Odoo Server Config File - TurnKey Linux |
#!/usr/bin/env python | |
# Copyright (c) 2017 Kurt Jacobson | |
# License: https://kcj.mit-license.org/@2017 | |
import cairo | |
import gi | |
gi.require_version('Gtk', '3.0') | |
gi.require_version('Gdk', '3.0') |