-ss start pointer
-t end duration
ffmpeg -ss 00:03:08.000 -i _-AmJTHa0be6Q.mp4 -t 00:00:18.000 ./output/frame%07d.png| ######################################################### | |
| # What Is Linkerd Service Mesh? Linkerd Tutorial Part 1 # | |
| # https://youtu.be/mDC3KA_6vfg # | |
| ######################################################### | |
| # Referenced videos: | |
| # - Service Mesh In Kubernetes Explained: https://youtu.be/cjhb7_uwzDk | |
| # - Should We Replace Docker Desktop With Rancher Desktop?: https://youtu.be/bYVfCp9dRTE | |
| # - Kustomize - How to Simplify Kubernetes Configuration Management: https://youtu.be/Twtbg6LFnAg | |
| # - Helm vs Kustomize - The Fight Between Templating and Patching in Kubernetes: https://youtu.be/ZMFYSm0ldQ0 |
| # (Lines after and before keyword) | |
| grep -A5 -B5 keyword | |
| # Find empty lines | |
| grep -E --line-number --with-filename '^$' file.txt |
| #deb cdrom:[Ubuntu 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.2)]/ xenial main restricted | |
| # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to | |
| # newer versions of the distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ xenial main restricted | |
| # deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted | |
| ## Major bug fix updates produced after the final release of the | |
| ## distribution. | |
| deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted |
In the below keyboard shortcuts, I use the capital letters for reading clarity but this does not imply shift, if shift is needed, I will say shift. So ⌘ + D does not mean hold shift. ⌘ + Shift + D does of course.
| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| // Check if a slave has < 10 GB of free space, wipe out workspaces if it does | |
| import hudson.model.*; | |
| import hudson.util.*; | |
| import jenkins.model.*; | |
| import hudson.FilePath.FileCallable; | |
| import hudson.slaves.OfflineCause; | |
| import hudson.node_monitors.*; | |
| for (node in Jenkins.instance.nodes) { |
| #coding: utf8 | |
| """ | |
| 1. Download this gist. | |
| 2. Get the MNIST data. | |
| wget http://deeplearning.net/data/mnist/mnist.pkl.gz | |
| 3. Run this code. | |
| python autoencoder.py 100 -e 1 -b 20 -v | |
| """ | |
| import numpy | |
| import argparse |
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.