Does anybody know which language or technology was used to develop the Spotify desktop application? It's stable, good-looking and lightweight.
|
feedback
|
|
Here's the list of third-party components they use (on top of C++ of course):
| |||||||||||
feedback
|
|
It's a plain Windows executable, with only two obvious dependencies (according to Dependency Walker): kernel32.dll and ntdll.dll. So it probably loads any other dependencies dynamically. My guess would be that it's simply written in straight C++ by people who know what they're doing. | |||
|
feedback
|
|
According to a Spotify designer: http://twitter.com/#!/tobiasahlin/status/96483609799692288 "Some of it is in C++, and some of it is in a HTML-ish markup language called Spider" "It's built solely to be used within Spotify" | |||
|
feedback
|
|
Given it's running on windows, clearly not .NET (Process explorer is telling me that), didn't follow a AIR install process, I'd say C++ using cross platform libraries. Everything is compiled down into one executable, which indicates they had access to the source of all dependencies. W.r.t to Techno...i think they used Hardhouse Electronica | |||
|
feedback
|
|
compiling down to one exe doesn't mean you've got access to the source of everything your libraries can be pre compiled. "My guess would be that it's simply written in straight C++ by people who know what they're doing." I don't think the author of this comment has written a line of c++ in their life! 1) c++ is far from simple 2) straight C++ - which revision of the standard would we be talking about here?? | |||
feedback
|
|
I don't think it is FLEX, as suggested previously. FLEX's font rendering is the worst. Ex: http://appsheriff.com/wp-content/uploads/2009/10/restfulx.png Unless he was talking about a different FLEX. | |||
|
feedback
|
|
from their website- "Spotify is built mostly in Python and C++" | |||
feedback
|
|
The frontend is written in FLEX, checkout the sources on your mac or windows machine. You will see a lot of xml file which are in the flex file format. Off course the connection to the server and platform integration is probably written natively in c++. But the UI part is just FLEX... | |||
|
feedback
|