I still remember max howel tweet[1] in which he publicly said that we was rejected by Google. Looking at his linkedin profile[2] , he was later hired by Apple in August 2015. Now he is biggest[3] contributed to Swift package manager. It is good to see that the person who has lot of experience in handing Apple and package system is handing this stuff. I guess, things happens for good. [1] https://twitter.com/mxcl/stat…
Highly qualified people get rejected by google's interview process all the time, so people shouldn't take it personally if they get rejected. google is willing to miss out on good people occasionally because they believe they can't fix the problem w/o mistakenly hiring more mediocre/bad people.
Swift is Open Source
261–270 of 458 posts
Re: Swift is Open Source
#262Maybe now we can add a way to get a random value from an array like array,sample in Ruby. Lots of work currently to do such a simple thing in Swift.
Re: Swift is Open Source
#263Earlier quoted context omitted.
Re FaceTime, I recently read an unsubstantiated but plausible comment that they'd run into patent issues that caused a redesign that caused issues open sourcing it.
and according to someone I heard on a podcast, many of the engineering leadership heard the open sourcing comment for the first time while Steve was up on stage as well.
Re: Swift is Open Source
#264Earlier quoted context omitted.
It's cool to see that it was basically all Lattner at the beginning and his decisions about the license/exception still stand. EDIT: License/Header in each of files were apparently retroactively added.
First page of commits if you'd like to see how the codebase iterated. Find it quite fascinating personally. https://github.com/apple/swift/commits/master?page=819
Re: Swift is Open Source
#265Earlier quoted context omitted.
Can you or someone summarize the salient points, for someone who doesn't have time to watch an hour-long video?
It's a good watch. Don't skip it.
Re: Swift is Open Source
#266I would love to see Swift for Android programing. I'm already using Kotlin, a language very close to Swift, for programming our Android apps. But I find Swift niftier than Kotlin.
Re: Swift is Open Source
#267Earlier quoted context omitted.
Looks like they have builds for Ubuntu 14.04 and 15.10. I expect they would work on other debian-based linuxes (linuces?) but haven't tried.
Here are my results on a Debian jessie box: If you just want to play with the REPL (usr/bin/swift in the Ubuntu 14.04 snapshot), all you have to do is: apt-get install python-dev If you want to actually compile swift files (usr/bin/swiftc in the Ubuntu 14.04 snapshot), it appears extremely basic programs will compile with jessie's clang-3.5, so all you have to do is: apt-get install clang Note that the swift.org inst…
:0: error: opening import file for module 'SwiftShims': No such file or directoryRe: Swift is Open Source
#268Am I the only one who finds it odd that while pushing two high level but performant languages (Objective-C and Swift) Apple wrote their Swift compiler in C++?
Chris Lattner who created Swift wrote LLVM in C++, so it is probably easier to work with and he know C++ very well.
Re: Swift is Open Source
#269The programming language eco system is really improving rapidly and efficiently. It seemed the developer's toolkit was limited by the languages created 20+ years ago but within the last few years we're seeing a renaissance in developer toolkits as well as development philosophies. Languages like Go, Rust, and now Swift are not only great from almost every aspect over the last generation languages like C, C++, Java, b…
In my area we use Go for some systems but found it scales badly from an engineering point of view to larger more complicated systems, compared to languages like Java and Scala. The JVM has much more mature tooling and libraries too.
For mobile applications it will be a while until Swift is stable on Android, so some of the cross platform languages would be a good choice. React Native, Unity, Unreal for example.