Tinkertool Homebrew

From D&D Wiki

Jump to: navigation, search

Once the file opens, look for the style header and the line that reads either top, bottom, left, or right.You can change the px value to anything you want, but be sure to not make it anything over your displays resolution. If you don't know that value, check it from About This Mac - Displays. The position is updated once you save the file, so you can tweak your changes in real time. Jul 23, 2019  Mac OS 10.15 Apps and configs. GitHub Gist: instantly share code, notes, and snippets.

Tinkertool Homebrew Shop

Back to Main Page → 5e Homebrew → Equipment

Please leave the '(5e Equipment)' identifier in the page title when creating your new equipment!


Tools

Artisan's ToolsCostWeight
Artificer's Tools 100 gp10 pounds
Barber's Tools 3gp1lb.
Dentist's Tools 32 gp10 lb.
Doctor's Tools 50 gp6 lb.
Land Surveyor's Tools 350 gp35 pounds
Metallurgist's Tools, Variant 100 gp10 lbs.
Mystic Tools 10 gp1 lb.
Painter's Tools 65 gp8 pounds
Scrimshawing Tools 1 gp5 lb
Tattooist's Tools 70gp5lbs
Taxidermist's Kit 20 gp4 lbs.
Witch's Gear 15 gp15 lb.
Workman's ToolsCostWeight
Farm Implements 1 gp1 to 3 lb.
Gaming SetsCostWeight
Dungeons and Dragons Starter Kit 20 gp4 lb.
Loaded Dice 35 gp
KitsCostWeight
Engineering Kit 30 gp25 pounds
Poison Kit 12 gp4 pounds
Prospector's Kit 10 gp10 lb
Warforged Repair Kit 30 gp12 lb
Whaler's Kit 8 gp10 lb.
Musical InstrumentsCostWeight
Castanets 2 gpN/A
Didgeridoo 20 gp8 lbs.
Electric Guitar 55 gp9 lbs.
Euphonium 50-75 gp30 lb
Grand Piano 400 gp800 lb
Harp 35 gp - 100 gp5 lb - 50 lb
Hurdy-Gurdy 30 gp10 lb
Mountain Dulcimer 8 gp3 lb
Sackbut 20-60gp8-14lb
Violin 15 gp - 60 gp2 lbs - 5lbs
Game
Other ToolsCostWeight
Alchemical Reagant Set 40 gp3 lb
Archaeology Kit 25 gp15 lbs
Bookkeeper's Kit 50 gp9 lb
Brewer's Supplies 80gp7 lbs
Collection of Legendary Tales 500 gp5 lb.
Cook's Utensils 110gp7 lbs
Culinary Tools 100gp6lb
Deck of Yu-Gi-Oh Cards varies (Depending on what cards are in the deck)--
Falconry Kit 4 gp1 lb.
Miniature Pyrophone 60-150 gp60-100 lbs
Ornithology Kit 10 gp8 lbs.
Photographer's Tools 20 lb.
Rock Guitar 50gp3lbs
Sewing Kit 5 gp0.5 lbs
Supernatural Index 60gp.5lb
Torture Tools 15 Gold Pieces2 lbs.
Weapon Cleaning Kit 30 gp5 lbs

Incomplete Tools

Pages with one or more improving, reviewing, or removing templates present. Please help work on the problem presented on the template.

Retrieved from 'https://www.dandwiki.com/w/index.php?title=5e_Tools&oldid=1060046'
I often need to download files using the Terminal. However, I am unable to find the wget command on OS X. How do download files from the web via the Mac OS X bash command line option?
You need to use a tool (command) called curl. It is a tool to transfer data from or to a server, using one of the following supported protocols
Advertisements
  1. FTP
  2. HTTP
  3. HTTPS
  4. FTPS
  5. POP3
  6. SFTP
  7. SMTPS
  8. SMTP and more.

This command is designed to work without user interaction.

Tinkertool Homebrew

curl command syntax

The syntax is:

Examples

Open the Terminal and then type the following command to grab “Mastering vim” in pdf format from www.cyberciti.biz server:

Sample outputs:
The -o option write output to a file called mastering-vim.pdf instead of screen. You can skip the -o option and use the -O (capital letter O) to write (save) output to a local file named like the remote file we get. Only the file part of the remote file is used, the path is cut off:

How do I specify multiple URLs or parts of URLs?

The syntax is:

You can get sequences of alphanumeric series by using []. In this example, grab invoices-1.pdf, invoices-2.pdf, …, invoices-1000.pdf using curl command:

You can grab urls with leading zeros as follows:

Tinkertool Homebrew Game

You can combine various techniques to build complex download url structure as follows:

You can set a step counter for the ranges to get every Nth number or letter:

Displaying a progress bar

You can force curl to show progress as a simple progress bar instead of the standard, more informational, meter:

Sample outputs:

Dealing with url redirection

Tinkertool

The following is recommended syntax for servers that may do http redirect before downloading files. Other servers may hide actual download file names.

Consider the following filezilla download url from sourceforge foss hosting platform:

To avoid problems, use the following syntax:

Sample outputs:

Save bandwidth

You can pass the --compressed option to http based urls to request a compressed response using one of the algorithms curl supports, and save the uncompressed document. If this option is used and the server sends an unsupported encoding, curl will report an error:

Download a file using username and password

Tinkertool Homebrew Store

The syntax is:

Security alert: Anything (username/password) done over HTTP/FTP is completely open to interception. Do not pass username/passwords using ftp/http protocols.

Check out our previous video tutorial on curl command for more information:

(Video 01: curl Command Line Download Examples For FTP / HTTP Protocols)

Tinkertool Homebrew System

Recommended readings
  • More – Linux / Unix: curl Command Download File Examples
  • See curl command man page for more information.

Tinkertool Homebrew Supply

ADVERTISEMENTS