Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
<!doctype html> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |
Getting started:
Related tutorials:
This is a collection of snippets, not a comprehensive guide. I suggest you start with Operational PGP.
Here is an incomplete list of things that are different from other approaches:
#!/usr/bin/env python | |
import ConfigParser | |
import os | |
import time | |
import getpass | |
def get_dump(): | |
print "Enter user:" | |
user = raw_input() |
print "Matrix Addition\n===============" | |
print "We need a few things from you. \nYou will give us the dimensions as well as the values for both matrices.\n" | |
#---------------------------------------------------------------# | |
print "Matrix-1:\n---------" | |
rows1 = input("How many rows you would like in your first matrix? ") | |
cols1 = input("How many columns you would like in your first matrix? ") | |
values1 = rows1 * cols1 | |
print "The matrix you have chosen is, ", rows1, "x", cols1, "matrix with ", rows1, "rows and ", cols1, "columns, and totally ", values1, "elements inside the matrix." | |
list1 = [] |
""" | |
Following Links in Python | |
In this assignment you will write a Python program that expands on | |
http://www.pythonlearn.com/code/urllinks.py (http://www.pythonlearn.com/code/urllinks.py). The program will | |
use urllib to read the HTML from the data files below, extract the href= vaues from the anchor tags, scan for a | |
tag that is in a particular position relative to the first name in the list, follow that link and repeat the process a | |
number of times and report the last name you find. | |
We provide two files for this assignment. One is a sample file where we give you the name for your testing and |