Skip to content

Instantly share code, notes, and snippets.

View tylermneher's full-sized avatar
:electron:
Focusing

Tyler M. Neher tylermneher

:electron:
Focusing
View GitHub Profile
@sh1mu7
sh1mu7 / combined_deploy.sh
Last active May 28, 2025 20:34
Django and React Deployment Script
#!/bin/bash
# Author: sh1mu7
# Date: 2024-02-06
# Description: Django deployment automation.
# Prompt for service name
# shellcheck disable=SC2162
#!/bin/bash
#!/bin/bash
echo "=== Deployment Automation Script ==="
@phreakin
phreakin / parse_facebook_archive.py
Last active April 25, 2025 05:16
A python script to parse Facebook messenger data from your downloaded Facebook data and creates searchable html files of them
import os
import json
import re
import shutil
from pathlib import Path
from datetime import datetime
from argparse import ArgumentParser
from html import escape
MY_NAME = "YOUR NAME AS IT IS ON FB HERE"
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@itsnebulalol
itsnebulalol / 01_VerizonAPI.md
Last active January 25, 2025 15:05
Reverse engineered Verizon API

Verizon API

  • Reversed using Firefox Network Inspector
  • Python POC to see usage data is attached

secure.verizon.com

@smyaseen
smyaseen / commit-msg
Last active July 30, 2024 15:32
Husky commit-msg hook to check branch & commit message convention, run lint, prettier and unit tests.
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
# Checks for branch name
currentBranch=$(git rev-parse --abbrev-ref HEAD)
requiredPattern="^(build|chore|feat|docs|refactor|perf|test)/ABC-\d+-.+$"
if ! echo "$currentBranch" | grep -qE $requiredPattern; then
@sh1mu7
sh1mu7 / Docker.yml
Created September 7, 2023 20:56
Docket basic configuration
# docker-compose ym
version: '3'
services:
# Django application
web:
build:
context: .
dockerfile: Dockerfile
ports:
@tylermneher
tylermneher / nest-weather-api.json
Created May 6, 2023 09:32
nest-weather-api.json
{
"07724": {
"current": {
"temp_f": 46,
"temp_c": 7.8,
"condition": "Clear",
"sunrise": 1683366600,
"sunset": 1683417360,
"humidity": 99,
"gmt_offset": "-04.00",
@mietzen
mietzen / macos-bitwarden-cli-with-touch-id.md
Last active April 12, 2025 00:54
How to use use Bitwarden CLI with macOS Touch ID

How to use Bitwarden CLI with macOS Touch ID

If you want to use Bitwarden CLI for ssh have a look at: How to use use Bitwarden CLI for SSH-Keys in macOS

Wirtten and tested on macOS Ventura

Configure Touch ID for the sudo command

To allow Touch ID on your Mac to authenticate you for sudo access instead of a password you need to do the following.

@tylermneher
tylermneher / resume.json
Last active January 24, 2025 19:35
resume.json
{
"meta": {
"theme": "kendall"
},
"basics": {
"name": "Tyler M. Neher",
"label": "Data Scientist and Cybersecurity Professional",
"email": "[email protected]",
"photo": "https://github.com/tylermneher.png",
"phone": "732-275-5997",