Create a new gist here.
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
| 416c6c20776f726b20616e64206e6f20706c6179206d616b65204a61636b20612064756c6c20626f79 |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>kAverageLikelihood</key> | |
| <real>-1.5</real> | |
| <key>kBigramLearningBaseCost</key> | |
| <integer>-2000</integer> | |
| <key>kBigramLearningPrefixBaseCost</key> | |
| <integer>-900</integer> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>adjectivePosID</key> | |
| <integer>1396</integer> | |
| <key>adverbPosID</key> | |
| <integer>19</integer> | |
| <key>auxVerbRegionBeginPosID</key> | |
| <integer>20</integer> |
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
| com.apple.private.security.disk-device-access | |
| com.apple.private.security.no-container | |
| com.apple.private.security.storage.AppBundles | |
| com.apple.private.security.storage.AppDataContainers | |
| com.apple.private.security.storage.AppStoreCache | |
| com.apple.private.security.storage.BulletinDistributor | |
| com.apple.private.security.storage.CallHistory | |
| com.apple.private.security.storage.CloudKit | |
| com.apple.private.security.storage.CoreKnowledge | |
| com.apple.private.security.storage.DCIM |
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
| ref: refs/heads/main |
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
| 262 [APP] qFlipper version 1.1.3 commit f9bd612e 2022-08-17T10:23:02 | |
| 262 [APP] OS info: Pop!_OS 22.04 LTS 22.04 5.19.0-76051900-generic | |
| 285 [REG] Detected new device: VID_0x483:PID_0xdf11 | |
| 536 [DBG] Device reported transfer size: 1024 | |
| 538 [DBG] Bytes uploaded: 32 100% | |
| 538 [DBG] Upload has finished. | |
| 540 [REG] Registering the device | |
| 540 [BKD] Current device changed to "Otu" | |
| 559 [UPD] Fetched update information from https://update.flipperzero.one/qFlipper/directory.json | |
| 559 [UPD] Fetched update information from https://update.flipperzero.one/firmware/directory.json |
Commands ran on a server may take underdetermined amount of time. With tmux allowing for multiple windows and panes, I found it disruptive to jump around checking whether a command completed running. This gist outlines my solution using port forwarding and ncat to listen for connections and play a sound and pop-up notification on completion or error.
Set up the local machine to recieve notification from server. The used ports are only for example; and should be changed to user's preference.
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
| com.apple.private.security.disk-device-access | |
| com.apple.private.security.no-container | |
| com.apple.private.security.storage.AppBundles | |
| com.apple.private.security.storage.AppDataContainers | |
| com.apple.private.security.storage.AppStoreCache | |
| com.apple.private.security.storage.BulletinDistributor | |
| com.apple.private.security.storage.CallHistory | |
| com.apple.private.security.storage.CloudKit | |
| com.apple.private.security.storage.CoreKnowledge | |
| com.apple.private.security.storage.DCIM |
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://stackoverflow.com/questions/54786278/how-do-i-write-a-maintainable-fast-compile-time-bit-mask-in-c | |
| #include <bitset> | |
| enum Flags { A = 1, B = 2, C = 3, D = 5, | |
| E = 8, F = 13, G = 21, H, | |
| I, J, K, L, M, N, O }; | |
| #define CPP_VERSION 14 | |
| #if CPP_VERSION==11 |
NewerOlder