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
#compdef paco | |
# ------------------------------------------------------------------------------ | |
# Description | |
# ----------- | |
# | |
# Completion script for paco | |
# | |
# Source: http://paco.sourceforge.net/ | |
# | |
# ------------------------------------------------------------------------------ |
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
#!perl | |
use strict; | |
use warnings; | |
use Graph::Gviz; | |
use Math::Normalize::Range; | |
use Text::CSV_XS; | |
use Math::Round qw/nearest/; | |
use utf8; |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use lib qw(../lib); | |
use utf8; | |
use Text::CSV_XS; | |
use Graph::Gviz; |
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
--- dstat 2012-10-18 23:05:42.783979537 +0900 | |
+++ /usr/bin/dstat 2012-10-18 23:02:31.767976670 +0900 | |
@@ -1633,9 +1633,9 @@ | |
'debug': ansi['darkred'], | |
'input': ansi['darkgray'], | |
'text_lo': ansi['gray'], | |
- 'text_hi': ansi['darkgray'], | |
- 'unit_lo': ansi['darkgray'], | |
- 'unit_hi': ansi['darkgray'], | |
+ 'text_hi': ansi['gray'], |
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
#!/usr/bin/env ruby | |
# -*- coding:utf-8 -*- | |
require 'sinatra' | |
require 'sinatra-websocket' | |
require 'redcarpet' | |
set :server, 'thin' | |
set :sockets, [] |
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
diff --git a/XS.xs b/XS.xs | |
index c140314..3c96065 100644 | |
--- a/XS.xs | |
+++ b/XS.xs | |
@@ -1227,7 +1227,7 @@ decode_num (dec_t *dec) | |
} | |
// loss of precision here | |
- return newSVnv (json_atof (start)); | |
+ return newSVnv (Atof (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
さとう遥希 | |
小早川怜子 | |
ちとせりこ | |
JULIA | |
椎名理紗 | |
麻美ゆま | |
春原未来 | |
一条綺美香 | |
吉沢明歩 | |
椎名ゆな |
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
diff --git a/jedi.el b/jedi.el | |
index 0e66af4..8fe65e0 100644 | |
--- a/jedi.el | |
+++ b/jedi.el | |
@@ -182,6 +182,21 @@ To make this option work, you need to use `jedi:setup' instead of | |
;;; AC source | |
+(defcustom jedi:ac-description-style 'long | |
+ "How to display description" |
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 'smartrep) | |
(setq windmove-wrap-around t) | |
(windmove-default-keybindings) | |
(smartrep-define-key | |
global-map "M-s" '(("h" . 'windmove-left) | |
("j" . 'windmove-down) | |
("k" . 'windmove-up) | |
("l" . 'windmove-right))) |
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
#!perl | |
use strict; | |
use warnings; | |
package Fuga; | |
sub bar { | |
Carp::croak("I'm bar"); | |
} |