This configuration is no longer updated
Written for fairly adept technical users, preferably of Debian GNU/Linux, not for absolute beginners.
|
You'll probably be working with a single smartcard, so you'll want only one primary key ( |
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
| { | |
| /* Override symbols so other apps can bind */ | |
| /* ~ stands for option, ^ stands for control */ | |
| "~j" = "noop:"; | |
| "~i" = "noop:"; | |
| "~;" = "noop:"; | |
| "~a" = "noop:"; | |
| "~2" = "noop:"; | |
| "~g" = "noop:"; | |
| "~y" = "noop:"; |
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
| These are feedbacks I've filed against Xcode 13's Vim support. Please dupe! | |
| Vim mode needs option to turn off audible bell - FB9136734 | |
| Vim mode needs option to disable/hide help bar - FB9138240 | |
| Vim mode needs CTRL+SHIFT+V columnar select mode - FB9138552 | |
| Vim mode missing macros for repeated text operations - FB9138595 | |
| Vim mode - support for plugins? - FB9138670 | |
| Vim mode - :w should save the file - FB9138695 | |
| Vim mode - shift-V doesn’t correctly select the first full line - FB9138796 | |
| Vim mode - Allow repeated editing operations with “.” - FB9154817 |
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
| ## runtime-postinstall.tmpl | |
| ## post-install setup required to make the system work. | |
| <%page args="root, basearch, libdir, configdir"/> | |
| <% | |
| configdir = configdir + "/common" | |
| import os, time | |
| SOURCE_DATE_EPOCH = os.environ.get('SOURCE_DATE_EPOCH', str(int(time.time()))) | |
| %> |
-
Every atomic object has a timeline (TL) of writes:
- A write is either a store or a read-modify-write (RMW): it read latest write & pushed new one.
- A write is either tagged Relaxed, Release, or SeqCst.
- A read observes some write on the timeline:
- On the same thread, future reads can't go backwards on the timeline.
- A read is either tagged Relaxed, Acquire, or SeqCst.
- RMWs can also be tagged Acquire (or AcqRel). If so, the Acquire refers to the "read" portion of "RMW".
-
Each thread has its own view of the world:
- Shared write timelines but each thread could be reading at different points.