Please create a gist for your solution and place the link below:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #################### | |
| # Exploring the Ruby Object Hierarchy | |
| #################### | |
| 1.class # => Fixnum | |
| Fixnum.superclass | |
| Fixnum.ancestors | |
| # what is the class of any class? | |
| Fixnum.class # => Class | |
| Integer.class # => Class |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Please create a gist for your solution and place the link below: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # I edited the ruby lexer (line 637 in the following file... | |
| # [skm@skmair2:/Library/Python/2.7/site-packages/pygments/lexers/agile.py | |
| # to remove spacial handling of the word 'name' | |
| # so I could use it as a variable/method name. | |
| # This script come from Katrina, with these instructions: | |
| # I've also attached the presentation.py file which is where the style | |
| # is defined. The colors are normal hex values, so if you know how you |
The Kindle format is proprietary. Amazon has an official tool for converting epub to the Kindle format, however it is illegal for us to use it[1] to generate the kindle version of 99 Bottles of OOP.
Therefore, we've had to generate a .mobi file using an unofficial tool, and the result is not as good as the official one.
It's perfectly legal for you to generate the .mobi yourself using Amazon's tool, kindlegen.
OlderNewer