Skip to content

Instantly share code, notes, and snippets.

View TiagoRibeiro25's full-sized avatar
๐ŸŒ
Learning and Learning

Tiago Ribeiro TiagoRibeiro25

๐ŸŒ
Learning and Learning
  • Europe
  • 11:52 (UTC +01:00)
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active June 4, 2025 23:53
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for non-video, non-activity quests! For stream/play quests use the desktop app!

Note

When doing stream quests, you need at least 1 other account in the vc!

How to use this script:

  1. Accept a quest under Discover -> Quests
@GrimKriegor
GrimKriegor / retro-fromsoftware.md
Last active March 27, 2025 19:33
Personal notes on how to get some of the old FromSoftware titles running as best as possible
@tatumroaquin
tatumroaquin / archlinux-qemu-kvm.md
Last active June 2, 2025 03:06
QEMU-KVM Installation for Arch Linux

QEMU-KVM in Arch Linux

Check Virtualization Support

lscpu | grep -i Virtualization
  • VT-x for Intel
  • AMD-Vi for AMD

Ensure that your kernel includes KVM modules

@Medalink
Medalink / .hyper.js
Last active August 19, 2023 20:11
Hyper Terminal Settings for Windows 11 using Powershell 7.x
shell: 'C:\\Program Files\\PowerShell\\7\\pwsh.exe',
shellArgs: ['-noexit', '-command', 'Set-Location D:\\Develop'],
@berkorbay
berkorbay / github_desktop_ubuntu.md
Last active May 27, 2025 13:31
To install Github Desktop for Ubuntu

IMPORTANT

See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)

For the sake of "maintaining the tradition" here is the updated version.

@nikhita
nikhita / update-golang.md
Last active May 15, 2025 07:07
How to update the Go version

How to update the Go version

System: Debian/Ubuntu/Fedora. Might work for others as well.

1. Uninstall the exisiting version

As mentioned here, to update a go version you will first need to uninstall the original version.

To uninstall, delete the /usr/local/go directory by:

@hauthorn
hauthorn / postman.desktop
Last active February 12, 2025 19:17
Postman desktop entry
[Desktop Entry]
Categories=Development;
Comment=Supercharge your API workflow
Exec="/home/hauthorn/Programs/Postman/Postman"
Icon=/home/hauthorn/Programs/Postman/app/resources/app/assets/icon.png
Name=Postman
Terminal=false
Type=Application
Version=1.0
@iamskok
iamskok / git-message-prefixes.md
Last active September 3, 2024 15:59
List of git commit message prefixes

Git commit message prefixes

  • [RFR] - Code refectoring
  • [WIP] - Work in progress
  • [FIX] - Bug fix
  • [FTR] - New feature
  • [SCR] - Security issue fix
  • [CLP] - Changes that do not alter functionality, but improve code style and readability.
  • [CRO] - Content Rate Optimization
  • [TST] - Add test suite for slider component