Created: April 3, 2024 12:19 PM
We don’t need to build it. Just for backup purpose
| #!bin/bash | |
| DEV=0 | |
| if [ "$#" -eq 1 ]; then | |
| DEV="$1" | |
| fi | |
| # Expceting: | |
| # bash ./test.bash 1 -> match |
| import subprocess | |
| # Using Popen for a long-running process or custom interaction | |
| process = subprocess.Popen( | |
| ["ping", "www.google.com"], | |
| stdout=subprocess.PIPE, | |
| stderr=subprocess.PIPE, | |
| text=True, | |
| shell=True, | |
| ) |
| # Message after [WARN] | |
| regexp=\[WARN\](?:.*\[.*\].*\[.*\]: )(.*)$ | |
| colours=bright_yellow | |
| ===== | |
| # Message after [ERROR] | |
| regexp=\[ERROR\](?:.*\[.*\].*\[.*\]: )(.*)$ | |
| colours=bright_red | |
| ===== |
| Kivy==1.11.1 | |
| Kivy-examples==1.11.1 | |
| opencv-python==4.9.0.80 |
| # Based on Google style | |
| BasedOnStyle: Google | |
| # Set a large limit to avoid line wrapping | |
| ColumnLimit: 0 | |
| # Keep include order and style | |
| IncludeBlocks: Preserve | |
| SortIncludes: false |
| { | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], | |
| "cmake.options.statusBarVisibility": "visible", | |
| "cmake.showOptionsMovedNotification": false, | |
| "git.enableSmartCommit": true, | |
| "git.confirmSync": false, | |
| "git.autofetch": true, |
Created: April 3, 2024 12:19 PM
We don’t need to build it. Just for backup purpose
| find . -name ".git" -exec rm -rvf {} \; |
| Language: Cpp | |
| BasedOnStyle: Microsoft | |
| IndentWidth: 4 | |
| TabWidth: 4 | |
| UseTab: Never | |
| ColumnLimit: 130 | |
| SpaceBeforeParens: Never | |
| ReflowComments: true | |
| AllowShortBlocksOnASingleLine: true | |
| AllowShortIfStatementsOnASingleLine: true |