Sridhar Ramesh

Sridhar Ramesh

@radishharmers.bsky.social

Born Samuel Langhorne Clemens in rural Missouri. Adopted the pen name "Sridhar Ramesh" from riverboat slang.

30,450 Followers 239 Following 3,863 Posts Joined Apr 2023
5 days ago

I'm a bit sore, from my life

128 18 2 0
5 days ago

The fact that wild animals have brains is upsetting. That's OUR thing.

116 1 7 0
5 days ago

Two things can be true. Two things can't be true.

188 14 11 0
1 week ago

Congratulations! I look forward to watching it.

5 0 0 0
1 week ago

this is not an amount of money any individual or household should be able to have and we have to abolish both billionaires as a group and the economic system that makes them possible

4,624 931 28 11
1 week ago

Nothing good ever happens. Stop hoping or trying.

99 5 5 1
1 week ago

We must destroy time's arrow, so that in the future, we may return to the past.

81 6 6 1
1 week ago

I hope Donald Trump dies. Moderators: I hope Donald Trump dies.

2,219 354 48 7
1 week ago

I find this slapdash reporting implausible. It's hard to believe the president would knowingly target young girls.

206 20 3 0
1 week ago

Americans are posting in paranoid hysterics, as though they're in any danger, as though any reaction from Iran would reach over here. Relax. As I understand from the theory of war and its endgames, we will be safe, as the Ayatollah can only attack diagonally.

212 10 6 0
1 week ago

Nothing good ever happens. Bring back nothing ever happens.

127 6 0 0
2 weeks ago

I regret nothing. Specifically, the nothing I've accomplished with my life so far.

213 18 2 1
2 weeks ago

I understand how a non-racist could know of the N word. They could have read it in classic text "The Adventures of Huckleberry Finn". But what's damning is knowing how to pronounce it. That goes beyond mere academic well-readness. Such knowledge can only be learnt on the street.

310 16 8 0
2 weeks ago

I understand how a non-racist could know of the N word. They could have read it in classic text "The Adventures of Huckleberry Finn". But what's damning is knowing how to pronounce it. That goes beyond mere academic well-readness. Such knowledge can only be learnt on the street.

310 16 8 0
2 weeks ago

When I heard what that guy said at the BAFTAs, it turned my stomach. I hate N words. I hate hearing N words and I hate seeing N words.

97 1 3 0
2 weeks ago

It is important to remember that, despite popular portrayal, only about 10% of people with Tourette syndrome suffer from coprolalia. The other 90% just shout "the N word" and not the actual word.

120 5 1 0
2 weeks ago

It is important to remember that, despite popular portrayal, only about 10% of people with Tourette syndrome suffer from coprolalia. The other 90% are genuinely racist.

140 5 3 0
2 weeks ago

A lot of ignorant commentary about the outburst at the BAFTAs, from people who haven't bothered to do five seconds of research. In Britain, that word means "cigarette", and it is spelt with the R before the E. It is customarily pronounced with the "hard R" in Scotland, but non-rhotically in England.

89 6 0 0
2 weeks ago

There is only one way to make amends. Michael B. Jordan and Delroy Lindo must now be permitted to call one person of their choice the N word (once each). Horrifying as such Hammurabian justice may seem, they must be given a kind of "N word pass".

117 3 0 0
2 weeks ago

There is only one way to make amends. Michael B. Jordan and Delroy Lindo must now be permitted to call John Davidson the N word (once each). Horrifying as such Hammurabian justice may seem, they must be given a kind of "N word pass".

87 5 1 0
2 weeks ago

I aspire to someday write a joke that is used on an officially televised or streamed comedic program. Just one validated joke once would suffice.

87 2 5 0
2 weeks ago

I don't know the details of the dplyr implementation of mutate but I note it does not have this issue.

0 0 2 0
2 weeks ago

Even of R, which has been my least favorite language to use for what I think of as programming, I do appreciate the particular usability Colin has been pointing out for data exploration tasks.

Different languages for different purposes often makes sense.

2 0 0 0
2 weeks ago

In a professional sense, a few years ago, I had a surprisingly good time using Kotlin for work.

In my life history, I cut my teeth on C and, while it's not now what I would reach for for most tasks, I think it's very understandable why it became so dominant and influential for so long.

2 0 1 0
2 weeks ago

But I find things to like about many rather non-Haskelly languages too. Continuing in an academic wankery vein, I've enjoyed much about Scheme and Prolog, despite also finding other things about their largely type-less design very frustrating.

2 0 1 0
2 weeks ago

Also in a similar statically typed functional programming vein, I wish Haskell had adopted the module system of ML (as in OCaml or Standard ML), rather than its type class system which I rather dislike (contra most Haskell aficionados).

3 0 2 0
2 weeks ago

Other languages in a similar vein to Haskell that I am interested in, but with dependent typing, are Agda and Idris and such. Typical PL/type theory stuff. Though those are not nearly ready to be used (or even intended to be used) in such a general way as Haskell or more mainstream languages, yet.

2 0 1 0
2 weeks ago

I find Haskell to be full of warts that frustrate me, to be clear. My ideal language would be very different from Haskell. But among languages that currently exist, it does have many traits that many other languages lack that I find often useful.

2 0 1 0
3 weeks ago

Incidentally, I don't think this does quite what you want it to do. Consider:

myMutate <- function(data, new_column) {
data$new <- eval(substitute(new_column), data)
data
}

newval <- "wrong"
addVal <- function(data, newval) {myMutate(data, newval)}
addVal(data.frame(x = 0), "right")

0 0 1 0
3 weeks ago
Post image
1 0 0 0