Skip to content

Instantly share code, notes, and snippets.

View ktwrd's full-sized avatar

kate ktwrd

View GitHub Profile
@ktwrd
ktwrd / ethanol.json
Last active April 3, 2024 03:25
SixGrid Global Blacklist
["cub","child","young","bestiality","paw_patrol","human_on_feral"]
@ktwrd
ktwrd / quake3_cdgen.py
Created June 1, 2022 10:43
Quake 3 Arena CD Keygen
import random
global keygen, intmap
keygen = ""
intmap = [
"2",
"3",
"7",
"a",
"b",
  1. Right-click on the Start Menu Button and click on the Run option. https://res.kate.pet/upload/3e17fd8d-dbe4-4ec3-9feb-48f1955efe2e/Pasted%20image%2020220524103548.png

  2. Once you've clicked the Run button this window should open. https://res.kate.pet/upload/a6c01bd2-741c-4118-9ac8-72f8ae8b0f03/Pasted%20image%2020220524103631.png

  3. Write rundll32.exe keymgr.dll, KRShowKeyMgr in the text box then click on the OK button. https://res.kate.pet/upload/f64c0795-ddf7-41a7-ac68-463c1186c13a/NVIDIA_Share_3AXMuhH6pP.gif

  4. Once you've clicked OK a new window should open, select a list item that has 192.168.10.120 or MinalyzeServer in it then click on the Edit button.

<template>
<div>
<div class="dogcunt" v-bind:showshit="flags.thing ? 'yes' : 'no'">
<div class="altcontent">
<p>additional options would be here</p>
</div>
<div class="maincontent">
<div>
<b-col>
<b-row>
@ktwrd
ktwrd / iperf3-installer.sh
Created February 1, 2022 10:14
iperf3 Server + SystemDService Installer
#!/usr/bin/sudo /bin/bash
apt update
apt install -y iperf3
echo $(cat << EOF
[Unit]
Description=iperf3 Server
After=network.target
[Service]
@ktwrd
ktwrd / overclock.sh
Created August 14, 2021 07:15
Linux Nvidia Overclock
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "Run with root please! It's required for \"nvidia-settings\""
exit 1
fi
export DISPLAY=:0
# Graphics Card Number
GPUID="0"
@ktwrd
ktwrd / TraceRoute.js
Created May 17, 2021 11:57
Simple TraceRoute Thing made in Node.JS
const tr = require("nodejs-traceroute");
var HopLog = [];
const EventParse = (objInputTraceData) =>
{
if (objInputTraceData.ip == undefined) return;
HopLog.push(objInputTraceData);
if (objInputTraceData.ip == 'Request timed out.' || objInputTraceData.rtt1 == '*')
{
@ktwrd
ktwrd / document.wflow
Created February 28, 2021 09:25
Mount NTFS with NTFS-3G
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AMApplicationBuild</key>
<string>444.7</string>
<key>AMApplicationVersion</key>
<string>2.8</string>
<key>AMDocumentVersion</key>
<string>2</string>
@ktwrd
ktwrd / server.js
Last active February 23, 2021 04:15
Temporary HTTP Server
/*
This is only meant for use where you are testing if a server can recieve HTTP requests.
*/
const http = require("http");
const toolbox = require("tinytoolbox")
const port = parseInt(toolbox.stringGen(5,7));
http.createServer(function (req, res) {
// console.log(req);
@ktwrd
ktwrd / palette.css
Created February 13, 2021 08:04
2014 Material Color Palettes
:root
{
--PAL_RED-50: #FFEBEE;
--PAL_RED-100: #FFCDD2;
--PAL_RED-200: #EF9A9A;
--PAL_RED-300: #E57373;
--PAL_RED-400: #EF5350;
--PAL_RED-500: #F44336;
--PAL_RED-600: #E53935;
--PAL_RED-700: #D32F2F;