Skip to content

Instantly share code, notes, and snippets.

View sinedied's full-sized avatar
🎯

Yohan Lasorsa sinedied

🎯
View GitHub Profile
@jonkeren
jonkeren / Windows-10-11-quick-fix-settings.ps1
Last active October 1, 2025 13:09
Windows 10/11 misc. tweaks, settings, debloat. This is a fairly long list. I run these normally after a fresh Windows install. You can copy / paste this into an admin-Powershell window. All at once, or individually of course. Or, save as a .ps1 file and execute.
# Disable Xbox features
Get-AppxPackage "Microsoft.XboxApp" | Remove-AppxPackage
Get-AppxPackage "Microsoft.XboxIdentityProvider" | Remove-AppxPackage -ErrorAction SilentlyContinue
Get-AppxPackage "Microsoft.XboxSpeechToTextOverlay" | Remove-AppxPackage
Get-AppxPackage "Microsoft.XboxGameOverlay" | Remove-AppxPackage
Get-AppxPackage "Microsoft.Xbox.TCUI" | Remove-AppxPackage
# Disable Xbox GameDVR
reg.exe add "HKCU\Software\Microsoft\GameBar" /v "AllowAutoGameMode" /t REG_DWORD /d "0" /f
reg.exe add "HKCU\Software\Microsoft\GameBar" /v "ShowStartupPanel" /t REG_DWORD /d "0" /f

Arch Linux Setup with XFCE4 on Rpi 3B

Purpose

The purpose for this Gist is to document for myself the steps to setup Arch Linux ARM on a Pi 3 with XFCE4 as the desktop environment. As well as, configuring XFCE4 to look like MacOS BigSur. Maybe someone else will find this useful/helpful.

NOTE: As of the time of this writing, ArchLinuxARM-rpi-armv7-latest has Xorg driver issues. Meaning, I was not able to use ArchLinuxARM-rpi-armv7-latest with a desktop environment. Just a black screen. I came to this deduction via trial & error and reading the Arch Linux ARM forums like here and here.

NOTE 2: Pay attention to $ and # when commands are shown. # indicates that the command needs to be run as root - - OR - - with elevated priveleges. $ indicates that the command is invoked as a regular user.

@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active November 5, 2025 10:32
crack activate Office on mac with license file
@wkwiatek
wkwiatek / app-1.spec.ts
Last active December 17, 2021 01:52
Angular 2 test snippets for Angular final version. Codebase for https://developers.livechatinc.com/blog/category/programming/angular-2/
// App
import { Component } from '@angular/core';
@Component({
selector: 'app',
template: '<span>{{ sayHello() }}</span>',
})
export class App {
public name: string = 'John';
@staltz
staltz / introrx.md
Last active October 26, 2025 03:06
The introduction to Reactive Programming you've been missing