超雑にまとめました。修正してください。
登場人物
- アプリケーション先輩: いつも忙しい。横に広がるのが得意(デブじゃない)。
- 後輩: 頼んでばっかしで役に立たない。
- サーバー先輩: アプリケーション先輩と仲がいい。Unix Socket でつながるくらい仲良し。
- プロクシ先輩: アプリケーション先輩とかサーバー先輩と後輩の間を取り持って代わりに伝えたりしてくれる。たまに勝手にレスポンスを書き換える。
OPTIONS = metaclass.m -o metaclass -std=c99 -framework Foundation -arch x86_64 -Os | |
isa: | |
clang -DUSE_ISA=1 $(OPTIONS) | |
./metaclass | |
object_getClass: | |
clang -DUSE_ISA=0 $(OPTIONS) | |
./metaclass |
#!/usr/bin/gawk -f | |
#http://gcc.gnu.org/onlinedocs/gcc/Overall-Options.html | |
BEGIN { | |
gcc_cmd="gcc -Q --help=warnings,^joined,^undocumented"; | |
w_lv[0] = ""; | |
w_lv[1] = "-Wall"; | |
w_lv[2] = "-Wall -Wextra"; | |
for(i = 0;i < 3;i++){ | |
cmdln = sprintf("%s %s",gcc_cmd,w_lv[i]); |
# Redmine Plugin: Add Link To Overall Activities. | |
# | |
# License: | |
# The MIT License (MIT) Copyright (c) 2012 suer | |
# | |
# Permission is hereby granted, free of charge, to | |
# any person obtaining a copy of this software and | |
# associated documentation files (the "Software"), | |
# to deal in the Software without restricti on, | |
# including without limitation the rights to use, |
# Title: Include Image Tag for Jekyll | |
# Authors: choplin | |
# Description: Include <img> tag with src from a specified directory | |
# Configuration: as below in your _config.yml (images/blog as default) | |
# | |
# image_dir: images/blog | |
# | |
# Syntax {% include_img [class name(s)] image_file.(jpg|jpeg|png|gif) [width [height]] [title text | "title text" ["alt text"]] %} | |
# | |
# Examples: |
#!/bin/bash | |
# | |
# GitLab Runs unicorn and resque for nginx integration. | |
### | |
# chkconfig: 35 82 55 | |
# processname: unicorn | |
# processname: resque | |
# description: Runs unicorn and resque for nginx integration. | |
### |
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'json' | |
require 'net/http' | |
require 'uri' | |
require 'date' | |
$ciBaseUrl = 'http://ci.motechproject.org' #URL of your jenkins CI | |
$jobs = ['Ananya-Kilkari','Ananya-Reports','Ananya-Kilkari-Smoke'] # add all the jobs to be monitored in this list |
// | |
// CustomAlertView.h | |
// CustomAlert | |
// | |
// Created by masaki.fuke on 2012/08/23. | |
// Copyright (c) 2012年 masaki.fuke. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
この記事は古いです...。はてなブログの方に完全版を置いてあります。→ http://blue-ham-cake1024.hatenablog.com/entry/2012/09/07/Sublime_Text_2_のDefault設定ファイルを眺める
この記事ではDefault設定ファイルにどのような記述がされているか、その記述にどんな意味があるかを一つ一つ見ていきます。実際に設定をカスタマイズしてみたい方は、メニューのPreferencesタブの"Settings - User"からUser設定ファイルを開いてそこでいろいろ試してみましょう。