Mostrando las entradas con la etiqueta codigo fuente. Mostrar todas las entradas
Mostrando las entradas con la etiqueta codigo fuente. Mostrar todas las entradas

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]))

print


ISBN = 9780199226559

 

https://www.amazon.com/Embodiment-inner-life-Cognition-Consciousness/dp/0199226555


sábado, 16 de julio de 2022

I.F.O. (Identified Flying Object) (1987)

Después de décadas de búsqueda pude encontrar una pelicula que vi en televisión de horario de trasnoche donde creo haber visto un atari 400 (realmente parece más un apple2), pero si recordaba el código basic y el joystick, además de la geografía semiárido, una bicicleta y un helicóptero remote control (RC).

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