-i
- ignore errors
-c
- continue
-t
- use video title as file name
--extract-audio
- extract audio track
<# | |
.SYNOPSIS | |
This script gets MAC address tables from Cisco routers/switches running IOS using the SSH protocol. | |
.DESCRIPTION | |
There's a newer version of this here: https://github.com/supercheetah/winsysadmintools | |
The script uses the Plink (command line version of PuTTY, http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html) | |
to get the output of the command "show mac address-table" and put into a object array (i.e. table) that is outputted to | |
Out-GridView, and can optionally be saved to a CSV file. |
*.[7z,xz,bzip2,gzip,tar,zip,wim,ar,arj,cab,chm,cpio,cramfs,dmg,ext,fat,gpt,hfs,ihex,iso,lzh,lzma,mbr,.msi,nsis,ntfs,qcow2,rar,rpm,squashfs,udf,uefi,vdi,vhd,vmdk,wim,xar,z] diff=archive |
Basecamp's new book Shape Up is now available online (https://basecamp.com/shapeup) to read page-by-page.
There is a .pdf
version, but that's not the best format for Kindle / other eReaders. Instead, we can convert the page-by-page into an eReader friendly format.
NOTE: This has only been tested on Chrome
#![feature(plugin)] | |
#![plugin(rocket_codegen)] | |
extern crate rocket; | |
use std::io; | |
use std::path::{Path, PathBuf}; | |
use rocket::response::NamedFile; |
var fileStorage = { | |
/** | |
* Saves a file on the device | |
* @param {string} name - filename (can include sub folders) | |
* @param {string} data - file contents | |
* @param {boolean} useSandbox - uses protected sandbox if true, otherwise external (default false) | |
* @returns {Promise} executes .then with saved file path as first param | |
*/ | |
write: function (name, data, useSandbox) { |
These are some recommended D web development packages from Dub you may need. These following are choosing because I've either personally used them or they have good documentation.
Any recommendation? Please let me know in the comments.
// Two options: | |
// Option 1: set a struct that stores the values, | |
// Option 2: Use the native Environment Variable options: | |
// https://pkg.odin-lang.org/core/os/#set_env | |
// Option 1: | |
Global_Env :: struct { | |
USER: string, | |
PWD: string | |
} |