- What can be traced?
- How can trace events be specified?
- "match specifications": twisty passages, all alike
- WTF, can I just use DTrace and drink my coffee/beer/whisky in peace?
- Trace delivery mechanisms: pick one of two
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
/** | |
* cybozu-connect for Node | |
*/ | |
var jsdom = require('jsdom'), | |
XMLHttpRequest = require('XMLHttpRequest').XMLHttpRequest; | |
var document, | |
window, | |
$, | |
CBLabs = {}, |
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 'popup) | |
(require 'yasnippet) | |
;; add some shotcuts in popup menu mode | |
(define-key popup-menu-keymap (kbd "M-n") 'popup-next) | |
(define-key popup-menu-keymap (kbd "TAB") 'popup-next) | |
(define-key popup-menu-keymap (kbd "<tab>") 'popup-next) | |
(define-key popup-menu-keymap (kbd "<backtab>") 'popup-previous) | |
(define-key popup-menu-keymap (kbd "M-p") 'popup-previous) |