Skip to content

Instantly share code, notes, and snippets.

View kasiriveni's full-sized avatar
🎯
Focusing on Learning 💯🔥

Srinivas kasiriveni

🎯
Focusing on Learning 💯🔥
View GitHub Profile
@kasiriveni
kasiriveni / settings
Last active June 6, 2022 07:35
vscode-pro-settingss
{
// 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,
@kasiriveni
kasiriveni / CrashCourse
Last active March 4, 2020 12:25
WEB _Crash Course For Absolute Beginners
https://www.youtube.com/watch?v=UB1O30fR-EE&list=PLillGF-RfqbYeckUaD1z6nviTp31GLTH8
https://api.graph.cool/simple/v1/cjlz2qgkx1ss901629tleg5g2
@kasiriveni
kasiriveni / settings.json
Last active February 6, 2019 09:32
vscode-settings
{
"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,
@kasiriveni
kasiriveni / firefox _addons .txt
Last active January 25, 2019 10:13
firefox _addons
https://addons.mozilla.org/en-US/firefox/collections/13633161/UI-Development/?page=1&collection_sort=-popularity
:: Code ::
https://docs.emmet.io/cheat-sheet
https://angular.io/guide/cheatsheet
:: Keyboard ::
https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf
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>
);
@kasiriveni
kasiriveni / Awesome github user .txt
Last active March 4, 2020 12:27
Awesome github user
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