Implement iBus IME auto configuration for Pantheon. I have implemented auto config for IBus on Gnome at /src/frontend/PlatformConfig.cpp. You're running in Panthon DE on elementaryOS, so you can experiment.
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
| Useful Regex (Find & Replace) | |
| = *"(assets[^"]*)" | |
| ="{% static "$1" %}" |
vcpkg integrate install
mkdir build; cd build
cmake .. -DCMAKE_PREFIX_PATH="C:\Qt\5.15.2\msvc2019_64\lib\cmake" -DCMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake"
msbuild .\INSTALL.vcxproj
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
| # sg scan -U --rule .\debug.yml | |
| id: insert-debug | |
| language: c++ | |
| rule: | |
| kind: compound_statement | |
| pattern: $A | |
| inside: | |
| kind: function_definition | |
| transform: | |
| DEBUG: |
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
| [ | |
| { | |
| "bounds": { | |
| "northeast": { | |
| "lat": 23.8720233, | |
| "lng": 90.37362519999999 | |
| }, | |
| "southwest": { | |
| "lat": 23.7909808, | |
| "lng": 90.3630179 |
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://www.tonymacx86.com/threads/10-11-0-10-11-3-skylake-starter-guide.179221/ | |
| https://www.reddit.com/r/hackintosh/comments/4583xj/help_disable_ioapic_on_gaz170xpsli/ | |
| https://www.reddit.com/r/hackintosh/comments/4gq4m9/gigabyte_gaz170xpsli/ | |
| https://techsviewer.com/install-macos-10-15-catalina-on-virtualbox-on-windows-pc/ | |
| https://www.tonymacx86.com/threads/success-ga-z170xp-sli-hackintosh.231075/ |
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
| bash -c "$(wget -q --show-progress https://raw.githubusercontent.com/Adyel/OpenBangla-Keyboard/SimpleInstall/tools/install.sh -O -)" | |
| git checkout -b bdeshi-master-fork master | |
| git pull https://github.com/bdeshi/OpenBangla-Keyboard.git master-fork |
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
| // Calculates remainder in a integer | |
| // It's work like the '%' operator in swift | |
| // Currently integer values are supported | |
| // Public Domain ;) | |
| // By Muhammad Mominul Huque | |
| func getRemainder(var realNum: Int, goesTo: Int) ->Int { | |
| while(realNum > goesTo) { | |
| realNum -= goesTo | |
| } | |
| return realNum |