Skip to content

Instantly share code, notes, and snippets.

View mix3's full-sized avatar

mix3@サタデーナイトフィーバー mix3

View GitHub Profile
@mix3
mix3 / main.go
Created March 8, 2014 12:58
Callerによるパス解決サンプル
package main
import (
"encoding/json"
"io/ioutil"
"log"
"os"
"path"
"runtime"
)
@mix3
mix3 / github.css
Last active August 29, 2015 13:56 — forked from andyferra/github.css
#preview body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
#preview body > *:first-child {
#!/bin/bash
echo $$
while :
do
sleep 1
done
@mix3
mix3 / .beacon.sh
Last active December 31, 2015 10:29
#!/bin/bash
if [ "" == "$(ps aux | grep ScreenSaverEngine | grep -v grep)" ]; then
/usr/local/opt/mysql/bin/mysql -u root beacon_receiver -e "insert into receive values (now());"
fi
---
- hosts: all
user: vagrant
sudo: yes
vars:
version: 2.4.6
src: /tmp
tasks:
- include: httpd_and_fcgi_with_mod_fastcgi_install.yml version=2.4.6 src=/tmp
- include: mysql_package_install.yml version=5.1.58-1
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::TCP qw/empty_port wait_port/;
use File::Which qw/which/;
use Proc::Guard;
use Parallel::ForkManager;
use Cache::Memcached::Fast;
#!/usr/bin/env perl
use strict;
use warnings;
use Test::TCP qw/empty_port wait_port/;
use File::Which qw/which/;
use Proc::Guard;
use Parallel::ForkManager;
use Storable;
@mix3
mix3 / fixes-5.3.sh
Last active December 25, 2015 02:48 — forked from nojimage/fixes-5.3.sh
#!/bin/bash
# Fix the 64bit c++ patch for PHP5.3
# https://bugs.php.net/bug.php?id=48795
#
# install to {path_to_php-build}/share/php-build/before-install.d/
function version { echo "$@" | awk -F. '{ printf("%d.%d.%d\n", $1,$2,$3); }'; }
phpver=$(basename "`pwd`")
package Sample;
use strict;
use warnings;
use utf8;
sub type_a { return "a" }
sub type_b { return "b" }
use JQueryPresentationHelper;
my $title = title "JQueryPresentation";
header q{<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?lang=perl&skin=sunburst"></script>};
hook 'pretty' => sub { $_[0] =~ s/<pre>/<pre class="prettyprint" style="font-size:24px;">/g; $_[0] };
plain q{
## コードハイライトするよ!!!