Skip to content

Instantly share code, notes, and snippets.

View DanielAndrews43's full-sized avatar

Daniel Andrews DanielAndrews43

View GitHub Profile

Privacy Policy Mobile Developers of Berkeley built the Bear Central app as a Free app. This SERVICE is provided by Mobile Developers of Berkeley at no cost and is intended for use as is.

This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.

If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Bear Central unless otherwise defined in this Privacy Policy.

Information Collection and Use

@DanielAndrews43
DanielAndrews43 / gist:4f25029912f3971cf532
Created July 13, 2014 03:07
amazon price calculator
#all costs are in dollars, and all times are in decimal-minutes
shipping_cost = 2.68 #media mail 9" x 11"
container_cost = 0.40 #b-flute method
time_to_list_item = 2.00 #take book, make sure pic is good, put cost, put in stack
time_to_find_item = 0.50 #find item after it was sold
time_to_package_item = 3.00 #b-flute method (food wrap -> cardboard -> tape -> staple -> write address)
percent_books_sold = 0.5 #assume 50% of books wont be bought due to competition
average_book_price = 6.00 #hardcovers sell for quite a bit, while most paperbacks are cheap
minutes = 60.00
public enum CurrentShape {
SQUARE,
CIRCLE,
RECTANGLE,
NONE;
}