Skip to content

Instantly share code, notes, and snippets.

Just use in PowerShell:
Get-AppxPackage | Out-GridView -PassThru | Remove-AppxPackage
which opens a GUI list where you can select apps to remove.
There's also Remove-AppxPackage -AllUsers and Remove-AppxProvisionedPackage which are required in some cases to actually delete the apps and free up space.
@JMVS
JMVS / guide.txt
Created May 26, 2023 15:16
OpenWRT (Pulpstone lite) WDS Repeater TL-MR3020
https://pulpstone.pw/lede-lite-ar71xx/
https://openwrt.org/docs/guide-user/network/wifi/atheroswds
Note: there was no new interface created, neither on the AP nor on the STA, despite WDS working properly.
cat /etc/config/network
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
@JMVS
JMVS / howto.md
Created July 24, 2022 23:00
Let's Encrypt with OctoPrint & DietPi

Initial: https://community.octoprint.org/t/lets-encrypt-on-octopi/15328

DuckDNS: DuckDNS_Token="xxxxxxxxxxxxxxxxxxxxxxxxxxxxx" acme.sh --issue --dns dns_duckdns -d subdomain.duckdns.org --renew-hook "cat /root/.acme.sh/subdomain.duckdns.org/fullchain.cer /root/.acme.sh/subdomain.duckdns.org/subdomain.duckdns.org.key >/etc/ssl/certificado.pem && systemctl reload haproxy"

HAProxy (DietPi): https://github.com/guysoft/OctoPi/tree/70294fa03277c6ca9d013de799c619f50dd12cdf/src/modules/octopi/filesystem/root/etc/haproxy

HAProxy.cfg: Change port 127.0.0.1:5000 by 5001 & add octoprint's error files to errors folder

@JMVS
JMVS / torrentpelis_directopagelink.user.js
Created January 12, 2022 17:04
TorrentPelis direct page to torrent link
@JMVS
JMVS / torrentpelis_countdowndisabler.user.js
Created January 12, 2022 17:02
TorrentPelis Countdown disabler
// ==UserScript==
// @name TorrentPelis Countdown disabler
// @version 0.1
// @author JMVS
// @grant none
// @description Disables de countdown timer when following download link
// @include https://*.torrentpelis.com/enlaces/*
// @match https://*.torrentpelis.com/enlaces/*
// ==/UserScript==
@JMVS
JMVS / VMDK2VHD.bat
Created May 23, 2020 14:36
Simple batch file to convert VMDK disk files to VHD format using VirtualBox
@echo off
REM Simple batch to convert VMDK disk files to VHD format using VirtualBox
REM Just drag and drop the source file to the batch file to start convertion
Set PathVBox=%VBOX_MSI_INSTALL_PATH%
Set Source=%1
Set DestFile=%~n1
Set Dest="%~d1%~p1%DestFile%.vhd"
Echo Converting "%DestFile%" to VHD format:
"%PathVBox%VBoxManage.exe" clonehd --format VHD %Source% %Dest%
Echo.