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 / WSA_Windows10.md
Created November 11, 2022 21:46
WSA (Windows Sub-system for Android) on Windows 10 / WSA на Windows 10
  1. скачайте: https://store.rg-adguard.net/
productid 9P3395VX91NR
MicrosoftCorporationII.WindowsSubsystemForAndroid_[версия]_neutral___8wekyb3d8bbwe.Msixbundle
  1. распакуйте в папку где программа будет стоять из файла:
MicrosoftCorporationII.WindowsSubsystemForAndroid_[версия]_neutral___8wekyb3d8bbwe.Msixbundle/WsaPackage_[версия]_x64_Release-Nightly.msix
@DartPower
DartPower / SAPI.cmd
Created September 22, 2022 11:39
Generate SAPI MSIL DLL
"C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\TlbImp.exe" "C:\Windows\System32\Speech\Common\sapi.dll" /out:SpeechLib.dll /namespace:SpeechLib
@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 / aml-upgrade-package-extract.c
Created January 14, 2022 15:16
Amlogic IMG extractor
#include <errno.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
uint32_t convert(uint8_t * test, uint64_t loc) {
return ntohl((test[loc] << 24) | (test[loc + 1] << 16) | (test[loc + 2] << 8) | test[loc + 3]);
}
@DartPower
DartPower / ms-office-dl-links
Last active May 17, 2025 18:48
MS Office Download Links
@DartPower
DartPower / ccofainw.dir
Created October 7, 2021 09:16
Clear cache of "Fast Access" in Windows
Just remove all files in folder:
%AppData%\Microsoft\Windows\Recent\AutomaticDestinations
@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 / RestartWIA.cmd
Created September 16, 2021 14:12
Перезапуск службы сканирования (WIA) / WIA Service restarter
@echo off
echo Stop WIA
net stop stisvc
echo Start WIA
net start stisvc
echo WIA restarted successful
pause