I hereby claim:
- I am theneubeck on github.
- I am theneubeck (https://keybase.io/theneubeck) on keybase.
- I have a public key ASCrXznT1rvxN6fmYrUsxNbLmPjY87NhZRLIk-t8LAKaXAo
To claim this, I am signing this object:
| "use strict"; | |
| function pn(number) { | |
| const str = number.toString(); | |
| const chunks = ["SEK"]; | |
| for (let i = 0; i < str.length; i += 3) { | |
| chunks.unshift(str.substring(str.length - i - 3, str.length - i)); | |
| } | |
| return chunks.join(" "); |
| #!/usr/bin/env bash | |
| echo "Hej" | |
| function cleanup { | |
| kill $pid1 | |
| kill $pid2 | |
| exit | |
| } | |
| trap cleanup SIGHUP SIGINT SIGTERM |
I hereby claim:
To claim this, I am signing this object:
| var list = [ | |
| "http://expressen.se/rss/nyheter", | |
| "http://gt.se/rss/nyheter", | |
| "http://kvp.se/rss/nyheter", | |
| "http://expressen.se/rss/sport", | |
| "http://expressen.se/rss/noje", | |
| "http://expressen.se/rss/debatt", | |
| "http://expressen.se/rss/ledare", | |
| "http://expressen.se/rss/kultur", | |
| "http://expressen.se/rss/ekonomi", |
| import time | |
| import BaseHTTPServer | |
| HOST_NAME = 'localhost' | |
| PORT_NUMBER = 9000 | |
| class MyHandler(BaseHTTPServer.BaseHTTPRequestHandler): | |
| def do_HEAD(s): |
| #!/usr/bin/ruby -w | |
| # | |
| # Copyright (C) 2007-2008 Thomer M. Gil [http://thomer.com/] | |
| # Thanks to Brian Moore, Justin Payne, and Matt Spitz for bugfixes and | |
| # suggestions. | |
| # | |
| # | |
| # This program is free software. You may distribute it under the terms of | |
| # the GNU General Public License as published by the Free Software | |
| # Foundation, version 2. |
| ActionMailer::Base.default_url_options[:host] = Socket.gethostname |
| function remember_me { | |
| ssh $1 'mkdir -p .ssh && touch .ssh/authorized_keys \ | |
| && chmod 0700 .ssh \ | |
| && chmod 0600 .ssh/authorized_keys \ | |
| && cat >> .ssh/authorized_keys' <~/.ssh/id_rsa.pub | |
| } |
| function f() { ... }; | |
| function g() { ... }; | |
| function h() { ... }; | |
| $("#the-link").toggle(f,g,h,g,f,h,h,g,g); |