What is Meteor.js?
- CLI tool (meteor)
- Library of packages
- Open source
- Built on Node.js
| 1 leek plant | |
| 1 bushel of asparagus | |
| 2 cups veggie broth | |
| 1 table spoon Butter | |
| 1 table spoon olive oil | |
| Salt & pepper | |
| First cut leek and asparagus into smaller less then 2 inch pieces. | |
| Melt butter with olive oil |
| module AttributeRequirements | |
| extend ActiveSupport::Concern | |
| SQL_TYPE_MATCHERS = { | |
| /^character varying/ => String, | |
| /^text/ => String, | |
| /^enum/ => String, | |
| /^timestamp/ => DateTime, | |
| /^integer/ => Integer, |
Export your public key:
keybase pgp export > keybase-public.key
Export your private key:
keybase pgp export --secret > keybase-private.key
Here we create the master key. We want only Certify capability: we use the master key only to create the subkeys, Sign - Encrypt - Authenticate capabilities will be assigned to the subkeys.
Run the following command to start the master key generation process. Select the set your own capabilities creation process (type 8)
▶ gpg --full-generate-key --expert
gpg (GnuPG) 2.2.9; Copyright (C) 2018 Free Software Foundation, Inc.
| import sys | |
| import board | |
| import displayio | |
| import terminalio | |
| display = board.DISPLAY # or equivalent external display library | |
| splash = displayio.Group() | |
| fontx, fonty = terminalio.FONT.get_bounding_box() |