Ps: The current setup was done on 01-04-19
Project Dependency Versions at the time 👇
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3",
"typescript": "^3.2.2"
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",| https://github.com/github/training-kit | |
| https://github.com/AdguardTeam/AdGuardHome | |
| https://github.com/TH3xACE/SUDO_KILLER | |
| https://github.com/simbody/simbody | |
| https://github.com/nongiach/sudo_inject |
| /* eslint-env jest */ | |
| import _ from 'lodash' | |
| import path from 'path' | |
| import fs from 'fs' | |
| import callsites from 'callsites' | |
| import knex from 'knex' | |
| import hash from 'object-hash' | |
| import conf from '<conf>' | |
| // Get the db config. |
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
| public class Constants { | |
| /** | |
| * Contains the path to your Lambda function code. | |
| */ | |
| public static final String LAMBDA_TASK_ROOT = System.getenv("LAMBDA_TASK_ROOT"); | |
| /** | |
| * The environment variable is set to one of the following options, depending on the runtime of the Lambda function: | |
| * AWS_Lambda_nodejs, AWS_Lambda_nodejs4.3, AWS_Lambda_nodejs6.10 |
Ps: The current setup was done on 01-04-19
Project Dependency Versions at the time 👇
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3",
"typescript": "^3.2.2"
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",| The goal of Node was event driven HTTP servers. | |
| 5:04 https://youtu.be/M3BM9TB-8yA?t=304 | |
| 1 Regret: Not sticking with Promises. | |
| * I added promises to Node in June 2009 but foolishly removed them in February 2010. | |
| * Promises are the necessary abstraction for async/await. | |
| * It's possible unified usage of promises in Node would have sped the delivery of the eventual standartization and async/await. | |
| * Today Node's many async APIs are aging baldly due to this. | |
| 6:02 https://youtu.be/M3BM9TB-8yA?t=362 |
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |
| Menus: | |
| About | |
| * Guruji - Some information about ur guruji | |
| * Bhagwan-mahavira - ( we can use this information https://www.shrimadrajchandramission.org/inspiration/bhagwan-mahavira/genealogy-290.htm#) | |
| Jainism | |
| * Jainism - jainism history | |
| * 24-tirthankars | |
| * about-tirthankars-arihants |
| const fs = require('fs') | |
| const path = require('path') | |
| // absolute paths to all symlinked modules inside `nodeModulesPath` | |
| // adapted from https://github.com/webpack/webpack/issues/811#issuecomment-405199263 | |
| module.exports = function findLinkedModules(nodeModulesPath) { | |
| const modules = [] | |
| fs.readdirSync(nodeModulesPath).forEach(dirname => { | |
| const modulePath = path.resolve(nodeModulesPath, dirname) |
| { | |
| "direction": "ltr", | |
| "palette": { | |
| "common": { | |
| "black": "#000", | |
| "white": "#fff", | |
| "transparent": "rgba(0, 0, 0, 0)", | |
| "fullBlack": "rgba(0, 0, 0, 1)", | |
| "darkBlack": "rgba(0, 0, 0, 0.87)", | |
| "lightBlack": "rgba(0, 0, 0, 0.54)", |