I think we're in an era where small desktop apps that handle data will come in handy, but what about everyone?
What I have in mind now is a tool for checking setting information such as server settings. Check phpinfo to see if the settings are correct. Then, create a JSON file for AWS settings.
I'm thinking of making a desktop application that does these tasks using LibreOffice and python. We plan to make it cross-platform.
The reason for using libreoffice is to save you the trouble of creating the user interface part. So, if the language is python, java is a little heavy, so I chose python as a handy language. It's also a data mining language, and it's good to be able to use it on AWS and fabric. I'm confused about the version, but it's based on 2.7. libreoffice will be 3 series, but it can not be helped.
Let's start by writing the macro in python. The first thing that stumbles is where the macros are stored. For the time being, it is the result of investigation.
windows 7 LibreOffice 5.0.3 AppData is a hidden file, so it's useful to have it visible in the folder options. ** Self-made macro ** C: \ Users \ username \ AppData \ Roaming \ LibreOffice \ 4 \ user \ Scripts \ python ** Sample macro ** C:\Program Files (x86)\LibreOffice 5\share\Scripts\python
** Self-made macro ** /home/username/.config/libreoffice/4/user/Scripts/python ** Sample macro ** /opt/libreoffice5.0/share/Scripts/python
OSX10.9.5 LibreOffice 5.0.3 ** Self-made macro ** / Users / username / Library / Application Support / LibreOffice / 4 / user / Scripts / python ** Sample macro ** /Applications/LibreOffice.app/Contents/Resources/Scripts/python
Recommended Posts