| Function | Shortcut |
|---|---|
| New Tab | ⌘ + T |
| Close Tab or Window | ⌘ + W (same as many mac apps) |
| Go to Tab | ⌘ + Number Key (ie: ⌘2 is 2nd tab) |
| Go to Split Pane by Direction | ⌘ + Option + Arrow Key |
| Cycle iTerm Windows | ⌘ + backtick (true of all mac apps and works with desktops/mission control) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import nltk | |
| from nltk import word_tokenize | |
| from nltk import sent_tokenize | |
| from nltk.corpus import wordnet as wn | |
| import numpy as np | |
| from nltk.corpus import brown | |
| import math | |
| #CC coordinating conjunction | |
| #CD cardinal digit | |
| #DT determiner |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.embulk.output.lib; | |
| package com.google.api.client.googleapis.media; | |
| import com.google.api.client.googleapis.MethodOverride; | |
| import com.google.api.client.googleapis.media.MediaHttpUploaderProgressListener; | |
| import com.google.api.client.googleapis.media.MediaUploadErrorHandler; | |
| import com.google.api.client.http.AbstractInputStreamContent; | |
| import com.google.api.client.http.ByteArrayContent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package File; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.io.PrintStream; | |
| import java.net.Socket; | |
| public class Client { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private Set<Member> members = Collections.synchronizedSet(new HashSet<>()); | |
| private String groupId; | |
| public Group(final String groupId) { | |
| this.groupId = groupId; | |
| } | |
| public String getGroupId() { | |
| return groupId; | |
| } |