Skip to content

Instantly share code, notes, and snippets.

View kizzlah's full-sized avatar
🌙
🦉

🌙🦉 kizzlah

🌙
🦉
  • Kenner, LA
View GitHub Profile
### Keybase proof
I hereby claim:
* I am kizzlah on github.
* I am kizzlah (https://keybase.io/kizzlah) on keybase.
* I have a public key ASCCkAlRcb-H2JJPDffp2U3tXuU-ApmNmaiwJZY7OodRyQo
To claim this, I am signing this object:
def display_menu():
print("1. Add Task")
print("2. View Tasks")
print("3. Mark as Done")
print("4. Exit")
def add_task(tasks):
task = input("Enter task description: ")
tasks.append(task)
print("Task added successfully!")
@kizzlah
kizzlah / pulsar.conf
Created April 20, 2025 01:58
Basic Apache Pulsar Configuration
# Basic Apache Pulsar Configuration
# Cluster Configuration
clusterName=my-pulsar-cluster
zookeeperServers=localhost:2181
configurationStoreServers=localhost:2181
# Broker Configuration
brokerServicePort=6650
webServicePort=8080
@kizzlah
kizzlah / mactex_guide.md
Created April 13, 2025 06:27
Complete MacTeX User Guide
@kizzlah
kizzlah / unbrew.rb
Created March 15, 2025 20:27 — forked from SteveBenner/unbrew.rb
Homebrew uninstall script
#!/usr/bin/env ruby
#
# CLI tool for locating and removing a Homebrew installation
# It replaces the official uninstaller, which is insufficient and often breaks
# If files were removed, the script returns 0; otherwise it returns 1
#
# http://brew.sh/
#
# Copyright (C) 2025 Stephen C. Benner
#