- Type in
cmdto open a command line at this directory - Same goes for
powershelland wsl– the Windows Subsystem for Linux (if installed)
| Parameter | Target folder |
|---|
| const snapshot = { | |
| timestamp: new Date().toISOString(), | |
| storage: Object.fromEntries( | |
| Object.entries(localStorage).map(([key, value]) => { | |
| try { | |
| return [key, JSON.parse(value)]; | |
| } catch { | |
| return [key, value]; // Keep as string if not JSON | |
| } | |
| }) |
| Sub PasswordBreaker() | |
| 'Breaks worksheet password protection. | |
| Dim i As Integer, j As Integer, k As Integer | |
| Dim l As Integer, m As Integer, n As Integer | |
| Dim i1 As Integer, i2 As Integer, i3 As Integer | |
| Dim i4 As Integer, i5 As Integer, i6 As Integer | |
| On Error Resume Next | |
| For i = 65 To 66: For j = 65 To 66: For k = 65 To 66 | |
| For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66 | |
| For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66 |
| #!/usr/bin/perl | |
| # Read Fritz!Box configuration dump file and compute its checksum using CRC32. | |
| # The problem is only knowing what to checksum exactly, and in this case its not pretty. | |
| # Inspired from the very compact Visual Basic script by Michael Engelke available at | |
| # http://www.mengelke.de/Projekte/FritzBoxVBScript | |
| # The Fritz!Box accepts a modified file where the checksum has been changed | |
| # manually to the output of this program in the last line. I have no idea what | |
| # happens if there is a syntax error anywhere inside the config file, so beware. |
| #!/usr/bin/env python | |
| """ | |
| Fast duplicate file finder. | |
| Usage: duplicates.py <folder> [<folder>...] | |
| Based on https://stackoverflow.com/a/36113168/300783 | |
| Modified for Python3 with some small code improvements. | |
| """ | |
| import os | |
| import sys |
| javascript: (function () { var ids = ["MicrosoftNav", "id_h", "b_footer"]; var cls = ["taskBar", "bm_LocateMeControl", "bm_feedbackBetaButton"]; var hidden = (window.getComputedStyle(document.getElementById(ids[0]))).getPropertyValue("display"); if (hidden !== "none") { var disp = "none"; } else { var disp = ""; }; for (var i = 0; i < ids.length; i++) { document.getElementById(ids[i]).style.display = disp; document.getElementsByClassName(cls[i])[0].style.display = disp; }; })(); |
| javascript: (function () { var ids = ["titlecard", "omnibox-container", "vasquette", "assistive-chips", "QA0Szd"]; var hidden = (window.getComputedStyle(document.getElementById(ids[0]))).getPropertyValue("display"); var sceneFooters = document.querySelectorAll(".scene-footer"); var buttons = sceneFooters[0].querySelectorAll("button"); var problemSpan = document.querySelector('span[jstcache="307"]'); if (hidden !== "none") { var disp = "none"; document.getElementsByClassName('app-viewcard-strip')[0].style.visibility = 'hidden'; } else { var disp = ""; document.getElementsByClassName('app-viewcard-strip')[0].style.visibility = ''; }; for (var i = 0; i < ids.length; i++) { document.getElementById(ids[i]).style.display = disp; }; buttons.forEach(function (button) { button.style.display = disp; }); problemSpan.style.display = disp; })(); |
| // This file was initially generated by Windows Terminal 0.11.1191.0 | |
| // It is located in `$env:LocalAppData\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState` | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", |
| # custom gitignore | |
| # built as an allround, project-agnostic template to copy for me | |
| *.cache | |
| # py | |
| .env | |
| .venv | |
| *.py | |
| *.pyc |