Skip to content

Instantly share code, notes, and snippets.

@maiko-ampersand
maiko-ampersand / Default.sublime-keymap
Created April 30, 2013 09:08
SublimeText2のプラグインを作ってみた ref: http://qiita.com/items/cd4509cbfd73e8ef591c
[
{
"keys": ["ctrl+b"], "command": "reple"
}
]
module.exports = function(grunt) {
grunt.initConfig({
watch: {
// src/jsフォルダ以下のjs拡張子ファイルを対象に監視
files: ['src/js/*.js'],
// 変更があったらタスクjasmineを実行
tasks: ['jasmine']
},
jasmine: {
// プロパティ名はテストケース名
@maiko-ampersand
maiko-ampersand / 0_reuse_code.js
Created March 20, 2014 07:22
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
<style>
h2[title] {
color : red;
}
</style>
<h2>これにはヒットしない<h2>
<h2 title="タイトル内容">ヒットする<h2>
<style>
h2[title="hogehoge"] {
color : red;
}
</style>
<h2 title="hogehoge">ヒットする<h2>
<h2 title="piyopiyo">ヒットしない<h2>
@maiko-ampersand
maiko-ampersand / 属性セレクタE[foo~="bar"].html
Last active August 29, 2015 14:01
属性セレクタE[foo~="bar"]
<style type="text/css">
span[class~="hoge"] {
color : red;
}
</style>
<span class="fuga piyo">ヒットしない</span>
<span class="piyo hoge">ヒットする</span>
<span class="piyo hogeboo">ヒットしない 要素の一致であって文字が含まれるかどうかではない</span>
<style type="text/css">
span[class^="hoge"] {
color : red;
}
</style>
<span class="fugafuga">ヒットしない</span>
<span class="hoge">ヒットする</span>
<span class="hogeboo">ヒットする</span>
<span class="fugahoge">ヒットしない</span>
<style type="text/css">
a[href$=".php"] {
color : red;
}
</style>
<a href="http://hogehoge.net/piyo.php">ヒットする</a>
<a href="http://hogehoge.net/piyo.html">ヒットしない</a>
<a href="http://hogehoge.php/piyo.html">ヒットしない</a>
<style type="text/css">
a[href*="google.com"] {
color : red;
}
</style>
<a href="http://google.com/hugahuga">ヒットする</a>
<a href="http://yahoo.com/hugahuga">ヒットしない</a>
<a href="http://yahoo.com/q=http://google.com&hoge=fuga">ヒットする</a>
@maiko-ampersand
maiko-ampersand / 属性セレクタE[foo|="bar"].html
Last active August 29, 2015 14:01
属性セレクタE[foo|="bar"]
<style type="text/css">
a[hreflang|="en"] {
color : red;
}
</style>
<a href="#" hreflang="en">ヒットする</a>
<a href="#" hreflang="ending">ヒットしない</a>
<a href="#" hreflang="en-US">ヒットする</a>
<a href="#" hreflang="en-scouse">ヒットする</a>