Live data from Hacker News

Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

news.ycombinator.com

1–10 of 12 posts

Re: Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

#2
Of course people that are interested in it would pay, although I suspect a "subscription model" at $20/mo would be off-putting.

Doesn't the actual question revolve around:

(a) how many people are interested

(b) of those, how many would pay a quarter grand a year for the privilege

(c) how many people would think that the added level of complexity would outweigh the benefits of just using Swift?

Re: Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

#3

Of course people that are interested in it would pay, although I suspect a "subscription model" at $20/mo would be off-putting. Doesn't the actual question revolve around: (a) how many people are interested (b) of those, how many would pay a quarter grand a year for the privilege (c) how many people would think that the added level of complexity would outweigh the benefits of just using Swift?

I agree, I need these answers to work on it for full time. So basically I created this interest check thread.

Re: Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

#5
post #3

Of course people that are interested in it would pay, although I suspect a "subscription model" at $20/mo would be off-putting. Doesn't the actual question revolve around: (a) how many people are interested (b) of those, how many would pay a quarter grand a year for the privilege (c) how many people would think that the added level of complexity would outweigh the benefits of just using Swift?

I agree, I need these answers to work on it for full time. So basically I created this interest check thread.

Well, I don't know the answer, obviously, but I wouldn't quit my day job.

As someone who needs to write an iOS app, I'm going to use Swift, and the tooling built around it. Transpilation would mean you either need to integrate a debugger (hard) or I'll have to debug transpiled code (and have to check the transpilation)--I have enough "fun" doing that with ES6 in the browser. No thanks; I'll stick with the supported tools.

Re: Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

#6

Python transpilers/compilers are such an amazing pain in the ass. For users also. Have you done this before?

If you think about it, ObjC has a lot of similarities to a dynamic objected oriented programming language. You can add methods, check if a method exists and a lot more. Imagine something like this =>

if obj.isNumber():

    print "Hello World"
where you can call objc methods from python code.

Re: Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

#7
There is bigger question here. How many people are still make money from selling compiler/language tools? Like, write a static analyzer, or php optimizer or sell a Swift library for linux application or a language-X to language-Y transpiler. So, far, I have found this industry to be opaque, unlike web industry! And if they make money, how much?

Btw, there was YC company which sold PHP server optimizations. Anyone knows the name? (I think they are closed now but I am not sure)

Re: Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

#8
There is bigger question here. How many people are still make money from selling compiler/language tools? Like, write a static analyzer, or php optimizer or sell a Swift library for linux application or a language-X to language-Y transpiler. So, far, I have found this industry to be opaque, unlike web industry! And if they make money, how much?

Btw, there was YC company which sold PHP server optimizations. Anyone knows the name?

Re: Ask HN: Would any one pay for a python to objc transpiler, with iOS integration?

#10
post #6

Python transpilers/compilers are such an amazing pain in the ass. For users also. Have you done this before?

If you think about it, ObjC has a lot of similarities to a dynamic objected oriented programming language. You can add methods, check if a method exists and a lot more. Imagine something like this => if obj.isNumber(): print "Hello World" where you can call objc methods from python code.

That's because ObjC comes from the unholy marriage of C and Smalltalk. It kind of ruined both, but coming from a Smalltalk background, I quite liked it, and was sad when C++ won the day.

We understand what you're talking about; I don't think you need to explain the concept.

Post reply on HN