Excelisys has been making the rounds! This time, President and Co-Founder Geoff Ryle along with Senior Lead Developer Andrew Persons both appeared on the ever-popular FileMaker Talk podcast with host Matt Navarre. Along with decidedly non-FileMaker related discussions, the trio talk about new FileMaker Pro 10 features such as script triggers, extreme portal sorting, reusable code, free tips’n'tricks, related technologies and other topics that are sure to interest any Filemaker developer. Check it out at: http://filemakertalk.com/
Posts Tagged ‘PHP’
Excelisys Appears on FileMaker Talk PodCast
Thursday, May 21st, 2009Excelisys Featured in Latest Adatasol FileMaker Podcast
Tuesday, April 21st, 2009A group from Excelisys consisting of Andrew Persons, Mike Duncan and Geoff Ryle recently participated in the recording of an Adatasol podcast that was just released. We had a great time, and enjoyed talking tech and FileMaker with co-hosts Dan Weiss and Theo Gantos. In the podcast, we discussed our latest free “tips-n-tricks” postings that take advantage of FileMaker Pro 10’s new script triggers feature. Check out this and past podcasts at their website or on iTunes.
Run stand alone PHP applications (w/out server support)
Wednesday, January 21st, 2009Recently, I had a client task that involved formatting a XML document according to a pre-defined set of rules. Sounds easy enough - write a PHP script that reads the source file, runs through the formatting rules and spits out the converted file. However, the requirement had a catch. The solution should be able to run on a desktop (PC) without an internet connection, and without Apache support. This takes us to the realm of desktop applications. There are languages like Visual Basic (DLL, COM etc.) but if you don’t want to deal with proprietary technologies, there is still an option, and better still, you can use PHP.
There is a utility called BAMBALAM (http://www.bambalam.se/bamcompile/) - this lets you create an executable file (.exe) from your PHP code that can be run directly on Windows or a Mac (in a simulated Windows environment). All you need to do is write your PHP script as you normally would, and use the BAMBALAM compiler to convert it into a Windows .exe file. That’s it. There’s also an option to compress the .exe file - it reduces the footprint on the disk. Expect the average executable file size to be around 500 Kb.
-Abhi

