- Resource Monitoring Design Doc https://docs.google.com/document/d/1LwFKbybtkAPt4MRmxGZQePp16IHcELsFrGbF2BEQopA/edit?usp=sharing
- Multiple Disk Support Design Doc https://docs.google.com/document/d/1syPxygVNEHjG6FoyqslnpUGgNpYKU9QzKBuV2yKmjfQ/edit#heading=h.4fzj9sl24cwy
- Oversubscription Design Doc https://docs.google.com/document/d/1pUnElxHy1uWfHY_FOvvRC73QaOGgdXE0OXN-gbxdXA0/edit#heading=h.yvd9qbi4swb4
- HTTP API Design Doc https://docs.google.com/document/d/1pnIY_HckimKNvpqhKRhbc9eSItWNFT-priXh_urR-T0/edit#
- Pluggable Containerizer Architecture https://docs.google.com/document/d/1oO0oDmCphku4X-CO0Mja_QeH-LuHeWySHOcxMbtvLDg/edit
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
public class AddingAnInlineImage { | |
/** | |
* As is usual, we create a package to contain the document. | |
* Then we create a file that contains the image we want to add to the document. | |
* In order to be able to do something with this image, we'll have to convert | |
* it to an array of bytes. Finally we add the image to the package | |
* and save the package. | |
*/ | |
public static void main (String[] args) throws Exception { | |
WordprocessingMLPackage wordMLPackage = |
A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.
On a mac you can use homebrew by running the command brew install pandoc
.