En vista de que la quake-manía se ha evaporado por los rumbos de la red local habrá que ponerse a jugar quake-live.
viernes, 30 de abril de 2010
miércoles, 28 de abril de 2010
doy2tm.c
#define _XOPEN_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
time_t doy2tm(const int year, const int dayofyear, struct tm *tm) {
int leapyear, m, d;
int d_in_m [] = {31,28,31,30,31,30,31,31,30,31,30,31};
memset(tm, 0, sizeof(*tm));
leapyear = (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0));
if( dayofyear < 1 || dayofyear > (leapyear ? 366 : 365) ) {
return (time_t) -1;
}
if(leapyear) { d_in_m[1]=29; }
for(m=0, d=dayofyear;
d>d_in_m[m];
d-=d_in_m[m++]);
tm->tm_mday=d;
tm->tm_mon=m;
tm->tm_year=year - 1900;
return mktime(tm);
}
int main (int argc, char* argv[]) {
struct tm tm;
int y,d;
char str[128];
if (argc != 3) {
fprintf(stderr, "Usage: %s year dayofyear\n", argv[0]);
return EXIT_FAILURE;
}
y = atoi(argv[1]);
d = atoi(argv[2]);
if (doy2tm(y,d,&tm) == -1) {
fputs("doy2tm returned -1\n", stderr);
return EXIT_FAILURE;
}
if (strftime(str, sizeof(str), "%c", &tm) == 0) {
fputs("strftime returned 0\n", stderr);
return EXIT_FAILURE;
}
printf("%d %d => %s\n", y, d, str);
return EXIT_SUCCESS;
}
martes, 27 de abril de 2010
doy2m.pl
#!/usr/bin/perl -wl
#
# doy2m.pl
# day of year 2 month
use Date::Manip;
my ($y,$m,$d,$h,$mn,$s) = Date_NthDayOfYear(2010,69);
print $m;
#
# doy2m.pl
# day of year 2 month
use Date::Manip;
my ($y,$m,$d,$h,$mn,$s) = Date_NthDayOfYear(2010,69);
print $m;
jueves, 8 de abril de 2010
Por si no se entendió
Por si alguien no entendió el post de Showtime Networks Incorporated:
Case ID: 1024197398
Infringing Work: Dexter
First Found: 4 Mar 2010 00:05:03 EST (GMT-0500)
Last Found: 4 Mar 2010 00:05:03 EST (GMT-0500)
IP Address: 132.248.30.X
IP Port: 51413
Protocol: BitTorrent
Torrent InfoHash: 6B9F76C83C1B73EF852F9BC011698113A4F6966A
Containing files(s): Dexter.S04E02.Remains.to.Be.Seen.HDTV.XviD-FQM.avi.torrent (576,730,440 bytes)
El 3 de marzo del 2010 a las 23:05:03 hora local se encuentra que el equipo con direción de internet 132.248.30.X está corriendo un programa de bittorrent en el puerto de comunicación 51413 el cual contiene el archivo de nombre Dexter.S04E02.Remains.to.Be.Seen.HDTV.XviD-FQM.avi.torrent con un tamaño de 576,730,440 bytes.
Se presume que dicho archivo, en el formato AVI de Microsoft creado con el codificador XviD con la opción FQM, contiene una copia no autorizada del vídeo de la serie de televisión Dexter, Temporada 4, Episodio 2, con título "Remains to be seen", en formato de alta definición.
Case ID: 1024197398
Infringing Work: Dexter
First Found: 4 Mar 2010 00:05:03 EST (GMT-0500)
Last Found: 4 Mar 2010 00:05:03 EST (GMT-0500)
IP Address: 132.248.30.X
IP Port: 51413
Protocol: BitTorrent
Torrent InfoHash: 6B9F76C83C1B73EF852F9BC011698113A4F6966A
Containing files(s): Dexter.S04E02.Remains.to.Be.Seen.HDTV.XviD-FQM.avi.torrent (576,730,440 bytes)
El 3 de marzo del 2010 a las 23:05:03 hora local se encuentra que el equipo con direción de internet 132.248.30.X está corriendo un programa de bittorrent en el puerto de comunicación 51413 el cual contiene el archivo de nombre Dexter.S04E02.Remains.to.Be.Seen.HDTV.XviD-FQM.avi.torrent con un tamaño de 576,730,440 bytes.
Se presume que dicho archivo, en el formato AVI de Microsoft creado con el codificador XviD con la opción FQM, contiene una copia no autorizada del vídeo de la serie de televisión Dexter, Temporada 4, Episodio 2, con título "Remains to be seen", en formato de alta definición.
Suscribirse a:
Entradas (Atom)