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
| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
| <html> | |
| <head> | |
| <style type="text/css"> | |
| h1, h2 { | |
| color : blue; | |
| font-style : italic; | |
| } | |
| .WARNING { | |
| font-weight : bold; |
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
| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <h2>17.4</h2> | |
| <h3>17.4.1</h3> | |
| <a href="www.davidflanagan.com" tooltip="good Java/JavaScript blog" |
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
| これわ、gist.el のテストだよ。 |
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/lib/redcloth3.rb b/lib/redcloth3.rb | |
| index e99ccdf..19e9746 100644 | |
| --- a/lib/redcloth3.rb | |
| +++ b/lib/redcloth3.rb | |
| @@ -270,7 +270,7 @@ class RedCloth3 < String | |
| @urlrefs = {} | |
| @shelf = [] | |
| - textile_rules = [:refs_textile, :block_textile_table, :block_textile_lists, | |
| + textile_rules = [:block_textile_table, :block_textile_lists, |
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
| 3 | |
| 8 | |
| 6 |
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
| find . -type f -ls |egrep -v '.git'|perl -ne '/ -..([-x])..([-x])..([-x]) /&&do{$1 eq"x"or$2 eq"x"or$3 eq"x"}&&print' | awk '{print $11}'|egrep -vi '\.(pl|cgi)$' | xargs chmod -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
| $ cat a | |
| a b c | |
| d e | |
| f | |
| $ awk '{n = split($0, a); for(i = 1; i <= n; i += 1) { print i, a[i] }}' a | |
| 1 a | |
| 2 b | |
| 3 c | |
| 1 d | |
| 2 e |
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 | |
| # -*- coding: utf-8-unix; -*- | |
| use strict; | |
| use warnings; | |
| use Config::Pit; | |
| use Net::Growl; | |
| use WWW::Mechanize; |
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
| <?php | |
| function fix($f) { | |
| return function($x) use ($f) { | |
| return $f(fix($f), $x); | |
| }; | |
| }; | |
| $map = function($f, $xs) { | |
| $func = fix(function($sf, $ys) use ($f) { |
OlderNewer