Source: tsqmadness.com – /slochar/
moimikey/awesome-devtools: 🤖 A curated list of in-browser bookmarklets, tools, and resources for modern full-stack software engineers.
BOOKMARKLETS
Useful bookmarklets for Web Scraping, Web Development and for easy navigation.
Source: BOOKMARKLETS
jsPanel
A JavaScript library to create highly configurable floating panels, modals, tooltips, hints/notifiers/alerts, contextmenus or dialogs for use in backend solutions and other web applications.
Source: jsPanel
My Lamp Parts – #1 Shop for Lamp Accessories
Introduction – OpenIPC
OpenIPC is an alternative open firmware for your IP camera.
Source: Introduction – OpenIPC
Moment of Inspiration
Moment of Inspiration
http://moi3d.com/index.htm
something to take a look at?
Change File(s) Date & Timestamp via CMD or PowerShell
Set-ItemProperty -Path [Path] -Name [PropertyName] -Value [NewValue]
$NewDate = Get-Date -Year 2023 -Month 3 -Day 15 -Hour 10 -Minute 22 -Second 30Set-ItemProperty -Path "example.txt" -Name CreationTime -Value $NewDate Set-ItemProperty -Path "example.txt" -Name LastWriteTime -Value $NewDateSet-ItemProperty -Path "example.txt" -Name LastAccessTime -Value $NewDateSource: Change File(s) Date & Timestamp via CMD or PowerShell