Skip to content

Instantly share code, notes, and snippets.

View taciturnaxolotl's full-sized avatar
:bowtie:
Staving off the imminent combustion

Kieran Klukas taciturnaxolotl

:bowtie:
Staving off the imminent combustion
View GitHub Profile
@taciturnaxolotl
taciturnaxolotl / README.md
Created December 3, 2024 18:06
All my slackbots

All my slackbots!

Here are the slackbots I have made that are currently in production or were recently in prod.

kreva - automatically add a set of users to new channels in your slack workspace
grolf - made for hackclub arcade this bot integrates with GitHub to automically detect when you make a commit and then sends that commit to a slack thread
channel - create a user group from the members of a channel
abot - welcome bot for my personal channel (also includes assorted tools like a hackernews feeder)
the old man - introduction bot for the hackclub bag rpg (handled over 20k users joining slack and following the tutorial over a week long period)
spambot - *a mini slackbot used to create the largest thre

@taciturnaxolotl
taciturnaxolotl / install.ps1
Last active October 29, 2024 13:52
Hackatime Setup Windows
Write-Host "Starting Hackatime setup..."
# Check if BEARER_TOKEN is set
if (-not $env:BEARER_TOKEN) {
Write-Host "Error: BEARER_TOKEN environment variable is not set"
exit 1
}
# Step 1: Add settings to the WakaTime config file
$bearerToken = $env:BEARER_TOKEN
@taciturnaxolotl
taciturnaxolotl / install.sh
Last active October 29, 2024 23:08
Hackatime Setup Linux / MacOS
#!/bin/bash
# Exit on any error
set -e
echo "Starting Hackatime setup..."
# Step 1: Check if config directory exists and create if needed
WAKATIME_CONFIG_DIR="$HOME"
WAKATIME_CONFIG_FILE="$WAKATIME_CONFIG_DIR/.wakatime.cfg"
@taciturnaxolotl
taciturnaxolotl / test.c
Created January 17, 2024 14:13
List devices for @ishan on slack
#include <pcap.h>
#include <stdlib.h>
int main() {
char errbuf[PCAP_ERRBUF_SIZE];
pcap_if_t* device;
if (pcap_findalldevs(&device, errbuf) == -1) {
fprintf(stderr, "Error finding devices : %s\n", errbuf);
exit(1);
}
@taciturnaxolotl
taciturnaxolotl / docker-compose.yml
Last active July 8, 2023 23:06
Docker Compose itzg/minecraft-server
version: "3.7"
services:
mc:
container_name: mc
image: itzg/minecraft-server:latest
tty: true # equivalent for -t
stdin_open: true # equivalent for -i
# restart: unless-stopped
volumes:
@taciturnaxolotl
taciturnaxolotl / Prank-Virus-Linux.sh
Created September 26, 2022 17:33
Prank-Virus-Linux.sh
echo Super Secret Nasa Program
echo Running: DRL
sleep 2
echo Process Cancelled!
sleep 2