HackerLangs
TopNewTrendsCommentsPastAskShowJobs

pekim

124 karmajoined 14 ปีที่แล้ว
mike@<hacker-news-user-name>.co.uk

Submissions

An Agent Holds the Fort: Three Days of Autonomous Compiler Work

rue-lang.dev
2 points·by pekim·30 วันที่ผ่านมา·0 comments

Release v2.0.0 · Charmbracelet/Bubbletea

github.com
1 points·by pekim·5 เดือนที่ผ่านมา·1 comments

comments

pekim
·23 ชั่วโมงที่ผ่านมา·discuss
> I'm pretty sure it didn't used to continue after getting one wrong.

You're right, it changed a few months ago. I find it more enjoyable now that you can continue to the end.
pekim
·เมื่อวานซืน·discuss
https://wordnerd.co/23words/ is similar (but 23 words instead of 18).

Possibly the biggest difference is that 23 Words continues with the next word if you fail to get a word within 30 seconds. When you have attempted all 23 words it will present you with results like this.

    You found 21/23 words
    
    Top 7% of players today.
pekim
·3 เดือนที่ผ่านมา·discuss
It's one codepoint, U+FDFD, with the name "Arabic Ligature Bismillah Ar-Rahman Ar-Raheem".

https://www.compart.com/en/unicode/U+FDFD
pekim
·3 เดือนที่ผ่านมา·discuss
I love singing, but I'm not very good at it. About 6 months ago I started attending a local Tuneless Choir[1]. It's just what I needed, and great fun.

[1] https://www.tunelesschoir.com/
pekim
·4 เดือนที่ผ่านมา·discuss
I posted about this last week [1], but it didn't get any traction. Although I used a link to the release page rather than the blog announcement, so maybe that was why.

ho hum

[1] https://news.ycombinator.com/item?id=47138688
pekim
·5 เดือนที่ผ่านมา·discuss
I noticed that Bubble Tea v2 [0] has been released. It looks like a great improvement all round over 1.x. The companion libraries lipgloss[1] and bubbles[2] have also had v2 releases.

[0] https://github.com/charmbracelet/bubbletea/releases/tag/v2.0... [1] https://github.com/charmbracelet/lipgloss/releases/tag/v2.0.... [2] https://github.com/charmbracelet/bubbles/releases/tag/v2.0.0
pekim
·6 เดือนที่ผ่านมา·discuss
Looking at https://github.com/stepandel/chroma-explorer/blob/master/pac... it looks like it's using Electron.
pekim
·6 เดือนที่ผ่านมา·discuss
As soon as I saw the scrolling "made by henry (from online)." at the bottom I thought "marquee" tag. Sure enough when I inspected the DOM it does use one.
pekim
·7 เดือนที่ผ่านมา·discuss
> Where I actually struggled with what's expected is Day 11.

Just the lines from the files are wanted, not the files names. It took me a little while to cotton on to that.

Semi-spoiler follows.

So you need to use the appropriate flag with grep to suppress the file names.
pekim
·8 เดือนที่ผ่านมา·discuss
Inserting elements in to a slice can be done quite easily since the introduction of the slices package to the standard library.

https://pkg.go.dev/slices#Insert
pekim
·8 เดือนที่ผ่านมา·discuss
I'm in the UK too. So I read the article courtesy of archive.is.

https://archive.is/X33oQ
pekim
·8 เดือนที่ผ่านมา·discuss
Darts might not be considered a sport, but the British Darts Organisation [1] and the Professional Darts Corporation [2] co-existed (somewhat acrimoniously) for nearly 30 years.

[1] https://en.wikipedia.org/wiki/British_Darts_Organisation (BDO)

[2] https://en.wikipedia.org/wiki/Professional_Darts_Corporation (PDC)
pekim
·9 เดือนที่ผ่านมา·discuss
> and a fingerprint sensor to identify who’s using the toilet

So it sounds like you would only need one camera for multiple people using the same toilet.
pekim
·9 เดือนที่ผ่านมา·discuss
So if I'm understanding it correctly, it applies an xor operation on the pairs of cells. For example, click column A then column B. For each of the pairs of cells in the two columns, it performs B = A xor B.
pekim
·10 เดือนที่ผ่านมา·discuss
As the animation loops it uses the same set of images over again. But as they all have a Cache-Control header with a value of "public, max-age=0, must-revalidate" the browser makes another request for every one of the images, every loop of the animation. It results in transfer of something of the order of 0.6MB/sec, with no end.