Skip to content

Instantly share code, notes, and snippets.

View username-is-not's full-sized avatar
💤
I may be slow to respond.

username-is-not

💤
I may be slow to respond.
View GitHub Profile
@ElektroStudios
ElektroStudios / Goldberg Steam Emulator Configuration Files Hierarchy.md
Last active May 3, 2026 15:14
Goldberg Steam Emulator Configuration Files Hierarchy
@mesheets
mesheets / Restore-Windows-Photo-Viewer.reg
Created June 15, 2024 19:56
Restore Windows Photo Viewer in Windows 10
Windows Registry Editor Version 5.00
; Description at the link below; however, that article (and its registry file)
; do not provide the more complete integration available through this file.
; This file eliminates some of the noted workarounds.
; https://www.techradar.com/uk/how-to/how-to-restore-and-use-windows-photo-viewer-in-windows-10
[HKEY_CLASSES_ROOT\Applications\PhotoViewer.dll]
[HKEY_CLASSES_ROOT\Applications\PhotoViewer.dll\shell]
@en0ndev
en0ndev / get_windowsphotoviewer.md
Last active April 24, 2026 18:11
ENABLE/RESTORE WINDOWS PHOTO VIEWER IN WINDOWS 10/11
@RubenKelevra
RubenKelevra / fast_firefox.md
Last active May 14, 2026 13:40
Make Firefox fast again
@eRQee
eRQee / rambox-dark-whatsapp.js
Last active March 11, 2026 05:15
Rambox Custom Code for Whatsapp Dark Theme - Styles by Vednoc :: https://github.com/vednoc/dark-whatsapp
function applycss(css){
var head = document.getElementsByTagName('head')[0];
var s = document.createElement('style');
s.setAttribute('type', 'text/css');
s.appendChild(document.createTextNode(css));
head.appendChild(s);
}
applycss(`
:root:not(#z),
.dark:not(#z) {
@plugnburn
plugnburn / libwallace.js
Last active April 6, 2026 02:25
LibWallace: toolbox library for Qualcomm-based phones running KaiOS
/**
* LibWallace: toolbox library for Qualcomm-based and MTK-based phones running KaiOS
*
* Full support: KaiOS 2.5+ Nokias (Nokia 8110 4G, Nokia 2720 Flip, Nokia 800 Tough)
* Partial support: CAT B35, KaiOS 1.0 devices (Alcatel OT-4044O), MTK devices (Sigma S3500 sKai)
*
* Needs "certified" level in the app manifest.
* Requires additional manifest permissions:
*
* "power" - enable power management and privileged factory reset;
@k415hu
k415hu / GSoC_2019_LibreOffice.md
Last active November 20, 2021 03:17
Project summary, GSoC 19, LibreOffice Online Android Application

LibreOffice Online Android Application Improvements (GSoC 2019)

Abstract:

The main aim of the project was to improve the LibreOffice's Online implementation over Android by adding new features to the document viewer, fixing the most annoying bugs and enhancing the overall UI/UX on the basis of design and performance.

My Contributions:

Features added/ported from core app:-

  • ownCloud support: The user can now import the documents from the ownCloud server and view/edit those.
  • Stand alone document viewer: This will allow to open the documents from anywhere, i.e. the user can use any file browser to open the document.
  • Print support: One can print the document with the printer connected to the same network.
@VirtuBox
VirtuBox / microsoft-dns-block.txt
Last active April 22, 2026 21:01
Blocking Microsoft DNS hosts file
0.0.0.0 feedback.microsoft-hohm.com
0.0.0.0 search.msn.com
0.0.0.0 a.ads1.msn.com
0.0.0.0 a.ads2.msn.com
0.0.0.0 a.rad.msn.com
0.0.0.0 ac3.msn.com
0.0.0.0 ads.msn.com
0.0.0.0 ads1.msn.com
0.0.0.0 b.ads1.msn.com
0.0.0.0 b.rad.msn.com
@kkeybbs
kkeybbs / chrome_flags.updated.js
Last active May 29, 2025 21:31
Backup chrome flags to json and restore the backup on another machine.
// 2022-04-03, tested with Chrome 99.0.4844.84 on MacBook Pro m1
/*
Open chrome://flags/
F12 open developer console, swtich to tab "Console"
Paste below codes
- input backup() to download flags backup file
- input restore() to select one backup to restore
*/
function saveFile(filename, data) {
@zenorocha
zenorocha / etc-hosts-on-win.md
Last active March 30, 2026 07:16
/etc/hosts on Windows

1. Get your IP Address

echo `ifconfig $(netstat -nr | grep -e default -e "^0\.0\.0\.0" | head -1 | awk '{print $NF}') | grep -e "inet " | sed -e 's/.*inet //' -e 's/ .*//' -e 's/.*\://'`

2. Modify your hosts file

notepad