This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 RESTORE | |
15 LET KEYS=0 | |
30 LET c$="": LET p$="": DIM u(43): DIM v(43): DIM w(43) | |
70 LET n1=43: LET n2=16: LET n3=121 | |
80 RESTORE 2200 | |
90 FOR x=1 TO n1: READ u(x): READ l1: LET v(x)=u(x): LET w(x)=u(x)+l1-1: NEXT x | |
120 LET x$="Hi,I'm Eliza,whats your problem?" | |
130 GO SUB 2240 | |
150 INPUT LINE a$ | |
152 LET flag=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* vn.c generic virtual network client/server | |
* via UDP | |
* Author: Daniele Lacamera | |
* License MIT | |
*/ | |
#include <sys/socket.h> | |
#include <sys/types.h> | |
#include <linux/if_tun.h> | |
#include <stdio.h> | |
#include <stdint.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** *** *** *** | |
* Robot war cry | |
* | |
** Chiptune generated via loop variable (bytebeat). | |
* use: | |
* cc -o rwc rwc.c | |
* ./rwc |aplay | |
* | |
* Discovered by: danielinux | |
* Source code license: GPL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tar ext :3333 | |
monitor reset | |
layout src | |
symbol-file | |
file kernel.elf | |
mon reset | |
mon halt | |
stepi | |
focus c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
from scapy.all import * | |
import time, sys | |
pkts = rdpcap(sys.argv[1]) | |
clk = pkts[0].time | |
for p in pkts: | |
time.sleep(p.time - clk) | |
clk = p.time | |
sendp(p) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---------------------------------------- | |
-- script-name: dozer.lua | |
-- | |
-- Based on example LUA dissector by Hadriel Kaplan <hadrielk at yahoo dot com> | |
-- Copyright (c) 2016 Daniele Lacamera | |
-- GPLv2 | |
-- | |
-- Wireshark dissector for the VLC implementation of the Dozer protocol | |
-- | |
-- To add the dissector, start your wireshark using: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Font to buffers -> convert .font file into C const buffers */ | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <fcntl.h> | |
#include <stdlib.h> | |
#include <sys/stat.h> | |
int main(int argc, char *argv[]) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create dir | |
mkdir frosted-qemu | |
cd frosted-qemu | |
# Clone frosted | |
git clone [email protected]:insane-adding-machines/frosted.git | |
cd frosted | |
git submodule init | |
git submodule update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Crosstool-NG Configuration | |
# | |
CT_CONFIGURE_has_xz=y | |
CT_MODULES=y | |
# | |
# Paths and misc options | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdint.h> | |
#include "pico_socket.h" | |
enum zmq_hshake_state { | |
ST_LISTEN = 0, | |
ST_CONNECTED, | |
ST_SIGNATURE, | |
ST_VERSION, | |
ST_GREETING, |