(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
import json | |
import geojson | |
from shapely.geometry import shape | |
o = { | |
"coordinates": [[[23.314208, 37.768469], [24.039306, 37.768469], [24.039306, 38.214372], [23.314208, 38.214372], [23.314208, 37.768469]]], | |
"type": "Polygon" | |
} | |
s = json.dumps(o) |
NUMBER_BUCKETS = 600 | |
def hash_bucket(data, num_buckets=NUMBER_BUCKETS, seed=42): | |
"""MurmurHash3 was written by Austin Appleby, and is placed in the | |
public domain. The author hereby disclaims copyright to this source | |
code.""" | |
c1 = 0xcc9e2d51 | |
c2 = 0x1b873593 |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Created on Thu Mar 29 09:57:55 2018 | |
@author: avsthiago | |
""" | |
from keras.preprocessing.image import ImageDataGenerator | |
import numpy as np |
{ | |
"snippets" : [ | |
{ | |
"name" : "timing-notifications", | |
"code": [ | |
"%load_ext autoreload", | |
"%load_ext jupyternotify", | |
"%load_ext autotime" | |
] | |
} |
docker exec -it container_name /bin/bash -c "export COLUMNS=`tput cols`; export LINES=`tput lines`; exec bash" |
def show_mem_usage(): | |
'''Displays memory usage from inspection | |
of global variables in this notebook''' | |
gl = sys._getframe(1).f_globals | |
vars= {} | |
for k,v in list(gl.items()): | |
# for pandas dataframes | |
if hasattr(v, 'memory_usage'): | |
mem = v.memory_usage(deep=True) | |
if not np.isscalar(mem): |
set nocompatible " required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') |
To mount a partition at startup for all users, we need an entry in the fstab file. What is happening presently is, the HDD is getting mounted for the user who logs in which gives access permissions to only that user. By adding an entry in the fstab, the partition will be mounted by root with access to all users. this r/w access can be controlled later on. | |
sudo blkid lists down all partitions available on your system. Note down the UUID of the NTFS partition that you want to mount at boot. In your case, it seems 00148BDE148BD4D6 | |
now create a folder, for example sudo mkdir /media/ExtHDD01. This is the folder where your external HDD partition will be mounted at. This folder will be owned by root. To give other users permission to r/w into this folder we need to give the proper permissions. so chmod -R 777 /media/ExtHDD01 would be good enough. Now you need to edit your fstab file. to do so, type the following command. | |
sudo nano /etc/fstab | |
go to the bottom of the file and add the following line there. | |
UUID=001 |
# Terminal Cheat Sheet | |
pwd # print working directory | |
ls # list files in directory | |
cd # change directory | |
~ # home directory | |
.. # up one directory | |
- # previous working directory | |
help # get help | |
-h # get help |