Skip to content

Instantly share code, notes, and snippets.

View GrzegorzManiak's full-sized avatar
👋

Grzegorz Maniak GrzegorzManiak

👋
View GitHub Profile
@GrzegorzManiak
GrzegorzManiak / index.js
Created December 30, 2021 16:02
CurseForge instant download, Skips the 5 sec delay on CurseForge downloads
// ==UserScript==
// @name CurseForge instant download
// @namespace https://github.com/GrzegorzManiak
// @version 0.1
// @description Skips the 5 sec delay on curseforge downloads
// @author Grzegorz Maniak
// @match https://www.curseforge.com/*
// @icon https://www.google.com/s2/favicons?domain=curseforge.com
// @grant none
// ==/UserScript==
@miguelgmalpha
miguelgmalpha / gist:5c9e78d16312d156b0ec1d1c1bb09c1c
Last active February 1, 2026 21:43
AWS Client VPN with SAML for Fedora
The AWS Client VPN for Linux is only provided for Ubuntu as a .deb package. I need it for Fedora. This was tested on Fedora 33.
https://docs.aws.amazon.com/vpn/latest/clientvpn-user/client-vpn-connect-linux.html
Get the vpn client deb package.
```
curl https://d20adtppz83p9s.cloudfront.net/GTK/latest/awsvpnclient_amd64.deb -o awsvpnclient_amd64.deb
```
Install `alien` to convert the deb package to rpm.
@bendc
bendc / alphabet.js
Created January 30, 2015 21:38
Array of uppercase and lowercase letters
const letters = (() => {
const caps = [...Array(26)].map((val, i) => String.fromCharCode(i + 65));
return caps.concat(caps.map(letter => letter.toLowerCase()));
})();