I hereby claim:
- I am linuslundahl on github.
- I am linuslundahl (https://keybase.io/linuslundahl) on keybase.
- I have a public key ASDTGwnjHSzQI3NyrUYxdlS2XZ9qaMl03noV-Pu2ChoT3go
To claim this, I am signing this object:
[ | |
{ "text": "0️⃣", "name": "0", "keyword": ":0:" }, | |
{ "text": "1️⃣", "name": "1", "keyword": ":1:" }, | |
{ "text": "🔟", "name": "10", "keyword": ":10:" }, | |
{ "text": "💯", "name": "100", "keyword": ":100:" }, | |
{ "text": "🥇", "name": "1st Place Medal", "keyword": ":1st-place-medal:" }, | |
{ "text": "2️⃣", "name": "2", "keyword": ":2:" }, | |
{ "text": "🥈", "name": "2nd Place Medal", "keyword": "2nd-place-medal:" }, | |
{ "text": "3️⃣", "name": "3", "keyword": ":3:" }, | |
{ "text": "🥉", "name": "3rd Place Medal", "keyword": ":3rd-place-medal:" }, |
I hereby claim:
To claim this, I am signing this object:
/** | |
* Scoop corners with only one gradient | |
* Caveats: backdrop must be a solid color, | |
* dimensions need to be known | |
* For more flexibility, see: http://lea.verou.me/2011/03/beveled-corners-negative-border-radius-with-css3-gradients/ | |
*/ | |
div { | |
width: 400px; | |
height: 300px; |
/** | |
* (C)Leanest CSS spinner ever | |
*/ | |
@keyframes spin { | |
to { transform: rotate(1turn); } | |
} | |
.progress { | |
position: relative; |
<?php | |
/** | |
* Display point award report. | |
* | |
* Generates a list of awarded points. | |
* | |
* @return array $content | |
*/ | |
function game_report_page_points() { |
$ mate /etc/php.ini | |
Add: error_log = /Users/USERNAME/Library/Logs/php.log | |
$ sudo chmod 755 ~/Library/ && sudo chmod 755 ~/Library/Logs && sudo touch ~/Library/Logs/php.log && sudo chmod 777 ~/Library/Logs/php.log |
#! /bin/bash | |
# | |
# ======================= | |
# Linode vhost script | |
# ======================= | |
function make_vhost | |
{ | |
cat <<- _EOF_ | |
<VirtualHost *:80> |
$resources['ur_segment'] = array( | |
'operations' => array( | |
'create' => array( | |
'callback' => '_ur_segment_create', | |
'help' => t('Creates a segment.'), | |
'args' => array( | |
array( | |
'name' => 'segment', | |
'optional' => FALSE, | |
'source' => 'data', |