Release information of Pixela has moved here, thank you.
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
<html> | |
<head> | |
<title>Hello World!! by static file</title> | |
</head> | |
<body> | |
<h1>Hello World!! by static file</h1> | |
</body> | |
</html> |
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
package hello | |
import ( | |
"fmt" | |
"net/http" | |
) | |
func init() { | |
http.HandleFunc("/hello", handler) | |
} |
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
application: <project-name> | |
version: 100 | |
runtime: go | |
api_version: go1 | |
handlers: | |
- url: / | |
static_files: static/html/index.html | |
upload: static/html/index.html |
Displaying Hatena Bookmark
Favorites List of user you specified.
Nothing.
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> | |
<head> | |
<script src='https://cdn.firebase.com/js/client/2.2.1/firebase.js'></script> | |
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script> | |
<link rel='stylesheet' type='text/css' href='/resources/tutorial/css/example.css'> | |
</head> | |
<body> | |
<div id='messagesDiv'></div> | |
<input type='text' id='nameInput' placeholder='Name'> |
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
# press enter then `ll & git st` | |
function do_enter() { | |
if [ -n "$BUFFER" ]; then | |
zle accept-line | |
return 0 | |
fi | |
echo | |
ll | |
echo -e "\e[0;33m--- git status ---\e[0m" | |
git st |
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
require 'bundler/setup' | |
require 'google/api_client' | |
require 'yaml' | |
require 'json' | |
def multipart_boundary | |
'xxx' | |
end | |
# load credential yaml |