juandesant, to random
@juandesant@astrodon.social avatar

Bela Dixit is talking about the upgrades to the Finnish Metsahovi radio telescope. Many similarities to our upgrade, but for a single dish system.

https://www.aalto.fi/en/services/metsahovis-main-receivers

juandesant,
@juandesant@astrodon.social avatar

Mention of the Julia programming language for the simulation of interleaved analog to digital conversion.

GhostOnTheHalfShell, (edited ) to random
@GhostOnTheHalfShell@masto.ai avatar

@economics@a.gup.pe

#mmt #SteveKeen

The remarkable aspect of mainstream economists is their persistence treating values in (digital) ledgers as actual instances of banknotes (physical paper) as their mental model, then selectively dropping the model.

And they refuse to submit to accounting rules.

https://profstevekeen.substack.com/p/why-you-cant-win-an-argument-with

🧵

dlakelan,
@dlakelan@mastodon.sdf.org avatar

@GhostOnTheHalfShell @economics@a.gup.pe

These are really good questions that actually would be best addressed by agent-based modeling, where individual agents (banks, employees, investors, bond traders, federal govt, state govt, firms etc) each have behaviors defined by rules and you run the system adjusting the rules to see how the scenario plays out. #julialang is a great tool for this using the Agents.jl library in part because it's fast

rzeta0, to random
@rzeta0@mastodon.social avatar

my brain is officially blown! 🤯

is so fast ! 🚀

(compared to python when it is forced to apply arbitrary functions with loops inside, element-wise to an array - that is, can't benefit from vectorised numpy functions)

this experiment took about an hour in python and about 1 second in julia lang

sure my python isn't professional, but today was my first time with julia lang so that will be far from optimal either

indymnv, to random
@indymnv@fosstodon.org avatar

Seeing the schedule in conference and the last survey, looks like the community is embracing more the idea of using Rust as a support language.

kevinmoerman, to random
@kevinmoerman@fosstodon.org avatar
kevinmoerman, to Batman
@kevinmoerman@fosstodon.org avatar

Coming soon to : constrained triangulations. Which I decided needs parameterized curves too for testing purposes 🦇

kevinmoerman,
@kevinmoerman@fosstodon.org avatar

Getting there. These images show tests of a triangulation algorithm I've developed that uses Delaunay triangulation. It features mostly equilateral triangles except for at the boundaries.

Same as previous image but now the boundary is the Batman logo. This shape features sharp transitions which is good for testing how the algorithm copes with these.

jonthegeek, to javascript
@jonthegeek@fosstodon.org avatar

I'm extremely saddened to read that Women Who Code is closing (https://womenwhocode.com/blog/the-end-of-an-era-women-who-code-closing). My heart goes out to everyone impacted by this situation, and everyone who would have been impacted by their initiatives.

We can't replace them, but we welcome anyone looking for a friendly, inclusive community to join us at the Data Science Learning Community (@DSLC) https://DSLC.io

matvil, to random
@matvil@fosstodon.org avatar

Just a reminder how beautiful #julialang is.
Albert-Chib Gibbs sampler for binary probit regression.

kevinmoerman, to opensource
@kevinmoerman@fosstodon.org avatar
kevinmoerman, to random
@kevinmoerman@fosstodon.org avatar

My university dropped the campus wide MATLAB license around August last year. It is amusing to see the effect on my GitHub contribution chart. But then I picked up and now there is more than a recovery :)

ayo, to random
@ayo@ayco.io avatar

I kept my twtr account for a while because brands I occasionally reach out to were still exclusively there. It’s now no longer the case so I put the account down for real :)

hasnep,
@hasnep@julialang.social avatar

@ayo Thanks for building this @anze3db, I've already found some great accounts to follow! A couple of things that would make it even better, the Nix language uses a regex that matches people mentioning Unix or *nix, so it has a lot of false positives. Secondly, I'd love to see #JuliaLang added to the list of languages, and to add JuliaLang.social to the index :)

ramikrispin, (edited ) to datascience
@ramikrispin@mstdn.social avatar

(1/3) Data Visualization with Makie - Julia 🚀👇🏼

Makie is a data visualization ecosystem for the Julia programming language, with high performance and extensibility. It supports various data visualization applications like 2D, 3D, and geospatial plots.

Image credit: Beautiful Makie by Lazaro Alonso

#DataScience #dataviz #datavisualization #data #julialang

R4DSCommunity, to datascience
@R4DSCommunity@fosstodon.org avatar

The R4DS Online Learning Community has thousands of members, hundreds of which are active on our Slack every week. You might be wondering: Why not charge those learners? Why is the Community funded through donations?

🧵1/5

Sevoris, to scifi

One of my favorite hard topics that I love to work within (even if I am terrifically starved for time to do much about this at the moment) are wormhole networks.

They have interesting geometry constraints once you add real star maps, challenges when it becomes time to figure out how many connections you need to connect what places while observing construction and shape constraints…

it is the kind of computer science that tickles my brain extra being scifi nerdy

Sevoris,

In particular, simulating n-agent circumstances with improving technologies (wormhole projection speeds and ranges in a single connection creation) would be interesting, both to study optimal networks that satisfy the most constraints from all the parties, and just letting some organically emerge with quirks and bad choices that play off of each other.

Maybe something to use #julialang for, though I have to say, when it comes to really optimizing the configuration, I lack know-how

franco_vazza, (edited ) to Julia
@franco_vazza@mastodon.social avatar

@julialang
I have a question:
I am using HDF5.jl to open an hdf5 file; the file is organised in >100 datasets, written by the creator in a rather unpredictable way.
How do I automatically open all
datasets in the sequence, without knowing their name beforehand? (with the final goal of recreating a single long array, by appending the content of each dataset - this I know how to do).
thanks in advance

==================
👍 found, easy
keys(obj)

djnavarro, to random
@djnavarro@hachyderm.io avatar

My weekend side-project: at long last I set some time aside to learn the basics of . The learning process was a tonne of fun. The thing where it somehow sprawled into a three-part series of blog posts... not so much fun. Anyway here they are... first one is me wrestling with some basic features in language

https://blog.djnavarro.net/posts/2024-03-01_julia-foundation/

djnavarro,
@djnavarro@hachyderm.io avatar

Second one is a bit more practical, and looks at how to do basic data wrangling using the DataFrames package. Not surprisingly as an person learning , a big part of this was me trying to find a pipe-centric workflow that I like. In the end I decided I kind of like the combination of the Julia base pipe and anonymous functions as a workflow

https://blog.djnavarro.net/posts/2024-03-02_julia-data-frames/

djnavarro,
@djnavarro@hachyderm.io avatar

By the time I hit the third post I was kind of exhausted, so it's a bit, um, telegraphic in places. But nevertheless it was sort of nice to get a sense of (one tool for) data visualisation in #julialang

https://blog.djnavarro.net/posts/2024-03-03_julia-plots/

hyde, to linux
@hyde@lazybear.social avatar
pjacock, to random
@pjacock@fediscience.org avatar

I'm sitting in remotely on a #JuliaLang introduction https://github.com/pszufe/2024_Julia_Aberdeen - currently the room are talking about plotting backends https://docs.juliaplots.org/latest/backends/ and the advantages of a common API - as long as you don't use options specific to a backend, it ought to work longterm as the backends evolve

mhsatman, to random
@mhsatman@fosstodon.org avatar

I'm looking for suitable reviewers for the JOSS submission

MarSwitching.jl: A Julia package for Markov switching dynamic models

Anybody able to review this submission for JOSS?

:julia:

https://github.com/openjournals/joss-reviews/issues/6344

R4DSCommunity, to datascience
@R4DSCommunity@fosstodon.org avatar

Upcoming book clubs:

Today:
:rstats: https://r4ds.io/islr
:rstats: https://r4ds.io/rpkgs

Tomorrow:
:rstats: https://r4ds.io/deepr

Join our Slack at https://r4ds.io/join to learn more!

Check out all club meetings at https://r4ds.io/youtube

mo8it, to rust
@mo8it@fosstodon.org avatar

I wonder how can get away with lies regarding its latest benchmark.

Fake news in tech are actually a threat?

Tech entertainers like only make things worse by promoting these fake news without validation.
Then he is quoted in a later Mojo blog post spreading bullshit about and ignoring . But debunking posts like this are ignored:

➡️ https://viralinstruction.com/posts/mojo

Maybe tech shouldn't be an entertainment for Twitch…

terence, to random
@terence@fosstodon.org avatar

Haleakalā National Park, Maui, Hawaiʻi.

#rayshader-#julialang joint adventures

  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • magazineikmin
  • Youngstown
  • khanakhh
  • ngwrru68w68
  • slotface
  • ethstaker
  • mdbf
  • everett
  • kavyap
  • DreamBathrooms
  • thenastyranch
  • cisconetworking
  • rosin
  • JUstTest
  • Durango
  • GTA5RPClips
  • anitta
  • tester
  • tacticalgear
  • InstantRegret
  • normalnudes
  • osvaldo12
  • cubers
  • provamag3
  • modclub
  • Leos
  • lostlight
  • All magazines