Skip to content

Instantly share code, notes, and snippets.

View pandevim's full-sized avatar

Aniruddha Pandey pandevim

  • Jalandhar, Punjab
View GitHub Profile
quine
intron
@pandevim
pandevim / README.md
Created May 26, 2019 22:36 — forked from insin/README.md
<RadioGroup/> for React Bootstrap - https://react-bootstrap-radio-group.surge.sh

To run the example:

npm install -g nwb
react run example.js --auto-install
@pandevim
pandevim / setup.md
Last active November 10, 2018 13:34
Setting Up Flutter Development Envirnoment

ArchLinux x86_64


$ sudo pacman -S flutter
$ yay -S android-sdk android-sdk-build-tools android-sdk-platform-tools android-platform # generally installed @ (/opt/android-sdk/)
$ echo '# Android Setup \nexport ANDROID_HOME=/opt/android-sdk \nexport PATH=$PATH:$ANDROID_HOME/tools \nexport PATH=$PATH:$ANDROID_HOME/platform-tools' >> ~/.bashrc
$ vim /etc/pacman.conf # check if multilib is commented
$ sudo pacman -S lib32-ncurses # (optional)
@pandevim
pandevim / fix.sql
Last active February 7, 2018 13:44
A friend in need is a friend indeed
SELECT CustomerName, (Address || ', ' || PostalCode || ' ' || City || ', ' || Country) AS Address
FROM Customers;