-
2126025·actionscript·111 B·2012-03-08 03:13 UTC
You can't separate pease from freedom because no one can be at peace unless he has his freedom.
-
2126023·text·9.9 KB·2012-03-08 03:10 UTC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
</title>
-
2126022·text·25.4 KB·2012-03-08 03:08 UTC
PART I:
1 Programming Languages
Become An Xcoder.pdf
Beginning Xcode.chm
Debugging by Thinking - A Multidisciplinary Approach (Digital, 2004).chm
GCC - The Complete Reference (
-
2126021·text·400 B·2012-03-08 02:53 UTC
s = point (null on start)
f = point (null on start)
for(x = 0; x < maze.width; x++){
for(y = 0; y < maze.height; y++){
if(maze.cells[x][y] == 's'){
s = (x,y);
-
2126020·text·56 B·2012-03-08 02:49 UTC
s = point
f = point
for(x = 0; x < maze.width; x++){
-
2126018·text·130 B·2012-03-08 02:34 UTC
char * maze_cells = new char * [maze_height];
for(int i = 0; i < maze_height; i++)
maze_cells[i] = new char[maze_width];
-
2126017·text·8.7 KB·2012-03-08 02:23 UTC
Sep 03 13:00:56 <bluesun> is it hard to get text dumps from BS games, btw?
Sep 03 13:09:02 <Kiddo|Laptop> I assume it depends, case-by-case basis
Sep 03 13:09:18 <Kiddo|Laptop> Some games call on
-
2126013·text·538 B·2012-03-08 01:31 UTC
Shepard: Here, I picked this up for you. Figured you had some down-time.
Ashley: Thanks, that's sweet. I've been climbing the walls. But...where do we stand, Shepard? Did we cut all ties?
Shepard:
-
2126012·text·809 B·2012-03-08 01:10 UTC
mint@mint ~ $ sudo mount /dev/sda5 /mnt
mount: /dev/sda5 already mounted or /mnt busy
mount: according to mtab, /dev/sda5 is already mounted on /mnt
****So this means its mounted because I already
-
2126011·text·809 B·2012-03-08 01:07 UTC
mint@mint ~ $ sudo mount /dev/sda5 /mnt
mount: /dev/sda5 already mounted or /mnt busy
mount: according to mtab, /dev/sda5 is already mounted on /mnt
****So this means its mounted because I already
-
2126008·text·11.9 KB·2012-03-07 23:39 UTC
23:30:25.488630 IP (tos 0x0, ttl 128, id 61025, offset 0, flags [none], proto UDP (17), length 903)
93.90.20.106.4715 > 80.29.106.18.5060: [udp sum ok] SIP, length: 875
INVITE sip:913190
-
2126006·text·7.6 KB·2012-03-07 23:21 UTC
1.2.3.4.4090 > 5.6.7.8.5060: [udp sum ok] SIP, length: 875
INVITE sip:913190745@5.6.7.8:5060 SIP/2.0
Via: SIP/2.0/UDP 1.2.3.4:4090;branch=z9hG4bK00E0F510021A06D1EAE800001BE2
-
2126003·text·6.9 KB·2012-03-07 22:20 UTC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
.
-
2126002·text·6.9 KB·2012-03-07 22:20 UTC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
.
-
2126001·text·6.9 KB·2012-03-07 22:20 UTC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
.
-
2126000·text·6.9 KB·2012-03-07 22:17 UTC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
.
-
2125984·text·1.2 KB·2012-03-07 20:48 UTC
public class Box
{
// Объявляем переменные здесь, чтобы они были видны для всего класса,
// а не только конструктора
double width;
double height;
double depth;
// Если ввели все 3 значе
-
2125976·text·7.0 KB·2012-03-07 20:38 UTC
William Rockett
Professor Charles Crews
Theatre 1310
5 March 2012
Critical Evaluation of 1000 Proms - Gregory S Moss / Dump Monkeys - Jim Tyler Anderson
Basic Story - 1000 Proms
1000 pro
-
2125974·text·730 B·2012-03-07 20:33 UTC
int *convertToBin(uint8_t decimal)
{ int i, count =1,tmp_count,new_decimal;
new_decimal = decimal;
if( (decimal % 2) == 1) {
decimal = decimal -1;
// zero =1;
}
whi
-
2125968·java·2.4 KB·2012-03-07 20:18 UTC
//drop target css class = dd prefix + name of the drop target in the edit config
String ddClassName = DropTarget.CSS_CLASS_PREFIX + "slideshow";
boolean rotate = properties.get("rotate",false);
dou