tmux new [-s name] [cmd](:new) - new session
tmux ls(:ls) - list sessionstmux switch [-t name](:switch) - switches to an existing session
| " Don't try to be vi compatible | |
| set nocompatible | |
| " Helps force plugins to load correctly when it is turned back on below | |
| filetype off | |
| " TODO: Load plugins here (pathogen or vundle) | |
| " Turn on syntax highlighting | |
| syntax on |
Hello software developers,
Please check your code to ensure you're not making one of the following mistakes related to cryptography.
An expression beginning with a left arrow (<-) inside a do block statement is desugared to a monadic binding. This is syntactically a superset of existing Haskell, including extensions. It admits a clean notation that subsumes existing patterns and comes with few downsides.
do
f (<- x) (<- y)
-- ===| import types | |
| import tensorflow as tf | |
| import numpy as np | |
| # Expressions are represented as lists of lists, | |
| # in lisp style -- the symbol name is the head (first element) | |
| # of the list, and the arguments follow. | |
| # add an expression to an expression list, recursively if necessary. | |
| def add_expr_to_list(exprlist, expr): |
| body { counter-reset: h1counter h2counter h3counter h4counter h5counter h6counter; } | |
| h1 { counter-reset: h2counter; } | |
| h2 { counter-reset: h3counter; } | |
| h3 { counter-reset: h4counter; } | |
| h4 { counter-reset: h5counter; } | |
| h5 { counter-reset: h6counter; } | |
| h6 {} | |
| h2:before { |
| /* | |
| * | |
| * Ascii art http://www.network-science.de/ascii/ (font "mini") | |
| * | |
| * -Wall -g -Os -std=gnu99 -mcall-prologues -DF_CPU=8000000 | |
| * 8366 118 1373 9857 2681 atmega644_sure_led_clock.axf | |
| * | |
| * -mcall-prologues -fno-inline-small-functions \ | |
| * -ffunction-sections -fdata-sections \ | |
| * -Wl,--relax,--gc-sections \ |
| {-# LANGUAGE BangPatterns #-} | |
| {-# LANGUAGE ExistentialQuantification #-} | |
| {-# LANGUAGE FlexibleContexts #-} | |
| {-# LANGUAGE ForeignFunctionInterface #-} | |
| {-# LANGUAGE MagicHash #-} | |
| {-# LANGUAGE TypeFamilies #-} | |
| module Main (main) where | |
| import Foreign | |
| import Foreign.C.Types |
| Red [] | |
| let: func [ | |
| binds | |
| block | |
| /local | |
| ctx | |
| ][ | |
| ctx: context append/only append binds copy [result: do] block | |
| select ctx 'result |
| import re | |
| import os | |
| import glob | |
| import pandas as pd | |
| import matplotlib.pyplot as plt | |
| from collections import OrderedDict | |
| fig_size = [12, 9] |