utku turk
banner
utkuturk.com
utku turk
@utkuturk.com
www.utkuturk.com
ling phd @ umd
stats and psycholinguistics janissary
Actually, the cache problem is out of control. Initially everything is fast, but it relies on the cache so much that at the end you wait more due to slowness compared to the initial wait in the non-cache scenario.
December 6, 2025 at 7:24 PM
Probably stuff like emacs would be also good, but again not for me. I would fell into the rabbit hole of tinkering it and not do any work.
November 6, 2025 at 7:58 PM
To be fair, Apple Notes works for me too, I use it for quick notes. and I use CotEditor for long term. As long as, I can have folders, sync files across devices, and open it with other applications too. it is fine. CotEditor is just a simple text editor, like notepad with support for folders.
November 6, 2025 at 7:57 PM
or one can even go one step further and put the following in .Rprofile, and just use randnum.

makeActiveBinding("randnum", function() {
as.integer(system("curl -s 'https://www.random.org/integers/?num=1&min=10000000&max=99999999&col=1&base=10&format=plain&ind=new'", intern = TRUE))
}, .GlobalEnv)
October 22, 2025 at 7:13 PM
set.seed(as.integer(system("curl -s 'https://www.random.org/integers/?num=1&min=10000000&max=99999999&col=1&base=10&format=plain&ind=new'", intern = TRUE)))

or even better in your case.

set.seed(as.integer(system("get_seed", intern = TRUE)))
October 22, 2025 at 7:07 PM
bird simulation in R: colab.research.google.com/drive/12i0ay...

a friend of mine wanted to generate data for splines. I was reading papers, and found a bird related one and thought it was funny
October 20, 2025 at 10:33 PM
makefile for quarto: gist.github.com/utkuturk/a49...

It can build pdf and html from a quarto file, pushes relevant stuff to the github for git-pages publishing and pushes latex related stuff to overleaf if you have a git overleaf link.
my quarto makefile, bulds pdf, html, pushes it to overleaf and github
my quarto makefile, bulds pdf, html, pushes it to overleaf and github - Makefile
gist.github.com
October 20, 2025 at 10:23 PM