-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
25,881 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
* [x] 0xGamer - How do we refresh a docker container when source code changes? (During development) | ||
* How to cancel a request? | ||
* https://javascript.info/fetch-abort | ||
* https://axios-http.com/docs/cancellation | ||
* Quách Trọng Nhân - Can you explain a little bit about setTimeout? | ||
* Indratej Reddy - Please make a short and sweet and informative videos on git hub commands | ||
* git config | ||
* git init | ||
* .gitignore | ||
* git status | ||
* gss | ||
* git add . | ||
* gaa | ||
* git add -A | ||
* git commit -m "new stuff" | ||
* gcm | ||
* git push <remote name> <branch name> | ||
* git push origin main | ||
* git push -f | ||
* git branch branchName | ||
* git merge branchName | ||
* git fetch | ||
* git remote -v | ||
* git pull <remote name> <branch name> | ||
* git pull origin main | ||
* git checkout -b branchName | ||
* git branch -D branchName | ||
* git stash | ||
* Things I lookup if I need them | ||
* cherry-pick | ||
* rebase | ||
* squash | ||
* rm | ||
* reset | ||
* david snyder - $2.00 from david snyder: "You should add #🔴live-chat messages to your app" | ||
* Timon - Hey CJ. I saw some people using "!!myVariable". What the double negation does? and another request, can you explain a bit the recursion in JS, it's weired how a function with the same name is called. | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module.exports = { | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: 'tsconfig.json', | ||
tsconfigRootDir : __dirname, | ||
sourceType: 'module', | ||
}, | ||
plugins: ['@typescript-eslint/eslint-plugin'], | ||
extends: [ | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:prettier/recommended', | ||
], | ||
root: true, | ||
env: { | ||
node: true, | ||
jest: true, | ||
}, | ||
ignorePatterns: ['.eslintrc.js'], | ||
rules: { | ||
'@typescript-eslint/interface-name-prefix': 'off', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
}, | ||
}; |
Oops, something went wrong.