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
| {"name":"alpine-vscode-10","settings":"{\"settings\":\"{\\r\\n/**\\r\\n * Better Defaults\\r\\n **/\\r\\n \\\"editor.copyWithSyntaxHighlighting\\\": false,\\r\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false,\\r\\n \\\"editor.emptySelectionClipboard\\\": false,\\r\\n \\\"workbench.editor.enablePreview\\\": false,\\r\\n \\\"window.newWindowDimensions\\\": \\\"inherit\\\",\\r\\n \\\"editor.multiCursorModifier\\\": \\\"ctrlCmd\\\",\\r\\n \\\"files.trimTrailingWhitespace\\\": true,\\r\\n \\\"diffEditor.renderSideBySide\\\": false,\\r\\n \\\"editor.snippetSuggestions\\\": \\\"top\\\",\\r\\n \\\"editor.detectIndentation\\\": false,\\r\\n \\\"window.nativeFullScreen\\\": false,\\r\\n \\\"files.insertFinalNewline\\\": true,\\r\\n\\r\\n\\r\\n // /**\\r\\n // * Hide Everything\\r\\n // */\\r\\n // \\\"workbench.activityBar.visible\\\": false,\\r\\n \\\"workbench.sideBar.location\\\": \\\"right\\\",\\r\\n \\\"workbench.statusBar.visible\\\": false,\\r\\n \\ |
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
| #Requires AutoHotkey v2.0 | |
| PgUp::Media_Prev | |
| PgDn::Media_Next | |
| PrintScreen::Media_Play_Pause | |
| LWin & c:: | |
| { | |
| Run "C:\Windows\System32\calc.exe" | |
| } | |
| SetNumLockState "AlwaysOn" |
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
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| using namespace std; | |
| int main(){ | |
| string name, class_name; | |
| int age; |
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
| #include <iostream> | |
| using namespace std; | |
| class Base{ | |
| public: | |
| Base(){ | |
| cout << "'Base' class constructor is called" << endl; | |
| } | |
| // ~Base(){ | |
| virtual ~Base(){ |
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
| """Performs automatic speed edits to audio books. | |
| Example usage: | |
| Assuming you have an audiobook book.aax on your Desktop: | |
| 1. Convert it to wav: | |
| ffmpeg -i ~/Desktop/book.aax ~/Desktop/book.wav | |
| 2. Adjust the speed: |
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 os | |
| path = 'G:\\Python\\Projects\\Piano\\sounds\\wav\\' | |
| files = os.listdir(path) | |
| for i in range(len(files)): | |
| current_name = files[i] | |
| replaced = current_name[18:] | |
| os.rename(path+files[i], f"{path}{replaced}") | |