As configured in my dotfiles.
start new:
tmux
start new with session name:
| Host github.com | |
| User git | |
| Hostname github.com | |
| PreferredAuthentications publickey | |
| IdentityFile /home/user/.ssh/id_rsa |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| def pretty_request(request): | |
| headers = '' | |
| for header, value in request.META.items(): | |
| if not header.startswith('HTTP'): | |
| continue | |
| header = '-'.join([h.capitalize() for h in header[5:].lower().split('_')]) | |
| headers += '{}: {}\n'.format(header, value) | |
| return ( |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = 'ubuntu/trusty64' | |
| config.vm.provision 'shell', path: 'install-python' | |
| end |
| import numpy as np | |
| import cv2 | |
| cap = cv2.VideoCapture(0) | |
| #dictionary = cv2.aruco.getPredefinedDictionary(cv2.aruco.DICT_5X5_1000) | |
| dictionary = cv2.aruco.getPredefinedDictionary(cv2.aruco.DICT_4X4_50) | |
| #dictionary = cv2.aruco.getPredefinedDictionary(cv2.aruco.DICT_ARUCO_ORIGINAL) | |
| while(True): | |
| # Capture frame-by-frame |
Instead of writing a long article I wrote this summary to give a good overview about software systems scalability by listing the main terms and methodologies that widely used to build stable systems that are able to scale and handle the increasing amont of users and data.