- increase font size in terminal
- check the shell (it's bash)
- add an alias (
alias d="ls -al") - edit
/etc/pacman.conf, and add this line:ParallelDownloads = 20 - edit mirror lists in
/etc/pacman.d
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
| #!/usr/bin/env python3 | |
| # Author: Laszlo Szathmary, alias Jabba Laci, 2026 | |
| import json | |
| import os | |
| import shlex | |
| from pathlib import Path | |
| from pprint import pprint | |
| from subprocess import PIPE, STDOUT, Popen |
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
| "emeraldwalk.runonsave": { | |
| "commands": [ | |
| { | |
| "match": "\\.c$", | |
| "isAsync": false, | |
| "cmd": "cd '${fileDirname}' && clang-format --style=Microsoft -i '${fileBasename}'" | |
| }, | |
| ] | |
| }, |
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
| My `settings.json` for VS Code | |
| ------------------------------ | |
| { | |
| "files.eol": "\n", | |
| "workbench.colorTheme": "Visual Studio Light", | |
| "workbench.colorCustomizations": { | |
| "editor.background": "#fcf5e3", | |
| "sideBar.background": "#f9edcd", | |
| // "editor.lineHighlightBackground": "#e9f2fa", | |
| "editor.lineHighlightBackground": "#efefef", |
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
| # add these to the end of your ~/.bashrc | |
| alias m="micro" | |
| # if you want to use micro everywhere | |
| export EDITOR="micro" | |
| export VIEWER=$EDITOR | |
| export VISUAL=$EDITOR | |
| export GIT_EDITOR=$EDITOR |
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
| #!/usr/bin/env python3 | |
| import time | |
| import pyautogui | |
| # where to click on the screen | |
| X, Y = 1079, 481 | |
| # How many times to click. |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
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
| #!/usr/bin/env python3 | |
| """ | |
| using the yt-dlp package | |
| """ | |
| import json | |
| from pprint import pprint | |
| import yt_dlp |
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 <stdio.h> | |
| #include <stdlib.h> | |
| int main() | |
| { | |
| int *tomb = NULL; | |
| int n = 0; // elemszรกm | |
| while (1) | |
| { |
NewerOlder