-
2052642·text·642 B·2011-05-01 21:15 UTC
x@talokone /tmp/1 $ cd .
cd: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory
x@talokone /tmp/1/. $ cd .
cd: error retrieving current director
-
2052641·text·315.1 KB·2011-05-01 21:05 UTC
-
2052638·text·17.4 KB·2011-05-01 20:55 UTC
2011-05-01 15:51:57 [INFO] Starting minecraft server version Beta 1.5_02
2011-05-01 15:51:57 [WARNING] **** NOT ENOUGH RAM!
2011-05-01 15:51:57 [WARNING] To start the server with more ram, launch it
-
2052637·text·4.8 KB·2011-05-01 20:43 UTC
#!/bin/bash
# scan - a simple wifi scanner
# Copyright 2011 Dave Woodfall <dave@dawoodfall.net>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification,
-
2052635·text·2.8 KB·2011-05-01 20:34 UTC
#include <stdio.h>
#include <stdlib.h>
/*Programa para ler, desconsiderando o ano bissexto, duas datas, cada uma consistindo
em dia, mes e ano, dados em formato numérico(20,3,2000 para 20/3/200
-
2052632·text·1.5 KB·2011-05-01 20:24 UTC
eth0 Link encap:Ethernet HWaddr 00:24:1d:73:3f:82
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 er
-
2052630·text·1.1 KB·2011-05-01 20:20 UTC
~$ ifconfig
lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
inet 127.0.0.1 netmask 0xff000000
gif0: flags=8010<PO
-
2052628·text·1.1 KB·2011-05-01 20:17 UTC
Dylan 4:00 pm
Charles Modica 3:40 pm
Just ...
Something may seriously be wrong with me ...
We don't know yet
So I don't want you to worry until we do ...
-
2052623·text·2.4 KB·2011-05-01 20:05 UTC
//=========================
//==========Rings==========
//=========================
[Type] == ring && [Quality] == Unique
[Type] == ring && [Quality] == Unique # [Tohit] == 75 && [ItemMagicBonus
-
2052622·text·1.3 KB·2011-05-01 20:03 UTC
-- file: primes.hs
allProducts :: (Num a) => [a] -> [a] -> [a]
allProducts [] _ = []
allProducts _ [] = []
allProducts (x:xs) (y:ys) = [x*y] ++ (allProducts [x] ys ++ allProducts xs (y:ys))
isP
-
2052620·text·681 B·2011-05-01 20:00 UTC
<menu type="toolbar">
<li>
<menu label="File">
<button type="button" onclick="fnew()">New...</button>
<button type="button" onclick="fopen()">Open...</button>
<button type="button" on
-
2052613·text·313 B·2011-05-01 19:42 UTC
[jro@jro ~]$ sudo pacman -Qm
alien 0.5.0-1
cloog-ppl 0.15.10-2
dos2unix 5.1.1-2
gnome-audio 2.22.2-1
pan-git 20110113-1
par2cmdline 0.4-14
python-yenc 0.3-2
qjoypad-svn 130-1
rar-beta 4.0.b3-
-
2052611·java·420 B·2011-05-01 19:31 UTC
public int balanced(Node n) {
if (n == null) {
return 0;
}
int lh = balanced(n.left);
int rh = balanced(n.right);
if (lh != -1 && rh !=
-
2052610·text·8.5 KB·2011-05-01 19:26 UTC
ADM6996FC PHY found on MAC0
ADM6996FC PHY found on MAC1
Ethernet eth0: MAC address 00:15:6d:c1:2a:c6
IP: 192.168.1.20/255.255.255.0, Gateway: 0.0.0.0
Default server: 192.168.1.42
RedBoot(tm) bo
-
2052608·text·1.6 KB·2011-05-01 19:18 UTC
100042D5 55 PUSH EBP
100042D6 8BEC MOV EBP,ESP
100042D8 8B45 10 MOV EAX,DWORD PTR SS:[EBP+10]
100042DB
-
2052606·python·91 B·2011-05-01 19:11 UTC
def MyFunction():
"""This is an awesome function."""
pass
print MyFunction.__doc__
-
2052600·java·678 B·2011-05-01 19:02 UTC
public int height(Node n) {
if (n == null) {
return 0;
}
int lh = height(n.left);
int rh = height(n.right);
return 1 + ((lh > rh) ? lh : r
-
2052599·python·89 B·2011-05-01 19:01 UTC
"""This is an awesome function."""
def MyFunction():
pass
print MyFunction.__doc__
-
2052598·text·89 B·2011-05-01 19:01 UTC
"""This is an awesome function."""
def MyFunction():
pass
print MyFunction.__doc__
-
2052596·csharp·1.2 KB·2011-05-01 18:50 UTC
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace KirbulProject
{
class Program
{
static void Main(string[] args)
{