novica
@novica.bsky.social
24 followers 200 following 20 posts
I like to write. https://github.com/novica/ https://goodreads.com/nnovica
Posts Media Videos Starter Packs
Reposted by novica
thijs.niks.nu
I built a web tool so anyone can design and evaluate ridership and costs of high speed rail networks anywhere in the world:

railmapper.net
Rail Mapper
Design and analyze high speed rail networks
railmapper.net
Reposted by novica
epiphenomenal.bsky.social
Accurate.

#academia #academy #philsky #philosophysky #philosophy #science
Reposted by novica
gabspalomo.bsky.social
Whoever invents a silencer for leaf blowers will become a millionaire overnight.
novica.bsky.social
Appreciate you took the time to answer. Best of luck in the search.
novica.bsky.social
Of course, but my question was does the employer facilitate that in any way or no?
novica.bsky.social
So how's that looking for someone who would need a visa etc.?
Reposted by novica
arynn.bsky.social
AI company alignment chart.
novica.bsky.social
Hi Johannes. Can we chat a bit about the position?
Reposted by novica
garius.bsky.social
If you ask someone today to name the builder of Hadrian's Wall, they would give you a funny look. But historical memory is odd, and right up to the 1800s we forgot who built it.

Until in 1840 John Hodgson, an obscure Northumbrian clergyman, published the LONGEST footnote in history... 1/22
long stretch of worked roman stone on Hadrian's Wall.
Reposted by novica
claradoodle.bsky.social
Actually... from my reading of the artists' basic income report, the government did not earn money back from the scheme (although its costs were offset 37%)

Most gains were societal and came from putting the artists' improvements in wellbeing in € terms

assets.gov.ie/static/docum...
Reposted by novica
andrew.heiss.phd
Just discovered the {gm} package, which lets you programmatically create sheet music (and audio!) with #rstats (with MuseScore as the backend) flujoo.github.io/gm/index.html
library(dplyr)
library(gm)

golden <- tribble(
  ~pitches,  ~duration,   ~lyric,
  "E4",      "q",         "I’m",
  "G4",      "q",         "done",
  "C5",      "q",         "hid-",
  "B4",      "q",         "-ing",
  "D4",      "q",         "now",
  "G4",      "q",         "I’m",
  "E5",      "q",         "shin-",
  "D5",      "q",         "-ing",
  "G4",      "q",         "like",
  "B4",      "q",         "I’m",
  "A5",      "q",         "born",
  "F#5",     "q/3*(q/8)", "to", 
  "G5",      "q/3",       "be._",
  "G5",      "h",         ""
)

music <- 
  Music() +
  Key(1) +
  Tempo(125) +
  Meter(2, 4) +
  Line(pitches = golden$pitches, durations = golden$duration) + 
  Tie(13) +
  Lyric(golden$lyric[1], 1) + Lyric(golden$lyric[2], 2) + 
  Lyric(golden$lyric[3], 3) + Lyric(golden$lyric[4], 4) + 
  Lyric(golden$lyric[5], 5) + Lyric(golden$lyric[6], 6) +
  Lyric(golden$lyric[7], 7) + Lyric(golden$lyric[8], 8) + 
  Lyric(golden$lyric[9], 9) + Lyric(golden$lyric[10], 10) + 
  Lyric(golden$lyric[11], 11) + Lyric(golden$lyric[12], 12) +
  Lyric(golden$lyric[13], 13)

show(music) The first part of the bridge from "Golden" from KPop Demon Hunters
Reposted by novica
Reposted by novica
melaniemitchell.bsky.social
Andrew Ng: "AI is the new electricity!"

Cory Doctorow: "AI is the asbestos we are shoveling into the walls of our society and our descendants will be digging it out for generations."

¯\_(ツ)_/¯

(pluralistic.net/2025/09/27/e...)
novica.bsky.social
Can I interest you in some lakes?
Reposted by novica
vincentab.bsky.social
{tinytable} 0.14.0 for #RStats makes it super easy to draw tables in html, tex, docx, typ, md & png.

There are only a few functions to learn, but don't be fooled! Small 📦s can still be powerful.

Check out the new gallery page for fun case studies.

vincentarelbundock.github.io/tinytable/vi...
a table about lemurs a table about students and schools a table about wines
Reposted by novica
mitsuhiko.at
“Is 90% of code going to be written by AI? I don’t know. What I do know is, that for me, on this project, the answer is already yes.” lucumr.pocoo.org/2025/9/29/90...
90%
AI is writing 90% of the code I was in charge of
lucumr.pocoo.org
Reposted by novica
Reposted by novica
collinberke.bsky.social
I got introduced to @randyau.com's 'Data Cleaning IS Analysis, Not Grunt Work' post during the #dataBS Conf this week: www.counting-stuff.com/data-cleanin... . I just finished--it was a great read.

Here are some quotes and thoughts I'm walking away with 👇

1/9 #RStats
Data Cleaning IS Analysis, Not Grunt Work
Also, most data cleaning articles suck
www.counting-stuff.com
Reposted by novica
rmcelreath.bsky.social
Some of you monsters will like this: Brutalita Sans - a custom font editor. I recommend a font in which every vowel has a random diacritical mark. As a treat. brutalita.com
Brutalita Sans
Brutalita is an experimental font and font editor, edit in your browser and download OTF.
brutalita.com
Reposted by novica
smachlis.bsky.social
Watched the 'Election Night Reporting Using R & Quarto' #positconf2025 talk on how @gosterhout.bsky.social & @andrew.heiss.phd created an auto-updating website with custom tables, interactive maps, and a dynamic 'Close Races' page #RStats #ddj
GitHub: github.com/andrewheiss/... 1/2
GitHub - andrewheiss/election-desk
Contribute to andrewheiss/election-desk development by creating an account on GitHub.
github.com
Reposted by novica
patrickstotz.bsky.social
More outstanding maps in this Mercator / 'Correct The Map' explainer by Reuters 😍
www.reuters.com/graphics/AFR...
Reposted by novica
thomasp85.com
I am super hyped to finally share the first release of plumber2 with all of you. This has been the center of my attention for a big part of 2025 and I hope you'll find it a worthy update to the venerable plumber package.

The blog post will tell you more

#rstats
plumber2 0.1.0
plumber2, a complete rewrite of plumber, has landed on CRAN, providing a modern, future proof solution for creating web servers in R. Read all about the new features here.
www.tidyverse.org
Reposted by novica
gmcd.bsky.social
`tinyplot` 0.5.0 is now available from CRAN & R-universe. Alongside bug fixes & internal improvements, this release includes some cool new features like bubble chart + dual legend support, element dodging, & ephemeral themes.

Detailed changelog: grantmcdermott.com/tinyplot/NEW...

#rstats #dataviz
tinyplot bubble chart example with dual legend, using penguins data. Taken from https://grantmcdermott.com/tinyplot/vignettes/gallery.html