I hereby claim:
- I am grenouille220 on github.
- I am grenouille220 (https://keybase.io/grenouille220) on keybase.
- I have a public key ASDaCEUR3q1AuN29ObdGHEHgb7h8gLqF2CTKULJIsvIJDwo
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8"?> | |
| <kml> | |
| <Folder> | |
| <name>都道府県庁所在地 緯度経度データ</name> | |
| <description>ソース:http://www.benricho.org/chimei/latlng_data.html</description> | |
| <Placemark> | |
| <name>1北海道</name> | |
| <description>札幌市</description> | |
| <updated>Thu, 09 Feb 12 04:18:49 +0000</updated> | |
| <published>Thu, 09 Feb 12 04:18:49</published> |
| #!/bin/bash --ev | |
| find . -name '*.scss' -exec cat {} > override.scss \; | |
| perl -pi -e "s,.*?:.*\s\S,,g" override.scss | |
| perl -pi -e "s,.*\@.*\n,,g" override.scss | |
| Barba.Dispatcher.on('newPageReady', function(currentStatus, oldStatus, container, newPageRawHTML) { | |
| // html head parser borrowed from jquery pjax | |
| var $newPageHead = $( '<head />' ).html( | |
| $.parseHTML( | |
| newPageRawHTML.match(/<head[^>]*>([\s\S.]*)<\/head>/i)[0] | |
| , document | |
| , true | |
| ) | |
| ); | |
| var headTags = [ |
I hereby claim:
To claim this, I am signing this object:
| <div id="sns_likebox"> | |
| <div class="fb-like-box" data-href="{url}" | |
| data-width="322" data-height="382" | |
| data-colorscheme="light" data-show-faces="false" | |
| data-header="false" data-stream="true" | |
| data-show-border="true"> | |
| </div> | |
| </div> |
| #sns_likebox { | |
| background: url(loader.gif) no-repeat 50% 50%; | |
| } | |
| .fb_loaded #sns_likebox { | |
| background: #fff; | |
| } |
| window.fbAsyncInit = function () { | |
| FB.init({xfbml:true}); | |
| FB.Event.subscribe('xfbml.render',function(response){ | |
| if (!/fb_loaded/.test(document.body.className)) { | |
| document.body.className += " fb_loaded"; | |
| } | |
| }); | |
| }; |
| <?php | |
| # Source: https://www.conetix.com.au/support/article/simple-php-mail-test | |
| # Howto: ssh login, then php test-email.php | |
| ini_set( 'display_errors', 1 ); | |
| error_reporting( E_ALL ); | |
| $from = "emailtest@YOURDOMAIN"; | |
| $to = "YOUREMAILADDRESS"; | |
| $subject = "PHP Mail Test script"; | |
| $message = "This is a test to check the PHP Mail functionality"; | |
| $headers = "From:" . $from; |
| git init | |
| git remote add origin [email protected]:USER/REPOSITORY.git | |
| git pull origin master |
| require_once get_template_directory() . '/inc/php-markdown-1.8.0/Michelf/Markdown.inc.php'; | |
| use MichelfMarkdown; | |
| function markdown( $str ) { | |
| return Markdown::defaultTransform( $str ); | |
| } | |