I hereby claim:
- I am aravindballa on github.
- I am balla (https://keybase.io/balla) on keybase.
- I have a public key whose fingerprint is 0DFA 8F80 0681 56E4 A9D3 C55D 086D EA80 4CEF E0A9
To claim this, I am signing this object:
def index(request): | |
return render_to_response(‘index.html’) |
I hereby claim:
To claim this, I am signing this object:
Windows Registry Editor Version 5.00 | |
; Open files | |
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code] | |
@="Edit with VS Code" | |
"Icon"="C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe,0" | |
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] | |
@="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%1\"" | |
; This will make it appear when you right click ON a folder | |
; The "Icon" line can be removed if you don't want the icon to appear | |
[HKEY_CLASSES_ROOT\Directory\shell\vscode] |
rm -rf node_modules/ package-lock.json | |
for d in packages/*/ | |
do | |
rm -rf "$d"/node_modules "$d"/package-lock.json | |
echo "$d" | |
done |
// Just paste photos to host them on github |
{ | |
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('This library must be installed with Yarn: https://yarnpkg.com/ ')\"" | |
} |
class WelcomeComp extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { name: '' } | |
if (props.name) this.state = { name: props.name }; | |
} | |
updateName = name => this.setState({ name }) | |
render() { |
:root { | |
--transparent: transparent; | |
--current: currentColor; | |
--black: #000; | |
--white: #fff; | |
--gray-100: #f7fafc; | |
--gray-200: #edf2f7; | |
--gray-300: #e2e8f0; |
import { ComponentType, useEffect, useRef } from "react" | |
import { createStore } from "https://framer.com/m/framer/store.js@^1.0.0" | |
import { addPropertyControls, ControlType } from "framer" | |
import { AxiomWithoutBatching } from "@axiomhq/js" | |
const axiom = new AxiomWithoutBatching({ | |
token: "xaat-f7a91312-92ce-4c7f-8692-ebc92a52aabd", | |
orgId: "idya-ltra", | |
}) | |
const axiomDataset = "framer-experiments" |
autoload -U add-zsh-hook | |
load-nvmrc() { | |
local node_version="$(nvm version)" | |
local nvmrc_path="$(nvm_find_nvmrc)" | |
if [ -n "$nvmrc_path" ]; then | |
local nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")") | |
if [ "$nvmrc_node_version" = "N/A" ]; then | |
nvm install |