-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathday1vocabulary.py
More file actions
25 lines (22 loc) · 1.47 KB
/
day1vocabulary.py
File metadata and controls
25 lines (22 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
'''
day1vocabulary.py
Vocabulary for Day 1: Data
'''
items_to_learn = {
"git init" : "git command to initialize a git repository",
"import random" : "Python command to import the random module",
"persistence" : "the word programmers use to refer to the ability to store data which outlasts a single app session",
"shelve" : "a Python module good for learning about databases",
"dictionary" : "a Python data structure consisting of key-value pairs",
"bootstrap" : "name of an open source project providing JavaScript and HTML components for web apps",
"asynchronous" : "adjective describing software functions which can occur at any time without needing to wait for any previous function call to be completed",
"SQL" : "The abbreviation for a database language standard called Structured Query Language",
"round trip" : "A common English phrase which means 'to go somewhere and then return' and which, in computing, refers to sending a piece of information to a remote software process or database and also receiving a reply",
"localhost" : "The host name for your local computer",
"virtualenv" : "The one-word command used to create a Python virtual environment",
"repo" : "The short nickname of a git repository",
"CRUD" : "Acronym for the four main database operations: Create, Read, Update, Delete",
"pip" : "3-letter command to install Python modules",
"deactivate" : "Command to stop a virtual environment",
"activate" : "Command to start a virtual environment",
}