Skip to content

Instantly share code, notes, and snippets.

View abhi11verma's full-sized avatar

Abhishek Verma abhi11verma

View GitHub Profile
@abhi11verma
abhi11verma / Designing Event-Driven Systems links.md
Created June 24, 2021 12:27 — forked from giampaolotrapasso/Designing Event-Driven Systems links.md
List of links from Designing Event-Driven Systems by Ben Stopford
sudo pmset -a force gpuswitch 0
2 = both GPUs?
1 = Discrete?
0 = Integrated?
App for changing status
https://tidbits.com/2011/02/21/improve-macbook-pro-battery-life-with-gfxcardstatus/
http://jsfiddle.net/timdown/hGkGp/749/
@abhi11verma
abhi11verma / Debugging
Created August 28, 2019 07:20
React Native
# Problem : Debug not starting | Error : cannot connect to port localhost:8082
Solution:
Forward the Port for the device
adb forward tcp:8082 tcp:8082
@abhi11verma
abhi11verma / Resoruce
Created August 3, 2019 08:43
Next Cloud setup
https://pimylifeup.com/raspberry-pi-nextcloud-server/
@abhi11verma
abhi11verma / Convert Text to column
Last active December 18, 2019 05:22
Uncategorized
https://www.thekeycuts.com/converting-text-columns-multiple-lines/
Sustitute(A1,Char(10),"")
sudo apt-get install gtypist
sudo apt-get install typespeed
@abhi11verma
abhi11verma / Android MTP
Last active February 13, 2019 08:27
Mounting devices in ubuntu nautilus
install jmtpfs
create mount point mkdir
jmtpfs /media/abhi/Xiaomi/
https://www.toptal.com/php/a-utf-8-primer-for-php-and-mysql
@abhi11verma
abhi11verma / Mount smb on ubuntu
Last active January 12, 2019 17:18
Raspberry Pi
sudo mount -t cifs //192.168.31.156/share /media/NFShare/
## Unmount
umount -f /mnt/fileshare
## Fstab change for Host Ubuntu
//192.168.31.156/share /media/NFShare cifs guest,uid=1000,iocharset=utf8 0 0
[https://askubuntu.com/questions/1050460/how-to-mount-smb-share-on-ubuntu-18-04]