Skip to content

Instantly share code, notes, and snippets.

View kevinpostal's full-sized avatar

Kevin Postal kevinpostal

View GitHub Profile
@kevinpostal
kevinpostal / gist:f6bc00e364adc1419e29025abbd94e49
Last active January 28, 2026 16:07
AI Automation Detection POC
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Detection – OnBlur Ground Truth</title>
<style>
:root {
--bg-primary: #0e1117;
--bg-secondary: #161b22;
#pragma once
#include <vector>
#include <complex>
#include <cassert>
#include <stdexcept>
#include <cmath>
#include <memory>
#include <algorithm>
#include <arm_neon.h> // Include NEON header
#pragma once
#include <vector>
#include <complex>
#include <cassert>
#include <stdexcept>
#include <cmath>
#include <memory>
// Optional NEON support
This file has been truncated, but you can view the full file.
# -------------------------------------------------------
# Free IP2Location Firewall List by Country
# Source: https://www.ip2location.com/free/visitor-blocker
# Last Generated: 29 Jan 2020 09:48:33 GMT
# [Important] Please update this list every month
# -------------------------------------------------------
add manual-accept 216.237.113.64/26
add manual-accept 216.237.113.128/25
add manual-accept 216.237.114.0/23
# -------------------------------------
# MAKEFILE
# -------------------------------------
# Parse docker container name prefix from working dir
ifeq ($(OS),Windows_NT)
NAME := $(notdir $(CURDIR))
LOCATION := $(CURDIR)
else
NAME := $(shell basename $$PWD | sed -e s/[_\\.]//g)
@kevinpostal
kevinpostal / install_aircrack.sh
Last active January 13, 2018 01:41
Aircrack Install - Tegra / Ubuntu from source
sudo apt-get install -y build-essential libtool
sudo apt-get install autotools-dev autoconf
sudo apt-get install -y libnl-3-dev libnl-genl-3-dev
sudo apt-get install -y sqlite3 libsqlite3-dev
sudo apt-get install -y libgcrypt20-dev libpcap-dev duma
sudo apt-get install -y libgcrypt11-dev
sudo apt-get install -y libpcre3-dev
sudo apt-get install -y libnl-3-dev libnl-genl-3-dev
./configure --with-experimental --with-ext-scripts --with-gcrypt --with-gcrypt --with-duma --with-simd
@kevinpostal
kevinpostal / lss.py
Last active April 10, 2018 21:12
Attempt
import re
import itertools
import sys
from collections import Counter
from os import listdir
from os.path import isfile, join
filelist = []
fileset = set()
parse_number = lambda num: "%%0%sd" % len(num)
import re
import itertools
from os import listdir
from os.path import isfile, join
from collections import Counter
filelist = []
first_line = "3"
second_line = "1 2 4"
def main(first_line, second_line):
if int(first_line) != len(second_line.split()):
return False
else:
return sum((int(item) for item in second_line.split()))
Telesign Take Home Task
=======================
Warm up
-------
Define a function to check if two words are a [palindrome](https://en.wikipedia.org/wiki/Palindrome).
Define a function to check if two words are an [anagram](https://en.wikipedia.org/wiki/Anagram).