gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
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
XLM | |
TRX | |
ICX | |
EOS | |
IOTA | |
ONT | |
QTUM | |
ETC | |
ADA | |
XMR |
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
{ | |
"meta": { | |
"theme": "stackoverflow" | |
}, | |
"basics": { | |
"name": "An Nguyen Hieu Duc - Andy", | |
"label": "Software Engineer (Mainly Frontend)", | |
"image": "https://avatars3.githubusercontent.com/u/38342390", | |
"summary": "I’m a frontend developer who can build apps UI from the scratch. I've worked mostly at startups so I am used to wearing many hats. I am a very product focussed developer who prioritizes user feedback first and foremost. A team player with a supportive spirit, love to learn, and share new tech knowledge with my teammate.", | |
"website": "", |
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
module.exports = { | |
transparent: 'transparent', | |
white: '#ffffff', | |
black: '#000000', | |
gray: { | |
'50': '#f9fafb', | |
'100': '#f4f5f7', | |
'200': '#e5e7eb', | |
'300': '#d2d6dc', | |
'400': '#9fa6b2', |
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
const acceptButtons = document.querySelectorAll('.invitation-card__action-btn.artdeco-button.artdeco-button--2.artdeco-button--secondary.ember-view > span') | |
acceptButtons.forEach(acc => { | |
acc.click() | |
}) |
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
module.exports = { | |
transparent: 'transparent', | |
white: '#ffffff', | |
black: '#000000', | |
gray: { | |
'50': '#f9fafb', | |
'100': '#f4f5f7', | |
'200': '#e5e7eb', | |
'300': '#d2d6dc', | |
'400': '#9fa6b2', |
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
{ | |
"Models": { | |
"PostTypeId": { | |
"1": "Question", | |
"2": "Answer", | |
"3": "Wiki", | |
"4": "TagWikiExcerpt", | |
"5": "TagWiki", | |
"6": "ModeratorNomination", | |
"7": "WikiPlaceholder", |
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
function copyStylesInline(destinationNode, sourceNode) { | |
var containerElements = ["svg","g"]; | |
for (var cd = 0; cd < destinationNode.childNodes.length; cd++) { | |
var child = destinationNode.childNodes[cd]; | |
if (containerElements.indexOf(child.tagName) != -1) { | |
copyStylesInline(child, sourceNode.childNodes[cd]); | |
continue; | |
} | |
var style = sourceNode.childNodes[cd].currentStyle || window.getComputedStyle(sourceNode.childNodes[cd]); | |
if (style == "undefined" || style == null) continue; |
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
document.querySelectorAll('.box-action-blur-reviews.box-signed-in').forEach(e => e.parentNode.removeChild(e)); | |
document.querySelectorAll('.blur').forEach(e => e.classList.remove('blur')); |
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
// other type like gif, bmp,... maybe not working because browser not | |
// it may fallback to png | |
function saveImage(canvas, exportType) { | |
window.open(canvas.toDataURL(`image/${exportType}`)); | |
var gh = canvas.toDataURL(exportType); | |
var a = document.createElement('a'); | |
a.href = gh; | |
a.download = `image.${exportType}`; |
NewerOlder