Skip to content

Instantly share code, notes, and snippets.

View mcnemesis's full-sized avatar
💭
DNAP hackathons on days with good weather ;-)

Nemesis Fixx Da JWL mcnemesis

💭
DNAP hackathons on days with good weather ;-)
View GitHub Profile
@mcnemesis
mcnemesis / TTTT.Default.EXAMPLE.TEAS.json
Created June 5, 2021 06:49
TEA Text Transformer Terminal (TTTT) standard starter TEAS (TExt Alternator Scripts) --- from Nuchwezi Research
["Ryf Transform|r:[lL]:R\nr:[aeio]:U","Garagu Script|r:[uU]{1}:a\nR:A:U\naa:","Raid Transform|r:[ae]d:id\na:","Ryf Transform RIz|r:[uU]:A\nr:[lL]:R\nr:[aeio]:U","Condenser Scrypt|r:[Ww]hat:whT\nr:how:hw\nr:[ ]*are[ ]: r \nr:why:y\n","Ryf Transform RIzA-1|r:[uU]:A\nr:[lL]:R\nr:[aeio]:U\na:","Ryf Transform RIzA-2|r:[uU]:A\nr:[lL]:R\nr:[aeio]:U\na:\nr:[xX]:J\nr:,: ","The Basic RZA Transform|r:z:a\nr:y:b\nr:x:c\nr:w:d\nr:v:e\nr:u:f\nr:t:g\nr:s:h\nr:r:i\nr:q:j\nr:p:k\nr:o:l\nr:n:m\nr:m:n\nr:l:o\nr:k:p\nr:j:q\nr:i:r\nr:h:s\nr:g:t\nr:f:u\nr:e:v\nr:d:w\nr:c:x\nr:b:y\nr:a:z","The Shuffle RZA Transform |r:z:a\nr:y:b\nr:x:c\nr:w:d\nr:v:e\nr:u:f\nr:t:g\nr:s:h\nr:r:i\nr:q:j\nr:p:k\nr:o:l\nr:n:m\nr:m:n\nr:l:o\nr:k:p\nr:j:q\nr:i:r\nr:h:s\nr:g:t\nr:f:u\nr:e:v\nr:d:w\nr:c:x\nr:b:y\nr:a:z\ns:","Ryf Transform Quertzcolt|r:z:a\nr:y:b\nr:x:c\nr:w:d\nr:v:e\nr:u:f\nr:t:g\nr:s:h\nr:r:i\nr:q:j\nr:p:k\n#r:o:l\nr:n:m\nr:m:n\nr:l:o\nr:k:p\nr:j:q\nr:i:r\nr:h:s\nr:g:t\nr:f:u\n#r:e:v\nr:d:w\nr:c:x\nr:b:y\nr:a:z\n#a:\ns:\n\nr:[a]:A\nr:[lL]:
@mcnemesis
mcnemesis / index.html
Created November 23, 2020 19:03
SQUIZ Book Search
<div class="container">
<span class="hbar"></span>
<input type="text" placeholder="Search..." id="query" onkeypress="return runScript(event)" >
<div class="search"></div>
<div class="results">
<div class="rlist">
<h4 id="status">Welcome to the SQUIZ book search interface.</h4>
<ul id="list">
</ul>
<small>Designed by <a class="alink" href="https://nuchwezi.com" target="_blank">NuChwezi</a></small>
@mcnemesis
mcnemesis / MainActivity.java
Last active November 2, 2020 17:09
Example Activity using the DNAP Histrion as an embed
package com.nuchwezi.nulabs;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@mcnemesis
mcnemesis / DRAMON.default.config.json
Last active July 6, 2020 08:18
Sample DRAMON Configuration
{"DRINK":["Soda","Water","Something Hot","Tea","Some Wine","Milk","Yorghurt","Beer","Spirit","Porridge","A Herb.","some Fresh Juice","Bushera","Warm Water"],"CALL":["A Girlfriend","A Relative","Your Friend","someone you miss."],"EAT":["A Fruit","Leafy Vegetables","Fish","Nuts","Something Starchy","No meat","Chicken","some Seeds"],"GO TO":["Entebbe","A Forest","The Lake","Kampala","Home","School","a dance floor.","Bed.","work. "],"Summon":["God","Guardian Angel","Allself","Certain","your muse."],"LISTEN TO":["Some Nu Music","A Podcast","Old Hip Hop","Ragga!","Jazz","Some music.","Something you can play yourself, using things around you.","Traffic"],"WATCH":["A Music Video","A Science Video","Some News","A Cartoon","A Movie","A Comedy","Nature","Your Inner World","Something Erotic","The Skies."],"READ":["from SHRINES, by JWL.","a Holy Scripture.","One of your old documents.","Poetry","A Novel","the News","the Clouds","that book. "],"RITE":["Alone","With Someone else. (No more than 5).","With Someone else. (No m
@mcnemesis
mcnemesis / lines_to_pythonic_list.sh
Created February 20, 2020 15:02
Transform a file of lines into a pythonic-list of comma delimited strings on the command line
cat old_db_tables.list.txt |sed -e 's/^/"/;s/$/"/'| tr '\n' ','|sed 's/^/[/;s/$/]/'
@mcnemesis
mcnemesis / generate_rand_bool_matrix.r
Last active April 23, 2019 09:27
A method to generate stochastic boolean matrices in R
library(openssl)
matrix(sapply(c(rand_num(100)), (function(n) (round(n*100)%%2))), nrow=5)
@mcnemesis
mcnemesis / last_log
Created April 11, 2019 07:40
for those times you need a handy utility to preview logs on the way to doing other things...
# nuchwezilabs ## for those times you need a handy utility to preview logs on the way to doing other things...
#alias lastlog="tail -n 20 $(ls -d -t -1 "$PWD/logs/"** | sed -n '2p')"
#nu method...
function lastlog() {
tail -n 20 $(ls -d -t -1 $(pwd)/logs/** | sed -n '2p')
}
@mcnemesis
mcnemesis / apply_margins
Last active March 27, 2019 18:58
Exploring R: apply()
# Construct a 5x6 matrix
X <-matrix(rnorm(30), nrow=5, ncol=6)
# Sum the values of each row with `apply()`
X2 <- apply(X, 1, sum)
NROW(X2)
NCOL(X2)
# So the same for each row
X3 <- apply(X, 2, sum)
alias lastlog="tail -n 20 $(ls -d -t -1 "$PWD/logs/"** | sed -n '2p')"