Skip to content

Instantly share code, notes, and snippets.

View miraficus's full-sized avatar

Miraficus miraficus

View GitHub Profile
@miraficus
miraficus / PCgames.md
Last active October 29, 2023 21:42
PC Games List

Games for School computers.

Rules

  • Preferably it has to be singleplayer so you can pause it when teacher comes over.
  • I has to run on old shitty school computers and be relatively small in size.
  • It has to be portable to run from usb drive and DRM free so you dont have to install Steam for example.

I feel like Point and Click, Managerial and Turnbased games fit these rules.

Mouse Only

@miraficus
miraficus / DevMachineSetup.ps1
Last active September 22, 2024 07:14 — forked from codebytes/DevMachineSetup.ps1
DevMachineSetup
#Install WinGet
#Based on this gist: https://gist.github.com/crutkas/6c2096eae387e544bd05cde246f23901
$hasPackageManager = Get-AppPackage -name 'Microsoft.DesktopAppInstaller'
if (!$hasPackageManager -or [version]$hasPackageManager.Version -lt [version]"1.10.0.0") {
"Installing winget Dependencies"
Add-AppxPackage -Path 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx'
$releases_url = 'https://api.github.com/repos/microsoft/winget-cli/releases/latest'
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12