This file contains 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 need to enable developer options and usb debugging on your phone. | |
- Unblock the developpers menu on your smartphone; | |
- Enable USB debugging; | |
- Plug-in usb cable while your phone is running; | |
- Open a console on the folder extracted with ADB tool; | |
- Type `adb devices` and check what it says; | |
- If you see "device - not authorizated", look at your phone, maybe you need to confirm access; | |
- After confirming, type `adb devices` once more; | |
- If you see a code and "device", you are ready to run this. | |
#> |
This file contains 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
[General] | |
IniMode=true | |
[version] | |
written_by_TXS_version=3.0.1 | |
written_by_TXS_hg_revision=3.0.1 | |
written_by_Qt_version=330753 | |
created_by_TXS_version=3.0.1 | |
created_by_TXS_hg_revision=3.0.1 | |
created_by_Qt_version=330753 |
This file contains 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
""" pygments.styles.monokaist | |
Closely mimic the Sublime Text version of Monokai color scheme. | |
Made with the C++ syntax in mind, so YMMV. | |
Check out https://pygments.org/docs/styles/#creating-own-styles | |
for instructions on how to use. | |
""" | |
from pygments.style import Style | |
from pygments.token import Keyword, Name, Comment, String, Error, Text, \ | |
Number, Operator, Generic, Whitespace, Punctuation, Other, Literal |
This file contains 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
BasedOnStyle: Chromium | |
--- | |
Language: Cpp | |
AccessModifierOffset: -2 # Negative of TabWidth | |
AlignConsecutiveAssignments: false | |
AlignConsecutiveBitFields: true | |
AlignConsecutiveDeclarations: false | |
AllowShortBlocksOnASingleLine: Empty | |
AllowShortFunctionsOnASingleLine: Empty | |
BinPackArguments: true |