Skip to content

Instantly share code, notes, and snippets.

View dataserver's full-sized avatar
💤
vacation

John dataserver

💤
vacation
View GitHub Profile
@dataserver
dataserver / RemoveSearchSuggestion.reg
Last active April 3, 2025 11:08
Windows - remove web search suggestion from taskbar (DisableSearchBoxSuggestions)
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer]
"DisableSearchBoxSuggestions"=dword:00000001
@dataserver
dataserver / feriados_2025_SaoPaulo-SP.ics
Last active April 5, 2025 13:05
Feriados 2025 para cidade de São Paulo-SP ( iCalendar )
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
CALSCALE:GREGORIAN
BEGIN:VEVENT
SUMMARY:Confraternização Universal
DTSTART;VALUE=DATE:20250101
DTEND;VALUE=DATE:20250102
DESCRIPTION:Feriado de Confraternização Universal.
@dataserver
dataserver / mp3splitter.py
Created April 5, 2025 19:32
This script splits a large MP3 file (downloaded from youtube) into individual tracks based on timestamps provided in a tracklist text file
"""
MP3 Splitter CLI Tool
This script splits a large MP3 file into individual tracks based on timestamps provided in a tracklist text file.
The user can specify which tracks to ignore. The script saves the resulting split tracks to a specified output directory.
Usage:
python split.py -i <input_mp3_file> -t <tracklist_file> -o <output_directory>
Arguments:
@dataserver
dataserver / notepad.py
Created August 24, 2025 17:44
A simple multi-tab notepad app built with PySide6.
"""
A simple multi-tab notepad app built with PySide6.
Features:
- Tabbed Interface: Keep multiple text files open in different tabs.
- File Operations: Easily create new files, open existing ones, and save your work.
- Session Recovery: Automatically saves your tabs and restores them when you reopen the app.
- Markdown Preview: Switch between plain text and a live HTML preview for Markdown files.
- Basic Text Editing: Includes undo, redo, cut, copy, paste, and select all.
- Word Wrap: Turn on word wrap for easier reading of long lines.