Skip to content

Instantly share code, notes, and snippets.

View rcsmit's full-sized avatar

Rene Smit rcsmit

View GitHub Profile
monsterlist <- c() #This will hold the number of disabled in each sim run
for (h in 1:100){ #Repeat simulation 100 times
disabled <- c() #This will hold the disabled within each sim run
population <- as.vector(c(rep(0,10000))) #The population of 10,000
/* LETS LOOK AT THE WORLD DATA */
FILENAME REFFILE '/Data/owid-covid-data.xlsx';
PROC IMPORT DATAFILE=REFFILE DBMS=XLSX OUT=WORK.IMPORT;GETNAMES=YES;RUN;
proc freq data=import nlevels;table date;run;
proc freq data=import nlevels;table location;run;
data import; set import;
new = input(date,yymmdd10.);
drop date;
rename new=date;
run;
// When an ad is detected, this script mutes the Spotify music player and plays custom audio files instead
// Paste in console of web app / PWA
// Add your own audio file URLs below to replace the ads
// Or empty to play nothing
//-------------------------------------------------------//
let tunes = [
@aemkei
aemkei / LICENSE.txt
Last active April 12, 2024 21:27 — forked from 140bytes/LICENSE.txt
Binary Tetris - 140byt.es
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE