TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

JuliaCon2020: Julia Is Production Ready

194 pointsby ViralBShahalmost 5 years ago

18 comments

oxinaboxalmost 5 years ago
Invenia had run Julia for our primary production system for over a year (nearly 2).<p>The size of our Julia codebase is about 400,000 lines of code, spread over numerous internal and open source packages. You can cite the &quot;we&#x27;re hiring&quot; slide from my Juliacon talk for that <a href="https:&#x2F;&#x2F;raw.githack.com&#x2F;oxinabox&#x2F;ChainRulesJuliaCon2020&#x2F;main&#x2F;out&#x2F;build&#x2F;index.html#2" rel="nofollow">https:&#x2F;&#x2F;raw.githack.com&#x2F;oxinabox&#x2F;ChainRulesJuliaCon2020&#x2F;main...</a>
评论 #24084686 未加载
评论 #24084004 未加载
评论 #24085786 未加载
评论 #24084063 未加载
ViralBShahalmost 5 years ago
People often ask me for examples of non-scientific Julia codebases. My favourite one is Franklin.jl (<a href="https:&#x2F;&#x2F;franklinjl.org" rel="nofollow">https:&#x2F;&#x2F;franklinjl.org</a>), a static site generator. This blog discusses quite a bit more, and it doesn&#x27;t even talk about all the improvements in integrating with databases and such.
评论 #24083567 未加载
评论 #24084171 未加载
lordgroffalmost 5 years ago
I&#x27;ve been thinking about jumping on the Julia ship for a while. I like the LISP-like nature of R and miss its flexibility very much while working in Python (a language I also enjoy, but not particularly for data science). Julia, specifically its macro story and speed, fascinate me.<p>One of the things that still keeps me at bay is the JIT and the pre-compilation in general. It seems like it&#x27;s still not very easy to actually compile a Julia library or an executable. There is PackageCompiler.jl, but my understanding is that it necessitates pulling in sys.so, which is some 130 MB in size, making it prohibitive for many projects.
评论 #24084152 未加载
评论 #24084652 未加载
adamnemecekalmost 5 years ago
Julia is next gen. The whole experience is so much more pleasant than anything in the space. The interop is also crazy. How is it possible that you can call Matlab, Python, cpp, fortran, Rust from one language?<p>I legit think that even if you are using say pytorch. You are better off writing your code in julia and using the python interop.
评论 #24083789 未加载
评论 #24084745 未加载
ablekhalmost 5 years ago
While being a big fan of Julia in general and recognizing a very significant progress in both language and ecosystem development [kudos to Julia&#x27;s core team as well as numerous contributors to the language and its growing ecosystem!], I respectfully disagree with the post&#x27;s author conclusion in its entirety.<p>For scientific computing and advanced machine learning domains, Julia is certainly a breath of fresh air and a no-brainer decision. However, as a general-purpose language as well as technology stack, I think Julia has still a long way to go. This is mostly due to relative immaturity of that part of the ecosystem, spotty - and sometimes even non-existent! - documentation (of course, except for the language itself and quite a limited number of core and popular packages) as well as some other issues, including tooling, development&#x2F;compilation performance and limited pool of skilled developers.<p>So, from a startup founder perspective [who has to select the optimal, risk-minimizing, platform stack], despite Julia&#x27;s many attractive features (including powerful meta-programming facilities - in my case, for potential DSL development), I&#x27;m now leaning toward Python and .NET ecosystems. Both offer very mature and large package ecosystems along with comprehensive tooling support and incomparably larger pool of skilled developers. Additionally, .NET offers stability of consistent development improvements, backing of a major corporation [no acquisition risk] along with support for modern enterprise-focused architectural practices and patterns, including DDD and multi-tenancy.
评论 #24090704 未加载
andi999almost 5 years ago
I can currently see Julia only as a replacement for Python, with the biggest advantage, that fast modules can be written in-language, and you do not default back to C. So in a sense it could solve the two language problem.<p>But then for my applicationsspace there are problems:<p>- compilation seems possible now, but one has to be careful of GPL (like in the fft)<p>- no way to turn off GC (so byebye real-time possibilities).<p>- what about GUI design? Heard some mixed messages about it
评论 #24085661 未加载
评论 #24085775 未加载
评论 #24085976 未加载
dnauticsalmost 5 years ago
Having followed it since the 0.4 era I&#x27;m excited that Julia is production-ready (though I have professionally moved to elixir). Since I&#x27;m working in ml infra, I&#x27;m interested in orchestrating Julia jobs (via Elixir), what I&#x27;m less clear on is if there are good resources on how to deploy Julia, keep dependencies sane, pin memory usage. Or does one just go straight to containers?
评论 #24085505 未加载
评论 #24083896 未加载
amacbridealmost 5 years ago
I really enjoyed the workshops and the talks; I thought the SciML and MLJ talks were particularly good.<p>Everything is available on their YouTube channel:<p><a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;playlist?list=PLP8iPy9hna6Tl2UHTrm4jnIYrLkIcAROR" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;playlist?list=PLP8iPy9hna6Tl2UHTrm4j...</a>
sgillenalmost 5 years ago
Is the debugger in Vs code or anywhere else better now? I remember trying Julia just a few months ago and the debugger frustrated me enough that I went back to print statement debugging.
评论 #24089699 未加载
usgroupalmost 5 years ago
If you were trying to motivate someone embedded in Python &#x2F; scipy &#x2F; pandas &#x2F; etc to move to Julia at this time , what would you say?
评论 #24085473 未加载
评论 #24097494 未加载
评论 #24085906 未加载
评论 #24085413 未加载
malshealmost 5 years ago
Thanks for sharing this. Are there instructor resources available to teach Julia in a data science program? I use R mostly but I am porting one course on ML applications to Python. The communities in both R and Python are vibrant for instructors to create structured learning experiences for data science. How about Julia?
评论 #24087212 未加载
评论 #24087235 未加载
jeanlalmost 5 years ago
Do you guys know if it&#x27;s possible to generate self-standing C++ code from Julia code? (i.e., code that you can then compile into another project, and will not require any interpreter to run or anything like that)? And if it&#x27;s possible do you know how good the generated code is (in terms of speed)?
评论 #24084618 未加载
评论 #24084619 未加载
评论 #24084621 未加载
vasili111almost 5 years ago
Does the Julia matrix has named columns as R or unnamed as numpy?
评论 #24092426 未加载
minetest2048almost 5 years ago
Julia feels like a good replacement for Matlab, but then Matlab have Simulink, is there any project to create something like Simulink but for Julia?
评论 #24094708 未加载
vasili111almost 5 years ago
What is the state of data frame support in Julia?
评论 #24083921 未加载
评论 #24083919 未加载
评论 #24084661 未加载
sadfevalmost 5 years ago
Is it actually backwards compatible? I don’t think it is, they continually introduce breaking syntax changes.<p>Please somebody enlighten me
评论 #24083765 未加载
xiaodaialmost 5 years ago
Does Julia webstack have middle-ware like authenticators etc etc?
noahamaralmost 5 years ago
Highly disappointed that this isn&#x27;t a convention for Julia Roberts fans.