Skip to content

Instantly share code, notes, and snippets.

View BelleNottelling's full-sized avatar

Belle Aerni BelleNottelling

View GitHub Profile
@xerpi
xerpi / PSVita_Linux_build_instructions.md
Last active March 26, 2025 23:13
PSVita Linux build instructions
@BelleNottelling
BelleNottelling / w10onARM_Setup_batch.bat
Last active March 10, 2025 00:32
w10onARM Setup batch
@echo off
Title w10onARM Setup batch
echo Blocking junk apps & echo.
reg load HKLM\DEFAULT c:\users\default\ntuser.dat
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v PreInstalledAppsEnabled /t REG_DWORD /d 0 /f
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v OemPreInstalledAppsEnabled /t REG_DWORD /d 0 /f
reg unload HKLM\DEFAULT
echo Removing useless windows components & echo.
@copy
copy / Dockerfile
Last active February 20, 2021 20:02
FROM i386/alpine:latest
# https://wiki.gentoo.org/wiki/OpenRC/Baselayout_1_to_2_migration#Boot_runlevel
# https://wiki.alpinelinux.org/wiki/Installing_Alpine_Linux_in_a_chroot#Entering_your_chroot
RUN apk update && \
apk upgrade && \
apk add --no-cache linux-vanilla vim openrc && \
rc-update add devfs sysinit && \
rc-update add root boot && \