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
#!/usr/bin/env ruby | |
# | |
# adb logcat をもっと見やすく. | |
# | |
require 'optparse' | |
# | |
# global option. |
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
Backbone.Pjax = (function () { | |
"use strict"; | |
var History = Backbone.History.extend({ | |
"navigate": function(fragment, options) { | |
if (!Backbone.History.started) return false; | |
if (!options || options === true) options = {trigger: options}; | |
fragment = this.getFragment(fragment || ''); | |
if (this.fragment === fragment) return; | |
this.fragment = fragment; |
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
<div id="main"> | |
<header id="page-header"> | |
<div class="title"> | |
<a href="/?__os_id=42981244"></a> | |
</div> <div class="status"> | |
<div class="gauge-space"> | |
<div id="gauge-action" class="gauge"> | |
<div class="frame-center"> | |
<div class="gauge-empty"> |
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 karupanerura; | |
# is me! | |
package main; | |
use strict; | |
use warnings; | |
use Meat; | |
use Beef; | |
use Hormones; |
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
// ---- | |
// Sass (v3.3.1) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// # pattern A | |
%module-a { | |
display: block; | |
color: black; |
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
// ---- | |
// Sass (v3.3.1) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
%hoge { | |
display: block; | |
%bar { | |
color: green; | |
} |
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
// ---- | |
// Sass (v3.3.1) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// components | |
%box-list { | |
display: block; | |
&__item { |
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
// ---- | |
// Sass (v3.3.2) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$state-when--types: ( | |
'active': ('&.is--active, &:active, &:hover'), | |
'current': ('&.is--current'), | |
'visible': ('&.is--visible') | |
) !global; |
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
#!/usr/bin/env node | |
content = [] | |
process.stdin.setEncoding "utf8" | |
process.stdin.resume() | |
process.stdin.on "data", (chunk) -> | |
content.push chunk | |
process.stdin.on "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
config | |
.request [ | |
{id: 1, method: "GET", path: "/admin/reset", params: {}} | |
] | |
.test [ | |
{id: 1, to_be: [{code: 204}]} | |
] | |
.calcurator | |
success: 10 | |
failed: -10 |
OlderNewer