start new:
tmux
start new with session name:
tmux new -s myname
# Maintainer: Stefan Tatschner <[email protected]> | |
pkgname=git-extras | |
pkgver=2.2.0 | |
pkgrel=1 | |
pkgdesc="GIT utilities -- repo summary, commit counting, repl, changelog population and more" | |
arch=(any) | |
url="http://github.com/visionmedia/git-extras" | |
license=('custom:MIT') | |
depends=('git' 'bash') | |
source="https://github.com/visionmedia/${pkgname}/archive/${pkgver}.tar.gz" |
interface Option<T> { | |
map <U>(fn: (a: T) => U): Option<U>; | |
isSome(): boolean; | |
isNone(): boolean; | |
isSomeAnd(fn: (a: T) => boolean): boolean; | |
isNoneAnd(fn: () => boolean): boolean; | |
unwrap(): T; | |
unwrapOr(def: T): T; | |
unwrapOrElse(f: () => T): T; | |
map<U>(f: (a: T) => U): Option<U>; |
/* | |
Before using this tasks.json you may like to consider trying one of the following VS Code extensions: | |
rust-analyzer | |
Marketplace: https://marketplace.visualstudio.com/items?itemName=matklad.rust-analyzer | |
Source: https://github.com/rust-analyzer/rust-analyzer | |
rls | |
Marketplace: https://marketplace.visualstudio.com/items?itemName=rust-lang.rust | |
Source: https://github.com/rust-lang/rls-vscode |
Document moved to: https://github.com/servo/servo/blob/master/HACKING_QUICKSTART.md
Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.
#! /usr/bin/env ruby | |
require 'net/http' | |
require 'cloudflare' | |
# Email used for login | |
CLOUDFLARE_EMAIL = ENV["CLOUDFLARE_EMAIL"] | |
# API Key, can be found here => https://www.cloudflare.com/a/account/my-account | |
CLOUDFLARE_API_KEY = ENV["CLOUDFLARE_API_KEY"] |
Edit: This list is now maintained in the rust-anthology repo.