sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminatorTerminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
| """ | |
| MIT License | |
| Copyright (c) 2017 Cyrille Rossant | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
| #include <algorithm> | |
| #include <iostream> | |
| #include <string> | |
| #ifdef _WIN32 | |
| #include <limits.h> | |
| #include <intrin.h> | |
| typedef unsigned __int32 uint32_t; | |
| #else | |
| #include <stdint.h> |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| import sys | |
| resolution = 1.5 | |
| w = 400*resolution | |
| h = 300*resolution | |
| def normalize(x): | |
| x /= np.linalg.norm(x) |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
Translations: (No guarantee that the translations are up-to-date)
Original issue: Shougo/neocomplete.vim#31
@JohanTan From my experience, this is how it will work (only tested on Ubuntu):
sudo apt-get install liblua5.1-dev
sudo cp -r /usr/include/lua5.1/* /usr/include/lua5.1/include/
sudo ln -s /usr/lib/x86_64-linux-gnu/liblua5.1.so /usr/local/lib/liblua.so
Things required:
This is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.
| Description | Syntax |
|---|---|
| Get the length of a string | ${#VARNAME} |
| Get a single character | ${VARNAME[index]} |