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
[/home/nick]$ sudo pacman -Syu | |
:: Synchronizing package databases... | |
core is up to date | |
extra 439.2K 441.8K/s 00:00:01 [##########################################################################################################################################################] 100% | |
community 371.3K 233.6K/s 00:00:02 [##########################################################################################################################################################] 100% | |
archlinuxfr is up to date | |
vbox is up to date | |
:: Starting full system upgrade... | |
warning: armagetronad: local (0.3.0-2) is newer than community (0.2.8.2.1-1) | |
resolving dependencies... |
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
sbcl /usr/ | |
sbcl /usr/bin/ | |
sbcl /usr/bin/sbcl | |
sbcl /usr/lib/ | |
sbcl /usr/lib/sbcl/ | |
sbcl /usr/lib/sbcl/asdf-install/ | |
sbcl /usr/lib/sbcl/asdf-install/README | |
sbcl /usr/lib/sbcl/asdf-install/asdf-install.asd | |
sbcl /usr/lib/sbcl/asdf-install/asdf-install.fasl | |
sbcl /usr/lib/sbcl/asdf-install/defpackage.fasl |
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
This is SBCL 1.0.31, an implementation of ANSI Common Lisp. | |
More information about SBCL is available at <http://www.sbcl.org/>. | |
SBCL is free software, provided as is, with absolutely no warranty. | |
It is mostly in the public domain; some portions are provided under | |
BSD-style licenses. See the CREDITS and COPYING files in the | |
distribution for more information. | |
* | |
Basic qualities: | |
COMPILATION-SPEED = 1 |
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
[/home/nick]$ sbcl [1] | |
This is SBCL 1.0.31, an implementation of ANSI Common Lisp. | |
More information about SBCL is available at <http://www.sbcl.org/>. | |
SBCL is free software, provided as is, with absolutely no warranty. | |
It is mostly in the public domain; some portions are provided under | |
BSD-style licenses. See the CREDITS and COPYING files in the | |
distribution for more information. | |
* (asdf-install:install^[[7~^C | |
debugger invoked on a SB-SYS:INTERACTIVE-INTERRUPT in thread #<THREAD "initial thread" RUNNING {1002A26011}>: |
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
db{0}> | |
Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, | |
2006, 2007, 2008, 2009 | |
The NetBSD Foundation, Inc. All rights reserved. | |
Copyright (c) 1982, 1986, 1989, 1991, 1993 | |
The Regents of the Uiversity of California. All rights reserved. | |
NetBSD 5.0.1 (GENERIC) #0: Thu Jul 30 01:39:11 UTC 2009 | |
[email protected]:/home/builds/ab/netbsd-5-0-1-RELEASE/i386/20090792 | |
356Z-obj/home/builds/ab/netbsd-5-0-1-RELEASE/src/sys/arch/i386/compile/GENERIC |
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
[boot loader] | |
timeout=5 | |
default=C:\wubildr.mbr | |
[operating systems] | |
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect /NoExecute=OptIn | |
C:\wubildr.mbr = "Ubuntu" |
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
[duck@daedalus archlinux-bot]$ ruby readertest.rb | |
Downloading core.db.tar.gz... /usr/lib/ruby/1.9.1/net/ftp.rb:369:in `gethostbyname': getaddrinfo: Name or service not known (SocketError) | |
from /usr/lib/ruby/1.9.1/net/ftp.rb:369:in `getaddress' | |
from /usr/lib/ruby/1.9.1/net/ftp.rb:392:in `login' | |
from /usr/lib/ruby/1.9.1/open-uri.rb:809:in `buffer_open' | |
from /usr/lib/ruby/1.9.1/open-uri.rb:203:in `block in open_loop' | |
from /usr/lib/ruby/1.9.1/open-uri.rb:201:in `catch' | |
from /usr/lib/ruby/1.9.1/open-uri.rb:201:in `open_loop' | |
from /usr/lib/ruby/1.9.1/open-uri.rb:146:in `open_uri' | |
from /usr/lib/ruby/1.9.1/open-uri.rb:669:in `open' |
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
[..ev/ruby/schemey/test/unit]$ rake irb | |
(in /home/nick/dev/ruby/schemey) | |
irb(main):001:0> a = R6rs::Types::Integer.new(1) | |
=> <Integer: 1> | |
irb(main):002:0> b = R6rs::Types::Integer.new(1) | |
=> <Integer: 1> | |
irb(main):003:0> c = R6rs::Types::Integer.new(1) | |
=> <Integer: 1> | |
irb(main):004:0> a + b + c | |
=> <Integer: 3> |
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
#include <string.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
char *bin2dec(char *str) | |
{ | |
char *ret = malloc(sizeof(int)*20); | |
char *tmp = malloc(sizeof(int)); | |
int dec = 0; |
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
echo "irc.eighthbit.net 6667" | |
echo "USER A B C D" | |
echo "NICK foo" | |
echo "JOIN #offtopic" | |
while true; do | |
echo -n | |
done |