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
\typeout{`atode.sty by [email protected]'} | |
\def\@atode@list{} | |
\newcounter{c@atode} | |
\setcounter{c@atode}{0} | |
\def\supplement#1#2{ | |
\ifx#1\empty\edef#1{#2} | |
\else\edef#1{#1,#2} | |
\fi |
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
#!/usr/bin/env ruby | |
open("bbb.rb"){|fd| | |
print fd.readlines.join("") | |
} |
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
s.bytes.to_a.map{|i| i.to_s(2)}.join("") |
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
<input type="text" id="text1"> | |
<input type="button" value="Click me!" onclick="readTextInput()"> | |
<script> | |
function readTextInput(){ | |
var text = document.getElementById("text1"); | |
var inputValue = text.value; | |
window.alert(inputValue); | |
} | |
</script> |
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
var a = 0; | |
while (a < 10){ | |
a = a + 2; | |
console.log("a = " + a); | |
} |
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
void setup(){ | |
size(400, 400); | |
smooth(); | |
noStroke(); | |
background(0, 0, 0); | |
} | |
void draw(){ | |
fill(0, 0, 0, 32); | |
rect(0, 0, width, height); |
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
var human = { | |
name: {familyName: "清水", firstName: "智公"}, | |
age: 33, | |
sex: "male", | |
contact: { | |
twitter: "@chikoski", | |
github: "http://github.com/chikoski", | |
mail: "[email protected]" | |
}, | |
phone: ["123456789","234567891","345678912", "3456789124"] |
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> | |
<title>論プロテンプレート</title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="stylesheets/bootstrap.min.css"> | |
<style type="text/css"> | |
body { | |
padding-top: 60px; |
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> | |
<title>論プロテンプレート</title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="stylesheets/bootstrap.min.css"> | |
<style type="text/css"> | |
body { | |
padding-top: 60px; |
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
<input type="text" id="keyword"> | |
<button id="listKeio" onclick=getFromWikipedia() class="btn btn-primary">List</button> | |
<div id="listOfKeio"></div> | |
<script type="text/javascript"> | |
function func(json) { | |
var e = document.getElementById('listOfKeio'); | |
e.innerHTML = ""; | |
var i; | |
for (i=0; i < json.query.allpages.length; i++) { |
OlderNewer