Use wget to pull index files 1 to 5 and, while probably not necessary, we ignore robots.txt:
wget -e robots=off www.flickr.com/photos/123@AB3/albums/82183820302522906/page{1..5}
| ip -o addr show | grep inet\ | grep eth0 | cut -d ' ' -f 7 |
| \b([A-Za-z])+\s([A-Za-z]+)\b$ |
| #! python2 | |
| # MyBackupScript.py - backup the My Documents folder and all contents into | |
| # a zip file whole filename increments | |
| import zipfile, shutil, os, sys | |
| #function to create the backup zip file | |
| def backupToZip(folder, location): | |
| # Backup the entire contents of "folder" into a zip file | |
| @python.exe c:\Location\Of\mcb.pyw %* | |
| REM removing below will allow program to run without poping up the continue | |
| REM window, since the python file is a .pyw | |
| @pause |
| #! python2 | |
| # mcb.pyw - create a multiclipboard tool | |
| # Usage: py.exe mcb.pyw save <keyword> - Saves clipboard to keyword. | |
| # py.exe mcb.pyw <keyword> - Loads keyword to clipboard. | |
| # py.exe mcb.pyw list - loads all keywords to clipboard. | |
| import shelve, pyperclip, sys | |
| #open the shelve |
| #! python2 | |
| # -*- coding: cp1252 -*- | |
| # randomQuizGenerator-Jeopardy.py - Creates quizzes with questions and answer in | |
| # random order, along with the answer key | |
| import random | |
| #The number of quizes to generate | |
| quizzQty = 1 |
| #! python2 | |
| # randomQuizGenerator.py - Creates quizzes with questions and answer in | |
| # random order, along with the answer key | |
| import random | |
| #The number of quizes to generate (aka how many students) | |
| quizzQty = 15 | |
| #The quiz data; keys are questions and values are answers |
| #Pretty print out a given dictionary | |
| def prettyPrint(tableName, itemsDict, leftWidth, rightWidth): | |
| print(tableName.center(leftWidth + rightWidth, '-')) | |
| for k, v in itemsDict.items(): | |
| print(k.ljust(leftWidth, '.') + str(v).rjust(rightWidth,)) | |
| #Create a dictionary to test with | |
| picnicItems = {'sandwiches': 4, 'apples': 12, 'cups': 4, 'cookies': 8000, 'juice boxes': 6} | |
| #The below will figure out what to use for spacing |
| #!/usr/bin/env python | |
| """ Program to collect unique emails in given file then output to same directory """ | |
| import sys, os, re | |
| __author__ = "James R. Aylesworth" | |
| __copyright__ = "Copyright 2017" | |
| __license__ = "GPL" | |
| __version__ = "1.0.0" | |
| __maintainer__ = "James R. Aylesworth" | |
| __email__ = "jarhed323@gmail.com" | |
| __status__ = "Production" |