$ gsettings set org.gnome.desktop.peripherals.touchpad click-method areas
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
{ | |
"editor.fontSize": 12, | |
"editor.renderWhitespace": "all", | |
"editor.minimap.enabled": false, | |
"files.trimTrailingWhitespace": true, |
You might want to read this to get an introduction to armel vs armhf.
If the below is too much, you can try Ubuntu-ARMv7-Qemu but note it contains non-free blobs.
First, cross-compile user programs with GCC-ARM toolchain. Then install qemu-arm-static
so that you can run ARM executables directly on linux
If there's no qemu-arm-static
in the package list, install qemu-user-static
instead
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
#Day 20: Firewall Rules | |
#http://adventofcode.com/2016/day/20 | |
def getInput(): | |
with open('input.txt', 'r') as f: | |
return f.readlines() | |
def solvePart1(): | |
ipsBlocked = sorted([list(map(int, x.rstrip().split('-'))) for x in getInput()], key = lambda x:x[0]) | |
lowestIP = 0 |