Kasparov jugando contra PC's
viernes, 4 de septiembre de 2026
jueves, 4 de septiembre de 2025
miércoles, 3 de septiembre de 2025
lunes, 26 de agosto de 2024
Pacman codigo fuente a8
Una buena compilacion de codigo fuentes y versiones de pacman, incluyendo intermissions.
https://atariwiki.org/wiki/Wiki.jsp?page=PAC-MAN
lunes, 26 de febrero de 2024
lunes, 8 de enero de 2024
Silicon Valley s03e01
#include <stdio.h>
#include <stdlib.h>
typedef unsigned long u64;
typedef void enc_cfg_t;
typedef int enc_cfg2_t;
typedef __int128_t dcf_t;
enc_cfg_t _ctx_iface(dcf_t s, enc_cfg2_t i) {
int c = (((s & ((dcf_t)0x1FULL << i * 5)) >> i * 5) + 65);
printf("%c", c); }
enc_cfg2_t main() {
for (int i=0;i<17; i++) {
_ctx_iface(0x79481E6BBCC01223 + ((dcf_t)0x1222DC << 64), i);
}
}
result:
DREAM_ON_ASSHOLES
domingo, 7 de enero de 2024
Ex Machina (2014)
#BlueBook code decryption
import sys
def sieve(n):
x = [1] * n
x[1] = 0
for i in range(2,n/2):
j = 2 * i
while j < n:
x[j]=0
j = j+i
return x
def prime(n,x):
i = 1
j = 1
while j <= n:
if x[i] == 1:
j = j + 1
i = i + 1
return i - 1
x=sieve(10000)
code = [1206,301,384,5]
key =[1,1,2,2,]
sys.stdout.write("".join(chr(i) for i in [73,83,66,78,32,61,32]))
for i in range (0,4):
sys.stdout.write(str(prime(code[i],x)-key[i]))
ISBN = 9780199226559
https://www.amazon.com/Embodiment-inner-life-Cognition-Consciousness/dp/0199226555
viernes, 7 de abril de 2023
sábado, 16 de julio de 2022
I.F.O. (Identified Flying Object) (1987)
Ahora revisando lo poco que aparece de código fuentes queda claro que es Atari Basic. POKE 53248
https://www.imdb.com/title/tt0298093/
Tambien conocida como:
- Defense Play
- I.F.O
- Air Racing
- O.V.I. Objeto Volador Identificado
After decades of searching I was able to find a movie that I saw on late night television where I think I saw an Atari 400 (it really looks more like an apple2), but I remember the basic code and the joystick, in addition to the semi-arid geography, a bicycle and a remote control (RC) helicopter.
It has some Atari basic code, using POKE 53248






























































