I have a key that is currently on two computers. I want to do these things:
- Create a new key with better security
- Sign my old key with my new key
- Revoke my old key
- Export both keys
The article that started it all and gave a SUPER LUCID explanation
https://iamturns.com/typescript-babel/
Some links from the Babel site that helped explain the setup tasks and why to use what features and configuration stuff.
https://babeljs.io/setup.html#installation https://babeljs.io/docs/en/configuration https://babeljs.io/docs/en/usage https://babeljs.io/docs/en/babel-cli
| class String | |
| def spongebob | |
| each_char.map { |c| rand > 0.5 ? c.swapcase : c }.join | |
| end | |
| end |
| $animation: MoveBG 100s ease infinite; | |
| body { | |
| background: linear-gradient(240deg,#a24bcf,#4b79cf,#4bc5cf); | |
| background-size: 400% 400%; | |
| -webkit-animation: $animation; | |
| -moz-animation: $animation; | |
| -o-animation: $animation; | |
| animation: $animation; | |
| } |
| #! /usr/bin/env ruby | |
| if system('bundle exec rubocop') | |
| puts 'Rubocop is pleased.' | |
| else | |
| puts 'Rubocop demands penance.' | |
| exit(1) | |
| end |
| class A | |
| def foo | |
| 'hello' | |
| end | |
| alias_method :bar, :foo | |
| end | |
| class B < A | |
| def foo | |
| 'bye' |
| # An object-oriented breakfast | |
| class Mug(object): | |
| def __init__(self, article): | |
| self.article = article | |
| print('You put a', self.article.get_name().lower(), 'in the mug') | |
| def heat(self, heater, time): | |
| heater.heat(self.article, time) | |
| def get_article(self): |
I hereby claim:
To claim this, I am signing this object:
This is a huge pain in the butt process. Work in progress.
ionic start myapp tabscd myappnpm install --save-dev gulp-typescript browserify tsify typings typescript vinyl-buffer vinyl-source-stream (I'm not using all of these yet)
Couldn't find the text of this for a while...