Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
nmcli - is a command tool for controlling Network Manager. | |
1. Create a file called Internet-up. | |
2. Copy the following line in it | |
lsusb | (grep -i <string identifying your mobile> &) && (nmcli con up id "<your connection name>" ) && ((ps -el | grep -i firefox ) || firefox &) | |
[eg. lsusb | (grep -i nokia &) && (nmcli con up id "Idea Mobile" ) && ((ps -el | grep -i firefox ) || firefox &)] |
#Get info about cpu | |
$ lscpu | |
#Get info about memory | |
$ free -b/k/m/g | |
#Get info about partitions | |
$ sudo fdisk -l | |
hardinfo |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
" Insert debugger statement according to the filetype, mapped to <F2> key. | |
function! InsertDebugger() | |
if &ft == "python" | |
execute "normal oimport ipdb;ipdb.set_trace()\<Esc>" | |
elseif &ft == "javascript" | |
execute "normal odebugger;\<Esc>" | |
else | |
" it is something else | |
endif | |
endfunction |
http://www.amazon.com/Leading-Geeks-Manage-Deliver-Technology/dp/0787961485 | |
http://www.amazon.com/The-Geek-Leaders-Handbook-Backgrounds/dp/0971246823 | |
http://www.amazon.com/Technical-Minds-Leading-Getting-Technically-Minded/dp/145158315X | |
http://www.amazon.com/Frustration-Free-Technical-Management-Techniques/dp/1609100352 | |
http://www.amazon.com/Managing-Humans-Humorous-Software-Engineering/dp/159059844X | |
http://www.amazon.com/Becoming-Technical-Leader-Problem-Solving-Approach/dp/0932633021 | |
http://www.amazon.fr/Talking-Tech-Leads-Novices-Practitioners/dp/150581748X | |
https://www.amazon.com/Chief-Technology-Officer-Responsibilities-Technical/dp/0982304048 | |
https://www.amazon.com/CTOs-at-Work-Scott-Donaldson/dp/1430235934 |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
The above exception was the direct cause of the following exception: | |
Traceback (most recent call last): | |
File "/home/sagar/experiments/dataflow/dataflow/lib/python3.6/site-packages/apache_beam/runners/direct/executor.py", line 382, in call | |
finish_state) | |
File "/home/sagar/experiments/dataflow/dataflow/lib/python3.6/site-packages/apache_beam/runners/direct/executor.py", line 423, in attempt_call | |
result = evaluator.finish_bundle() | |
File "/home/sagar/experiments/dataflow/dataflow/lib/python3.6/site-packages/apache_beam/runners/direct/transform_evaluator.py", line 698, in finish_bundle | |
data = self._read_from_pubsub(self.source.timestamp_attribute) |
" Don't try to be vi compatible | |
set nocompatible | |
" Helps force plugins to load correctly when it is turned back on below | |
filetype off | |
" TODO: Load plugins here (pathogen or vundle) | |
" Turn on syntax highlighting | |
syntax on |
# display VPC ID, CIDR Block and Name | |
aws ec2 --output text --query 'Vpcs[*].{VpcId:VpcId,Name:Tags[?Key==`Name`].Value|[0],CidrBlock:CidrBlock}' describe-vpcs |