[![Boogie Down Productions "Ghetto Music: The Blueprint of Hip Hop"](https://img.discogs.com/lqJ5GCqW67uUPyla0osePLyf_Qk=/fit-in/300x300/filters:strip_icc():form
This file contains 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
const Mocha = require("mocha"); | |
const originalRun = Mocha.prototype.run; | |
Mocha.prototype.run = function (fn) { | |
let i = 1 | |
this.loadFiles(() => { | |
this.suite.eachTest((test) => { | |
test.title = `#${i}: ${test.title}` | |
i += 1 |
This file contains 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
require 'aws-sdk' | |
q3 = AWS::SQS.new( | |
:sqs_endpoint => 'q3-global.herokuapp.com', | |
:access_key_id => 'dummy', | |
:secret_access_key => 'dummy', | |
:use_ssl => false | |
) | |
queue = q3.queues.create('MyQueue001') | |
queue.send_message('hello!') |
This file contains 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
[codesuki/ecs-nginx-proxy: Reverse proxy for AWS ECS. Lets you address your docker containers by sub domain.](https://github.com/codesuki/ecs-nginx-proxy) |
- キャップ
- メガネ
- ジャケット
- ポケット
- 財布
- 切符
- 保険証
- クレジットカード
- お守り
- 財布
- ポケット
- iPhone
This file contains 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
require 'fileutils' | |
require 'highline' | |
BASE_DIR = File.join(ENV['HOME'], 'Desktop') | |
TITLE = 'Untitled' | |
def main | |
title = HighLine.new.ask("Title: ") | |
title = TITLE if title == "" | |
path = note_path(title) |
This file contains 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
def main | |
Dir["/Users/tily/Music/CDs/*/*.log"].each do |path| | |
f = File.open(path) | |
table_num, track_num = parse(f) | |
if table_num != track_num | |
puts "#{path}: table -> #{table_num}, track -> #{track_num}" | |
end | |
end | |
end |
This file contains 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 main | |
import ( | |
"github.com/d2r2/go-dht" | |
"github.com/ChimeraCoder/anaconda" | |
"fmt" | |
"time" | |
) | |
func main() { |
NewerOlder