This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use utf8; | |
use File::Basename; | |
use Ukigumo::Client; | |
use Ukigumo::Constants; | |
use Ukigumo::Helper; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
S.on('appActivated', function (event, app) { | |
S.log('appActivated:' + app.name()); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This program is distributed under the terms of the | |
* GNU General Public License, version 2. | |
* | |
*/ | |
(function ($) { | |
/* | |
* cursorrat | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript"> | |
window.onload = function () { | |
var form = document.createElement('form'); | |
form.setHidden = function(name, value) { | |
var input = document.createElement('input'); | |
input.setAttribute('type', 'hidden'); | |
input.setAttribute('name', name); | |
input.setAttribute('value', value); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use feature 'say'; | |
use AE; | |
use AnyEvent::IRC::Server; | |
use AnyEvent::IRC::Util; | |
use Getopt::Long; | |
use Yancha::Client; | |
use LWP::UserAgent; | |
use AnyEvent::IRC::Client; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package MyApp::Validator; | |
use 5.016; | |
use warnings; | |
use utf8; | |
use parent 'Data::Validator'; | |
use Try::Tiny; | |
sub import { | |
my $class = shift; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/sh | |
NCPU=`getconf _NPROCESSORS_ONLN` | |
WORKERS=$(expr $NCPU \* 5) | |
exec plackup -E production -s Starlet --max-workers=$WORKERS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package MyWAF::Request; | |
use strict; | |
use warnings; | |
use parent 'Plack::Request'; | |
use Encode; | |
use Hash::MultiValue; | |
use URL::Encode; | |
sub uri { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
public class BuildBatch : MonoBehaviour { | |
// build iOS app | |
private static void BuildiOS(){ | |
Debug.Log("/////////// build start ///////////"); | |