Key/Command | Description |
---|---|
Tab | Auto-complete files and folder names |
Ctrl + A | Go to the beginning of the line you are currently typing on |
Ctrl + E | Go to the end of the line you are currently typing on |
Ctrl + U | Clear the line before the cursor |
Ctrl + K | Clear the line after the cursor |
Ctrl + W | Delete the word before the cursor |
Ctrl + T | Swap the last two characters before the cursor |
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
# Pam Qian 2016 Fall CS 112 Python Midterm Project II | |
# Tic Tack Toe | |
def main(): | |
# The main function | |
introduction = intro() | |
board = create_grid() | |
pretty = printPretty(board) | |
symbol_1, symbol_2 = sym() | |
full = isFull(board, symbol_1, symbol_2) # The function that starts the game is also in here. |
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
library(shiny) | |
library(callr) | |
ui <- fluidPage( | |
titlePanel('Using callR in Shiny'), | |
actionButton('start_job', 'Start Expensive Job'), | |
tableOutput('result_table') | |
) |
Landing page for Azure: <https://portal.azure.com/ >
Follow this article: <https://learn.microsoft.com/en-us/azure/storage/blobs/create-data-lake-storage-account >
The trick: ADL isn't it's own separate category, it gets created as part of a storage account.