The Amazon leather case, both versions, are super well made. It's the best choice if you're not going to be a
crazy person and get one of those drop-dead gorgeous, and amazingly expensive, Oberon cases.
I believe that eink pearl is still the E-ink corps. best tech besides the Triton color. (which I've been reading that they have been having some problems with) Plus, did you see the tips and tricks? Hello.... Minesweeper anyone? Okay, it's not
amazing, but it's kind-of cool.
Screenshot
- ALT+SHIFT+G or ALT+SHIFT+H (saves a .GIF in the Kindle document directory)
- The screen flashes for both ALT+G and ALT+SHIFT+G. As it is easy to do an ALT+G by mistake, ALT+SHIFT+H may be a safer way to do a screenshot.
Background Music
- Play/Stop: ALT+SPACEBAR
- Next track: ALT+F
- Music files must be MP3s in the Kindles music folder
Games
- Minesweeper: ALT+SHIFT+M from Home screen
MENU for game options
- GoMoku: G from Minesweeper
Kindle Calculations
- The search window can be used as a simple calculator. Steven Ehrbar has kindly provided most of these details:
Standard operators are + (addition), (subtraction), * (multiplication), / (division), % (modulus), and ^ (exponentiation).
Parentheses () work for grouping, {} and [] do not.
- You can assign values to variables with =; for example, test=9.
- The results of the last operation are stored in the variable _ (underscore).
- Assign _ to a variable before using it in further calculations. I have found that using _ directly results in the calculation being done twice. For example, if you enter 5*2, then _ is 10. Entering _*2 results in 40, not 20. However, if you enter y=_, you get a result of y = _ = 10. y*2 then correctly results in 20.
The values of pi and e are stored in pi and e, respectively.
- Functions, which work on a value or expression in the parentheses, are:
Trig functions: acos(), asin(), atan(), cos(), cosh(), sin(), sinh(), tan(), tanh()
- Arguments for trig functions must be in radians
radians = degrees * (pi/180)
- You can assign pi/180 to a variable (eg k=pi/180)
- To find the tan of 10°, you can then type tan(10*k)
- Other functions: abs() [absolute value], exp() [e to the power of], ln() [natural logarithm], log() [base 10 logarithm], sqrt() [square root].