Starting a personal node project could be easy; starting a team node project could be challenging.
I am a developer currently working in SEEK Australia.
In my experience, common mistakes developer make when starting a projects are:
- No Linting
Starting a personal node project could be easy; starting a team node project could be challenging.
I am a developer currently working in SEEK Australia.
In my experience, common mistakes developer make when starting a projects are:
const partialJson = `{"a1":"v1","a2":{"a3":"v3","a4":{"a5":"v5","a6"`; | |
// const partialJson = `{"a1":"v1","a2":{"a3":"v3","a4":{"a5`; | |
// const partialJson = `{"a1":"v1","a2":{"a3":"v3","a4":{"a5":"v5"}`; | |
const removeQuote = (str: string) => str.replace(/"/g, ''); | |
const findSubstringAtIndex = (json: string) => (index: number) => | |
json.substring(index + 1); | |
const insertClosingBrackets = (json: string) => { |
This is helpful if you've previously installed git from source on OSX, and other compilers can't find the correct path. You need to remove the current version of git, then re-install with brew.
which git
{ | |
"auto-rename-tag.activationOnLanguage": [ | |
"html", | |
"xml", | |
"php", | |
"javascript", | |
"typescript", | |
"javascriptreact", | |
"typescriptreact", | |
], |
"workbench.colorCustomizations": { | |
"focusBorder": "#8695b777", | |
"foreground": "#8695b7", | |
"widget.shadow": "#00030F", | |
"selection.background": "#8695b777", | |
"descriptionForeground": "#d7dce2", | |
"errorForeground": "#ef6b73", | |
"textBlockQuote.background": "#2f3b54", | |
"textBlockQuote.border": "#2f3b54", | |
"textCodeBlock.background": "#171c28", |
import differenceBy from 'lodash/differenceBy'; | |
import flatten from 'lodash/flatten'; | |
import partition from 'lodash/partition'; | |
import moment from 'moment'; | |
import { getTimelineMonths } from '../helpers'; | |
import { | |
CrewSchedule, | |
FormattedSchedules, | |
RowSegment, |
{ | |
"AAA":{ | |
"municipality":"", | |
"iataCode":"AAA", | |
"name":"Anaa Airport" | |
}, | |
"AAB":{ | |
"municipality":"", | |
"iataCode":"AAB", | |
"name":"Arrabury Airport" |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
Name | MIMEType | Extension | Description | |
---|---|---|---|---|
aac | audio/aac | .aac | AAC audio file | |
abw | application/x-abiword | .abw | AbiWord document | |
arc | application/octet-stream | .arc | Archive document (multiple files embedded) | |
avi | video/x-msvideo | .avi | AVI: Audio Video Interleave | |
azw | application/vnd.amazon.ebook | .azw | Amazon Kindle eBook format | |
bin | application/octet-stream | .bin | Any kind of binary data | |
bz | application/x-bzip | .bz | BZip archive | |
bz2 | application/x-bzip2 | .bz2 | BZip2 archive | |
csh | application/x-csh | .csh | C-Shell script |