- tortoiseGit
- Git for Windows (compiled with mSYSGit)
- http://code.google.com/p/msysgit/downloads/list?q=full+installer+official+git
- install options:
- Git Bash here
- Git Gui here
- Run Git from the Windows Command Prompt
- Use (Tortoise)Plink
- Checkout as-is, Commit as-is
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
(defun remove* (symbol tree) | |
"Removes SYMB0L from TREE." | |
(cond | |
((null tree) | |
tree) | |
((atom (car tree)) | |
(if | |
(equalp symbol (car tree)) | |
(remove* symbol (cdr tree)) | |
(cons (car tree) (remove* symbol (cdr tree))))) |
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
use strictures; | |
use 5.010; | |
use IO::All -binary; | |
use JSON 'from_json'; | |
run( $ARGV[0] ) if !caller; | |
sub run { | |
my ( $pl_path ) = @_; | |
$pl_path //= '.'; |
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
13-03-08@21:19:28 (jdb) http://paste.stacka.to/gejavoyifo.pl | |
13-03-08@21:19:51 (jdb) This is the script that is called to build libxml on the PPM builders. | |
13-03-08@21:20:33 (jdb) It assumes the tarball is already unpacked and the CWD is the top-level directory inside the tarball | |
13-03-08@21:21:19 (jdb) http://paste.stacka.to/furanimeli.avrasm | |
13-03-08@21:21:31 (jdb) This is the "control file" | |
13-03-08@21:24:58 (Mithaldu) can you give me links for the iconv sources you use? | |
13-03-08@21:25:34 (jdb) https://code.google.com/p/win-iconv/ | |
13-03-08@21:26:05 (Mithaldu) and zlib? | |
13-03-08@21:26:33 (jdb) http://paste.stacka.to/guhelixuwo.pl | |
13-03-08@21:27:04 (jdb) http://zlib.net/zlib-1.2.5.tar.gz |
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
use strictures 1; | |
use 5.010; | |
my $t = "ab"; | |
my $r1 = qr/a/; | |
my $r2 = qr/b/; | |
my $s1 = "1"; | |
my $s2 = "2"; |
MANIFESTO - scrubbed by mainstream media outlets
From: Christopher Jordan Dorner /7648
To: America
Subj: Last resort
Regarding CF# 07-004281
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
use strictures; | |
use 5.012; | |
use WWW::Alexa::TrafficRank; | |
use Tie::Array::CSV; | |
run(); | |
sub run { |
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
---------------------------------------------- | |
Welcome to Strawberry Perl Portable Edition! | |
* URL - http://www.strawberryperl.com/ | |
* see README.portable.TXT for more info | |
---------------------------------------------- | |
Perl executable: C:\strawberry-5.16.2.1\perl\bin\perl.exe | |
Perl version : 5.16.2 / MSWin32-x86-multi-thread | |
c:\strawberry-5.16.2.1>d: |
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
d:\cpan\perl>gcc --version | |
gcc.exe (GCC) 3.4.5 (mingw-vista special r3) | |
Copyright (C) 2004 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
d:\cpan\perl>cd win32 |
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
d:\cpan\perl>gcc --version | |
gcc.exe (GCC) 3.4.5 (mingw-vista special r3) | |
Copyright (C) 2004 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
d:\cpan\perl>cd win32 | |
d:\cpan\perl\win32>dmake .\config.h ..\git_version.h | |
del /f config.h |