ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| <!DOCTYPE html> | |
| <html> | |
| <meta charset="UTF-8"> | |
| <head> | |
| <style> | |
| body { | |
| margin : 0; | |
| padding : 0; | |
| background-color: #eee; | |
| font-size: 25px; |
| { | |
| /* Keybindings for emacs emulation. Compiled by Jacob Rus. | |
| * | |
| * To use: copy this file to ~/Library/KeyBindings/ | |
| * after that any Cocoa applications you launch will inherit these bindings | |
| * | |
| * This is a pretty good set, especially considering that many emacs bindings | |
| * such as C-o, C-a, C-e, C-k, C-y, C-v, C-f, C-b, C-p, C-n, C-t, and | |
| * perhaps a few more, are already built into the system. | |
| * |
| #!/usr/bin/env python | |
| from __future__ import with_statement | |
| import contextlib | |
| import logging | |
| import os | |
| import sys | |
| import urllib2 | |
| from boto.ec2.connection import EC2Connection |
| # this program uploads to google storage using boto and eventlet all the jpg files of a selected folder | |
| import eventlet | |
| bcon = eventlet.import_patched("boto.gs.connection") | |
| import glob | |
| FOLDER = "/Users/myself/Documents/" # replace this with your chosen folder | |
| BUCKET_NAME = "whateveryourbucketname" # replace this with your bucket name | |
| def upload(myfile): | |
| c = bcon.GSConnection() |
| var io = require('socket.io').listen(8081); | |
| var parser = require('socket.io').parser; | |
| io.sockets.on('connection', function(socket) { | |
| var pre; | |
| var i = 0; | |
| io.transports[socket.id].parser.on('data', function(p) { | |
| var packet = parser.decodePacket(p); | |
| if(packet.type === 'heartbeat') { | |
| if(global.gc) global.gc(); | |
| var memoryUsage = process.memoryUsage(); |
| #! /bin/sh | |
| # ------------------------------------------------------------------------------ | |
| # SOME INFOS : fairly standard (debian) init script. | |
| # Note that node doesn't create a PID file (hence --make-pidfile) | |
| # has to be run in the background (hence --background) | |
| # and NOT as root (hence --chuid) | |
| # | |
| # MORE INFOS : INIT SCRIPT http://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit | |
| # INIT-INFO RULES http://wiki.debian.org/LSBInitScripts | |
| # INSTALL/REMOVE http://www.debian-administration.org/articles/28 |