What is Hackers' Pub?

Hackers' Pub is a place for software engineers to share their knowledge and experience with each other. It's also an ActivityPub-enabled social network, so you can follow your favorite hackers in the fediverse and get their latest posts in your feed.

0
2
0
0

ISBN์˜ ํ•จ์ •
------------------------------
- ์˜ํ™” ๊ธฐ๋ก ์•ฑ
Letterboxd ์ฒ˜๋Ÿผ ๊น”๋”ํ•˜๊ณ  ์‹ค์šฉ์ ์ธ ๋„์„œ ๊ธฐ๋ก ์•ฑ์„ ๋งŒ๋“ค๋ ค๋Š” ์‹œ๋„์ค‘์—, ISBN ์ฒด๊ณ„์˜ ๊ตฌ์กฐ์  ๋ฌธ์ œ๊ฐ€ ํ•ต์‹ฌ ์žฅ์• ๋ฌผ์ด์—ˆ์Œ
- ์ฑ… ๊ฒ€์ƒ‰ ๊ธฐ๋Šฅ์„ ์œ„ํ•œ
Google Books API ๊ฐ€ ๋™์ผํ•œ ์ž‘ํ’ˆ์˜ ์—ฌ๋Ÿฌ *ISBN ๋ฒ„์ „* ์„ ๊ฐ๊ฐ ๋‹ค๋ฅธ ํ•ญ๋ชฉ์œผ๋กœ ๋ฐ˜ํ™˜ํ•˜๋Š” ๋ฌธ์ œ๋ฅผ ๋ฐœ๊ฒฌ
- ์ด๋Š” *์„œ์ง€ํ•™์  ๊ตฌ์กฐ(FRBR ๋ชจ๋ธ)* ์—์„œ โ€˜โ€ฆ
------------------------------
https://news.hada.io/topic?id=26854&utm_source=googlechat&utm_medium=bot&utm_campaign=1834

0

์‚ผ์„ฑ์€ ์˜ค๋žœ ๊ธฐ๊ฐ„ OLED TV ์ถœ์‹œ๋ฅผ ๋ฏธ๋ค„์™”์ง€๋งŒ, ์ด์ œ ๊ฐ•๋ ฅํ•œ ์„ฑ์žฅ์„ธ๋ฅผ ๋ณด์ด๊ณ  ์žˆ๋‹ค. www.flatpanelshd.com/news.php?sub... ์ง„์งœ ์‚ผ์„ฑ ํ‹ฐ๋น„์‚ฌ์—…๋ถ€์˜ ๋†’์€ ๋†ˆ๋“ค์ด ์ง„์งœ ๋งค๊ตญ๋…ธ ๊ฐœ์ƒˆ๋ผ์ธ ์ด์œ ๊ฐ€ OLED ์‚ฌ์—… ํ•˜๊ธฐ ์‹ซ๋‹ค๊ณ  TCL์— 11์„ธ๋Œ€ ๊ณต์ • ๋ฒ„๊ทธ ์žก์•„๋ถ€๋‹จ ์ƒˆ๋ผ๋“ค์ž„. ๋นจ๋ฆฌ OLED ์ „ํ™˜์„ ํ•˜๋˜๊ฐ€ ํ–ˆ์–ด์•ผ ํ–ˆ๋Š”๋ฐ ์—˜์ง€๋””๊ฐ€ ์ค‘๊ตญ์— OLED ํŒจ๋„ ๊ณต์žฅ ๋งŒ๋“ ๋‹ค๊ณ  ์–ธํ”Œ ์กด๋‚˜๊ฒŒ ํ•˜๋‹ค๊ฐ€ ์ด์ œ์™€์„œ TCL์ด ๊ฐ€์งœ QLED๋ผ๊ณ  ์–ธํ”Œํ•˜๋Š”๊ฑฐ ๋ณด๋ฉด -_- ์ด๋ ‡๊ฒŒ ํ•˜๋ฉด ๋˜๋Š” ๋†ˆ๋“ค์ด ์ •๋ง.....

Samsung sees strong OLED TV gr...

0

The headline does not convey how completely batshit this story is. The Archive Today (archive.ph etc) admin weaponized the site's captcha to attack a blogger who wrote about them and *altered archived screenshots* as part of the attack. arstechnica.com/tech-policy/...

Wikipedia blacklists Archive.t...

0
1
0
0
0
12
0
0
0

but yeah i'm pretty excited about potential for pairs where there's a thing above that decides something and things below that play along those rules. it's really fun to do with custom primitives

0
0
0

ใใ†ใ•ใใƒžใƒผใ‚ฑใƒƒใƒˆใŠๅ“ๆ›ธใ๏ผˆๆœ€ๆ–ฐ็‰ˆ๏ผ‰ใงใ™๏ผ
ๅฝ“ๆ—ฅใฉใ†ใžใ‚ˆใ‚ใ—ใใŠ้ก˜ใ„ใ„ใŸใ—ใพใ™ใƒปใƒปใƒป๏ผ

1

I ported @mattmightโ€™s conversion code (matt.might.net/articles/cps-co) to and after some fighting with the type system, it worked! To make the work with the Cont monad, I had to remove recursive lets and hence, functions being able to call themselves recursively, but the rest works fine.

The attached images show the conversion of the Fibonacci function into the CPS version.

Fibonacci function in Lisp:

(let
  ([fib
     (ฮป (n)
       (let
         ([fib'
            (ฮป (n f)
              (if (= n 0)
                0
                (if (= n 1)
                  1 
                  (+ (f (- n 1) f) (f (- n 2) f)))))])
         (fib' n fib')))])
  (fib 10))CPS version of Fibonacci function in Lisp:

(let
  ([fib
     (ฮป (n k0)
       (let
         ([fib'
            (ฮป (n f k1)
              ((ฮป (k2)
                 ((ฮป (v3)
                    (if v3
                      (k2 0)
                      ((ฮป (k4)
                         ((ฮป (v5)
                            (if v5
                              (k4 1)
                              ((ฮป (v9)
                                 (f v9 f
                                   (ฮป (v6)
                                     ((ฮป (v8)
                                        (f v8 f 
                                          (ฮป (v7) 
                                            (k4 (+ v6 v7)))))
                                      (- n 2)))))
                               (- n 1))))
                          (= n 1)))
                       k2)))
                  (= n 0)))
               k1))])
         (fib' n fib' k0)))])
  (fib 10 return))
0
0
1

AppleใฎDeveloper็™ป้Œฒๅพฉๆดปใ•ใ›ใฆใ„ใใคใ‹WWDCใฎใƒ“ใƒ‡ใ‚ช่ฆ‹ใฆใŸใ‘ใฉใ€Coreใฎใƒ•ใƒฌใƒผใƒ ใƒฏใƒผใ‚ฏใฃใฆใ‹ใชใ‚Šๅ……ๅฎŸใ—ใฆใ‚‹ใ‚“ใ ใญใ€‚
ใƒญใƒผใ‚ซใƒซAIไฝฟใ†Core Foundatuonใฏใปใ‚“ใจไฝฟใ„ใ‚„ใ™ใใ†ใ€‚

0

I spend last the two weeks immersed in and , and learned:

1. How to write Nix config for a Haskell project from scratch (abhinavsarkar.net/posts/nix-fo).
2. How to create static executables with Nix for Haskell code.
3. How to build Docker images with Nix.
4. How to run a Linux builder for Nix on Macos.
5. How to use the Linux builder to build and deploy to Nixos machines from Macos.

All of these have been on my mind for months, and itโ€™s nice to finally figure it all out.

0

i found it annoying that css variables don't have a natural way to accumulate values (there's some convoluted workaround with alternating css variable names but i haven't tried it). seems like there's proposals for fixing this though

0
0
2

ใƒกใ‚คใƒณๆฉŸใŒใƒŸใƒ‹PCใงๅฟƒใ‚‚ใจใชใ„ใฎใงใ‚ตใƒ–ๆฉŸใŒๆฌฒใ—ใ‹ใฃใŸใจใ“ใ‚

0
0
1
0
0
0

until.blog/explore?tab=... ์‹ฌ์ง€์–ด ๊ทธ๋ฃน ๋ธ”๋กœ๊ทธ ๊ธฐ๋Šฅ๋„ ์žˆ์–ด์„œ ์ปค๋ฎค ๋Œ€์šฉ์œผ๋กœ๋„ ์–ด๋А ์ •๋„ ์‚ฌ์šฉ ๊ฐ€๋Šฅํ•˜๋‹ค๋Š” ์žฅ์ ๋„ ์žˆ์Œ

RE: https://bsky.app/profile/did:plc:drxb2chvy3gk6g7yb3rripxo/post/3mfb55yij622h


Explore until

0
1
0

โณ Only 2 days left to get your in-person tickets!

In-person ticket sales close Sunday at 11:59 PM. After that, only virtual tickets will be available.

Secure your spot now ๐Ÿ‘‰ https://lepointdevente.com/billets/mns260224001?lang=en

#FediMTL #Fediverse #SocialWeb #DigitalSovereignty

FediMTL 2026 - February 24th 2026 - Le Ministรจre, Montrรฉal, QC - Thepointofsale.com

FediMTL 2026 | Digital Sovereignty and the Social WebConference ยท Panels ยท NetworkingFediMTL brings international and Canadian leaders to Montreal for a full day of talks and discussions focused on digital sovereignty and the future of the open social web.Co-presented by the Social Web Foundation, Qlub, and FediHost, the event is designed for developers, creators, journalists, policymakers, and citizens who want to better understand how the fediverse โ€” a decentralized technology โ€” enables people and communities to regain control over their data, support local digital infrastructure, and build interoperable, sustainable online communities.Under the theme โ€œAn Independent Digital Future,โ€ FediMTL will feature conferences, panels, and exchanges with key figures from the social web ecosystem, including co-authors of the ActivityPub protocol, open-source platform developers, and leaders working in public-interest digital innovation.The event will take place with seated audiences and will also be available via live webcast.In-person tickets: $50 + tax (includes lunch and coffee breaks) Virtual tickets: $20 + tax โ€” click here Tickets at the door: $65 + tax (includes lunch and coffee breaks) Follow FediMTL on GoToSocial: https://social.fedimtl.ca/@info-----Unless otherwise specified by the producer, the show will be presented to a standing audience.*Audience configuration is subject to change without notice, depending on the number of tickets sold.-----๏ปฟ*Please note that Le Ministรจre does not accept cash. We accept credit and debit cards only. All ticket purchases are made online, even on the day of the show at the door.

lepointdevente.com

0
0

์ดˆ๋ณด์ž๋ฅผ ์œ„ํ•œ ์Šคํ”Œ๋ฆฟ ํ‚ค๋ณด๋“œ ๊ฐ€์ด๋“œ
------------------------------
- ๊ธฐ์กด ํ‚ค๋ณด๋“œ์˜ *์†๋ชฉ ๊บฝ์ž„* ๊ณผ *์–ด๊นจ ๊ธด์žฅ* ์„ ์ค„์ด๊ธฐ ์œ„ํ•ด ์ขŒ์šฐ ์ ˆ๋ฐ˜์„ ๋ถ„๋ฆฌํ•œ *์Šคํ”Œ๋ฆฟ(๋ถ„๋ฆฌํ˜•) ํ‚ค๋ณด๋“œ* ๊ฐ€ ์ธ์ฒด๊ณตํ•™์  ๋Œ€์•ˆ์œผ๋กœ ์ฃผ๋ชฉ๋ฐ›๊ณ  ์žˆ์œผ๋ฉฐ, ๋‹ค์–‘ํ•œ ํ˜•ํƒœ์™€ ๊ฐ€๊ฒฉ๋Œ€์˜ ์ œํ’ˆ์ด ์กด์žฌํ•จ
- ํ•™์Šต ๊ณก์„  ์—†์ด ๊ธฐ์กด ๊ทผ์œก ๊ธฐ์–ต์„ ์œ ์ง€ํ•˜๋ ค๋Š” ์‚ฌ์šฉ์ž๋ฅผ ์œ„ํ•œ *ํ–‰ ๋ฐฐ์—ด ์Šคํ”Œ๋ฆฟ* ๋ถ€ํ„ฐ, ๋ณธ๊ฒฉ์  ์ธ์ฒด๊ณตํ•™์„ ์›ํ•˜๋Š” ์‚ฌ์šฉ์ž๋ฅผโ€ฆ
------------------------------
https://news.hada.io/topic?id=26853&utm_source=googlechat&utm_medium=bot&utm_campaign=1834

0
0
0
7
0
0
0

็›ธไบ’้–ข็จŽใฏ้•ๆ†ฒใจใ™ใ‚‹็ฑณๆœ€้ซ˜่ฃๅˆคๆฑบใ‚’ๅ—ใ‘ใฆใ€ใ„ใพใพใงๅŽใ‚ใŸ้–ข็จŽ่ฟ”ใ›่จด่จŸใŒๅคš็™บใ™ใ‚‹ใฎใงใฏใ€‚

ๆ—ฅๆœฌใฎ็ฑณๅ›ฝๆŠ•่ณ‡80ๅ…†ๅ††ใ‚‚ใŠใ‹ใ—ใชใ“ใจใซใชใ‚‹ใ‚ˆใญใ€‚็›ธไบ’้–ข็จŽใ‚’ไธ‹ใ’ใฆใ‚‚ใ‚‰ใ†่ฆ‹่ฟ”ใ‚Šใ ใฃใŸใฎใงใ€็›ธไบ’้–ข็จŽใŒ่ชฒ็จŽใงใใชใ„ใจใชใฃใŸใ‚‰ใ€ใใฎๅ‰ๆใŒๅนใฃ้ฃ›ใ‚“ใงใ—ใพใ†ใ€‚

0
0
0
0

It certainly was a decisionยน for that car to drive into and up a (currentlyยฒ) narrow one-way street when there was a fire truck with its flashers on stopped right in the middle of the block. Maybe not a good one. (It backed out.)

ยน a decision made by the driver, but that's awkward phrasing.
ยฒ thanks, giant Toronto snowfall that still hasn't been cleared away and is now garnished with large water puddles that will probably freeze to tiny skating rinks.

0
0

yarn serveใงjekyllใฎใƒ—ใƒฌใƒ“ใƒฅใƒผใ‚’็ขบ่ชใ—ใ‚ˆใ†ใจใ—ใฆใ—ใพใ†ใ€‚1้€ฑ้–“ใถใ‚Š2ๅ›ž็›ฎใ€‚

0
0
2
0
0
0
0

i'm not sure whether this is something the link author should choose, or the tree structure above it (contextual), or the user preference, or some combination of those. but it's probably somehow contextual. i've heard people talking about "intents" and maybe you can do that. but easy to overengineer

0
1

i currently have a system where components can claim to be "views" of a certain record type or of identities, but this is more of a discovery/indexing mechanism. you'd still somehow have to choose between them โ€” Post, PostThread, PostQuotes, or PostThreadTree?

0

๊ตญ๋ฏผ์˜ํž˜ ์ƒˆ ๋‹น๋ช… ํ›„๋ณด๊ฐ€ โ€˜๋ฏธ๋ž˜์—ฐ๋Œ€โ€™์™€ โ€˜๋ฏธ๋ž˜๋ฅผ์—ฌ๋Š”๊ณตํ™”๋‹นโ€™ ๋‘ ๊ฐœ๋กœ ์••์ถ•๋์Šต๋‹ˆ๋‹ค.

๊ตญํž˜, ๊ณตํ™”๋‹น ๋˜๋‚˜โ€ฆ์ƒˆ ๋‹น๋ช… โ€˜๋ฏธ๋ž˜์—ฐ๋Œ€โ€™ โ€˜๋ฏธ๋ž˜๋ฅผ ์—ฌ๋Š”...

0