I hereby claim:
- I am choiz on github.
- I am choiz (https://keybase.io/choiz) on keybase.
- I have a public key ASCN8WTF03HwRKF6j3AZxd1zBHJZXg4TOpKwzbflnUGhhAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Save this file (after modifying ID_VENDOR and ID_MODEL if necessary) as /etc/udev/rules.d/81-thinkpad-dock.rules | |
# These values seem to work for "ThinkPad Mini Dock Plus Series 3" | |
SUBSYSTEM=="usb", ACTION=="add|remove", ENV{ID_VENDOR}=="17ef", ENV{ID_MODEL}=="100a", RUN+="/etc/sbin/thinkpad-dock.sh" |
firewall { | |
all-ping enable | |
broadcast-ping disable | |
ip-src-route disable | |
log-martians enable | |
name WAN_IN { | |
default-action drop | |
description "WAN to internal" | |
rule 10 { | |
action accept |
# remove all docker in `docker ps -a` | |
docker rm `docker ps -a|tail -n+2|cut -d ' ' -f1` | |
# Delete all containers | |
docker rm -f $(docker ps -a -q) | |
# Delete all images | |
docker rmi -f $(docker images -q) |
Adyen Test Card Numbers | |
These cards are only valid on our TEST system and they will never involve any actual transaction or transfer of funds. The TEST card numbers will not work on the Adyen LIVE Platform. | |
For all cards use the following expiration and CVV2/CVC2/or CID for Amex. | |
For all cards: | |
Expiration Dates CVV2 / CVC3 CID (American Express) | |
06/2016 OR 08/2018 737 7373 |
#!/bin/bash | |
# | |
# .git/hooks/commit-msg | |
# | |
# Last modified 2016-01-21 | |
# François LASSERRE <[email protected]> | |
current_branch=`git rev-parse --abbrev-ref HEAD` | |
sed -i bak -e "1s/^/${current_branch} /" $1 |
#!/bin/sh | |
# Add mode 1080p on Gentoo for Dell optiplex 3020 | |
# to get the values use: gtf 1920 1080 60 | |
# 1920x1080 @ 60hz | |
xrandr --newmode "1920" 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync | |
xrandr --addmode VGA1 1920 | |
xrandr --output HDMI1 --off --output VIRTUAL1 --off --output DP1 --mode 1920x1080 --pos 0x0 --rotate normal --output VGA1 --mode 1920 --pos 1920x0 --rotate normal | |
# on "xrandr: Configure crtc 0 failed" change to 50hz | |
# gtf 1920 1080 50 |