北海道,青森県,岩手県,宮城県,秋田県,山形県,福島県,茨城県,栃木県,群馬県,埼玉県,千葉県,東京都,神奈川県,新潟県,富山県,石川県,福井県,山梨県,長野県,岐阜県,静岡県,愛知県,三重県,滋賀県,京都府,大阪府,兵庫県,奈良県,和歌山県,鳥取県,島根県,岡山県,広島県,山口県,徳島県,香川県,愛媛県,高知県,福岡県,佐賀県,長崎県,熊本県,大分県,宮崎県,鹿児島県,沖縄県
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<style> | |
video { | |
width: 320px; | |
height: 240px; | |
} |
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
from bs4 import BeautifulSoup | |
html = """ | |
<html> | |
<head></head> | |
<body> | |
<div id="todo"> | |
<h1>Todo list</h1> | |
<ul class="items"> | |
<li>hello world</li> |
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
#!/bin/bash | |
query=$(printf " %s" "$@") | |
query=${query:1} | |
/usr/bin/open -a "/Applications/Google Chrome.app" "https://google.com/search?q=$query" |
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
@-webkit-keyframes shaky_animation | |
0% | |
+transform(rotate(0)) | |
25% | |
+transform(rotate(3deg)) | |
50% | |
+transform(rotate(0)) | |
75% | |
+transform(rotate(-3deg)) |
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
" Backspace on Mac | |
set backspace=indent,eol,start |
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
/Gemfile.lock | |
# Ignore bundler config | |
/.bundle | |
# Ignore configuration files | |
/config/*.yml | |
/config/unicorn.rb | |
/config/deploy.rb |
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
" UTF-8-MACの濁点、半濁点を含む文字を強調して表示する | |
highlight Opaques term=underline ctermbg=DarkGreen guibg=DarkGreen | |
match Opaques /\(\%u3099\|%u309a\)/ |
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
jQuery.fn.extend insertAtCaret: (myValue) -> | |
@each (i) -> | |
if document.selection | |
# For browsers like Internet Explorer | |
@focus() | |
sel = document.selection.createRange() | |
sel.text = myValue | |
@focus() | |
else if @selectionStart or @selectionStart is "0" | |
# For browsers like Firefox and Webkit based |
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
#!/bin/bash | |
# Name: Check for domain name availability | |
# linuxconfig.org | |
# Please copy, share, redistribute and improve | |
if [ "$#" == "0" ]; then | |
echo "You need tu supply at least one argument!" | |
exit 1 | |
fi |
NewerOlder