most of these require logout/restart to take effect
# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
# Set a shorter Delay until key repeat| (* To the extent possible under law, Rob Mayoff has waived all copyright and related or neighboring rights to “AppleScript to make Google Chrome open/reload a URL”. This work is published from: United States. https://creativecommons.org/publicdomain/zero/1.0/ *) | |
| tell application "Google Chrome" | |
| activate | |
| set theUrl to "http://tycho.usno.navy.mil/cgi-bin/timer.pl" | |
| if (count every window) = 0 then | |
| make new window | |
| end if | |
| set found to false |
| XVFB=/usr/bin/Xvfb | |
| XVFBARGS=":1 -screen 0 1024x768x24 -ac +extension GLX +render -noreset" | |
| PIDFILE=/var/run/xvfb.pid | |
| case "$1" in | |
| start) | |
| echo -n "Starting virtual X frame buffer: Xvfb" | |
| start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS | |
| echo "." | |
| ;; | |
| stop) |
| # dont do this | |
| this_function_name(foo, bar | |
| baz) | |
| # do this | |
| cramers_version( | |
| foo, bar, baz) | |
| # allow this | |
| cramers_version(foo, bar, |
| #!/usr/bin/python | |
| """A little script to recover deleted recording of a mongoDB db file | |
| There's no optimization but it work and has saved me | |
| """ | |
| import struct | |
| import bson | |
| import pymongo |
| sub vcl_deliver { | |
| # ----- snip ----- | |
| # Set a cookie with the experiment group sequence, if the client didn't | |
| # already have the cookie and provided it in the request, and if the origin | |
| # hasn't already set it. Use `setcookie.get_value_by_name` to handle the | |
| # cases when the backend sets multiple cookies. | |
| # Only do this on the edge nodes, not the origin shield, otherwise the edge | |
| # nodes will see a response with a `Set-Cookie` header and not cache it. |