Softwares List
This file contains hidden or 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
{ | |
// editor | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.parameterHints.enabled": false, | |
"editor.lineHeight": 18.85, | |
"editor.fontWeight": "400", | |
"editor.wordWrap": "on", | |
"editor.fontSize": 13, | |
"editor.tabSize": 2, |
This file contains hidden or 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
https://www.youtube.com/watch?v=UB1O30fR-EE&list=PLillGF-RfqbYeckUaD1z6nviTp31GLTH8 |
This file contains hidden or 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
https://api.graph.cool/simple/v1/cjlz2qgkx1ss901629tleg5g2 |
This file contains hidden or 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
{ | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.parameterHints.enabled": false, | |
"editor.snippetSuggestions": "top", | |
"editor.tabSize": 2, | |
"editor.glyphMargin": false, | |
"editor.folding": false, | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.smoothScrolling": true, |
This file contains hidden or 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
https://addons.mozilla.org/en-US/firefox/collections/13633161/UI-Development/?page=1&collection_sort=-popularity |
This file contains hidden or 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
:: Code :: | |
https://docs.emmet.io/cheat-sheet | |
https://angular.io/guide/cheatsheet | |
:: Keyboard :: | |
https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf |
This file contains hidden or 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
import React, { useState } from "react"; | |
function Count() { | |
const [mycount, mysetCount] = useState(0); | |
return ( | |
<div> | |
<p>you clicked {mycount}</p> | |
<button onClick={() => mysetCount(mycount + 1)}>Click me</button> | |
</div> | |
); |
This file contains hidden or 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
https://github.com/sindresorhus | |
https://github.com/jamiebuilds | |
https://github.com/kentcdodds | |
https://github.com/developit | |
https://github.com/addyosmani | |
https://github.com/paulirish | |
https://github.com/jdalton | |
https://github.com/ryanflorence | |
https://github.com/btholt | |
https://github.com/mdo |
NewerOlder