Software trainer, education consultant
I'm also @digital_carver
| StackOverflow | https://stackoverflow.com/users/8127/sundar-r |
| Julialang Zulip | Sundar R |
| Buy me a Chai? | https://ko-fi.com/digital_carver |

Software trainer, education consultant
I'm also @digital_carver
| StackOverflow | https://stackoverflow.com/users/8127/sundar-r |
| Julialang Zulip | Sundar R |
| Buy me a Chai? | https://ko-fi.com/digital_carver |
There are more than 750 entries in the Big Book of Julia:
At the #JuliaLang meet-up at the JuliaHub office in Bangalore. Say hello if you come across the nametag SUNDAR screaming at you!
@abhi_jl
Also, I'm not sure why that main docs link from https://genieframework.com/docs/? immediately leads to a an "Advanced" page.
Should it be linking to the "Getting Started" section https://genieframework.com/docs/genie/v5.4/tutorials/Getting-Started.html instead?
Seems like the "Advanced" page is getting chosen just because it's alphabetically first, but that's probably not the most useful place to start for a new user.
Hi @abhi_jl
The "v5 (latest)" link from https://genieframework.com/docs/? leads to https://genieframework.com/docs/genie/v5.4/tutorials/Advanced-Routing-Techniques.html
For those of us that have Javascript disabled by default, that page shows a misleading warning "You are not using the latest version of docs. Click here to go to v5 →" and the link actually takes us to the v4 version of the documentation.
The Rise of Julia
Programming Language #julialang
https://open.spotify.com/episode/7snucB9EajnzMuL6QTu38r?si=5aRTCsF1QKaHms0nI2sGXg
Listen to this episode from DataFramed on Spotify. Python has dominated data science programming for the last few years, but there’s another rising star programming language seeing increased adoption and popularity—Julia. As the fourth most popular programming language, many data teams and practitioners are turning their attention toward understanding Julia and seeing how it could benefit individual careers, business operations, and drive increased value across organizations. Zacharias Voulgaris, PhD joins the show to talk about his experience with the Julia programming language and his perspective on the future of Julia’s widespread adoption. Zacharias is the author of Julia for Data Science. As a Data Science consultant and mentor with 10 years of international experience that includes the role of Chief Science Officer at three startups, Zacharias is an expert in data science, analytics, artificial intelligence, and information systems. In this episode, we discuss the strengths of Julia, how data scientists can get started using Julia, how team members and leaders alike can transition to Julia, why companies are secretive about adopting Julia, the interoperability of Julia with Python and other popular programming languages, and much more. Check out this month’s events: https://www.datacamp.com/data-driven-organizations-2022 Take the Introduction to Julia course for free! https://www.datacamp.com/courses/introduction-to-julia
#JuliaTipOfTheDay #JuliaBeginners
2022-12-01
To quickly create a new #JuliaLang project environment to try out some piece of code, use
`]activate --temp`
or
`Pkg.activate(; temp = true)`
A fresh Julia environment is created, independent of your current env, where you can install any packages needed for that code. When you exit your Julia session, this temporary env will be deleted.
Very useful for running code you don't intend to keep saved, eg. when debugging someone else's Julia code.