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
Node: v4.0.0 | |
npm: v2.13.3 | |
Installing build modules... | |
Installing apm... | |
download not found: http://nodejs.org/dist/v0.10.40/node-v0.10.40-linux-arm.tar.gz | |
npm ERR! Linux 4.1.10-v7+ | |
npm ERR! argv "/home/pi/.nodebrew/node/v4.0.0/bin/node" "/home/pi/atom/build/node_modules/.bin/npm" "--userconfig=/home/pi/atom/build/.npmrc" "--target=0.10.35" "install" "--loglevel" "error" | |
npm ERR! node v4.0.0 | |
npm ERR! npm v2.13.3 | |
npm ERR! code ELIFECYCLE |
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
.player-embed{ | |
position:relative; | |
width:100%; | |
max-height:480px; | |
padding-top:56.25%; | |
} | |
.player-embed iframe{ | |
position:absolute; | |
top:0; | |
right:0; |
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
["Japanese","JavaScript","PHP","Python","SQL","SmileBASIC","HTML","CSS"].forEach(written_lang => console.log(written_lang)); |
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
#include <stdio.h> | |
main(){ | |
printf("Hello,World!") | |
} |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
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 | |
require 'nokogiri' | |
require 'open-uri' | |
doc = Nokogiri::HTML(open("https://misskey.xyz")) | |
trends = doc.css('#trends').children | |
trends.each{|trend| | |
puts trend.inner_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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
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/1.1 200 OK | |
Vary: Origin, Accept-Encoding | |
Access-Control-Allow-Credentials: true | |
Content-Type: text/plain; charset=utf-8 | |
Content-Length: 2 | |
ETag: W/"なんたら" | |
set-cookie: hmsk=なんたら; Domain=.misskey.xyz; Path=/; Expires=Tue, 27 Dec 2016 16:53:18 GMT; Secure | |
Date: Mon, 28 Dec 2015 16:53:18 GMT | |
Connection: keep-alive |
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
curl https://login.misskey.xyz/ --verbose --include --request POST --data 'screen-name=スクリーンネーム' --data 'password=パスワード' |
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> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="./script.js"></script> | |
</head> | |
<body> | |
<button id="btn">Click</button> | |
</body> | |
</html> |