This file contains hidden or 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
0106:<@B787_300> WE ARE LIVE | |
0106:< bigboateng> where do we see T- count | |
0106:< michaeltherobot> it's on! | |
0106:< SpaceX_guest|47418> IVE | |
0106:< Raptor42> Stream live | |
0106:<+theholyduck> yaysk | |
0106:< Qqqwxs> Totally the music is great | |
0106:< SpaceX_guest|47418> LIVE | |
0106:< Bernardo> oooooohohoohohohoohohh | |
0106:< arth> hahaha |
This file contains hidden or 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
// ==UserScript== | |
// @name Robin Autovoter | |
// @namespace http://jerl.im | |
// @version 1.9 | |
// @description Autovotes via text on /r/robin | |
// @author /u/keythkatz | |
// @match https://www.reddit.com/robin* | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ |
This file contains hidden or 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
@-moz-document regexp("https?:\\/\\/(?!.*i\\.).*\\.reddit\\.com.*") { | |
body.res-r-spacex { top: 110px; background: none !important; } | |
body.res-r-spacex #header { top: -110px; height: 110px; } | |
body.res-r-spacex #header #sr-header-area { background: hsl(0, 0%, 20%); } | |
body.res-r-spacex #header #header-bottom-left { height: 90px; } | |
body.res-r-spacex #header #header-bottom-right { background: hsl(0, 0%, 20%); top: 0; } | |
body.res-r-spacex #header #header-bottom-right::before { border-top-color: hsl(0, 0%, 20%); } | |
body.res-r-spacex #header #header-img-a { height: 90px; background-size: 130px 90px; background-position: 10px -5px; } | |
body.res-r-spacex #header div#header-bottom-left .redditname a { background-size: 210px 90px; height: 90px; } | |
body.res-r-spacex #header div#header-bottom-left ul.tabmenu { height: 90px; } |
This file contains hidden or 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
#!/bin/bash | |
BLOBH=256 | |
BLOBX=0 | |
BLOBY=0 | |
convert az0001.jpg final.png | |
BLOBW=$(identify -format "%w" final.png) | |
FULLWIDTH=$(identify -format "%w" final.png) | |
for filenum in {1..597}; do |
This file contains hidden or 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
(module (func $io_r (import "func" "io_r") (param i32) (result i32)) (func $io_w (import "func" "io_w") (param i32) (param i32)) (memory (import "buffers" "mem") 2) (table 16 anyfunc) (elem (i32.const 0) $r_ram $r_ram $r_ram $r_ram $r_ram $r_ram $r_ram $r_ram $r_ram $r_ram $r_basic $r_basic $r_ram $r_char $r_kernal $r_kernal) (func $r_ram (param $addr i32) (result i32) (i32.load8_u (i32.and (get_local $addr) (i32.const 0xFFFF)))) (func $r_basic (param $addr i32) (result i32) (i32.load8_u (if (result i32) (i32.eq (i32.and (i32.load (i32.const 0x0001)) (i32.const 3)) (i32.const 3)) (then (i32.add (i32.and (get_local $addr) (i32.const 0xFFFF)) (i32.const 0x10000))) (else (i32.and (get_local $addr) (i32.const 0xFFFF)))))) (func $r_kernal (param $addr i32) (result i32) (i32.load8_u (if (result i32) (i32.and (i32.load (i32.const 0x0001)) (i32.const 2)) (then (i32.add (i32.and (get_local $addr) (i32.const 0xFFFF)) (i32.const 0x10000))) (else (i32.and (get_local $addr) (i32.const 0xFFFF)))))) (func $r_char (param $ad |
This file contains hidden or 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
;-------------------------------------------------------------------------- | |
; C64 reimplementation of Pongwars | |
; Imran Nazar, 2024 | |
; References: | |
; - Source: vnglst: https://hachyderm.io/@vnglst/111828811496422610 | |
; - C64 memory map: https://sta.c64.org/cbm64mem.html | |
; - SID RNG: https://stackoverflow.com/questions/44937759 | |
; - Raster interrupt: https://codebase64.org/doku.php?id=base:introduction_to_raster_irqs | |
; - Sprite design: https://cpstest.us/minecraft-circle-generator/ | |
; - Sprite positioning: |
OlderNewer