This file contains hidden or 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
// http://blog.livedoor.jp/dankogai/archives/51859373.html | |
var x = { a: 1, b: 2, c: 3 }; | |
var y = { a: 1, b: 2, c: 3, d: 4 }; | |
var z = {a: 1, b: 2, c: 3 }; | |
var w = {a: 1, b: 2, c: 3, d: 4 }; | |
x.b = w; | |
y.b = x; | |
z.b = y; | |
w.b = x; |
This file contains hidden or 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 'evil) | |
(setq elscreen-tab-display-control nil | |
elscreen-tab-display-kill-screen nil) | |
(require 'elscreen) | |
(evil-define-command evil-tab-new () | |
:repeat nil | |
(setq count (or count 1)) | |
(when (null (elscreen-get-frame-confs (selected-frame))) | |
(elscreen-start)) |
This file contains hidden or 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
// ==UserScript== | |
// @name hatena-bookmark-lower-thumbnail | |
// @namespace orednu.org | |
// @include http://b.hatena.ne.jp/* | |
// @version 1 | |
// ==/UserScript== | |
(function(w, d) { | |
w.addEventListener('load', function () { | |
var getElementsByTagAndClassName = function(element, tag, klass) { |
This file contains hidden or 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
(:name hatena-diary | |
:type git | |
:depends flim | |
:url "https://gist.github.com/4465244.git") |
This file contains hidden or 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 'multi-mode) | |
(require 'multi-mode-util) | |
(eval-when-compile (require 'cl)) | |
(defvar hatena-mm-langs nil) | |
(defvar hatena-mm-file-types nil) | |
(make-variable-buffer-local 'hatena-mm-file-types) | |
(defgroup hatena-multi-mode nil | |
"Multi modes for Hatena super-pre syntax." |
This file contains hidden or 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
;;; pit.el --- Manipulate pit data. | |
;; Copyright (C) 2008 Takeru Naito | |
;; Author: Takeru Naito <[email protected]> | |
;; Original: cho45 http://lowreal.rubyforge.org/pit/ | |
;; This file is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published | |
;; by the Free Software Foundation; either version 2, or (at your | |
;; option) any later version. |
This file contains hidden or 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 'url) | |
(require 'xml) | |
(require 'sha1-el) | |
(eval-when-compile (require 'cl)) | |
(defgroup hatena nil | |
"Hatena." | |
:group 'applications) | |
(defcustom hatena:username-function |
This file contains hidden or 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
(eval-when-compile | |
(require 'cl) | |
(unless (fboundp 'cl-letf) (defalias 'cl-letf 'letf))) | |
(require 'sgml-mode) | |
(defgroup hatena-markup nil | |
"Major mode for Hantea markup language." | |
:prefix "hatena-markup-" | |
:group 'hypermedia) |
This file contains hidden or 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
(error "This package has been moved to https://github.com/tarao/bundle-el") | |
(provide 'bundle) |
This file contains hidden or 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
;; | |
;; rdoc-mode.el | |
;; Major mode for RDoc editing | |
;; | |
;; Created: Fri Sep 18 09:04:49 JST 2009 | |
;; License: Ruby's | |
(require 'derived) |