Skip to content

Instantly share code, notes, and snippets.

@recoder
recoder / shell-setup.ps1
Created October 10, 2024 21:46 — forked from mikepruett3/shell-setup.ps1
Packages to install via scoop, winget, choco, and other tools...
<#
.SYNOPSIS
Script to Initialize my custom powershell setup.
.DESCRIPTION
Script uses scoop
.NOTES
**NOTE** Will configure the Execution Policy for the "CurrentUser" to Unrestricted.
Author: Mike Pruett
Date: October 18th, 2018
@recoder
recoder / url_salvage_op.py
Last active May 17, 2019 00:53
A script to recover URL's from Firefox Tabmix Plus session backup files - 2017 edition
import rdflib,urllib,json
g = rdflib.Graph()
g.parse("tabmix_sessions-2017-08-28.rdf") # replace with your own
links = {}
for obj in g.objects():
try:
if 'http' in obj: