View index.html
This file contains 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
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"> | |
View nginx_default
This file contains 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
# OUR SERVER | |
server { | |
listen 80; | |
server_name .domain.com; | |
return 301 https://domain.com$request_uri; | |
} | |
server { |
View django_apps.conf
This file contains 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
<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 |
View HIDAc_default_knowledgebase.json
This file contains 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
{ | |
"published":"20 Apr, 2023", | |
"references":"", | |
"name":"HIDA: Maternal Healthcare QA", | |
"qa":[ | |
{ | |
"q":"Why do I feel tired and weak", | |
"id":45, | |
"aq":[ | |
View vosac_default_knowledgebase.json
This file contains 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
{ | |
"qa": [ | |
{ | |
"aq": [ | |
"Who is your father?", | |
"Who is your dad?", | |
"Who are your parents?" | |
], | |
"id": 25, | |
"a": "Joseph Willrich Lutalo, he fathered me.", |
View fun.sh
This file contains 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
# 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 ]] |
View code_poem--the-table-craftsman--JWL.js
This file contains 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
/*********************** 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! | |
* |
View TTTT.Default.EXAMPLE.TEAS.json
This file contains 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
["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]: |
View index.html
This file contains 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
<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> |
View TestXLiteDatabaseActivity.java
This file contains 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
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 |
NewerOlder