Skip to content

Instantly share code, notes, and snippets.

View fifthdrew's full-sized avatar
👾

Vanderson Rodrigues fifthdrew

👾
View GitHub Profile

Keybase proof

I hereby claim:

  • I am vanditoh on github.
  • I am vandito (https://keybase.io/vandito) on keybase.
  • I have a public key ASDvzy-O5qsKo3NB5qQQwBDUBK1ldlg3eJF9QXTPsNfamQo

To claim this, I am signing this object:

@fifthdrew
fifthdrew / example_desafio_1.py
Created September 20, 2022 16:30
Exemplos de testes funcionais para verificar que o nó 0 enviou um bloco ao nó 1
#!/usr/bin/env python3
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import assert_equal
class SendBlockTest(BitcoinTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 2
@fifthdrew
fifthdrew / angular-cli-node-js-typescript-rxjs-compatiblity-matrix.csv
Created March 21, 2022 14:56 — forked from LayZeeDK/angular-cli-node-js-typescript-rxjs-compatiblity-matrix.csv
Angular CLI, Angular, Node.js, TypeScript, and RxJS version compatibility matrix. Based on changelogs, metadata, and hands-on experience. Major Node.js and RxJS versions above officially supported versions are not listed. Note that minor TypeScript versions also contain breaking changes.
Angular CLI version Angular version Node.js version TypeScript version RxJS version
1.0.0-beta.17 (package name: angular-cli) ~2.0.2 ^6.9.5 ~2.0.10 ^5.0.3
1.0.0-beta.20-1 (package name: angular-cli) ~2.1.2 ^6.9.5 ~2.0.10 ^5.0.3
1.0.0-beta.22-1 (package name: angular-cli) ~2.2.4 ^6.9.5 ~2.0.10 ^5.0.3
1.0.0-beta.30 ~2.3.1 ^6.9.5 ~2.0.10 ^5.0.3
1.0.0-rc.4 ~2.4.10 ^6.9.5 ~2.0.10 ^5.0.3
~1.0.6 >=4.0.3 <=4.1.3 ^6.9.5 ~2.2.2 ^5.0.3
~1.1.3 >=4.0.3 <=4.1.3 ^6.9.5 ~2.3.4 ^5.0.3
~1.2.7 >=4.0.3 <=4.1.3 ^6.9.5 ~2.3.4 ^5.0.3
~1.3.2 >=4.2.6 <=4.4.7 ^6.9.5 ~2.4.2 ^5.0.3
@fifthdrew
fifthdrew / conventional_commit_messages.md
Last active December 1, 2021 13:55 — forked from qoomon/conventional-commits-cheatsheet.md
Conventional Commit Messages

Conventinal Commit Messages

See how a minor change to your commit message style can make a difference. Examples

Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs

Commit Formats

Default

@fifthdrew
fifthdrew / gitflow-breakdown.md
Created December 1, 2021 13:32 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository

@fifthdrew
fifthdrew / note.log
Created August 11, 2021 13:54 — forked from haxpor/note.log
Note from Mastering Vim Language By Chris Toomey without plugins section at around 12 minutes at the end
* dw - delete word
* . - to repeat changes
* u - undo changes (atomic operation)
* verbs in vim
- d => delete
- c => change
- > => indent
- v => visually select
- y => yank (copy)
* cw - delete and get into insert mode