Skip to content

Instantly share code, notes, and snippets.

@ssavva05
ssavva05 / Appx-Uninstaller.ps1
Created August 7, 2023 21:42 — forked from ThioJoe/Appx-Uninstaller.ps1
A basic script for uninstalling a list of app packages in Windows 10/11, including those pre-installed with Windows
# A basic script for uninstalling app packages in Windows 10/11, including those pre-installed with Windows
#
# Note: If you get an error about the script not being allowed to run, the below command will change the execution polciy temporarily for one session only:
# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
#
# To execute the script, open a Powershell window to the directory with the script and run the following command using your scripts file name (and don't forget the .\ )
# .\WhateverScriptName.ps1
# -------------------------------------------------------------------------------------------
# Script by ThioJoe - https://github.com/ThioJoe

To install macOS High Sierra 10.13.5 on a virtual machine using VMware:

  1. If you have not installed VMware Workstation on a Windows operating system before, please refer to the following video.

https://www.youtube.com/watch?v=-Uf9-6SPiMY

  1. After installing VMware Workstation, you need the VMware Unlocker program to create a new virtual machine for the MacOS High Sierra 10.13.5 installation. To download the VMware Unlocker program to your computer, visit the link below.

Article ➦ https://www.sysnettechsolutions.com/en/vmware/download-vmware-unlocker-2-1-1/

@ssavva05
ssavva05 / macOS-in-virtualbox.md
Created November 27, 2021 19:57 — forked from mcandre/macOS-in-virtualbox.md
Notes on getting macOS Sierra running in Virtualbox on a Windows 10 host

On Mac

Download, but don't run, the Sierra installer from the Mac App Store. This places the installer at /Applications/Install\ macOS\ Sierra.app/.

Now run the following commands to build a suitable VM image from the installer:

git clone https://github.com/jonanh/osx-vm-templates
cd osx-vm-templates/packer

sudo ../prepare_iso/prepare_vdi.sh -D DISABLE_REMOTE_MANAGEMENT -o macOS_10.12.vdi /Applications/Install\ macOS\ Sierra.app/ .

@ssavva05
ssavva05 / .. MediaCreationTool.bat ..md
Created October 5, 2021 11:05 — forked from AveYo/.. MediaCreationTool.bat ..md
Universal MediaCreationTool wrapper for all MCT Windows 10 versions from 1507 to 21H1 with business (Enterprise) edition support

Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
Preview
A powerful yet simple windows 10 / 11 deployment automation tool as well!

configure via set vars, commandline parameters or rename script like iso 21H2 Pro MediaCreationTool.bat
recommended windows setup options with the least amount of issues on upgrades already set
awesome keyboard focus dialogs to pick windows version and enhanced preset action

Auto Setup for upgrading directly with the auto-detected Edition, Language, Architecture *
- can troubleshoot auto setup failing by adding no_update to script name

Mount on O: drive letter your onedrive root folder as webdav and save the credentials.

net use O: https://d.docs.live.net/{cid}/ /savecred /p:yes

Detailled tuto here

@ssavva05
ssavva05 / tar-gz-reader.go
Created February 12, 2021 09:31 — forked from indraniel/tar-gz-reader.go
Reading through a tar.gz file in Go / golang
package main
import (
"archive/tar"
"compress/gzip"
"flag"
"fmt"
"io"
"os"
)
@ssavva05
ssavva05 / Final Cut Pro Trial DMG
Created February 6, 2021 01:52 — forked from b0gdanw/Final Cut Pro Trial DMG
Direct links for Final Cut Pro Trial DMGs
Final Cut Pro 10.1.3
https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-05296.20140814.VRR4r/FinalCutProTrial10.1.3.dmg
Final Cut Pro 10.1.4
https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-02980.20141202.Jgt44/FinalCutProTrial10.1.4.dmg
Final Cut Pro 10.2
https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-08830.20150413.HPPE4/FinalCutProTrial10.2.dmg
Final Cut Pro 10.2.2
@ssavva05
ssavva05 / OpenVPN on Docker and Raspberry Pi.md
Created January 17, 2021 21:08 — forked from odarriba/OpenVPN on Docker and Raspberry Pi.md
How to install OpenVPN with Docker on Raspberry Pi

First of all, we are going to store all the data in a Docker shared volume, called openvpn_data.

To initialise the OpenVPN configuration and CA:

$ docker run -v openvpn_data:/etc/openvpn --rm evolvedm/openvpn-rpi ovpn_genconfig -u udp://your-vpn.address.com
$ docker run -v openvpn_data:/etc/openvpn --rm -it evolvedm/openvpn-rpi ovpn_initpki

To start daemon (and auto-restart it):

@ssavva05
ssavva05 / UpdateProtocolDafit.txt
Created December 9, 2020 10:59 — forked from atc1441/UpdateProtocolDafit.txt
DaFit App Update Protocol manual
Basic Manual for DaFit Fitness Tracker firmware update protocol, works for nearly any nRF52832 tracker from Company DaFit
The minimum size of update file is 0x10000(can be filled with garbage to get to size) and the maximum size is 0x2F000
the update will first get stored onto the external flash at position 0x3D1000 by the stock firmware(not by the bootloader)
the size of the update will get stored at 0x3D0000 on external flash with 4 bytes uint32_t
when bootloader gets activated it will copy the update from external flash to 0x23000 of the nRF52 internal flash.
Connect to device,
List with Compatible devices:
Look under About on the watch for the device Id.
looks something like this:
MOY-TEH5-1.7.7
the middle section is the interesting part, if that is in this list here
it has the compatible bootloader and the same pinout as pinetime for Display and External Flash