Vim Cheat Sheet
Navigation
- End of the file: shift + g
- Next line: j
- Go down a defined number of lines: number + j
- Skip to next word: w
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Array#indexOf vs. Array#includes</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
# Title: Summary, One-sentence headline description of change | |
# Start upper case, don't end with a period | |
# 50 chars max. This line is 50 chars long ###### | |
# (Remember blank line between title and body.) | |
# | |
# Body: Explain *what* and *why* (not *how*). | |
# | |
# Add as many paragraphs as needed | |
# |
def isolate_palindromes(words: str) -> str: | |
"""Takes in a string of words and returns the subset of palindromes | |
Args: | |
words (str): string of words, e.g. "bar kaak" | |
Returns: | |
str: any palindromes within the string of words passed, e.g. "kaak" | |
""" |
# Requires Hub (not the GitHub API) and JQ | |
ORGANIZATION= # Set this as the organization you want to follow | |
hub api --paginate /orgs/${ORGANIZATION}/members | jq ".[].login" | (xargs -I % hub api -X PUT /user/following/% && sleep 5) |
Frequency allocations to the amateur radio bands in Pakistan according to the Frequency Allocation Board, in the Pakistan Table of Frequency Allocations. For information on primary and secondary allocations, other services, or citations, please see the original document.
DISCLAIMER: This table is a convenient lookup for ham radio enthusiasts, please use the original document as a canonical reference. I will not be liable for any problems that arise from the use of this table. If you find errors, though, please leave a comment and I'll fix them.
Please see the revisions tab for the date of last change.
|Unit |Range start|Range end|ITU – Region 3 |Pakis
$! --- The exception information message set by 'raise'. | |
$@ --- Array of backtrace of the last exception thrown. | |
$& --- The string matched by the last successful match. | |
$` --- The string to the left of the last successful match. | |
$' --- The string to the right of the last successful match. | |
$+ --- The highest group matched by the last successful match. | |
$1 --- The Nth group of the last successful match. May be > 1. | |
$~ --- The information about the last match in the current scope. | |
$= --- The flag for case insensitive, nil by default. | |
$/ --- The input record separator, newline by default. |
f3read "/Volumes/NO NAME" | |
F3 read 7.1 | |
Copyright (C) 2010 Digirati Internet LTDA. | |
This is free software; see the source for copying conditions. | |
SECTORS ok/corrupted/changed/overwritten | |
Validating file 1.h2w ... 2097152/ 0/ 0/ 0 | |
Validating file 2.h2w ... 2097152/ 0/ 0/ 0 | |
Validating file 3.h2w ... 2097152/ 0/ 0/ 0 | |
Validating file 4.h2w ... 2097152/ 0/ 0/ 0 |
$ terraform apply | |
google_container_cluster.primary: Refreshing state... (ID: worklark-cluster) | |
google_compute_firewall.default: Refreshing state... (ID: http-https) | |
google_container_node_pool.primary_pool: Refreshing state... (ID: us-central1-a/worklark-cluster/worklark-node-pool) | |
An execution plan has been generated and is shown below. | |
Resource actions are indicated with the following symbols: | |
+ create | |
Terraform will perform the following actions: |
# Default | |
echo 'Type the name of your app' && \ | |
read appname && \ | |
rails new $appname \ | |
--database=postgresql `# My database choice` \ | |
--skip-turbolinks `# Who the hell uses these` \ | |
--skip-test `# I like to use Rspec` \ | |
--webpack=react | |
# MiniTest is fine |