puts 'The best way to log and share programmers knowledge.'puts 'The best way to log and share programmers knowledge.'
また、コードをインライン表示することも可能です。
| ; A REPL-based, annotated Seesaw tutorial | |
| ; Please visit https://github.com/daveray/seesaw for more info | |
| ; | |
| ; This is a very basic intro to Seesaw, a Clojure UI toolkit. It covers | |
| ; Seesaw's basic features and philosophy, but only scratches the surface | |
| ; of what's available. It only assumes knowledge of Clojure. No Swing or | |
| ; Java experience is needed. | |
| ; | |
| ; This material was first presented in a talk at @CraftsmanGuild in | |
| ; Ann Arbor, MI. |
| ja: | |
| admin: | |
| js: | |
| true: True | |
| false: False | |
| is_present: 存在する | |
| is_blank: 空白 | |
| date: 日付 ... | |
| between_and_: ... から ... | |
| today: 今日 |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| { | |
| "_links": { | |
| "self": { "href": "/orders" }, | |
| "next": { "href": "/orders?page=2" }, | |
| "find": { "href": "/orders{?id}", "templated": true } | |
| }, | |
| "_embedded": { | |
| "orders": [{ | |
| "_links": { | |
| "self": { "href": "/orders/123" }, |
| // Source: https://groups.google.com/forum/#!topic/angular/hVrkvaHGOfc | |
| // jsFiddle: http://jsfiddle.net/pkozlowski_opensource/PxdSP/14/ | |
| // author: Pawel Kozlowski | |
| var myApp = angular.module('myApp', []); | |
| //service style, probably the simplest one | |
| myApp.service('helloWorldFromService', function() { | |
| this.sayHello = function() { | |
| return "Hello, World!" |
| #!/bin/bash | |
| # hubot | |
| # chkconfig: 345 20 80 | |
| # description: hubot | |
| # processname: hubot | |
| # REFERENCE: http://werxltd.com/wp/2012/01/05/simple-init-d-script-template/ | |
| # This script assumes you have a user called "hubot" on your system and that hubot is installed in /opt/hubot |