Skip to content

Instantly share code, notes, and snippets.

View amel's full-sized avatar
👨‍💻
Working

Amel van Deutekom amel

👨‍💻
Working
  • Europe, Earth
View GitHub Profile
@amel
amel / .gitignore
Created July 25, 2023 11:23
.gitignore for Defold projects
/.internal
/build
.externalToolBuilders
.DS_Store
Thumbs.db
.lock-wscript
*.pyc
.project
.cproject
builtins

Keybase proof

I hereby claim:

  • I am amel on github.
  • I am amxl (https://keybase.io/amxl) on keybase.
  • I have a public key ASDXKqJ0sk4Kb5_ET5VWyHGeqr056LULYLdIt9-1ddgO-Ao

To claim this, I am signing this object:

@amel
amel / remove-bloatware.ps1
Created August 31, 2019 16:04
Windows 10 bloatware removal script in Powershell
# USAGE: Open PowerShell with admin rights and run ./remove-bloatware.ps1
# windowscommunicationsapps contains the calendar and mail applications
# zunemusic is the music application and zunevideo is the video application
Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage
Get-AppxPackage -allusers *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage -allusers *officehub* | Remove-AppxPackage
Get-AppxPackage -allusers *getstarted* | Remove-AppxPackage
Get-AppxPackage -allusers *zunemusic* | Remove-AppxPackage