This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer] | |
"DisableSearchBoxSuggestions"=dword:00000001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Demo script to activate Python VENV and running a script | |
.DESCRIPTION | |
Demo script to activate Python VENV and running a script with some args capture by the powershell | |
.EXAMPLE | |
scriptname.ps1 -name blabla | |
#> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ctypes | |
# https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-messageboxa | |
# Displays a modal dialog box that contains a system icon, a set of buttons, and | |
# a brief application-specific message, such as status or error information. The | |
# message box returns an integer value that indicates which button the user clicked. | |
NULL = 0 | |
# buttons |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Virtual-Key Codes | |
# https://learn.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes?redirectedfrom=MSDN | |
class VK: | |
LBUTTON = 0x01 #Left mouse button | |
RBUTTON = 0x02 #Right mouse button | |
CANCEL = 0x03 #Control-break processing | |
MBUTTON = 0x04 #Middle mouse button (three-button mouse) | |
XBUTTON1 = 0x05 #X1 mouse button | |
XBUTTON2 = 0x06 #X2 mouse button | |
# - 0x07 Undefined |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
var debug = true; | |
var methods = [ | |
"assert", "clear", "count", "countReset", "debug", "dir", "dirxml", "error", | |
"exception", "group", "groupCollapsed", "groupEnd", "info", "log", | |
"profile", "profileEnd", "table", "time", "timeEnd", | |
"timeLog", "timeStamp", "trace", "warn" | |
]; | |
var _cons = (window.console = window.console || {}); | |
methods.forEach(method => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# https://stackoverflow.com/questions/64230231/how-can-i-can-send-windows-10-notifications-with-python-that-has-a-button-on-the | |
# | |
import winsdk.windows.data.xml.dom as dom | |
import winsdk.windows.ui.notifications as notifications | |
def main(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://webapps.stackexchange.com/questions/138942/how-to-bulk-delete-youtube-comments-without-deleting-or-deactivating-the-channel | |
Go to https://www.youtube.com/feed/history/comment_history. Press and hold "End" key on the keyboard until the page stops loading any comments. Click Erasure icon and "click to delete all comments"20 de fev. de 2020 | |
-------------------------- |
NewerOlder