I hereby claim:
- I am bentruyman on github.
- I am bentruyman (https://keybase.io/bentruyman) on keybase.
- I have a public key ASDO_5icOptXvOSHb8y3ALN6KYO3w2d2s7Ep0Zzx4ckHKgo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| #============================================================================= | |
| # NAME | |
| # print-code | |
| # | |
| # DESCRIPTION | |
| # Outputs the contents of matching files in a directory or Git repository, | |
| # excluding ignored and binary files. Each file's content is wrapped with |
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Blue Component</key> | |
| <real>0.10051459074020386</real> | |
| <key>Green Component</key> | |
| <real>0.10051288455724716</real> |
| server { | |
| listen 80; | |
| server_name my-server.com; | |
| access_log /var/log/nginx/my-server.com-access.log; | |
| error_log /var/log/nginx/my-server.com-error.log; | |
| root /var/www/my-server.com/public; | |
| index index.php index.html; |
| { | |
| "es5": true, | |
| "browser": true, | |
| "curly": true, | |
| "devel": true, | |
| "eqeqeq": true, | |
| "expr": true, | |
| "forin": true, | |
| "immed": true, | |
| "latedef": false, |
| CPU model : QEMU Virtual CPU version 1.0 | |
| Number of cores : 2 | |
| CPU frequency : 1999.995 MHz | |
| Total amount of ram : 2016 MB | |
| Total amount of swap : 3813 MB | |
| TEST BASELINE RESULT INDEX | |
| Dhrystone 2 using register variables 376783.7 15705333.2 416.8 | |
| Double-Precision Whetstone 83.1 1177.2 141.7 |
| AnonIPLimit = 10 | |
| Listen = +8080 | |
| ConnectDelay = 30 | |
| <User bentruyman> | |
| Pass = **** | |
| Nick = bentruyman | |
| AltNick = bentruyman_ | |
| Ident = bentruyman | |
| RealName = Ben Truyman |
| # remove any existing vim installation | |
| pkgin rm vim-share vim | |
| # download vim 7.3 packages | |
| wget http://pkgsrc.smartos.org/packages/SmartOS/trunk/All/vim-share-7.3.653.tgz | |
| wget http://pkgsrc.smartos.org/packages/SmartOS/trunk/All/vim-7.3.653.tgz | |
| # install vim 7.3 | |
| pkg_add vim-share-7.3.653.tgz vim-7.3.653.tgz |
| /**********************************************/ | |
| /* | |
| /* Tomorrow Skin by Ben Truyman - 2012 | |
| /* | |
| /* Based on Chris Kempson's Tomorrow Theme: | |
| /* https://github.com/ChrisKempson/Tomorrow-Theme | |
| /* | |
| /* Inspired by Darcy Clarke's blog post: | |
| /* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
| /* |
| // Generates a URL-friendly "slug" from a provided string. | |
| // For example: "This Is Great!!!" transforms into "this-is-great" | |
| function generateSlug (value) { | |
| // 1) convert to lowercase | |
| // 2) remove dashes and pluses | |
| // 3) replace spaces with dashes | |
| // 4) remove everything but alphanumeric characters and dashes | |
| return value.toLowerCase().replace(/-+/g, '').replace(/\s+/g, '-').replace(/[^a-z0-9-]/g, ''); | |
| }; |