-
2057583·text·303 B·2011-05-12 20:32 UTC
22:32:23.847420 IP6 2001:470:1f15:1372:21b:63ff:fe08:d8a3 > 2001:470:1f15:1372:1::2: ICMP6, echo request, seq 157, length 16
22:32:23.851060 IP6 2001:470:1f15:1372:1::2 > 2001:470:1f15:1372:21b:63ff:
-
2057582·text·761 B·2011-05-12 20:30 UTC
$ cmake . -DCMAKE_PREFIX_PATH=/opt/xorg
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so - found
-- Lookin
-
2057581·text·10.6 KB·2011-05-12 20:29 UTC

w
21:01:14
powitawszy

Cowal (+)
21:01:22
ooo dziala
21:01:44
aa konfa ?

w
21:01:51
no siemka
21:01:53
co tam ?

Cowal (+)
21:02:27
jak chcecie zwierzaka to
-
2057579·text·1.9 KB·2011-05-12 20:28 UTC
ay 12th:
Code Updates
Added Teamkill Complaint system: When a player is teamkilled they will now be prompted as to whether or not they wish to file a complaint to the server vs the offending teamm
-
2057575·cpp·2.2 KB·2011-05-12 20:21 UTC
void ExerciseN_ABXY::keyPressed(unsigned char key)
{
AbstractExercise::keyPressed(key);
m_key = key;
switch (m_key) {
case '1':
printf("Rasterizing polygon
-
2057570·text·598 B·2011-05-12 19:57 UTC
#include <stdio.h>
long *p;
void a(void);
void b(void);
void c(void);
int main(void)
{
long m = 10;
p = &m;
printf("&m = %u\n", (unsigned long)p);
a();
return 0;
}
void a(
-
2057567·text·65.9 KB·2011-05-12 19:44 UTC
-
2057565·text·503 B·2011-05-12 19:29 UTC
#include <stdio.h>
long *p;
void a(void);
void b(void);
void c(void);
int main(void)
{
long m = 10;
p = &m;
printf("&m = %p\n", p);
a();
return 0;
}
void a(void)
{
long
-
2057564·text·2.3 KB·2011-05-12 19:27 UTC
-----------
watchwilmaa
-----------
Bash script for watching online TV streams from wilmaa.com, so you
don't need flash / a browser anymore.
THIS MOST LIKELY WORKS ONLY FROM SWITZERLAND, SI
-
2057562·text·3.1 KB·2011-05-12 19:20 UTC
#
# This shell script will "fill" a floppy with files from
# another floppy until the destination floppy is full.
# then it will ask for a second destination floppy and
# continue to fill that floppy
-
2057561·text·385 B·2011-05-12 19:16 UTC
mike@baconator:~/dev$ snmpwalk -Os -c Canopy -v 2c 172.16.20.24 .1.3.6.1.4.1.161.19.3.1.7.1.0
iso.3.6.1.4.1.161.19.3.1.7.1.0 = Gauge32: 57
#!/usr/bin/env python
import netsnmp
oid = netsnmp.Va
-
2057558·text·7.2 KB·2011-05-12 19:08 UTC
javax.servlet.ServletException: javax.servlet.jsp.JspException: org.xml.sax.SAXException: Invalid element in com.konakart.wsapp.Product - customAttrArray
at org.apache.jasper.runtime.PageContextImpl
-
2057556·text·236 B·2011-05-12 19:03 UTC
setInterval(function()
{
$.ajax({
type:"post",
url:"phpScript.php",
postfieldkey:"value",
success:function(data)
{
// do something with response da
-
2057555·text·456 B·2011-05-12 18:59 UTC
self.mylogger = logging.getLogger('ScribeLogger')
self.mylogger.setLevel(logging.DEBUG)
handler = ScribeHandler.ScribeHandler(category='%(hostname)s-%(levelname)s', host=Co
-
2057554·python·3.7 KB·2011-05-12 18:58 UTC
#/usr/bin/env python
# -*- coding: utf-8 -*- #
#Copyright (C) 2011 Carlos Pais
#Licença: WTFPL <http://sam.zoy.org/wtfpl/COPYING>
"""Cria um conjunto de imagens de A a Z de acordo com o fundo pr
-
2057553·text·353 B·2011-05-12 18:55 UTC
void a();
void b();
void c();
jmp_buf buf1,buf2,buf3;
void a()
{
if(setjmp(buf1)==0)
b();
else
{
printf("\nin else of a\n\n");
longjmp(buf2,1);
}
}
void b()
{
c()
-
2057550·c·3.3 KB·2011-05-12 18:48 UTC
/*PRIMER PARCIAL DE LABORATORIO I 1-B
Nombre y apellido: Curso:
Tema 2
Una fabrica de sillas tiene 280 empleados que contienen cada uno de ello
-
2057549·text·1.8 KB·2011-05-12 18:47 UTC
ubuntu@ip-10-128-99-184:~$ top
top - 18:46:55 up 11:53, 1 user, load average: 3.89, 8.07, 6.65
Tasks: 65 total, 1 running, 64 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.0%us, 0.0%sy, 0.
-
2057548·text·1.7 KB·2011-05-12 18:45 UTC
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.2 2832 1708 ? Ss 06:52 0:00 /sbin/init
root 2 0.0 0.0 0 0 ? S
-
2057547·text·348 B·2011-05-12 18:44 UTC
#include <stdio.h>
#include <stdlib.h>
#include <setjmp.h>
void a();
void b();
void c();
jmp_buf buf1,buf2,buf3;
void a()
{
b();
longjmp(buf1,1);
}
void b()
{
c();
}