ICSviewer 4.2 #icsviewer #ical #calendar #viewer #xojo #event #planning #planned #timeline
Monday, Dec 28 2020, 14:08 Calendar, Database, iCal, Mac OS X, MySQL, software, Xojo Permalink
My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.2
Bug fixes:
- In rare occasions empty lines are created inside a calendar file. These are now skipped.

My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.2
Bug fixes:
- In rare occasions empty lines are created inside a calendar file. These are now skipped.
Comments
ICSviewer 4.1
Friday, Jul 03 2020, 14:03 Calendar, Database, iCal, Mac OS X, MySQL, software, Xojo Permalink
My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.1
Bug fixes:
- When the connection to MySQL fails, the error message dialog would leave the sheet window hang without any controls.

My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.1
Bug fixes:
- When the connection to MySQL fails, the error message dialog would leave the sheet window hang without any controls.
Oracle Instant Client + oci8 for PHP and Apache on macOS Mojave #oracle #oci8 #php #macos
Tuesday, Mar 24 2020, 11:56 Database, Mac OS X, PHP, programming, Webserver Permalink
I was totally new to using Oracle Instant Client on macOS Mojave, so I had to spend days to figure out and try out on how to get it installed (easy) and how to get the oci8 shared library installed (the hard and most time-consuming part) for use with PHP at both the CLI and in Apache. I have been on many, many websites and read many, many instructions, and I want to thank everyone who put so much effort in clarifying something that actually should be very simple nowadays. After having read and tried so many tips and tricks, I ended up summarizing what worked for me, which I wrote down on Oracle Instant Client + OCI8 on Macos Mojave for PHP .
ICSviewer 3.9
Thursday, May 16 2019, 15:00 Calendar, Database, Event, iCal, Linux, Mac OS X, MySQL, programming, REALstudio, software, Windows, Xojo Permalink
My ical/ics calendar file viewer ICS Viewer is updated to version 3.9
v3.9
Bug fixes:
- Fixed a possible hang when choosing a date-range.

My ical/ics calendar file viewer ICS Viewer is updated to version 3.9
v3.9
Bug fixes:
- Fixed a possible hang when choosing a date-range.
ICSviewer 3.8
Friday, Feb 01 2019, 12:14 Calendar, Database, Event, iCal, Linux, Mac OS X, MySQL, programming, REALstudio, software, Windows, Xojo Permalink
My ical/ics calendar file viewer ICS Viewer is updated to version 3.8
v3.8
Bug fixes:
- 'Last month' preference showed 12 months earlier, when in January of a new year.

My ical/ics calendar file viewer ICS Viewer is updated to version 3.8
v3.8
Bug fixes:
- 'Last month' preference showed 12 months earlier, when in January of a new year.
ICSviewer 3.7
Monday, Sep 03 2018, 23:18 Calendar, Database, Event, iCal, Linux, Mac OS X, MySQL, programming, REALstudio, software, Windows, Xojo Permalink
My ical/ics calendar file viewer ICS Viewer is updated to version 3.7
v3.7
Bug fixes:
- A hang with the new initial date-range preference setting 'Current month' has been fixed.
- The possibility to use the new initial date-range preference setting has been fixed.
- Various UI improvements in the preferences window.

My ical/ics calendar file viewer ICS Viewer is updated to version 3.7
v3.7
Bug fixes:
- A hang with the new initial date-range preference setting 'Current month' has been fixed.
- The possibility to use the new initial date-range preference setting has been fixed.
- Various UI improvements in the preferences window.
[Repair] MySQL Upgrade on Mac OS X
Tuesday, Jun 27 2017, 10:40 Apple, Database, Mac OS X, MySQL, server, Webserver PermalinkSome time ago I did a MySQL upgrade without thinking ... that was not funny. So I retraced what I did to get the new version up and running and wrote it down as a sequence of steps to follow, when I need to upgrade to the next higher version.
I published these steps on the page [Repair] MySQL Upgrade (Mac OS X) , so they might be of help to you too.
I published these steps on the page [Repair] MySQL Upgrade (Mac OS X) , so they might be of help to you too.
CSVviewer - Quicklook CSV files #utility #macos #linux #windows #csv #database
Tuesday, Sep 27 2016, 08:58 Database, FileMakerPro, Linux, Mac OS X, MySQL, software, Windows, Xojo PermalinkCSVviewer (formerly known as TABviewer) is a tool which shows the contents of text files, where data of each line is equally separated by either a semicolon, a comma or a tab-character.
You can download it here.

You can download it here.

Mijn FileMaker Pro boekhoudsoftware geactualiseerd
Monday, Oct 13 2014, 13:52 Database, FileMakerPro, Mac OS 9, Mac OS X, Numbers, programming, Windows PermalinkIk heb mijn FileMaker Pro 5 boekhoudprogramma's op verzoek geconverteerd naar recentere versies. U kunt de toepassingen nu downloaden voor alle versies vanaf versie 5. Voor elke compatibele versie heb ik een download-knop gemaakt, zoals in onderstaande afbeelding wordt getoond:


Quickly transfer MySQL databases to a new server
Friday, Aug 08 2014, 10:36 Database, Linux, Mac OS X, MySQL, Unix PermalinkAgain I needed to transfer all data from one server to another. I knew I documented the transfer of MySQL databases somewhere (it's deep inside in the Replication-how-to) and decided to post them again here, so they're quicker to find.
One can transfer MySQL databases in various ways:
$ cd /var/mysql/ (or /var/lib/mysql/)
$ sudo zip -r ~/[database].zip [database]
Do this for each database that you want to copy. Then send all zip's per FTP to the new server.
Start an SSH session with the remote server and enter the following commands:
$ cd /var/mysql (or /var/lib/mysql/)
$ sudo unzip ~/[database].zip
$ sudo chown -R _mysql:admin [database]
For the above chown, check first with ls -l if _mysql:admin are the right owners. Then do this for each unzipped database.
Next, start Navicat and now you should see your databases in the connection of the new server. If not, you probably forgot to either do a Refresh Connection or the chown-command.
If you can access the tables and view data, good! If not, right click the table and choose Maintain->Repair Table->Quick or ->Extended and then try again.
One can transfer MySQL databases in various ways:
- Using mysqldump and zip + ftp
- Zip the database itself + ftp (you might need to repair the tables after unzipping)
- Use Navicat's Data Transfer module (not always good for tables with millions of records or blob data)
$ cd /var/mysql/ (or /var/lib/mysql/)
$ sudo zip -r ~/[database].zip [database]
Do this for each database that you want to copy. Then send all zip's per FTP to the new server.
Start an SSH session with the remote server and enter the following commands:
$ cd /var/mysql (or /var/lib/mysql/)
$ sudo unzip ~/[database].zip
$ sudo chown -R _mysql:admin [database]
For the above chown, check first with ls -l if _mysql:admin are the right owners. Then do this for each unzipped database.
Next, start Navicat and now you should see your databases in the connection of the new server. If not, you probably forgot to either do a Refresh Connection or the chown-command.
If you can access the tables and view data, good! If not, right click the table and choose Maintain->Repair Table->Quick or ->Extended and then try again.