See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
KEYMAPOPTS="us us" | |
HOSTNAMEOPTS="-n alpine" | |
INTERFACESOPTS="auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet dhcp | |
hostname alpine | |
" | |
TIMEZONEOPTS="-z UTC" |
A year month picker component for react native.
import yearMonthPicker.js
file to your project.
detail usage you can check for the example.js
file.
or open this snap in expo
{ | |
"red": { | |
"50": "#ffebee", | |
"100": "#ffcdd2", | |
"200": "#ef9a9a", | |
"300": "#e57373", | |
"400": "#ef5350", | |
"500": "#f44336", | |
"600": "#e53935", | |
"700": "#d32f2f", |
const store = new Store({ | |
state: { | |
count: 0 | |
} | |
}) | |
store.mutation.increment = (state) => { | |
state.count = state.count + 1 | |
} |
function generatePass({ | |
length, | |
allowNumbers = true, | |
allowLowerCase = true, | |
allowUpperCase = true, | |
allowSymbols = true, | |
allowRepeat = true | |
}) { | |
const lowerCase = "abcdefghijklmnopqrstuvwxyz" | |
const upperCase = "ABCDEFGMIJKLMNOPQRSTUVWXYZ" |
[ | |
{ | |
"pergunta" : "Quais heróis se preocupam mais com as poses para fotos do que com salvar o seu planeta?", | |
"resposta" : "Os TumblrCats" | |
},{ | |
"pergunta" : "Qual é a profissão do Homem Aranha?", | |
"resposta" : "Desenvolvedor Web" | |
},{ | |
"pergunta" : "Qual é o estado dos EUA que te eletrifica?", | |
"resposta" : "Ohio." |