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
{ | |
"AP": "Andhra Pradesh", | |
"AR": "Arunachal Pradesh", | |
"AS": "Assam", | |
"BR": "Bihar", | |
"CT": "Chhattisgarh", | |
"GA": "Goa", | |
"GJ": "Gujarat", | |
"HR": "Haryana", | |
"HP": "Himachal Pradesh", |
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
############################################################################ | |
# # | |
# ------- Useful Docker Aliases -------- # | |
# # | |
# # Installation : # | |
# copy/paste these lines into your .bashrc or .zshrc file or just # | |
# type the following in your current shell to try it out: # | |
# wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
# # | |
# # Usage: # |
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
# Remove the default interactive shell message | |
export BASH_SILENCE_DEPRECATION_WARNING=1 | |
# Path export for android studio | |
export ANDROID_HOME=$HOME/Library/Android/sdk | |
export PATH=$PATH:$ANDROID_HOME/emulator | |
export PATH=$PATH:$ANDROID_HOME/tools | |
export PATH=$PATH:$ANDROID_HOME/tools/bin | |
export PATH=$PATH:$ANDROID_HOME/platform-tools |
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 * as React from 'react' | |
import { | |
chakra, | |
forwardRef, | |
omitThemingProps, | |
StylesProvider, | |
SystemStyleObject, | |
ThemingProps, | |
useMultiStyleConfig, | |
useStyles, |
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
function strictEqual(a, b) { | |
if ((Object.is(a, 0) && Object.is(b, -0)) || (Object.is(a, -0) && Object.is(b, 0))) { | |
return true | |
} | |
if (Object.is(a, NaN) && Object.is(b, NaN)) { | |
return false | |
} | |
return Object.is(a, b) |
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
{ | |
"urls":[ | |
{ | |
"url":"https://nullish.in", | |
"name":"Personal website/blog", | |
"env":null | |
}, | |
{ | |
"url":"https://todos.nullish.in", | |
"name":"Todo app using Nextjs", |
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
1. vercel - hosting | |
2. netlify - hosting | |
3. firebase - hosting, db, analytics, auth and more | |
4. supabase - db, auth and more | |
5. fly.io - hosting and db | |
6. github - github pages and github actions | |
7. travis - github action alternatives | |
8. heroku - hosting server and stuff | |
9. cloudflare - cdn, cf workers and more | |
10. hasura - graphql api and stuff |
OlderNewer