(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>HTML5 Starter</title> | |
| <link rel="stylesheet" href="" type="text/css" /> | |
| <!--[if lt IE 9]> | |
| <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| </head> |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, font, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, | |
| dl, dt, dd, ul, li, | |
| form, label, legend, | |
| table, caption, tbody, tfoot, thead, tr, th, td { | |
| margin: 0; | |
| padding: 0; |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>New HTML5 Starter</title> | |
| <!-- <link rel="stylesheet" media="screen" href="/style.css"> --> | |
| </head> | |
| <body> | |
| </body> |
| package myHashTable; | |
| import java.util.Arrays; | |
| public class myHash { | |
| private int capacity; | |
| private double max_load_factor; | |
| private int resize_factor = 2; | |
| private int search_limit = 0; | |
| private int probing_type; |
| package myHashTable; | |
| import java.util.Arrays; | |
| public class assignment { | |
| public static void main(String[] args) { | |
| // keys to add | |
| int[] keys = {517, 492, 27, 116, 132, 30, 552, 725, 627, 192}; | |
| System.out.println("Keys to Add: " + Arrays.toString(keys)); | |
| // HASH TABLE PROPERTIES |
| #!/bin/bash | |
| bucket=$1 | |
| set -e | |
| echo "Removing all versions from $bucket" | |
| versions=`aws s3api list-object-versions --bucket $bucket |jq '.Versions'` | |
| markers=`aws s3api list-object-versions --bucket $bucket |jq '.DeleteMarkers'` |