Skip to content

Instantly share code, notes, and snippets.

View DartPower's full-sized avatar
🎵
Planemov - Live at Studio Twenty One Club 18-10-2018

DartPower DartPower

🎵
Planemov - Live at Studio Twenty One Club 18-10-2018
View GitHub Profile
@Smig0l
Smig0l / C:\Windows\System32\drivers\etc\hosts
Created January 10, 2024 13:09
hosts m0nkrus autodesk
#C:\Windows\System32\drivers\etc\hosts:
127.0.0.1 localhost
127.0.0.1 genuine-software2.autodesk.com
127.0.0.1 www.autodesk.com
127.0.0.1 access.clic.autodesk.com
127.0.0.1 clm.clic.autodesk.com
127.0.0.1 accounts.autodesk.com
127.0.0.1 ipm-aem.autodesk.com
127.0.0.1 cdn.accounts.autodesk.com
@DartPower
DartPower / ms-office-dl-links
Last active July 12, 2024 14:25
MS Office Download Links
@Rydgel
Rydgel / nvidia_leak.csv
Created November 3, 2021 18:23
This is a list of GeForce games which have a future release date
appID releaseDate title developerName publisherName
1059220 2022-04-07 '83 Antimatter Games Toadman Interactive
422890 2021-10-22 22 Racing Series GOATi Entertainment GOATi Entertainment
2022-02-28 7 Days Salvation Volla Games Volla Games
2022-09-30 7abrynth Backstage Games 505 Games
1182900 2022-06-28 A Plague Tale: Requiem Asobo Studio Focus Home Interactive
2022-01-01 A-Train 10 Artdink Corporation DEGICA Co. Ltd.
2022-01-11 ADA (code name) Dontnod Entertainment Dontnod Entertainment
1368030 2021-10-15 ANNO: Mutationem Thinking Stars Lightning Games
2023-07-25 ARK 2 Studio Wildcard Studio Wildcard
@jamesy0ung
jamesy0ung / Microsoft Static Activation Keys
Created September 26, 2020 22:37
Microsoft Static Activation Keys for many Microsoft products
Access 2003 Developer Extensions: KHCYK-2DXWD-6D4BV-9D9K6-TT9RY
Access 2003: HVCBT-WQ823-BHMJC-RQJ3P-9T9VT
Advanced Threat Analytics (ATA): F3JM7-7QNWQ-KKFVP-PDDRT-4M6P7
Automatic Graph Layout: HWQWP-RXKVP-PJ4BB-9KD87-K67H2
Commerce Server 2002: QJY77-8G8BD-3FYFQ-FDFH3-4RDCP
CRM 2011 Server Edition: 36D7J-FR6QG-JXPF6-H449P-2P6RR
CRM 2011 Workgroup Server Edition: 73B26-GWVRK-GDX7X-MDQBX-DH28R
CRM 3.0 Professional Edition: D2Q47-3K4QX-FPVDT-P4QT6-3C8H8
CRM 3.0 Small Business Edition: TD7BB-D2H87-27KJH-VMH3P-QTQYW
CRM 4.0 Enterprise Edition: WQWYD-FHH7F-XQPCK-2B8KG-D6VT3
@RobDangerous
RobDangerous / gist:92d3512b28ef0ecde6fa2275c25cdd10
Created May 12, 2020 21:19
Xbox 360 Marketplace Purchase Fixer
// ==UserScript==
// @name xbox 360 marketplace purchase fixer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description allow xbox 360 free gold game to be redeemed through web site
// @author mcawesomept, robdangerous
// @match https://live.xbox.com/*
// @license MIT
// @grant none
////allows running user script sooner:
@John-Paul-R
John-Paul-R / FabricModList.md
Last active July 15, 2024 08:10
A list of (almost all) mods for Fabric

Fabric Mod List

This page contains a list of the current Minecraft Fabric mods. (As of 2021-08-19 08:05:23 Timezone: UTC+0000 (GMT))

To search for mods by name, category, or download count, visit the website, fibermc.com!

Note: You can view a mod's source files by following the "Source" link on its CurseForge page, assuming that the mod's creator has made such files public.

There are currently 2954 mods in this list.

@pjobson
pjobson / openwrt-on-x86_64.md
Last active June 18, 2024 15:13
OpenWRT on x86_64

OpenWRT on x86_64

This is a very brief tutorial on getting OpenWRT installed on a regular computer, it assumes you know your way around Linux. If you find this and need additional details, please like, subscribe, and comm... oh wait this isn't youtube, just comment.

Updated: Current version is 22.03.5, this was originally written for 18.6.x in 2019.

What You'll Need

  • 1 USB Stick
  • Linux Live ISO
@mattiasghodsian
mattiasghodsian / index.php
Last active April 28, 2023 08:36
[PHP] List any users public gists
/**
* Title: Get gists
* Author: Mattias Ghodsian
* Description: List any users public gists
* Donate a cup of coffee: https://www.buymeacoffee.com/mattiasghodsian
* Donate Eth: 0xBBB96204E45D11C9799c6B12E6eE6F0d4A071Ef5
*/
$profile_url = "https://api.github.com/users/mattiasghodsian/gists";
$options = array('http' => array('user_agent'=> $_SERVER['HTTP_USER_AGENT']));
@DartPower
DartPower / Clean_Spooler.bat
Last active January 29, 2019 19:20
Clean Spooler (WinNT-any)
@echo off
net stop spooler
del /f /q %systemroot%\system32\spool\printers\*.shd
del /f /q %systemroot%\system32\spool\printers\*.spl
net start spooler
echo Printer spool cleaned successful.
pause
@vazhnov
vazhnov / remove_oldest_files.sh
Last active February 2, 2022 06:22
Remove oldest .tgz files, if free space less than 50GB
#!/usr/bin/env bash
# set -o nounset
set -o errexit
shopt -s dotglob
# Remove oldest .tgz files, if free space less than 50GB
#
# License: CC0 1.0 or newer
# https://creativecommons.org/publicdomain/zero/1.0/
#