You are viewing archived messages.
Go here to search the history.

Kartik Agaram 2022-07-25 02:44:12
Jason Morris 2022-07-25 02:51:17

No, nothing to do with it. I see they have linked to my blog for credit for the one image.

Kartik Agaram 2022-07-25 02:53:25

Oh interesting, sorry I missed that.

Jason Morris 2022-07-25 02:54:38

Thanks for pointing it out. Interesting to see what sorts of things get traction.

Vijay Chakravarthy 2022-07-27 00:26:48

I feel like this is a strange way to look at no-code platforms. They seem to have jumped to conclusions on the workings of these kinds of platform based on a few (IMHO not designed for scale and extensibility) exemplars.

Shubhadeep Roychowdhury 2022-07-25 03:27:44

A very nice (longish but enjoyable) read this morning. Performance comparison: counting words in Python, C/C++, Awk, Rust, and more - benhoyt.com/writings/count-words

Jack Rusher 2022-07-25 09:01:25

N.B. the "optimized" awk example is just the normal way to do it in awk. 🙂

I'm pleasantly surprised by the performance of the Java version. OTOH, the Common Lisp implementation looks like it was written by someone who doesn't know very much CL. 🤷‍♂️

Tony Worm 2022-07-25 19:38:43

that's one of the problem with contrived examples for benchmarks, the implementation quality is disputed, as is the task for comparison

Jack Rusher 2022-07-26 06:48:18

That, and very few real programs spend all their time doing <whatever microbenchmark>.

William Taysom 2022-07-26 08:55:14

For benchmarking this is not a good task. As the kind of thing I write all the time, the start of an interview for fresh grads, it's not so bad. Let's see now.

Hmm, this Ruby smells...

counts = Hash.new(0)

STDIN.each_line { |line| line.downcase.split.each { |w| counts[w] += 1 }}

counts.sort_by { |k,v| -v }.each { |k,v| puts "#{k} #{v}" }

old. A quick round of golf:

STDIN.flat_map{_1.downcase.split}.

  tally.sort_by{-_2}.

  each{puts _1.join(" ")}

It only goes to show that counting things is a common Rubyism.

Games like this always remind me of the The Evolution of a Haskell Programmer pages.cpsc.ucalgary.ca/~robin/class/449/Evolution.htm.

Tony Worm 2022-07-26 20:21:38

cat file.txt | wc -w

Tony Worm 2022-07-26 20:22:08

I suppose they are counting how many times each word appears...

dustin 2022-07-27 20:29:03

apologies if this has already been shared — twitter.com/presentcorrect/status/1552268743169957889

Christopher Galtenberg 2022-07-30 02:48:54

A lovely tribute to MOAD by Stephen B Johnson hiddenheroes.netguru.com/douglas-engelbart

Christopher Galtenberg 2022-07-30 02:50:28

🐦 Steven Johnson: I’d always thought of Doug Engelbart’s “mother of all demos” as an origin point for modern software interfaces. But writing this piece made it clear how much innovation went into creating the demo itself, including a key contribution from @stewartbrand https://hidden-heroes-ng.webflow.io/douglas-engelbart

Srini K 2022-07-30 12:43:15

Beautiful. Also his book is amazing where good ideas come from

Christopher Galtenberg 2022-07-30 14:11:09

Yes – why Adjacent Possible is now a coin of the realm

Srini K 2022-07-30 15:06:06

yes sir

Christopher Galtenberg 2022-07-31 19:44:58

🐦 Dana Sibera: I found this image in an old 68k mac's browser cache, probably there since the late 90s, and I think about it more often than I should.

the pleasure of computing https://pbs.twimg.com/media/FY9KJxeaQAA6ACT.jpg