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
javascript:(function(){for(var a=document.createElement("div"),b=document.createElement("a"),c=document.createElement("img"),d=["Webkit","Moz","O","ms","Khtml"],e="animation",f="aD",g="aT",h="aI",i="",j="",k=0;k<d.length;k++)if(void 0!==a.style[d[k]+"Animation"]){j=d[k];e=j+"AnimationName";f=j+"AnimationDuration";g=j+"AnimationTimingFunction";h=j+"AnimationIterationCount";i="-"+j.toLowerCase()+"-";break}for(k=0;k<d.length;k++)if(void 0!==a.style[d[k]+"Transform"]){j=d[k];break} | |
var l="@"+i+"keyframes rotate { 0% {"+i+"transform:rotateY( 0deg );}90% {"+i+"transform:rotateY( 0deg);}95% {"+i+"transform:rotateY( 360deg);}100% {"+i+"transform:rotateY( 0deg);}}";a.style[e]="rotate";a.style[f]="5s";a.style[g]="linear";a.style[h]="infinite";var m=document.createElement("style");m.innerHTML=l;document.getElementsByTagName("head")[0].appendChild(m);a.style.position="absolute";a.style.padding="1px";a.style.zIndex="500";b.href="http://kotourasan.net/s/oen.html"; | |
c.src="http://kotourasan.net/images/banner/350_240.jpg";var |
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
http = require 'http' | |
allows = | |
"127.0.0.1" : ['POST','PUT'] | |
"192.168.0.10" : ['GET','POST','PUT','DELETE'] | |
httpServer = http.createServer (req, res)-> | |
allowed = false | |
for ip, methods of allows | |
if ip == req.connection.remoteAddress |
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
module.exports = function( grunt ) { | |
'use strict'; | |
// | |
// Grunt configuration: | |
// | |
// https://github.com/cowboy/grunt/blob/master/docs/getting_started.md | |
// | |
grunt.initConfig({ | |
// Project configuration |
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
javascript:(function(){a=['[sessionStorage]'];for(k%20in%20sessionStorage)a.push(k+"%20:%20"+sessionStorage.getItem(k));a.push('[localStorage]');for(k%20in%20localStorage)a.push(k+"%20:%20"+localStorage.getItem(k));alert(a.join("\n"));})() |
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
module.exports = function( grunt ) { | |
'use strict'; | |
// | |
// Grunt configuration: | |
// | |
// https://github.com/cowboy/grunt/blob/master/docs/getting_started.md | |
// | |
grunt.initConfig({ | |
// Project configuration |
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
div.index1 { | |
height: 34px; | |
border-bottom: solid 7px green; | |
margin-bottom: 20px; | |
clear:both; | |
} | |
div.index1 > span.title { | |
width: 100px; | |
padding: 6px 30px 1px 10px; |
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
define(['jquery'], ($)-> | |
'use strict' | |
$.getJSON('api/items/', (data)-> | |
ul = document.querySelector('div.hero-unit > ul') | |
for row in data | |
li = document.createElement 'li' | |
txt = document.createTextNode "#{row.id}, #{row.user}, #{row.message}" | |
li.appendChild txt | |
ul.appendChild li | |
) |
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
/* | |
The MIT License (MIT) | |
Copyright (C) 2013, Masakazu Muraoka <[email protected]> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
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
# うまくいった | |
<article> | |
<figure> | |
<img src="https://si0.twimg.com/profile_images/53494994/btf_logo.jpg" alt="example1 image"> | |
</figure> | |
<section> | |
<h1>Example1. Hello</h1> | |
<p class="text-x-small"> | |
<img src="https://mirror-api-playground.appspot.com/links/rated_r.png" alt=""> | |
x-small text |
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>カーソル選択時に選択文字列をピックアップする</title> | |
</head> | |
<body> | |
<h1>The MIT License</h1> | |
<p>以下に定める条件に従い、本ソフトウェアおよび関連文書のファイル(以下「ソフトウェア」)の複製を取得するすべての人に対し、ソフトウェアを無制限に扱うことを無償で許可します。これには、ソフトウェアの複製を使用、複写、変更、結合、掲載、頒布、サブライセンス、および/または販売する権利、およびソフトウェアを提供する相手に同じことを許可する権利も無制限に含まれます。</p> | |
<p>上記の著作権表示および本許諾表示を、ソフトウェアのすべての複製または重要な部分に記載するものとします。</p> |
OlderNewer