Google Cloud link (compress as 7zip): https://drive.google.com/open?id=0B22DpOv0xg6ER3ZKbGFfMUdnMU0
Oreilly link: https://resources.oreilly.com/examples/9781593271442/raw/master/hacking-live-1.0.iso
Google Cloud link (compress as 7zip): https://drive.google.com/open?id=0B22DpOv0xg6ER3ZKbGFfMUdnMU0
Oreilly link: https://resources.oreilly.com/examples/9781593271442/raw/master/hacking-live-1.0.iso
| import sys,os | |
| import curses | |
| def draw_menu(stdscr): | |
| k = 0 | |
| cursor_x = 0 | |
| cursor_y = 0 | |
| # Clear and refresh the screen for a blank canvas | |
| stdscr.clear() |
| #! /usr/bin/env ruby | |
| # usage: | |
| # $ das_download.rb email password [download_directory] | |
| require 'mechanize' | |
| # gem 'mechanize-progressbar' | |
| email = ARGV[0] or raise('Please provide the email address for your account') | |
| password = ARGV[1] or raise('Please provide the password for your account') | |
| path = ARGV[2] || './' |