Re: LGPL code in the Mac App Store?

2016-01-29 Thread Dru Satori
Keep in mind that LGPL restrictions got tighter in v3, and I know there remain many projects out there that are LGPL but have refused v3 for these reasons. > On Jan 29, 2016, at 11:28 AM, thatsanicehatyouh...@me.com wrote: > > Hi, > > Thanks to everyone who answered or commented on this

Re: LGPL code in the Mac App Store?

2016-01-29 Thread Dru Satori
I think that this is a slightly uncharitable view of OSS devs, but not terribly inaccurate. > On Jan 29, 2016, at 1:30 PM, Quincey Morris > wrote: > > On Jan 29, 2016, at 09:27 , thatsanicehatyouh...@me.com wrote: >> >> One thing I forget to add; probably

Re: LGPL code in the Mac App Store?

2016-01-27 Thread Dru Satori
There are/were some restrictions on GPL, but even those often go through and only get removed in the instance of a dispute. I think there has been some redressing of specific language in the GPL to address the issues. LGPL should be fine though, and there is a fair amount go GPL code in

Re: LGPL code in the Mac App Store?

2016-01-26 Thread Dru Satori
Now you are getting into the nitty gritty of LGPL wording and implementation, at that point, it becomes more about working with the copyright holder to ensure you are complying with the intended spirit of the license, or engaging a lawyer to get him to sign off on a willingness to defend the

Re: [Solved] Re: Storing UTF8 Umlauts in Postgres using PGSQLKit

2012-03-22 Thread Andy 'Dru' Satori
Sorry I didn't see this, I was KO'd by the pollen and seasonal allergies. Yes this is an issue with PGSQLkit, I have confirmed it and will be committing a change today based upon yours to address this. Thanks for patch! -- Andy 'Dru' Satori On Thursday, March 22, 2012 at 6:55 AM

Re: Closing an app with the red dot.

2011-05-17 Thread Andy 'Dru' Satori
like a Windows App on the Mac?' conundrum -- Andy 'Dru' Satori On Tuesday, May 17, 2011 at 11:40 AM, Uli Kusterer wrote: On 17.05.2011, at 14:54, Andy Lee wrote: On May 17, 2011, at 8:44 AM, Andy Lee wrote: Also you can implement the applicationShouldHandleReopen:hasVisibleWindows

Re: Need HTTP Server JSON recommendations

2010-12-06 Thread Dru Satori
to write your own web server. Andy 'Dru' Satori - all typos courtesy of fat finger and an iPad On Dec 6, 2010, at 12:21 PM, Todd Freese applecocoal...@filmworkers.com wrote: I have an existing CoreData app that now needs to share it's data via JSON. Can anyone recommend a framework or sample

Re: JDBC from Cocoa or the like

2010-10-06 Thread Dru Satori
in this community (PostgreSQLforMac, ODBCKit, PGSQLKit, and the unreleased TDSKit are all my projects), but when it comes to iOS, I just do not feel that the existing client libraries are the best solution. Andy 'Dru' Satori On Oct 6, 2010, at 10:47 AM, colors iseecol...@sbcglobal.net wrote

Re: Cocoa Newbie MySQL

2010-04-29 Thread Dru Satori
, you'll be fine, but there are issues with the us_FR and a few others. Andy 'Dru' Satori On Apr 29, 2010, at 12:53 PM, Joshua Tidsbury joshua.tidsb...@ctv.ca wrote: Flavio, Well... That's a good enough reason. Driving that Sun stuff through exec() and command-line utilities should be extremely

Re: Cocoa Newbie MySQL

2010-04-28 Thread Dru Satori
at not reinventing the wheel and using a preexisting framework. Andy 'Dru' Satori On Apr 27, 2010, at 9:04 PM, Joshua Tidsbury joshua.tidsb...@ctv.ca wrote: Hello everyone, I'm in the process of developing one of my first Cocoa applications, and I'm looking for some advice to keep myself from wandering

Re: Data managment

2010-04-12 Thread Dru Satori
be difficult to come to grips with after years of working directly with SQL in other worlds. Andy 'Dru' Satori On Apr 12, 2010, at 9:38 AM, Billy Flatman b.flat...@googlemail.com wrote: Hi all, I'm trying to find the best approach to data storage with a cocoa application. I've got my application

Re: Data managment

2010-04-12 Thread Dru Satori
it. Andy 'Dru' Satori On Apr 12, 2010, at 12:33 PM, Jens Alfke j...@mooseyard.com wrote: On Apr 12, 2010, at 7:36 AM, Billy Flatman wrote: Is it possible to get core data data models to save differently, one for a document save which for example might be an XML format, and one

Re: Data managment

2010-04-12 Thread Dru Satori
, but the long term, I think it is a design that we will see more and more of. CouchDB is very very slick, but it has some issues behind the scenes particularly in terms of performance. Andy 'Dru' Satori On Apr 12, 2010, at 2:05 PM, Jens Alfke j...@mooseyard.com wrote: On Apr 12, 2010, at 10:54

Re: Data managment

2010-04-12 Thread Dru Satori
Honestly I am surprised that apple has not adopted one of the OSS database engines as a standard db in osx and implemented core data on top of it for multi user implementations. If for no other reason than to shoot at Microsoft over the mssql as part of the file system debacle Andy 'Dru

Re: Using a SOAP Web Service from iPhone

2010-04-09 Thread Dru Satori
, but in the end, this was the solution I used. It works, but I do not know if it is necessarily the best answer. I apologize in advance for any formatting issues, this is composed on an iPad, and well, I am still getting used to it :-). Andy 'Dru' Satori On Apr 9, 2010, at 11:00 AM, Joanna Carter cocoa

Re: Delayed Autorelease

2010-04-08 Thread Dru Satori
This is a really common problem for developers coming from other platforms. In the Windows world the only thing really analogous to retain/release is the COM addref concepts, and even those lack the equivalent of autorelease. The short version, in my experience, is when in doubt, manage the