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 / index.html
Created September 11, 2023 08:09
MWZpdqz
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
@mcnemesis
mcnemesis / django_apps.conf
Last active July 12, 2023 11:06
Sample Mod-Macro spec for a single Django App running with Apache on a local subnet (useful to run apache behind nginx)
<Macro DJANGO_APP $IP $PORT $DOMAIN $ADMIN_EMAIL $PROJECT_DIR $APP >
NameVirtualHost $IP:$PORT
Listen $IP:$PORT
<VirtualHost $IP:$PORT>
ServerName $DOMAIN
ServerAlias www.$DOMAIN *.$DOMAIN
ServerAdmin $ADMIN_EMAIL
# to allow each django project to use its own nginx daemon and thus prevent sharing settings
@mcnemesis
mcnemesis / nginx_default
Created July 12, 2023 10:46
Sample Nginx Server Config for Serving Django App running on hidden/local network Apache instance with/without SSL
# OUR SERVER
server {
listen 80;
server_name .domain.com;
return 301 https://domain.com$request_uri;
}
server {
@mcnemesis
mcnemesis / HIDAc_default_knowledgebase.json
Created May 24, 2023 08:22
Default AI Knowledge Model Config for the HIDAC robot
{
"published":"20 Apr, 2023",
"references":"",
"name":"HIDA: Maternal Healthcare QA",
"qa":[
{
"q":"Why do I feel tired and weak",
"id":45,
"aq":[
package com.nuchwezi.nulabs;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import com.nuchwezi.xlitedatabase.DBAdapter; // <-- get the DAL
@mcnemesis
mcnemesis / write_endings
Created July 19, 2013 12:50
[Stolen] Interesting Ways to End Letters and Email, until you die.
Normal, Funny, Unique, and Loving ways to end your letters, notes, e-mails, conversations, tweets, posts....
I love lists.....
Normal:
Best/Warm wishes,
Confidently yours,
Kind regards,
Respectfully Yours,
With anticipation,
Hugs,
@mcnemesis
mcnemesis / vosac_default_knowledgebase.json
Last active August 17, 2022 11:05
Default AI Knowledge Model Config for the VOSAC robot
{
"qa": [
{
"aq": [
"Who is your father?",
"Who is your dad?",
"Who are your parents?"
],
"id": 25,
"a": "Joseph Willrich Lutalo, he fathered me.",
@mcnemesis
mcnemesis / fun.sh
Created June 10, 2022 10:48
Have Fun in Bash Shell
# place the following into somewhere like /etc/bash.bashrc.local
# then import into your bash terminals via ~/.bashrc with:
# source /etc/bash.bashrc.local
function fun {
R=$(($RANDOM % 4))
if [[ $R -eq 1 ]]
then
sl
elif [[ $R -eq 2 ]]
@mcnemesis
mcnemesis / code_poem--the-table-craftsman--JWL.js
Created January 28, 2022 11:43
Tale of The Table Maker --- a code poem by JWL (nemesisfixx)
/*********************** Tale of The Table Maker **********************
***********************************************************************
* CODE POET: nemesisfixx
***********************************************************************
*
* Once, when presented with a box of obscure things,
* and a style of table desired,
* the craftsman had to do his magic on them, then
* hand back a brand-new table, ready to be used!
*
@mcnemesis
mcnemesis / macro_insert_image_based_on_cell_url.vba
Created August 11, 2016 12:55
Excel VBA Macro to insert image into a cell based on url in another cell
Sub InstallPictures()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Dim url_column As Range
Dim image_column As Range
'column with url...
Set url_column = Worksheets(1).UsedRange.Columns("AE")
'column where image will be inserted