Instantly share code, notes, and snippets.
Discover gists
rajibdpi /Office 2019 Professional Plus Product Key
Last activeOctober 8, 2025 04:37 — forked frommoonsbtt/Office 2019 Professional Plus Product Key
Office 2019 Professional Plus Product Key This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
New Methiod to Activate Windows/MS Office 2010/2013/2016/2019 | |
If you have already intalled MS Office Or Download from bellow link | |
Download setup file for MS Office Pro Plus 2019 https://officecdn.microsoft.com/pr/492350f6-3a01-4f97-b9c0-c7c6ddf67d60/media/en-us/ProPlus2019Retail.img | |
Activate Windows / Office ? | |
📌PowerShell Method For Windows 8, 10, 11: | |
Click the Start Menu, type PowerShell, then open it. | |
Copy and paste the code below, then press enter. | |
irm https://get.activated.win | iex |
isdaviddong /index.html
Last activeOctober 8, 2025 04:36
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<metacharset="utf-8"/> | |
<scriptsrc="Scripts/jquery-1.9.1.min.js"></script> | |
<linkhref="Content/bootstrap.min.css"rel="stylesheet"/> | |
<scriptsrc="Scripts/isRockFx.js"></script> | |
<script> | |
$(function () { |
JuanDiegoMontoya /rand.glsl
Last activeOctober 8, 2025 04:34
A fast, robust, and easy-to-use set of functions for generating random numbers in GLSL. Rehosted/stolen from here so it's in an easier-to-access location:https://www.shadertoy.com/view/sd3GR2 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
// PCG hash, see: | |
// https://www.reedbeta.com/blog/hash-functions-for-gpu-rendering/ | |
// Used as initial seed to the PRNG. | |
uint pcg_hash(uint seed) | |
{ | |
uint state= seed* 747796405u+ 2891336453u; | |
uint word= ((state>> ((state>> 28u)+ 4u))^ state)* 277803737u; | |
return (word>> 22u)^ word; | |
} |
orneryd /claudette-agent.installation.md
Last activeOctober 8, 2025 04:30
Claudette coding agent for low-reasoning and free-tier models like chatGPT-4.1 to behave more similar to Claude Code. Claudette-Auto.md is the latest and focuses on autonomous function and positive language changes. The *Condensed* file is for smaller contexts, and the *Compact* file is for mini contexts. Originally created after analyzing beast…TheUnrealZaka /HidingRoot.md
Last activeOctober 8, 2025 04:24
This guide is for all Android devices to hide properly all root detections and successfully run banking apps as expected :)ryuheechul /openwrt-efi-on-proxmox.md
Last activeOctober 8, 2025 04:23
How to "Install" an OpenWRT VM in Proxmox with UEFIExisting references I looked at before I went on trial and error until eventually I managed to make it work:
- https://gist.github.com/subrezon/b9aa2014343f934fbf69e579ecfc8da8 (the format of this gist copies this one)
- https://forum.openwrt.org/t/minimum-ovmf-uefi-folders-and-files-to-boot-openwrt-in-proxmoxve/75824
- https://forum.proxmox.com/threads/openwrt-boot.130221/
Note
Although links above were good references to look at so I didn't have to start from scratch, following none of them actually worked for me.Hence, I'm leaving my own note after figuring things out.
My situation:
turicas /free-software-licenses.csv
CreatedAugust 10, 2016 01:31
Download list of free software licenses from GNU page This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
name | short_name | url | |
---|---|---|---|
GNU General Public License (GPL) version 3 | GNUGPLv3 | https://www.gnu.org/licenses/gpl.html | |
GNU General Public License (GPL) version 2 | GPLv2 | https://www.gnu.org/licenses/old-licenses/gpl-2.0.html | |
GNU Lesser General Public License (LGPL) version 3 | LGPLv3 | https://www.gnu.org/licenses/lgpl.html | |
GNU Lesser General Public License (LGPL) version 2.1 | LGPLv2.1 | https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html | |
GNU Affero General Public License (AGPL) version 3 | AGPLv3.0 | https://www.gnu.org/licenses/agpl.html | |
GNU All-Permissive License | GNUAllPermissive | https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html | |
Apache License, Version 2.0 | apache2 | http://directory.fsf.org/wiki/License:Apache2.0 | |
Artistic License 2.0 | ArtisticLicense2 | http://directory.fsf.org/wiki/License:ArtisticLicense2.0 | |
Clarified Artistic License | ClarifiedArtisticLicense | http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/ |
NewerOlder