Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
| <!-- Generated by Office on OS X: --> | |
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
| <workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"><fileVersion appName="xl" lastEdited="5" lowestEdited="5" rupBuild="20910"/><workbookPr autoCompressPictures="0"/> | |
| <!-- Actually think the activeTab may be what's missing: --> | |
| <bookViews><workbookView xWindow="2540" yWindow="680" windowWidth="25360" windowHeight="15380" tabRatio="500" firstSheet="1" activeTab="1"/></bookViews> | |
| <sheets><sheet name="Constants" sheetId="1" state="hidden" r:id="rId1"/><sheet name="Bulk Input" sheetId="2" r:id="rId2"/></sheets> | |
| <calcPr calcId="0" concurrentCalc="0"/><extLst><ext uri="{7523E5D3-25F3-A5E0-1632-64F254C22452}" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main"><mx:ArchID Flags="2"/></ext></extLst> | |
| </workbook> | |
| <!-- Generated by modified axlsx (but Constants sheet is visible when opened): --> |
| # coding: utf-8 | |
| require 'rubygems' | |
| require 'spreadsheet' | |
| book = Spreadsheet::Workbook.new | |
| sheet = book.create_worksheet | |
| (0..200).each do |i| | |
| sheet.row(i).push "ë" |