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
@DartPower
DartPower / remove_oldest_files.sh
Created February 2, 2022 06:22 — forked from vazhnov/remove_oldest_files.sh
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/
#
@DartPower
DartPower / nvidia_leak.csv
Created January 26, 2022 11:45 — forked from Rydgel/nvidia_leak.csv
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
@DartPower
DartPower / openwrt-on-x86_64.md
Created October 4, 2021 15:45 — forked from pjobson/openwrt-on-x86_64.md
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.

This is how I got OpenWRT going on a Mini ITX Intel DH67CF with an Intel G870 CPU with 4GB of RAM.

What You'll Need

  • 2 USB Sticks
  • Linux Live ISO
@DartPower
DartPower / Microsoft Static Activation Keys
Created August 9, 2021 14:39 — forked from jamesy0ung/Microsoft Static Activation Keys
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
@DartPower
DartPower / oldyoutube.user.js
Created May 28, 2019 17:33 — forked from remixz/oldyoutube.user.js
Old YouTube layout userscript
// ==UserScript==
// @name Old YouTube view pages
// @version 1.0
// @description Brings back centered YouTube videos and removes guide and crew.
// @include http*://www.youtube.com/watch?*
// ==/UserScript==
(function() {
document.getElementsByTagName('body')[0].className = document.getElementsByTagName('body')[0].className.replace(/(?:^|\s)site-left-aligned(?!\S)/g , '');
document.getElementById('guide-container').parentNode.removeChild(document.getElementById('guide-container'));