Skip to content

Instantly share code, notes, and snippets.

View roblogic's full-sized avatar
💭
probably playing code golf

Rob Papesch roblogic

💭
probably playing code golf
  • Auckland, NZL
  • 21:07 (UTC +13:00)
View GitHub Profile
debug=#
jw(){
(($#1>$#2))&&x=$1 y=$2||x=$2 y=$1
x=$x:l y=$y:l h=$[$#y/2+1]
$debug echo x $x y $y h $h
r(){
l=$#2 g=$2 s=
for i ({0..$#1});{
0DATA0,160,90,0,180,160
1HGR:HCOLOR=3:DIM x(3),y(3):FOR i=0to 2:READ x(i),y(i):HPLOT x(i),y(i):NEXT i
2x=int(RND(1)*180):y=int(RND(1)*150):HPLOT x,y:FOR i=1to999:v=int(rnd(1)*3):x=(x+x(v))/2:y=(y+y(v))/2:HPLOT x,y:NEXT:GOTO2

I have a 64 GB USB thumb drive with a recording of my father on it. Want to copy it and extract the video to share with family.

Here's what I have so far

Taking a snapshot (MacOS)

sudo dd if=/dev/disk2 of=/Users/papr/Desktop/samsung_tv_drive.img bs=1m
@roblogic
roblogic / sixd.txt
Last active October 21, 2024 01:56
Simple ASCII six sided die (dice)
,-------,
/ \ @ \
/ @ \ @ \
/ \ @ \
X X-------X
\ / /
\ @ / @ /
\ / /
'-------'

install blackhole

using Homebrew

brew install --cask blackhole-2ch

mess around with MacOS audio device settings

@roblogic
roblogic / README.md
Created August 21, 2023 09:52 — forked from brennanMKE/README.md
Clone All Gists

Clone All Gists

This is a shell script version of the Node.js version created by mbostock.

Place it in a directory in your PATH and set the permissions.

chmod u+x clone-all-gists
@roblogic
roblogic / yakgolf
Created February 3, 2023 20:54
Solution to Code Golf problem: "Yakko's New World Order", https://codegolf.stackexchange.com/q/257358/15940
#!/bin/zsh
argv=(abudhabi afghanistan albania algeria algiers angola argentina australia austria bahamas bahrain bangladesh barbados belgium belize benin bermuda bhutan bolivia borneo botswana brazil bulgaria burma burundi cameroon canada caribbean cayman chad chile china colombia congo costarica crete cuba cyprus czechoslovakia dahomey denmark djibouti ecuador egypt elsalvador england ethiopia fiji finland france frenchguiana gabon gambia germany ghana greece greenland guam guatemala guinea guinea-bissau guyana haiti honduras hongkong hungary iceland india indonesia iran iraq ireland israel italy jamaica japan jordan kampuchea kenya korea kuwait laos lebanon lesotho liberia libya liechtenstein luxembourg madagascar mahore malawi malaysia mali malta mauritania mexico monaco mongolia morocco mozambique namibia nepal newguinea newzealand nicaragua niger nigeria norway oman pakistan palestine panama paraguay peru poland portugal puertorico qatar republicdominican romania russia rwanda sanjuan saudiarabia scotlan
@roblogic
roblogic / bits.85
Last active November 23, 2022 05:14
Snippets for Arecibo Code Golf answer https://codegolf.stackexchange.com/a/191473/15940
0&M8}p.B@#L#QZE00001Fb*2U02+?qq#={[000069asT6g8.)4ZwEwH000Mg1onA4aoh}/0Q{6?7
?7Abap8T<N!#M/0000:ZZ{J%0d$no1{.{L01Yzs5hjUju{Cb/00eC!f:[8q1oX#k5eUKnfBigKaB
[#)FcD1?fA=JG2NyzwD&LsiWGLW<&LA29Gr+T=<o=q3huiZS05#83BRN)l3zmwk01TOWF4#ep&0Y
P[gY.1d24nhWll]9LmgYDLaoqEc0f^Fe]ZR$Y
#!/bin/zsh
setopt extendedglob
s=0
f(){
q=(${(s: :)${1//(#s)d/1d}//[^0-9]/ })
for i ({1..$q[1]})((s+=RANDOM%q[2]+1))
<<<$[s+q[3]]
}
f d1
f d6
@roblogic
roblogic / fizzbuzz.f
Created November 7, 2022 15:39
fizzbuzz in gfortran (145 bytes), for code golf challenge https://codegolf.stackexchange.com/a/254203/15940
character(8)s;do i=1,100;s=''
if(mod(i,3)<1)s='fizz';if(mod(i,5)<1)s=trim(s)//'buzz'
if(s>'')then;print'(A)',s;else;print'(i0)',i;endif;enddo;end