aliquote.org

Latest micro-posts

You can also also view the full archives of micro-posts. Longer blog posts are available in the Articles section.

2023-12-13 09:40 #

Micro-posting goes well as far as I can tell.

img

2023-12-13 08:59 #

Just when I was about to try out boosting and bagging in Stata (rforest and boost), I realized that most programs now require Stata 15 or newer. Even Lasso penalization has been integrated in the core modeling facilities starting with Stata 18. At least, I can still run lassopack to perform L1, L2 regularization or a combination thereof. They use the same convention as in glmnet, where the parameter $\alpha$ stands for the elasticnet mixing parameter ($\alpha=0$ corresponds to the ridge penalty while $\alpha=1$ is the lasso penalty). The authors compared Stata builtin and R regularized estimation, which is great: Replication of glmnet and StataCorp’s lasso. See also An introduction to the lasso in Stata on the Stata blog. #stata

2023-12-12 10:27 #

To choose an implementation is to choose a tribe. Since Scheme is so minimal, you begin to rely on extensions that are only present in your implementation, and so through code you bind yourself to a world of code, people, and practice, loosely bound to the rest of the Scheme world through a fictional first-person-plural. This is OK! Going deep into a relationship with an implementation is the only way to do great work. The looser ties to the rest of the Scheme world in the form of the standards, the literature, the IRC channel, and the mailing lists provide refreshing conversation among fellow travellers, not marching orders for a phalanx. — an opinionated guide to scheme implementations

2023-12-11 19:45 #

♪ Jelly Cleaver · Black Line

2023-12-06 13:22 #

iMessage, explained: When you learn what com.apple.madrid does on your machine, and all the other goodies Apple put into their APNs.

2023-12-06 13:19 #

A good explanation of how Shazam work in practice, and an implementation in Python.

2023-11-22 14:34 #

A Very Subtle Bug, or how to re-enable SIGPIPE in the subprocess child. #python

2023-11-22 14:31 #

My general advice for maximizing the battery is only use your battery as much as you need, i.e. charge it as often as possible, and as little as possible. If you need a rule of thumb, stay within 30%-80%. Wouldn’t charging a lithium battery to 80% only defeat the purpose of putting the battery into longer use in the first place?

2023-11-22 14:29 #

Poor man “fd(find)” command:

#!/bin/sh
find . -iname "*$1*" 2>/dev/null
2023-11-21 13:53 #

The qeML package: “Quick and easy” wrappers for machine learning. Norm Matloff also published a new book. #rstats