Skip to contents

Retrieves newest stories using Hacker News API

Usage

get_new_stories(max_items = NULL)

Arguments

max_items

Maximum number of items to retrieve. If max_items = NULL, returns all available

Value

list of new stories

Examples


# \donttest{
# get the newest story on Hacker News
newest_story <- get_new_stories(max_items = 1)
newest_story
#> [[1]]
#> List of 9
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43626184
#>  $ kids       : int 43626193
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:35:59"
#>  $ title      : chr "Someone Made a 4×4 Honda Prelude by Adding a Second Engine"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thedrive.com/news/someone-made-a-4x4-honda-prelude-by-adding-a-second-engine"
#>  - attr(*, "class")= chr "hn_item"
#> 

# get all new stories on Hacker News
new_stories <- get_new_stories()
#> [working] (364 + 0) -> 10 -> 126 | ■■■■■■■■■                         25%
#> [working] (0 + 0) -> 0 -> 500 | ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■  100%
new_stories
#> [[1]]
#> List of 9
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43626184
#>  $ kids       : int 43626193
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:35:59"
#>  $ title      : chr "Someone Made a 4×4 Honda Prelude by Adding a Second Engine"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thedrive.com/news/someone-made-a-4x4-honda-prelude-by-adding-a-second-engine"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[2]]
#> List of 9
#>  $ by         : chr "donnachangstein"
#>  $ descendants: int 0
#>  $ id         : int 43626168
#>  $ kids       : int 43626173
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:34:03"
#>  $ title      : chr "AquaFox: A web browser designed for PowerPC Macs running Mac OS X 10.4"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blackbirdlc.github.io/aquafox/Homepage.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[3]]
#> List of 9
#>  $ by         : chr "niklasbuschmann"
#>  $ descendants: int 0
#>  $ id         : int 43626167
#>  $ kids       : int 43626204
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:33:59"
#>  $ title      : chr "Users Are Getting Scammed Out of Money on Trump's Truth Social"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.rollingstone.com/politics/politics-news/users-scammed-money-trump-truth-social-1235127287/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[4]]
#> List of 9
#>  $ by         : chr "luu"
#>  $ descendants: int 0
#>  $ id         : int 43626158
#>  $ kids       : int 43626170
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:32:37"
#>  $ title      : chr "GitHub opt-out for LLM training opts me back in after a few tenths of a second"
#>  $ type       : chr "story"
#>  $ url        : chr "https://ruby.social/@pushcx/114304225719976203"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[5]]
#> List of 9
#>  $ by         : chr "CHEF-KOCH"
#>  $ descendants: int 0
#>  $ id         : int 43626144
#>  $ kids       : int 43626201
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:30:40"
#>  $ title      : chr "OpenSSL 3.5 [LTS] Released"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/openssl/openssl/blob/master/CHANGES.md"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[6]]
#> List of 9
#>  $ by         : chr "melling"
#>  $ descendants: int 0
#>  $ id         : int 43626133
#>  $ kids       : int 43626165
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:29:51"
#>  $ title      : chr "Trump to Sign Order Aimed at Reviving a Struggling Coal Industry"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/08/climate/trump-order-coal-mining.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[7]]
#> List of 9
#>  $ by         : chr "star_boyzz"
#>  $ descendants: int 0
#>  $ id         : int 43626125
#>  $ kids       : int 43626126
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:29:00"
#>  $ title      : chr "Saw vorq.ai today, interesting approach for a parked domain"
#>  $ type       : chr "story"
#>  $ url        : chr "https://vorq.ai"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[8]]
#> List of 9
#>  $ by         : chr "CalvinTWebber"
#>  $ descendants: int 0
#>  $ id         : int 43626117
#>  $ kids       : int 43626124
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:28:03"
#>  $ title      : chr "How to buy Monero with no KYC Legally"
#>  $ type       : chr "story"
#>  $ url        : chr "https://monero.forex/how-to-buy-monero/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[9]]
#> List of 8
#>  $ by         : chr "handfuloflight"
#>  $ descendants: int 0
#>  $ id         : int 43626112
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:27:27"
#>  $ title      : chr "Information and data will never deliver creativity"
#>  $ type       : chr "story"
#>  $ url        : chr "https://iai.tv/articles/information-and-data-will-never-deliver-creativity-auid-3132"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[10]]
#> List of 8
#>  $ by         : chr "tysone"
#>  $ descendants: int 0
#>  $ id         : int 43626111
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:27:25"
#>  $ title      : chr "Will A.I. Save the News?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.newyorker.com/culture/open-questions/will-ai-save-the-news"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[11]]
#> List of 8
#>  $ by         : chr "jacobobryant"
#>  $ descendants: int 0
#>  $ id         : int 43626108
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:27:12"
#>  $ title      : chr "Yakread's Ranking Algorithm"
#>  $ type       : chr "story"
#>  $ url        : chr "https://obryant.dev/p/yakread-algorithm/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[12]]
#> List of 8
#>  $ by         : chr "Felipe_O"
#>  $ descendants: int 0
#>  $ id         : int 43626092
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:24:40"
#>  $ title      : chr "AI in News Reporting"
#>  $ type       : chr "story"
#>  $ url        : chr "https://unbiasedai.tech/blog/ai-in-news-reporting-opportunities-and-benefits/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[13]]
#> List of 8
#>  $ by         : chr "linktothenew"
#>  $ descendants: int 0
#>  $ id         : int 43626087
#>  $ score      : int 1
#>  $ text       : chr "Just curious what everybody thinks about how we will use MCP servers in the future.  The thing I am stuck on is"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:23:57"
#>  $ title      : chr "Ask HN: How will we integrate MCP servers in the future for all of our devtools?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[14]]
#> List of 8
#>  $ by         : chr "yevgen_s"
#>  $ descendants: int 0
#>  $ id         : int 43626067
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:21:12"
#>  $ title      : chr "Hyperdrive speeds up access to databases"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.cloudflare.com/how-hyperdrive-speeds-up-database-access/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[15]]
#> List of 8
#>  $ by         : chr "fbn79"
#>  $ descendants: int 0
#>  $ id         : int 43626064
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:20:52"
#>  $ title      : chr "Tumors Have a Taste for Fructose, If It's Transformed by the Liver"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.genengnews.com/topics/cancer/tumors-have-a-taste-for-fructose-if-its-transformed-by-the-liver/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[16]]
#> List of 8
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 0
#>  $ id         : int 43626054
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:20:22"
#>  $ title      : chr "Shorty: A C++ library for concise lambdas"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/hanickadot/shorty"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[17]]
#> List of 8
#>  $ by         : chr "gnabgib"
#>  $ descendants: int 0
#>  $ id         : int 43626027
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:16:55"
#>  $ title      : chr "ML-KEM Post-Quantum TLS Now Supported in AWS KMS, ACM, and Secrets Manager"
#>  $ type       : chr "story"
#>  $ url        : chr "https://aws.amazon.com/blogs/security/ml-kem-post-quantum-tls-now-supported-in-aws-kms-acm-and-secrets-manager/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[18]]
#> List of 9
#>  $ by         : chr "xbmcuser"
#>  $ descendants: int 0
#>  $ id         : int 43626017
#>  $ kids       : int 43626097
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:15:57"
#>  $ title      : chr "Coal is dead and Trump's executive order won't revive it – Electrek"
#>  $ type       : chr "story"
#>  $ url        : chr "https://electrek.co/2025/04/08/coal-is-dead-and-trumps-executive-order-wont-revive-it/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[19]]
#> List of 8
#>  $ by         : chr "em-bee"
#>  $ descendants: int 0
#>  $ id         : int 43626007
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:14:29"
#>  $ title      : chr "Advanced React in the Wild"
#>  $ type       : chr "story"
#>  $ url        : chr "https://largeapps.dev/case-studies/advanced/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[20]]
#> List of 8
#>  $ by         : chr "tanelpoder"
#>  $ descendants: int 0
#>  $ id         : int 43626001
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:13:56"
#>  $ title      : chr "Visualizing Embedding Vectors of the Same Image, Rotated over 360 Degrees"
#>  $ type       : chr "story"
#>  $ url        : chr "https://tanelpoder.com/posts/comparing-vectors-of-the-same-rotated-image/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[21]]
#> List of 8
#>  $ by         : chr "donnaoana"
#>  $ descendants: int 0
#>  $ id         : int 43625998
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:13:36"
#>  $ title      : chr "When to sell your early stage startup"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.anti-vc.com/p/the-unfiltered-truth-about-early"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[22]]
#> List of 8
#>  $ by         : chr "sijuntan"
#>  $ descendants: int 0
#>  $ id         : int 43625963
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:10:23"
#>  $ title      : chr "DeepCoder: An Open-Source 14B Coder at O3-Mini Level"
#>  $ type       : chr "story"
#>  $ url        : chr "https://pretty-radio-b75.notion.site/DeepCoder-A-Fully-Open-Source-14B-Coder-at-O3-mini-Level-1cf81902c14680b3bee5eb349a512a51"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[23]]
#> List of 8
#>  $ by         : chr "schappim"
#>  $ descendants: int 2
#>  $ id         : int 43625950
#>  $ kids       : int [1:4] 43625980 43625975 43625969 43625957
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:08:49"
#>  $ title      : chr "Ask HN: What Are Your Favourite Self-Hosted Tools in 2025?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[24]]
#> List of 9
#>  $ by         : chr "gnabgib"
#>  $ descendants: int 0
#>  $ id         : int 43625927
#>  $ kids       : int 43625940
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:06:52"
#>  $ title      : chr "UTSA researchers investigate AI threats in software development"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.utsa.edu/today/2025/04/story/utsa-researchers-investigate-AI-threats.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[25]]
#> List of 8
#>  $ by         : chr "connortbot"
#>  $ descendants: int 0
#>  $ id         : int 43625908
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:04:29"
#>  $ title      : chr "Show HN: Squeak – Learn languages with news articles tailored to CEFR and topic"
#>  $ type       : chr "story"
#>  $ url        : chr "https://squeak.today/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[26]]
#> List of 9
#>  $ by         : chr "miclys"
#>  $ descendants: int 0
#>  $ id         : int 43625868
#>  $ kids       : int 43625890
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:00:37"
#>  $ title      : chr "OceanSim: GPU-Accelerated Underwater Simulator"
#>  $ type       : chr "story"
#>  $ url        : chr "https://teckrize.blogspot.com/2025/04/university-of-michigan-researchers.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[27]]
#> List of 8
#>  $ by         : chr "ovaistariq"
#>  $ descendants: int 0
#>  $ id         : int 43625865
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:00:25"
#>  $ title      : chr "The Storage API That Ate the World (and What We're Doing About It)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.tigrisdata.com/blog/s3-compat/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[28]]
#> List of 9
#>  $ by         : chr "jamesriso"
#>  $ descendants: int 2
#>  $ id         : int 43625864
#>  $ kids       : int [1:2] 43626079 43626036
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:00:22"
#>  $ title      : chr "How to Recognize Woodpeckers by Their Drumming Sounds"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.allaboutbirds.org/news/how-to-recognize-woodpeckers-by-their-drumming-sounds/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[29]]
#> List of 9
#>  $ by         : chr "paulpauper"
#>  $ descendants: int 0
#>  $ id         : int 43625861
#>  $ kids       : int 43625862
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 20:00:05"
#>  $ title      : chr "AI 2027: Responses"
#>  $ type       : chr "story"
#>  $ url        : chr "https://thezvi.substack.com/p/ai-2027-responses"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[30]]
#> List of 8
#>  $ by         : chr "paulpauper"
#>  $ descendants: int 0
#>  $ id         : int 43625857
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:59:46"
#>  $ title      : chr "Might Makes the Best Right"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.overcomingbias.com/p/might-makes-the-best-right"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[31]]
#> List of 8
#>  $ by         : chr "paulpauper"
#>  $ descendants: int 0
#>  $ id         : int 43625853
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:59:30"
#>  $ title      : chr "Fake dire wolves; AI tariffs chaos; neuroimaging's big mistake"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theintrinsicperspective.com/p/fake-dire-wolves-ai-tariffs-chaos"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[32]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43625835
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:57:44"
#>  $ title      : chr "The Paradox of Prosperity: How Urban Renewal Pushes Workers to the Periphery"
#>  $ type       : chr "story"
#>  $ url        : chr "https://lithub.com/the-paradox-of-prosperity-how-urban-renewal-pushes-workers-to-the-periphery/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[33]]
#> List of 9
#>  $ by         : chr "ivewonyoung"
#>  $ descendants: int 1
#>  $ id         : int 43625833
#>  $ kids       : int [1:2] 43625939 43625948
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:57:43"
#>  $ title      : chr "Twitch and X reach deal to drop Twitch from X's lawsuit over ad spending"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/legal/musks-x-reaches-deal-drop-twitch-lawsuit-over-ad-spending-2025-04-08/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[34]]
#> List of 8
#>  $ by         : chr "bufferoverflow"
#>  $ descendants: int 0
#>  $ id         : int 43625826
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:56:59"
#>  $ title      : chr "BYD Sweatshops Erupt in Riots, with Thousands on Strike for Several Days [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=UUR3-KNHz4Q"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[35]]
#> List of 8
#>  $ by         : chr "stevekrouse"
#>  $ descendants: int 0
#>  $ id         : int 43625823
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:56:51"
#>  $ title      : chr "The Val Town Blog Is Now Hosted on Val Town"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.val.town/migration"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[36]]
#> List of 8
#>  $ by         : chr "tylertreat"
#>  $ descendants: int 0
#>  $ id         : int 43625815
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:56:02"
#>  $ title      : chr "Stop Treating YAML Like a String"
#>  $ type       : chr "story"
#>  $ url        : chr "https://theyamlengineer.com/stop-treating-yaml-like-a-string"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[37]]
#> List of 9
#>  $ by         : chr "Anon84"
#>  $ descendants: int 0
#>  $ id         : int 43625813
#>  $ kids       : int 43625867
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:55:50"
#>  $ title      : chr "Andrej Karpathy: How I Use LLMs [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=EWvNQjAaOHw"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[38]]
#> List of 9
#>  $ by         : chr "pseudolus"
#>  $ descendants: int 2
#>  $ id         : int 43625800
#>  $ kids       : int [1:2] 43626028 43625870
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:53:53"
#>  $ title      : chr "Trump believes iPhones can be made in the US, says White House"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theverge.com/news/645355/trump-us-iphone-manufacturing-dream-steve-jobs-tim-cook"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[39]]
#> List of 9
#>  $ by         : chr "tie-in"
#>  $ descendants: int 1
#>  $ id         : int 43625756
#>  $ kids       : int [1:3] 43625768 43625772 43625769
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:47:58"
#>  $ title      : chr "OutRun meets Hockney: discovering Hiroshi Nagai's luminous videogame spaces (2023)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.eurogamer.net/outrun-meets-hockney-discovering-hiroshi-nagais-luminous-videogame-spaces"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[40]]
#> List of 9
#>  $ by         : chr "whack"
#>  $ descendants: int 1
#>  $ id         : int 43625730
#>  $ kids       : int 43625743
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:45:09"
#>  $ title      : chr "Jay North, Child Star of 'Dennis the Menace,' Dies at 73"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/06/arts/television/jay-north-dennis-the-menance-dead.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[41]]
#> List of 9
#>  $ by         : chr "Willingham"
#>  $ descendants: int 1
#>  $ id         : int 43625693
#>  $ kids       : int [1:2] 43626192 43625750
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:41:03"
#>  $ title      : chr "Japanese railway shelter replaced in less than 6 hours by 3D-printed model"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/gadgets/2025/04/japanese-railway-shelter-replaced-in-less-than-6-hours-by-3d-printed-model/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[42]]
#> List of 9
#>  $ by         : chr "sm001"
#>  $ descendants: int 1
#>  $ id         : int 43625689
#>  $ kids       : int 43625690
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:40:44"
#>  $ title      : chr "New video with multiple UAPs from skywatcher.ai"
#>  $ type       : chr "story"
#>  $ url        : chr "https://skywatcher.ai/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[43]]
#> List of 8
#>  $ by         : chr "czottmann"
#>  $ descendants: int 0
#>  $ id         : int 43625686
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:39:59"
#>  $ title      : chr "Show HN: BarCuts – A surprisingly useful macOS Shortcuts launcher"
#>  $ type       : chr "story"
#>  $ url        : chr "https://actions.work/barcuts/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[44]]
#> List of 9
#>  $ by         : chr "nsriv"
#>  $ descendants: int 0
#>  $ id         : int 43625681
#>  $ kids       : int 43625721
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:38:39"
#>  $ title      : chr "Apple Inc vs. Secretary of State for the Home Department"
#>  $ type       : chr "story"
#>  $ url        : chr "https://investigatorypowerstribunal.org.uk/judgement/apple-inc-v-secretary-of-state-for-the-home-department/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[45]]
#> List of 9
#>  $ by         : chr "exolymph"
#>  $ descendants: int 0
#>  $ id         : int 43625672
#>  $ kids       : int 43625742
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:37:11"
#>  $ title      : chr "Completing a Creative Project"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.sonyasupposedly.com/completing-a-creative-project/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[46]]
#> List of 9
#>  $ by         : chr "amichail"
#>  $ descendants: int 0
#>  $ id         : int 43625670
#>  $ kids       : int [1:2] 43625755 43625717
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:36:57"
#>  $ title      : chr "New York warns travellers about Canada: ‘Measles is just a car ride away!’"
#>  $ type       : chr "story"
#>  $ url        : chr "https://globalnews.ca/news/11121140/measles-outbreak-canada-new-york-warning/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[47]]
#> List of 9
#>  $ by         : chr "speckx"
#>  $ descendants: int 2
#>  $ id         : int 43625637
#>  $ kids       : int [1:2] 43625767 43625654
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:33:12"
#>  $ title      : chr "Tariffs Force Lotus, JLR, VW, and Audi to Pause US Shipments"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.motor1.com/news/755854/automakers-pause-shipments-to-us/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[48]]
#> List of 8
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 0
#>  $ id         : int 43625633
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:32:26"
#>  $ title      : chr "The SRE regular-expression notation (1998)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.khoury.northeastern.edu/~shivers/papers/sre.txt"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[49]]
#> List of 9
#>  $ by         : chr "doener"
#>  $ descendants: int 0
#>  $ id         : int 43625614
#>  $ kids       : int 43625619
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:29:49"
#>  $ title      : chr "Razer pauses direct laptop sales in the US as new tariffs loom"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theverge.com/news/645276/razer-blade-gaming-laptops-sales-pause-us-tariffs"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[50]]
#> List of 9
#>  $ by         : chr "gnabgib"
#>  $ descendants: int 1
#>  $ id         : int 43625596
#>  $ kids       : int [1:2] 43626063 43625601
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:27:46"
#>  $ title      : chr "Under 16 no longer allowed to livestream on Instagram without parental consent"
#>  $ type       : chr "story"
#>  $ url        : chr "https://apnews.com/article/meta-instagram-facebook-teen-online-safety-e79cc36bfc3a08f9386ebb99abd4c73d"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[51]]
#> List of 8
#>  $ by         : chr "terhechte"
#>  $ descendants: int 0
#>  $ id         : int 43625592
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:27:18"
#>  $ title      : chr "Give Cursor access to Rust's type system and tooling"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/terhechte/cursor-rust-tools"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[52]]
#> List of 9
#>  $ by         : chr "gnabgib"
#>  $ descendants: int 0
#>  $ id         : int 43625553
#>  $ kids       : int 43625582
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:22:23"
#>  $ title      : chr "Does US science have a future in Antarctica? Trump cuts threaten fieldwork"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nature.com/articles/d41586-025-01055-6"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[53]]
#> List of 10
#>  $ by         : chr "coziestSoup"
#>  $ descendants: int 0
#>  $ id         : int 43625552
#>  $ kids       : int 43625579
#>  $ score      : int 1
#>  $ text       : chr "Hey there!\nI love making games! But I haven&#x27;t had much time to do it lately. So when Vibe Coded games sta"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:22:12"
#>  $ title      : chr "Show HN: VibeTankArena – 1 on 1 tank battles"
#>  $ type       : chr "story"
#>  $ url        : chr "https://vibe-tank-arena.vercel.app/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[54]]
#> List of 9
#>  $ by         : chr "hn_acker"
#>  $ descendants: int 4
#>  $ id         : int 43625528
#>  $ kids       : int [1:5] 43625673 43626145 43625529 43625749 43625545
#>  $ score      : int 9
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:20:42"
#>  $ title      : chr "Texas Judge Allows Prior Restraint to Silence a Critic of PTK Honor Society"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.techdirt.com/2025/04/08/texas-judge-says-prior-restraint-is-cool-and-legal-while-silencing-a-critic"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[55]]
#> List of 9
#>  $ by         : chr "booplasterboard"
#>  $ descendants: int 0
#>  $ id         : int 43625513
#>  $ kids       : int 43625530
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:19:08"
#>  $ title      : chr "Dough Canvas monitor might be the Studio Display alternative you're waiting for"
#>  $ type       : chr "story"
#>  $ url        : chr "https://petapixel.com/2025/04/07/dough-canvas-is-a-crowd-developed-32-inch-6k-monitor-for-creative-pros/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[56]]
#> List of 9
#>  $ by         : chr "radeeyate"
#>  $ descendants: int 2
#>  $ id         : int 43625509
#>  $ kids       : int [1:3] 43626159 43625973 43625512
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:18:52"
#>  $ title      : chr "Kermit Font"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.kermit-font.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[57]]
#> List of 8
#>  $ by         : chr "jger15"
#>  $ descendants: int 0
#>  $ id         : int 43625506
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:18:07"
#>  $ title      : chr "Repeat great words, repeat them stubbornly"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.henrikkarlsson.xyz/p/repeat-great-words"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[58]]
#> List of 9
#>  $ by         : chr "passSrs"
#>  $ descendants: int 0
#>  $ id         : int 43625484
#>  $ kids       : int 43625518
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:15:03"
#>  $ title      : chr "Finland: 105,000 Satula.com Records Exposed in Unsecured AWS"
#>  $ type       : chr "story"
#>  $ url        : chr "https://medium.com/@newschu.substack.com/finland-105-000-satula-com-records-exposed-in-unsecured-aws-be7318ca5523"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[59]]
#> List of 9
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 17
#>  $ id         : int 43625474
#>  $ kids       : int [1:10] 43625723 43625827 43625978 43625616 43625571 43625718 43625757 43626089 43625664 43625671
#>  $ score      : int 71
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:13:50"
#>  $ title      : chr "Obituary for Cyc"
#>  $ type       : chr "story"
#>  $ url        : chr "https://yuxi-liu-wired.github.io/essays/posts/cyc/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[60]]
#> List of 9
#>  $ by         : chr "Tomte"
#>  $ descendants: int 4
#>  $ id         : int 43625452
#>  $ kids       : int [1:5] 43626029 43626039 43625659 43625775 43625732
#>  $ score      : int 19
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:11:41"
#>  $ title      : chr "Solving a \"Layton Puzzle\" with Prolog"
#>  $ type       : chr "story"
#>  $ url        : chr "https://buttondown.com/hillelwayne/archive/a48fce5b-8a05-4302-b620-9b26f057f145/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[61]]
#> List of 8
#>  $ by         : chr "0xKelsey"
#>  $ descendants: int 0
#>  $ id         : int 43625438
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:10:21"
#>  $ title      : chr "The Pros and Cons of Lambdalith"
#>  $ type       : chr "story"
#>  $ url        : chr "https://theburningmonk.com/2025/03/the-pros-and-cons-of-lambdalith/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[62]]
#> List of 8
#>  $ by         : chr "shaunatfe"
#>  $ descendants: int 0
#>  $ id         : int 43625429
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:09:16"
#>  $ title      : chr "Self-Hosted Email (100% open source, privacy focused)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://forwardemail.net/en/blog/docs/self-hosted-solution"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[63]]
#> List of 8
#>  $ by         : chr "veqq"
#>  $ descendants: int 0
#>  $ id         : int 43625406
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:06:28"
#>  $ title      : chr "Correspondences Between Wittgenstein's Tractatus and Programming"
#>  $ type       : chr "story"
#>  $ url        : chr "https://lockywolf.net/2020-11-18_Reading-Tractatuc-Logico-Philosophicus-by-Ludwig-Wittgenstein/2020-11-18_Tract"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[64]]
#> List of 8
#>  $ by         : chr "giuliomagnifico"
#>  $ descendants: int 0
#>  $ id         : int 43625379
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:03:28"
#>  $ title      : chr "Researchers say scheme improves homomorphic encryption efficiency, effectiveness"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.biometricupdate.com/202504/researchers-say-scheme-improves-homomorphic-encryption-efficiency-effectiveness"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[65]]
#> List of 9
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43625377
#>  $ kids       : int 43625389
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:03:21"
#>  $ title      : chr "Did Red Bull Build an Undriveable Car? Questions from the Chinese Grand Prix"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/cars/2025/03/driver-intrigue-v10-rumors-and-a-good-sprint-weekend-f1-in-shanghai/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[66]]
#> List of 8
#>  $ by         : chr "tanelpoder"
#>  $ descendants: int 0
#>  $ id         : int 43625366
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:02:19"
#>  $ title      : chr "PostgreSQL Merges Initial Support for NUMA Awareness"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.phoronix.com/news/PostgreSQL-Lands-NUMA-Awareness"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[67]]
#> List of 9
#>  $ by         : chr "stared"
#>  $ descendants: int 1
#>  $ id         : int 43625347
#>  $ kids       : int [1:3] 43625404 43625538 43625354
#>  $ score      : int 9
#>  $ time       : POSIXct[1:1], format: "2025-04-08 19:00:51"
#>  $ title      : chr "Dire Wolves Were Not Wolves, New Genetic Clues Reveal (2021)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.scientificamerican.com/article/dire-wolves-were-not-really-wolves-new-genetic-clues-reveal/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[68]]
#> List of 8
#>  $ by         : chr "impish9208"
#>  $ descendants: int 0
#>  $ id         : int 43625333
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:59:02"
#>  $ title      : chr "Trying to stay warm is killing thousands a year in the world’s coldest capital"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theguardian.com/global-development/2025/apr/08/everyone-is-breathing-this-how-just-trying-to-stay-w"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[69]]
#> List of 9
#>  $ by         : chr "rntn"
#>  $ descendants: int 0
#>  $ id         : int 43625331
#>  $ kids       : int 43625356
#>  $ score      : int 18
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:58:52"
#>  $ title      : chr "DOGE muzzled on X over tape storage baloney: 70 yrs old; definitely not obsolete"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theregister.com/2025/04/08/doge_tape_storage_diss/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[70]]
#> List of 8
#>  $ by         : chr "pseudolus"
#>  $ descendants: int 0
#>  $ id         : int 43625329
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:58:37"
#>  $ title      : chr "Behind the Bybit Crypto Theft"
#>  $ type       : chr "story"
#>  $ url        : chr "https://cacm.acm.org/news/behind-the-bybit-crypto-theft/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[71]]
#> List of 9
#>  $ by         : chr "colinprince"
#>  $ descendants: int 1
#>  $ id         : int 43625325
#>  $ kids       : int 43625643
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:58:18"
#>  $ title      : chr "Email addresses are not good 'permanent' identifiers for accounts (2023)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://utcc.utoronto.ca/~cks/space/blog/tech/EmailAddressesBadPermanentIDs"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[72]]
#> List of 8
#>  $ by         : chr "ingve"
#>  $ descendants: int 0
#>  $ id         : int 43625322
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:57:59"
#>  $ title      : chr "TinyKVM in Varnish and Some Deno"
#>  $ type       : chr "story"
#>  $ url        : chr "https://fwsgonzo.medium.com/tinykvm-in-varnish-and-some-deno-0a6abf90a5a1"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[73]]
#> List of 10
#>  $ by         : chr "paulsmith"
#>  $ descendants: int 1
#>  $ id         : int 43625311
#>  $ kids       : int 43625551
#>  $ score      : int 1
#>  $ text       : chr "Done mostly as an exercise to familiarize myself with MCP, but might be useful to others. Also might be a bad i"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:56:47"
#>  $ title      : chr "Show HN: MCP Server for Tailscale"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/paulsmith/tailscale-mcp-server"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[74]]
#> List of 8
#>  $ by         : chr "udit_50"
#>  $ descendants: int 0
#>  $ id         : int 43625306
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:56:13"
#>  $ title      : chr "Show HN: I built a Figma-style AI to study for my IIT exams – it works"
#>  $ type       : chr "story"
#>  $ url        : chr "https://learnkit.io/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[75]]
#> List of 9
#>  $ by         : chr "cmurf"
#>  $ descendants: int 0
#>  $ id         : int 43625303
#>  $ kids       : int 43625328
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:56:02"
#>  $ title      : chr "Long-term Treasury yields surged Monday due to the unwind of the 'basis trade'"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.msn.com/en-us/money/economy/long-term-treasury-yields-surged-on-monday-due-to-the-unwind-of-the-bas"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[76]]
#> List of 8
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 0
#>  $ id         : int 43625291
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:53:53"
#>  $ title      : chr "Bare: Fast, Lightweight Runtime for Modular JavaScript App"
#>  $ type       : chr "story"
#>  $ url        : chr "https://bare.pears.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[77]]
#> List of 9
#>  $ by         : chr "weird_pusheen"
#>  $ descendants: int 0
#>  $ id         : int 43625284
#>  $ kids       : int 43625297
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:53:15"
#>  $ title      : chr "Bad at Computers"
#>  $ type       : chr "story"
#>  $ url        : chr "https://swaous.asuscomm.com/blog/index.php/2025/04/08/bad-at-computers/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[78]]
#> List of 9
#>  $ by         : chr "reaperducer"
#>  $ descendants: int 7
#>  $ id         : int 43625266
#>  $ kids       : int [1:9] 43625710 43625617 43625677 43625341 43625410 43625576 43625315 43625872 43625273
#>  $ score      : int 5
#>  $ text       : chr "An acquaintance I only know in an online sense recently mentioned in passing that he&#x27;s part of the DOGE ef"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:51:55"
#>  $ title      : chr "Ask HN: DOGE on an IT resume – Asset, or liability?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[79]]
#> List of 9
#>  $ by         : chr "code_reader"
#>  $ descendants: int 0
#>  $ id         : int 43625262
#>  $ kids       : int 43625268
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:51:28"
#>  $ title      : chr "Secure Authentication with Cookies"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thenile.dev/blog/auth-and-cookies"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[80]]
#> List of 9
#>  $ by         : chr "jc_811"
#>  $ descendants: int 0
#>  $ id         : int 43625240
#>  $ kids       : int 43625248
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:49:58"
#>  $ title      : chr "NSA Says Fast Flux Is a National Security Threat, but What Is It? [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=CQ3nnlZ8nbw"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[81]]
#> List of 8
#>  $ by         : chr "arcanus"
#>  $ descendants: int 0
#>  $ id         : int 43625236
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:49:29"
#>  $ title      : chr "Amazon unveils a new AI voice model, Nova Sonic"
#>  $ type       : chr "story"
#>  $ url        : chr "https://techcrunch.com/2025/04/08/amazon-unveils-a-new-ai-voice-model-nova-sonic/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[82]]
#> List of 9
#>  $ by         : chr "julian-datable"
#>  $ descendants: int 0
#>  $ id         : int 43625214
#>  $ kids       : int 43625220
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:47:50"
#>  $ title      : chr "Trader stakes $0.05 of SOL for 3000 years"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.cryptonews.net/news/altcoins/30779954/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[83]]
#> List of 8
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 0
#>  $ id         : int 43625211
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:47:45"
#>  $ title      : chr "PyReason: Explainable inference for annotated, real valued, graph based and tem"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/lab-v2/pyreason"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[84]]
#> List of 9
#>  $ by         : chr "anjandutta"
#>  $ descendants: int 0
#>  $ id         : int 43625201
#>  $ kids       : int 43625217
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:46:38"
#>  $ title      : chr "Show HN: Dsaprep.dev – Filter real LeetCode questions by company and timeframe"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.dsaprep.dev"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[85]]
#> List of 8
#>  $ by         : chr "dlivingston"
#>  $ descendants: int 0
#>  $ id         : int 43625200
#>  $ score      : int 6
#>  $ text       : chr "Assuming Pres. Trump&#x27;s tariffs are not repealed or significantly altered, what does this mean for startups"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:46:37"
#>  $ title      : chr "Ask HN: How will the tariffs affect investor funding?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[86]]
#> List of 9
#>  $ by         : chr "homarp"
#>  $ descendants: int 0
#>  $ id         : int 43625199
#>  $ kids       : int 43625254
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:46:33"
#>  $ title      : chr "GPMI: Chinese alternative to HDMI/DisplayPort with 192 Gbps bandwidth,480W Power"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.cnx-software.com/2025/04/07/gpmi-is-a-chinese-alternative-to-hdmi-and-displayport-with-up-to-192-gb"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[87]]
#> List of 9
#>  $ by         : chr "howard941"
#>  $ descendants: int 1
#>  $ id         : int 43625186
#>  $ kids       : int 43625385
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:45:14"
#>  $ title      : chr "Is Recycling a Waste of Time?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.sarasotamagazine.com/news-and-profiles/2025/04/is-recycling-a-waste-of-time"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[88]]
#> List of 9
#>  $ by         : chr "littlexsparkee"
#>  $ descendants: int 1
#>  $ id         : int 43625152
#>  $ kids       : int [1:2] 43625155 43625225
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:42:06"
#>  $ title      : chr "The New King of Tech – How Jensen Huang Built Nvidia into a Nearly $3T Business"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theatlantic.com/magazine/archive/2025/05/thinking-machine-jensen-huang-nvidia-book-review/682122/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[89]]
#> List of 9
#>  $ by         : chr "charliereese"
#>  $ descendants: int 1
#>  $ id         : int 43625143
#>  $ kids       : int 43625144
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:41:12"
#>  $ title      : chr "Show HN: Weekly AI-Powered Trend Detection from ForecastOS Hivemind"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.forecastos.com/introducing-the-forecastos-hivemind-weekly-series-open-access-for-a-limited-time/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[90]]
#> List of 8
#>  $ by         : chr "fortran77"
#>  $ descendants: int 0
#>  $ id         : int 43625141
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:40:44"
#>  $ title      : chr "The WSPR signal from my high-flying pico-balloons"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.qrz.com/db/AC3AU"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[91]]
#> List of 8
#>  $ by         : chr "bko"
#>  $ descendants: int 0
#>  $ id         : int 43625139
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:40:23"
#>  $ title      : chr "Clojure: Realtime collaborative web apps without ClojureScript"
#>  $ type       : chr "story"
#>  $ url        : chr "https://andersmurphy.com/2025/04/07/clojure-realtime-collaborative-web-apps-without-clojurescript.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[92]]
#> List of 9
#>  $ by         : chr "CHEF-KOCH"
#>  $ descendants: int 0
#>  $ id         : int 43625132
#>  $ kids       : int 43625133
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:39:08"
#>  $ title      : chr "Collection of random CSS hacks for Firefox"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/MrOtherGuy/firefox-csshacks"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[93]]
#> List of 9
#>  $ by         : chr "hideload"
#>  $ descendants: int 1
#>  $ id         : int 43625127
#>  $ kids       : int 43625128
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:38:44"
#>  $ title      : chr "Feedback needed to improve my Hideload software"
#>  $ type       : chr "story"
#>  $ url        : chr "https://hideload.org/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[94]]
#> List of 10
#>  $ by         : chr "Collusus96"
#>  $ descendants: int 2
#>  $ id         : int 43625113
#>  $ kids       : int [1:2] 43625260 43625121
#>  $ score      : int 3
#>  $ text       : chr "Hello everyone, with the new investments into defense in the EU, I decided to create a job board to curate star"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:37:44"
#>  $ title      : chr "Show HN: Defense Jobs EU Job Board"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.defensejobseu.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[95]]
#> List of 9
#>  $ by         : chr "JumpCrisscross"
#>  $ descendants: int 4
#>  $ id         : int 43625093
#>  $ kids       : int [1:3] 43625461 43625212 43625099
#>  $ score      : int 18
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:36:12"
#>  $ title      : chr "US forges ahead with 104% tariffs on China"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/world/china-criticises-trump-tariff-blackmail-market-turmoil-settles-2025-04-08/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[96]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43625082
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:35:09"
#>  $ title      : chr "The Irish Pub Became One of the Emerald Isle's Greatest Exports"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.smithsonianmag.com/innovation/how-the-irish-pub-became-one-of-the-emerald-isles-greatest-exports-180986252/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[97]]
#> List of 9
#>  $ by         : chr "littlexsparkee"
#>  $ descendants: int 2
#>  $ id         : int 43625078
#>  $ kids       : int [1:3] 43625408 43625081 43625101
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:34:56"
#>  $ title      : chr "How to Prepare for a Recession"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theatlantic.com/economy/archive/2025/04/economic-downturn-personal-finance/682348/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[98]]
#> List of 9
#>  $ by         : chr "ColinWright"
#>  $ descendants: int 1
#>  $ id         : int 43625052
#>  $ kids       : int [1:2] 43625738 43625057
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:33:46"
#>  $ title      : chr "Math journal editors resign to launch open-access title"
#>  $ type       : chr "story"
#>  $ url        : chr "https://retractionwatch.com/2025/04/07/mathematical-logic-quarterly-mass-resignation-editorial-board-wiley/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[99]]
#> List of 9
#>  $ by         : chr "quaker120"
#>  $ descendants: int 1
#>  $ id         : int 43625045
#>  $ kids       : int 43625046
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:33:14"
#>  $ title      : chr "Nounly – A Daily Word Puzzle"
#>  $ type       : chr "story"
#>  $ url        : chr "https://nounly.net"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[100]]
#> List of 8
#>  $ by         : chr "jaruba"
#>  $ descendants: int 0
#>  $ id         : int 43625041
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:32:59"
#>  $ title      : chr "Stremio VR Released for Meta Quest Devices"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.stremio.com/stremio-vr-released-for-meta-quest-devices/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[101]]
#> List of 9
#>  $ by         : chr "huerne"
#>  $ descendants: int 0
#>  $ id         : int 43625026
#>  $ kids       : int 43625105
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:31:35"
#>  $ title      : chr "Red Sky Health's New AI 'Daniel' Fixes Denied Insurance Claims Automatically"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.redskyhealth.com/red-sky-health-unveils-its-powerful-ai-platform-daniel"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[102]]
#> List of 9
#>  $ by         : chr "LeonidBugaev"
#>  $ descendants: int 1
#>  $ id         : int 43625011
#>  $ kids       : int 43625029
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:30:40"
#>  $ title      : chr "Show HN: Chat with any GitHub repository via MCP"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/buger/docs-mcp"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[103]]
#> List of 8
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 0
#>  $ id         : int 43625001
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:29:37"
#>  $ title      : chr "Market Ending Moves"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.eladgil.com/p/market-ending-moves"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[104]]
#> List of 9
#>  $ by         : chr "Ic3creaM"
#>  $ descendants: int 0
#>  $ id         : int 43624999
#>  $ score      : int 1
#>  $ text       : chr "I recently got into Transcendental Meditation and wanted a dedicated app to track my meditation progress and st"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:29:24"
#>  $ title      : chr "Show HN: I built an iOS app to practice Trancendental Meditation"
#>  $ type       : chr "story"
#>  $ url        : chr "https://apps.apple.com/us/app/meditrace/id6737521772"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[105]]
#> List of 8
#>  $ by         : chr "gz5"
#>  $ descendants: int 0
#>  $ id         : int 43624989
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:28:37"
#>  $ title      : chr "People are worried about deleveraging"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bloomberg.com/opinion/newsletters/2025-04-08/people-are-worried-about-deleveraging"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[106]]
#> List of 9
#>  $ by         : chr "gus_massa"
#>  $ descendants: int 2
#>  $ id         : int 43624977
#>  $ kids       : int [1:2] 43626065 43625154
#>  $ score      : int 30
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:28:06"
#>  $ title      : chr "Decomposing factorial of 300K as the product of 300K factors larger than 100K"
#>  $ type       : chr "story"
#>  $ url        : chr "http://gus-massa.blogspot.com/2025/04/decomposing-factorial-of-300k-as.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[107]]
#> List of 8
#>  $ by         : chr "benatkin"
#>  $ descendants: int 0
#>  $ id         : int 43624973
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:27:57"
#>  $ title      : chr "ID Bloom Filter: Achieving Faster Multi-Set Membership Query in Network Apps [pdf]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://yangtonghome.github.io/uploads/IDBloomFilter.pdf"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[108]]
#> List of 9
#>  $ by         : chr "colinprince"
#>  $ descendants: int 0
#>  $ id         : int 43624934
#>  $ kids       : int 43624975
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:25:20"
#>  $ title      : chr "Apple 'flew' 5 flights of iPhones from India and China in 3 days to beat tariffs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://timesofindia.indiatimes.com/technology/mobiles-tabs/how-apple-flew-5-flights-full-of-iphones-from-india"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[109]]
#> List of 9
#>  $ by         : chr "epuerta99"
#>  $ descendants: int 1
#>  $ id         : int 43624917
#>  $ kids       : int [1:2] 43625629 43624943
#>  $ score      : int 14
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:24:27"
#>  $ title      : chr "Show HN: MCP agents handle an incident workflow [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.loom.com/share/e91e89d8b65042e69a38c30332fcd9a6?sid=345255cd-9e3b-49e5-a81e-dff87f40d04c"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[110]]
#> List of 9
#>  $ by         : chr "geox"
#>  $ descendants: int 4
#>  $ id         : int 43624909
#>  $ kids       : int [1:6] 43625662 43625134 43625818 43624992 43624956 43624996
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:24:04"
#>  $ title      : chr "A 'US-Made iPhone' Is Pure Fantasy"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.404media.co/a-us-made-iphone-is-pure-fantasy/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[111]]
#> List of 8
#>  $ by         : chr "simplesort"
#>  $ descendants: int 0
#>  $ id         : int 43624902
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:23:27"
#>  $ title      : chr "Tiger turnaround as populations grow in India"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nature.com/articles/d41586-025-01027-w"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[112]]
#> List of 9
#>  $ by         : chr "anfal"
#>  $ descendants: int 3
#>  $ id         : int 43624900
#>  $ kids       : int [1:3] 43624920 43625332 43624908
#>  $ score      : int 1
#>  $ text       : chr "I’ve been using ChatGPT, Claude, and other LLM-based tools to speed up software development — but I keep runnin"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:23:20"
#>  $ title      : chr "Ask HN: Anyone frustrated by AI tools hallucinating API calls?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[113]]
#> List of 9
#>  $ by         : chr "simplesort"
#>  $ descendants: int 12
#>  $ id         : int 43624888
#>  $ kids       : int [1:3] 43626202 43626119 43625701
#>  $ score      : int 42
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:21:49"
#>  $ title      : chr "How Netflix Accurately Attributes eBPF Flow Logs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://netflixtechblog.com/how-netflix-accurately-attributes-ebpf-flow-logs-afe6d644a3bc"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[114]]
#> List of 8
#>  $ by         : chr "farslan"
#>  $ descendants: int 0
#>  $ id         : int 43624886
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:21:30"
#>  $ title      : chr "Managing Friction"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arslan.io/2025/04/08/managing-friction/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[115]]
#> List of 9
#>  $ by         : chr "BerislavLopac"
#>  $ descendants: int 0
#>  $ id         : int 43624871
#>  $ kids       : int 43624969
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:20:57"
#>  $ title      : chr "Dangerous Advice for Software Engineers"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.seangoedecke.com/dangerous-advice/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[116]]
#> List of 8
#>  $ by         : chr "awakenmyrub"
#>  $ descendants: int 0
#>  $ id         : int 43624862
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:20:11"
#>  $ title      : chr "Dr. Sarno's Healing Back Pain matters, even if his explanation doesn't hold up"
#>  $ type       : chr "story"
#>  $ url        : chr "https://debugyourpain.substack.com/p/useful-stories-and-pain-relief-on"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[117]]
#> List of 8
#>  $ by         : chr "doener"
#>  $ descendants: int 0
#>  $ id         : int 43624838
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:17:36"
#>  $ title      : chr "Send Obsidian texts to your Mastodon instance seamlessly"
#>  $ type       : chr "story"
#>  $ url        : chr "https://gitea.com/medic/obsidian-mastodon"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[118]]
#> List of 9
#>  $ by         : chr "thunderbong"
#>  $ descendants: int 1
#>  $ id         : int 43624836
#>  $ kids       : int [1:2] 43624894 43624874
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:17:32"
#>  $ title      : chr "I open sourced my side project and no one cared"
#>  $ type       : chr "story"
#>  $ url        : chr "https://old.reddit.com/r/webdev/comments/1juhvlk/i_open_sourced_my_side_project_and_no_one_cared/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[119]]
#> List of 8
#>  $ by         : chr "michaefe"
#>  $ descendants: int 0
#>  $ id         : int 43624820
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:16:32"
#>  $ title      : chr "Geospatial Reasoning: Unlocking insights with generative AI"
#>  $ type       : chr "story"
#>  $ url        : chr "https://research.google/blog/geospatial-reasoning-unlocking-insights-with-generative-ai-and-multiple-foundation-models/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[120]]
#> List of 9
#>  $ by         : chr "JumpCrisscross"
#>  $ descendants: int 1
#>  $ id         : int 43624818
#>  $ kids       : int [1:2] 43625547 43624833
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:16:18"
#>  $ title      : chr "Silicon Valley's gamble on Trump isn't paying off"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.natesilver.net/p/silicon-valleys-gamble-on-trump-isnt"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[121]]
#> List of 8
#>  $ by         : chr "brishin"
#>  $ descendants: int 0
#>  $ id         : int 43624812
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:15:41"
#>  $ title      : chr "Why Teams of Generalists Win in the Age of AI"
#>  $ type       : chr "story"
#>  $ url        : chr "https://ambrook.com/blog/company/why-generalists-win-ai"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[122]]
#> List of 9
#>  $ by         : chr "rpgbr"
#>  $ descendants: int 1
#>  $ id         : int 43624810
#>  $ kids       : int [1:2] 43624879 43624883
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:15:25"
#>  $ title      : chr "WordPress Scales Back to One Major Release in 2025"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.therepository.email/wordpress-scales-back-to-one-major-release-in-2025"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[123]]
#> List of 8
#>  $ by         : chr "leantime-io"
#>  $ descendants: int 0
#>  $ id         : int 43624807
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:14:40"
#>  $ title      : chr "Show HN: Leantime – Open-Source Project Management for people with ADHD"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/Leantime/leantime"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[124]]
#> List of 8
#>  $ by         : chr "b_mc2"
#>  $ descendants: int 0
#>  $ id         : int 43624799
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:13:47"
#>  $ title      : chr "3D Army Land Navigation Courses"
#>  $ type       : chr "story"
#>  $ url        : chr "https://oe.tradoc.army.mil/oegames/landnav/index.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[125]]
#> List of 9
#>  $ by         : chr "mikece"
#>  $ descendants: int 0
#>  $ id         : int 43624790
#>  $ kids       : int 43624905
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:12:22"
#>  $ title      : chr "Arguing Against Calea"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.schneier.com/blog/archives/2025/04/arguing-against-calea.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[126]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43624778
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:10:58"
#>  $ title      : chr "Researchers pull carbon directly from the air using changes in humidity"
#>  $ type       : chr "story"
#>  $ url        : chr "https://techxplore.com/news/2025-04-materials-carbon-air-humidity.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[127]]
#> List of 8
#>  $ by         : chr "hippich"
#>  $ descendants: int 0
#>  $ id         : int 43624763
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:08:57"
#>  $ title      : chr "CVE-2025-3155 - Yelp which is The Gnome's user help application - POC"
#>  $ type       : chr "story"
#>  $ url        : chr "https://gist.github.com/parrot409/e970b155358d45b298d7024edd9b17f2"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[128]]
#> List of 9
#>  $ by         : chr "bundie"
#>  $ descendants: int 1
#>  $ id         : int 43624751
#>  $ kids       : int 43624808
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:07:55"
#>  $ title      : chr "Meta Rolls Out Teen Accounts to Facebook and Messenger"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.neowin.net/news/meta-rolls-out-teen-accounts-to-facebook-and-messenger-adds-more-restrictions-on-instagram/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[129]]
#> List of 8
#>  $ by         : chr "trbutler"
#>  $ descendants: int 0
#>  $ id         : int 43624731
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:06:32"
#>  $ title      : chr "Mastodon-as-FUSE Filesystem"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/andypiper/mastofs"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[130]]
#> List of 8
#>  $ by         : chr "jarmitage"
#>  $ descendants: int 0
#>  $ id         : int 43624718
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:05:27"
#>  $ title      : chr "Augmenting a Generative MIDI Model for Arca's Electromagnetic Piano Installation"
#>  $ type       : chr "story"
#>  $ url        : chr "https://aimc2024.pubpub.org/pub/0lh6s86c/release/1"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[131]]
#> List of 8
#>  $ by         : chr "gitprolinux"
#>  $ descendants: int 0
#>  $ id         : int 43624716
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:05:12"
#>  $ title      : chr "Show HN: HotStuff from UltraHot.TV, another TikTok like app iPhone and Android"
#>  $ type       : chr "story"
#>  $ url        : chr "https://ultrahotstuff.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[132]]
#> List of 8
#>  $ by         : chr "wormius"
#>  $ descendants: int 0
#>  $ id         : int 43624696
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:03:12"
#>  $ title      : chr "Practical transparent verifiable and long-term reproducible research using Guix [pdf]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nature.com/articles/s41597-022-01720-9.pdf"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[133]]
#> List of 9
#>  $ by         : chr "pseudolus"
#>  $ descendants: int 0
#>  $ id         : int 43624695
#>  $ kids       : int 43624846
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:03:02"
#>  $ title      : chr "TSMC could face $1B or more fine from US probe, sources say"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/technology/tsmc-could-face-1-billion-or-more-fine-us-probe-sources-say-2025-04-08/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[134]]
#> List of 8
#>  $ by         : chr "hn_acker"
#>  $ descendants: int 0
#>  $ id         : int 43624688
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:02:19"
#>  $ title      : chr "Trump's Shuttering of DHS Oversight Arm Freezes 600 Cases, Imperils Human Rights"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.propublica.org/article/homeland-security-crcl-civil-rights-immigration-border-patrol-trump-kristi-noem"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[135]]
#> List of 9
#>  $ by         : chr "ozgune"
#>  $ descendants: int 1
#>  $ id         : int 43624687
#>  $ kids       : int [1:2] 43624741 43624813
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:02:17"
#>  $ title      : chr "Economists say there's a math error in Trump's tariff formula [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.cnn.com/2025/04/08/business/video/trump-tariffs-math-equation-wrong-economist-veuger-cnc-digvid"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[136]]
#> List of 9
#>  $ by         : chr "andreyk"
#>  $ descendants: int 0
#>  $ id         : int 43624679
#>  $ score      : int 1
#>  $ text       : chr "Hi HN!<p>My startup has just launched a web demo of our tool to make 2D games with AI assistance. There are som"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:01:38"
#>  $ title      : chr "Show HN: Astrocade - AI-powered game creation tool"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.astrocade.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[137]]
#> List of 8
#>  $ by         : chr "lsantfornow"
#>  $ descendants: int 0
#>  $ id         : int 43624676
#>  $ score      : int 1
#>  $ text       : chr "Hey HN! We&#x27;re happy to come here to announce MYME&#x27;s pre-launch-induced-by-industry-news. While our fu"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:01:12"
#>  $ title      : chr "Show HN: Only health tech not monetizing your data. MYME Prelaunches today"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[138]]
#> List of 9
#>  $ by         : chr "xnhbx"
#>  $ descendants: int 8
#>  $ id         : int 43624674
#>  $ kids       : int [1:3] 43625776 43625326 43624712
#>  $ score      : int 25
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:01:03"
#>  $ title      : chr "White House says 104% China tariffs take effect at midnight"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.cnbc.com/2025/04/08/trump-tariffs-live-updates-stock-market-china.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[139]]
#> List of 8
#>  $ by         : chr "hn_acker"
#>  $ descendants: int 0
#>  $ id         : int 43624671
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:01:01"
#>  $ title      : chr "Preparation Kept Bomb Threats from Disrupting the 2024 Elections"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.brennancenter.org/our-work/analysis-opinion/preparation-kept-bomb-threats-disrupting-2024-elections"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[140]]
#> List of 8
#>  $ by         : chr "indigoabstract"
#>  $ descendants: int 0
#>  $ id         : int 43624669
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 18:00:15"
#>  $ title      : chr "France created the metric system (2018)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bbc.com/travel/article/20180923-how-france-created-the-metric-system"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[141]]
#> List of 8
#>  $ by         : chr "michaelsbradley"
#>  $ descendants: int 0
#>  $ id         : int 43624659
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:59:31"
#>  $ title      : chr "Wasm SpecTec"
#>  $ type       : chr "story"
#>  $ url        : chr "https://webassembly.org/news/2025-03-27-spectec/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[142]]
#> List of 8
#>  $ by         : chr "lkrubner"
#>  $ descendants: int 0
#>  $ id         : int 43624656
#>  $ score      : int 1
#>  $ text       : chr "Assume an existing site would like to add a jobs board, including user profiles, and job posts, and tracking th"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:59:21"
#>  $ title      : chr "Ask HN: What is the best open source software for a jobs board?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[143]]
#> List of 9
#>  $ by         : chr "riffraff"
#>  $ descendants: int 1
#>  $ id         : int 43624591
#>  $ kids       : int [1:2] 43625053 43624615
#>  $ score      : int 18
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:54:28"
#>  $ title      : chr "Doge Moves from Secure, Reliable Tape Archives to Hackable Digital Records"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.404media.co/doge-gsa-magnetic-tape-archives-digital-storage/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[144]]
#> List of 9
#>  $ by         : chr "thm"
#>  $ descendants: int 0
#>  $ id         : int 43624584
#>  $ kids       : int 43624619
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:54:11"
#>  $ title      : chr "MCP Space"
#>  $ type       : chr "story"
#>  $ url        : chr "https://mymcpspace.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[145]]
#> List of 9
#>  $ by         : chr "GodelNumbering"
#>  $ descendants: int 1
#>  $ id         : int 43624562
#>  $ kids       : int 43624575
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:51:59"
#>  $ title      : chr "Show HN: SignalBloom – earnings analysis with charts in minutes after release"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.signalbloom.ai/news/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[146]]
#> List of 8
#>  $ by         : chr "saikatsg"
#>  $ descendants: int 0
#>  $ id         : int 43624556
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:51:49"
#>  $ title      : chr "Evaluating progress of LLMs on scientific problem-solving"
#>  $ type       : chr "story"
#>  $ url        : chr "https://research.google/blog/evaluating-progress-of-llms-on-scientific-problem-solving/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[147]]
#> List of 9
#>  $ by         : chr "ydnyshhh"
#>  $ descendants: int 18
#>  $ id         : int 43624536
#>  $ kids       : int [1:4] 43624783 43625085 43624814 43624542
#>  $ score      : int 23
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:50:02"
#>  $ title      : chr "Tariffs on China set to rise to 104% on Wednesday"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.cnn.com/2025/04/08/business/trump-china-tariff/index.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[148]]
#> List of 9
#>  $ by         : chr "tosh"
#>  $ descendants: int 1
#>  $ id         : int 43624519
#>  $ kids       : int [1:2] 43625245 43624546
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:48:49"
#>  $ title      : chr "Syncthing: Open-Source Continuous File Synchronization"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/syncthing/syncthing"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[149]]
#> List of 9
#>  $ by         : chr "pmags"
#>  $ descendants: int 1
#>  $ id         : int 43624506
#>  $ kids       : int [1:2] 43624507 43624514
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:47:25"
#>  $ title      : chr ">50% cut in NSF Graduate Research Awards for 2025"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.research.gov/grfp/AwardeeList.do"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[150]]
#> List of 9
#>  $ by         : chr "rapawel"
#>  $ descendants: int 0
#>  $ id         : int 43624504
#>  $ kids       : int 43624510
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:47:06"
#>  $ title      : chr "Deploy your Next.js app to Cloudflare Workers with the adapter for OpenNext"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.cloudflare.com/deploying-nextjs-apps-to-cloudflare-workers-with-the-opennext-adapter/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[151]]
#> List of 9
#>  $ by         : chr "Beefin"
#>  $ descendants: int 1
#>  $ id         : int 43624503
#>  $ kids       : int 43625314
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:47:01"
#>  $ title      : chr "The Death of the Cookie"
#>  $ type       : chr "story"
#>  $ url        : chr "https://mixpeek.com/blog/contextual-advertising"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[152]]
#> List of 8
#>  $ by         : chr "division_by_0"
#>  $ descendants: int 0
#>  $ id         : int 43624498
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:46:34"
#>  $ title      : chr "A correlation matrix created with Svelte"
#>  $ type       : chr "story"
#>  $ url        : chr "https://covary.xyz/matrix"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[153]]
#> List of 9
#>  $ by         : chr "arbesman"
#>  $ descendants: int 1
#>  $ id         : int 43624492
#>  $ kids       : int [1:2] 43625287 43624551
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:46:17"
#>  $ title      : chr "\"The Phantom Tollbooth\" Was Supposed to Be a Nonfiction Book About Cities"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arbesman.substack.com/p/the-phantom-tollbooth-was-supposed"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[154]]
#> List of 9
#>  $ by         : chr "zzma"
#>  $ descendants: int 0
#>  $ id         : int 43624483
#>  $ kids       : int 43624653
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:45:34"
#>  $ title      : chr "Fake \"go around\" ATC messages at Cincinnati (CVG) airport [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=cpLefUe3Ff8"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[155]]
#> List of 8
#>  $ by         : chr "timetoogo"
#>  $ descendants: int 0
#>  $ id         : int 43624480
#>  $ score      : int 11
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:45:22"
#>  $ title      : chr "Pdeathsig is almost never what you want"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.recall.ai/post/pdeathsig-is-almost-never-what-you-want"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[156]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43624475
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:44:46"
#>  $ title      : chr "Are Domain-Specific Trade-Offs Undermining On-Device Language Models?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arxiv.org/abs/2503.22698"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[157]]
#> List of 9
#>  $ by         : chr "helsinkiandrew"
#>  $ descendants: int 6
#>  $ id         : int 43624468
#>  $ kids       : int [1:6] 43626137 43624525 43624526 43624628 43624867 43624476
#>  $ score      : int 10
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:43:58"
#>  $ title      : chr "UK creating 'murder prediction' tool to identify people most likely to kill"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theguardian.com/uk-news/2025/apr/08/uk-creating-prediction-tool-to-identify-people-most-likely-to-kill"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[158]]
#> List of 9
#>  $ by         : chr "saikatsg"
#>  $ descendants: int 0
#>  $ id         : int 43624467
#>  $ kids       : int 43624481
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:43:58"
#>  $ title      : chr "Geospatial Reasoning"
#>  $ type       : chr "story"
#>  $ url        : chr "https://sites.research.google/gr/geospatial-reasoning/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[159]]
#> List of 9
#>  $ by         : chr "nickslaughter02"
#>  $ descendants: int 0
#>  $ id         : int 43624445
#>  $ kids       : int 43624458
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:42:44"
#>  $ title      : chr "EU: To protect Ukraine we must prevent their ability to have secure comms"
#>  $ type       : chr "story"
#>  $ url        : chr "https://alecmuffett.com/article/113127"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[160]]
#> List of 9
#>  $ by         : chr "1vuio0pswjnm7"
#>  $ descendants: int 0
#>  $ id         : int 43624440
#>  $ kids       : int 43624443
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:42:13"
#>  $ title      : chr "Illinois Genetic Information Privact Act"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.ilga.gov/legislation/ilcs/ilcs3.asp?ActID=1567&ChapterID=0&Print=True"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[161]]
#> List of 9
#>  $ by         : chr "fanf2"
#>  $ descendants: int 0
#>  $ id         : int 43624437
#>  $ kids       : int 43624469
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:42:02"
#>  $ title      : chr "Incremental zero-config code navigation using stack graphs with Tree-sitter at G (2021)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://dcreager.net/talks/stack-graphs/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[162]]
#> List of 9
#>  $ by         : chr "LorenDB"
#>  $ descendants: int 2
#>  $ id         : int 43624436
#>  $ kids       : int 43625150
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:41:53"
#>  $ title      : chr "Parents give kids more melatonin than ever, with unknown long-term effects"
#>  $ type       : chr "story"
#>  $ url        : chr "https://undark.org/2025/04/08/melatonin-children-bedtime/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[163]]
#> List of 8
#>  $ by         : chr "oavioklein"
#>  $ descendants: int 0
#>  $ id         : int 43624430
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:41:24"
#>  $ title      : chr "DDoS Mitigation Leak"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.kentik.com/blog/beyond-their-intended-scope-ddos-mitigation-leak/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[164]]
#> List of 9
#>  $ by         : chr "saikatsg"
#>  $ descendants: int 0
#>  $ id         : int 43624417
#>  $ kids       : int 43624419
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:40:36"
#>  $ title      : chr "How the US public and AI experts view AI [pdf]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.pewresearch.org/wp-content/uploads/sites/20/2025/04/pi_2025.04.03_us-public-and-ai-experts_report.pdf"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[165]]
#> List of 9
#>  $ by         : chr "handfuloflight"
#>  $ descendants: int 0
#>  $ id         : int 43624415
#>  $ kids       : int 43624423
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:40:34"
#>  $ title      : chr "The Public Domain Review"
#>  $ type       : chr "story"
#>  $ url        : chr "https://publicdomainreview.org/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[166]]
#> List of 8
#>  $ by         : chr "marcusb"
#>  $ descendants: int 0
#>  $ id         : int 43624397
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:39:20"
#>  $ title      : chr "This Month in Redox – March 2025"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.redox-os.org/news/this-month-250331/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[167]]
#> List of 9
#>  $ by         : chr "rntn"
#>  $ descendants: int 0
#>  $ id         : int 43624394
#>  $ kids       : int 43624405
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:39:11"
#>  $ title      : chr "Justice Dept. to pull back on some cryptocurrency investigations"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.washingtonpost.com/national-security/2025/04/08/trump-crypto-fraud-doj-enforcement/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[168]]
#> List of 9
#>  $ by         : chr "tlogan"
#>  $ descendants: int 1
#>  $ id         : int 43624370
#>  $ kids       : int [1:2] 43624477 43624389
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:37:16"
#>  $ title      : chr "Supreme Court allows Trump to terminate 16,000 probationary federal workers"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.politico.com/news/2025/04/08/trump-federal-workers-firing-supreme-court-00278742"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[169]]
#> List of 9
#>  $ by         : chr "netfortius"
#>  $ descendants: int 2
#>  $ id         : int 43624367
#>  $ kids       : int [1:2] 43624544 43624410
#>  $ score      : int 2
#>  $ text       : chr "Silly original ban from an even sillier sub on reddit (&#x2F;r&#x2F;soccer - I know, I know! ;-), which, due to"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:36:58"
#>  $ title      : chr "Ask HN: Reddit account banned almost one year ago – unable to create and use new"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[170]]
#> List of 8
#>  $ by         : chr "romes"
#>  $ descendants: int 0
#>  $ id         : int 43624365
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:36:53"
#>  $ title      : chr "Show HN: I also built a word puzzle game"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.shuffdle.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[171]]
#> List of 10
#>  $ by         : chr "lamarcke"
#>  $ descendants: int 20
#>  $ id         : int 43624358
#>  $ kids       : int [1:8] 43626180 43624853 43625564 43625424 43625308 43624386 43624759 43625125
#>  $ score      : int 15
#>  $ text       : chr "So, me (dev) and my friend (designer) have been building a website&#x2F;mobile app to help users manage their g"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:35:51"
#>  $ title      : chr "Show HN: A website/app to help manage your game library"
#>  $ type       : chr "story"
#>  $ url        : chr "https://gamenode.app"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[172]]
#> List of 9
#>  $ by         : chr "mathgenius"
#>  $ descendants: int 18
#>  $ id         : int 43624293
#>  $ kids       : int [1:4] 43624766 43625111 43625194 43626076
#>  $ score      : int 50
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:29:29"
#>  $ title      : chr "Analytic Combinatorics – A Worked Example"
#>  $ type       : chr "story"
#>  $ url        : chr "https://grossack.site/2025/04/08/analytic-combinatorics-example.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[173]]
#> List of 9
#>  $ by         : chr "rbanffy"
#>  $ descendants: int 0
#>  $ id         : int 43624288
#>  $ kids       : int 43624315
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:29:13"
#>  $ title      : chr "New DRAM+ memory designed to provide DRAM performance with SSD-like capabilities"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.tomshardware.com/pc-components/dram/dram-memory-designed-to-provide-dram-performance-with-ssd-like-"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[174]]
#> List of 9
#>  $ by         : chr "rbanffy"
#>  $ descendants: int 0
#>  $ id         : int 43624275
#>  $ kids       : int 43624318
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:28:09"
#>  $ title      : chr "Space nuclear power poised for breakthroughs – if NASA and DoD stay committed"
#>  $ type       : chr "story"
#>  $ url        : chr "https://spacenews.com/space-nuclear-power-at-a-crossroads-as-industry-pushes-for-steady-investment/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[175]]
#> List of 9
#>  $ by         : chr "kernelito"
#>  $ descendants: int 0
#>  $ id         : int 43624234
#>  $ kids       : int [1:2] 43624235 43624247
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:24:36"
#>  $ title      : chr "Opensource operators evals"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/nottelabs/open-operator-evals"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[176]]
#> List of 9
#>  $ by         : chr "bookofjoe"
#>  $ descendants: int 1
#>  $ id         : int 43624227
#>  $ kids       : int [1:2] 43624314 43624323
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:24:05"
#>  $ title      : chr "Turn your page into 90s GeoCities masterpiece"
#>  $ type       : chr "story"
#>  $ url        : chr "https://geocities.live/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[177]]
#> List of 8
#>  $ by         : chr "newaccountlol"
#>  $ descendants: int 0
#>  $ id         : int 43624224
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:23:44"
#>  $ title      : chr "Why did the IETF choose 192.168/16 to be a private IP address class?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://superuser.com/questions/784978/why-did-the-ietf-specifically-choose-192-168-16-to-be-a-private-ip-address-class"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[178]]
#> List of 8
#>  $ by         : chr "zhengiszen"
#>  $ descendants: int 0
#>  $ id         : int 43624222
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:23:32"
#>  $ title      : chr "Dumb AIs, Smart Censors: The Future of Web Fragmentation – Digital Medusa"
#>  $ type       : chr "story"
#>  $ url        : chr "https://digitalmedusa.org/dumb-ais-smart-censors-the-future-of-web-fragmentation/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[179]]
#> List of 9
#>  $ by         : chr "tomtomistaken"
#>  $ descendants: int 84
#>  $ id         : int 43624220
#>  $ kids       : int [1:45] 43625519 43625428 43625094 43624471 43625691 43624701 43625213 43624496 43624773 43624954 ...
#>  $ score      : int 422
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:23:29"
#>  $ title      : chr "Apache ECharts"
#>  $ type       : chr "story"
#>  $ url        : chr "https://echarts.apache.org/en/index.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[180]]
#> List of 9
#>  $ by         : chr "Philpax"
#>  $ descendants: int 11
#>  $ id         : int 43624211
#>  $ kids       : int [1:9] 43625875 43625307 43624521 43624250 43625109 43624681 43624407 43624548 43624212
#>  $ score      : int 33
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:22:35"
#>  $ title      : chr "US to go ahead with imposition of 104% tariff China from Wednesday"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theguardian.com/us-news/live/2025/apr/08/donald-trump-threatens-tariffs-50-per-cent-china-us-politi"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[181]]
#> List of 9
#>  $ by         : chr "voxadam"
#>  $ descendants: int 0
#>  $ id         : int 43624199
#>  $ kids       : int 43624213
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:21:37"
#>  $ title      : chr "The Computers of EPCOT the 80s [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=fd7IiBOIwDM"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[182]]
#> List of 9
#>  $ by         : chr "Marius_Manola"
#>  $ descendants: int 0
#>  $ id         : int 43624174
#>  $ score      : int 1
#>  $ text       : chr "You can now build teams for hackathons much faster!"
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:19:39"
#>  $ title      : chr "Show HN: Tinder for Hackathons"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.startuping.io"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[183]]
#> List of 9
#>  $ by         : chr "ishtiaqrahman"
#>  $ descendants: int 0
#>  $ id         : int 43624171
#>  $ score      : int 1
#>  $ text       : chr "Hey HN,<p>I’m a startup founder who’s far too busy chasing product-market fit to slog through endless stock mar"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:19:15"
#>  $ title      : chr "Show HN: I Built an AI Agent for Daily Stock Market Brief from 1K+ Headlines"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.gptinvestor.co/daily/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[184]]
#> List of 9
#>  $ by         : chr "napolux"
#>  $ descendants: int 0
#>  $ id         : int 43624159
#>  $ kids       : int 43624190
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:18:10"
#>  $ title      : chr "Denial"
#>  $ type       : chr "story"
#>  $ url        : chr "https://adactio.com/journal/21831"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[185]]
#> List of 8
#>  $ by         : chr "giuliomagnifico"
#>  $ descendants: int 0
#>  $ id         : int 43624150
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:17:50"
#>  $ title      : chr "Avatar Appearance Shapes How Our Brain Responds to Virtual Actions"
#>  $ type       : chr "story"
#>  $ url        : chr "https://neurosciencenews.com/avatar-ai-brain-28564/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[186]]
#> List of 9
#>  $ by         : chr "docmechanic"
#>  $ descendants: int 2
#>  $ id         : int 43624135
#>  $ kids       : int 43624236
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:16:14"
#>  $ title      : chr "Researchers discover why plastic sheds dangerous fragments"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.sciencedaily.com/releases/2025/04/250407172923.htm"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[187]]
#> List of 9
#>  $ by         : chr "spzb"
#>  $ descendants: int 1
#>  $ id         : int 43624133
#>  $ kids       : int [1:2] 43624178 43624148
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:16:07"
#>  $ title      : chr "Television of the Retro-Future"
#>  $ type       : chr "story"
#>  $ url        : chr "https://newslttrs.com/television-of-the-retro-future/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[188]]
#> List of 8
#>  $ by         : chr "ilamont"
#>  $ descendants: int 0
#>  $ id         : int 43624117
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:15:01"
#>  $ title      : chr "Sparklink – The Biggest Wireless Standard You Have Never Heard About"
#>  $ type       : chr "story"
#>  $ url        : chr "https://digitstodollars.com/2025/03/27/sparklink-the-biggest-wireless-standard-you-have-never-heard-about/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[189]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43624112
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:14:33"
#>  $ title      : chr "Argentina's Football Roots Are at Risk of Privatization"
#>  $ type       : chr "story"
#>  $ url        : chr "https://jacobin.com/2025/03/argentina-football-privatization-milei-clubs/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[190]]
#> List of 9
#>  $ by         : chr "GabrielBianconi"
#>  $ descendants: int 4
#>  $ id         : int 43624111
#>  $ kids       : int 43624400
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:14:10"
#>  $ title      : chr "Can reinforcement learning for LLMs scale beyond math and coding tasks? Probably"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arxiv.org/abs/2503.23829"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[191]]
#> List of 9
#>  $ by         : chr "bentobean"
#>  $ descendants: int 1
#>  $ id         : int 43624102
#>  $ kids       : int [1:2] 43624495 43624110
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:13:30"
#>  $ title      : chr "False X Post Triggers Trillion Dollar Market Fluctuations over Tariff Halt"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.npr.org/2025/04/07/nx-s1-5355055/tariffs-markets-x-social-media"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[192]]
#> List of 9
#>  $ by         : chr "bentobean"
#>  $ descendants: int 0
#>  $ id         : int 43624097
#>  $ kids       : int 43624120
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:13:22"
#>  $ title      : chr "Net Neutrality's Fate Signalled the End of Federal Consumer Protection"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.techdirt.com/2025/04/07/federal-consumer-protection-is-dead-the-fate-of-net-neutrality-warned-you-it-was-coming/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[193]]
#> List of 9
#>  $ by         : chr "docmechanic"
#>  $ descendants: int 1
#>  $ id         : int 43624095
#>  $ kids       : int 43624096
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:13:15"
#>  $ title      : chr "Saturn's moon Titan could harbor life, but only a tiny amount, study finds"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.sciencedaily.com/releases/2025/04/250407172910.htm"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[194]]
#> List of 9
#>  $ by         : chr "doener"
#>  $ descendants: int 2
#>  $ id         : int 43624085
#>  $ kids       : int [1:2] 43624255 43624800
#>  $ score      : int 14
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:12:42"
#>  $ title      : chr "The Trump White House Cited My Research to Justify Tariffs. It Got It All Wrong"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/07/opinion/trump-tariff-math-formula.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[195]]
#> List of 9
#>  $ by         : chr "nesk_"
#>  $ descendants: int 0
#>  $ id         : int 43624079
#>  $ kids       : int 43624105
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:12:18"
#>  $ title      : chr "MCP Security: Poisoning Agents"
#>  $ type       : chr "story"
#>  $ url        : chr "https://invariantlabs.ai/blog/mcp-security-notification-tool-poisoning-attacks"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[196]]
#> List of 8
#>  $ by         : chr "lostmsu"
#>  $ descendants: int 0
#>  $ id         : int 43624067
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:11:03"
#>  $ title      : chr "Dynamically Linked Rust Binary: An Experiment"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.kxxt.dev/blog/fully-dynamically-linked-rust-binary/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[197]]
#> List of 9
#>  $ by         : chr "matteoraso"
#>  $ descendants: int 0
#>  $ id         : int 43624061
#>  $ kids       : int 43624072
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:10:34"
#>  $ title      : chr "A Deep Dive into Wikimedia"
#>  $ type       : chr "story"
#>  $ url        : chr "https://matteoraso.github.io/a-deep-dive-into-wikimedia.html#a-deep-dive-into-wikimedia"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[198]]
#> List of 9
#>  $ by         : chr "petethomas"
#>  $ descendants: int 1
#>  $ id         : int 43624055
#>  $ kids       : int [1:2] 43624567 43624083
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:10:26"
#>  $ title      : chr "Hackers Spied on 100 US Bank Regulators' Emails for over a Year"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bloomberg.com/news/articles/2025-04-08/hackers-spied-on-100-bank-regulators-emails-for-over-a-year"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[199]]
#> List of 9
#>  $ by         : chr "Brajeshwar"
#>  $ descendants: int 0
#>  $ id         : int 43624033
#>  $ kids       : int 43624060
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:08:03"
#>  $ title      : chr "Phone Should Be Distributed, Not Centralized"
#>  $ type       : chr "story"
#>  $ url        : chr "https://brainbaking.com/post/2025/04/your-phone-should-be-distributed-not-centralized/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[200]]
#> List of 9
#>  $ by         : chr "giuliomagnifico"
#>  $ descendants: int 2
#>  $ id         : int 43624020
#>  $ kids       : int [1:3] 43624101 43624115 43624037
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:06:50"
#>  $ title      : chr "Framework \"temporarily pausing\" some laptop sales because of new tariffs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/gadgets/2025/04/framework-temporarily-pausing-some-laptop-sales-because-of-new-tariffs/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[201]]
#> List of 9
#>  $ by         : chr "bguebert"
#>  $ descendants: int 1
#>  $ id         : int 43624018
#>  $ kids       : int 43624658
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:06:46"
#>  $ title      : chr "Biosciences announces de-extinction of the dire wolves"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.kxan.com/news/texas/a-revolutionary-milestone-colossal-biosciences-announces-de-extinction-of-the-dire-wolves/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[202]]
#> List of 9
#>  $ by         : chr "1st1"
#>  $ descendants: int 0
#>  $ id         : int 43624006
#>  $ kids       : int 43624014
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:05:50"
#>  $ title      : chr "Hey Drizzle, please help – we want to speak SQL"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.geldata.com/blog/hey-drizzle-please-help-we-want-to-speak-sql"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[203]]
#> List of 9
#>  $ by         : chr "wenyongqd"
#>  $ descendants: int 2
#>  $ id         : int 43623984
#>  $ kids       : int [1:3] 43624986 43624682 43624007
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:03:40"
#>  $ title      : chr "Show HN: Why Every Developer Needs an AI Headshot (Even If You Hate Cameras)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.portrait-ai.net/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[204]]
#> List of 8
#>  $ by         : chr "wertyk"
#>  $ descendants: int 0
#>  $ id         : int 43623972
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:02:55"
#>  $ title      : chr "SmolVLM: Redefining small and efficient multimodal models"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arxiv.org/abs/2504.05299"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[205]]
#> List of 9
#>  $ by         : chr "westurner"
#>  $ descendants: int 1
#>  $ id         : int 43623969
#>  $ kids       : int 43623983
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:02:40"
#>  $ title      : chr "A step towards life on Mars? Lichens survive Martian simulation in new study"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.eurekalert.org/news-releases/1079008"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[206]]
#> List of 9
#>  $ by         : chr "speckx"
#>  $ descendants: int 3
#>  $ id         : int 43623964
#>  $ kids       : int [1:4] 43624803 43624050 43624056 43623970
#>  $ score      : int 10
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:02:15"
#>  $ title      : chr "IRS Agrees to Share Migrants' Tax Information with ICE"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/08/us/politics/irs-ice-tax-data-deal.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[207]]
#> List of 8
#>  $ by         : chr "charlieirish"
#>  $ descendants: int 0
#>  $ id         : int 43623944
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:00:36"
#>  $ title      : chr "NetBird – Open-Source Zero Trust Networking"
#>  $ type       : chr "story"
#>  $ url        : chr "https://netbird.io/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[208]]
#> List of 10
#>  $ by         : chr "corbihael"
#>  $ descendants: int 2
#>  $ id         : int 43623943
#>  $ kids       : int [1:2] 43624321 43624692
#>  $ score      : int 2
#>  $ text       : chr "Hi HN,<p>I built Docs to PDF, a small tool to batch convert your Google Docs into PDFs — fast, clean, and witho"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:00:34"
#>  $ title      : chr "Show HN: Docs to PDF – Batch Convert Google Docs to PDF in a Few Clicks"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.docs-to-pdf.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[209]]
#> List of 9
#>  $ by         : chr "handfuloflight"
#>  $ descendants: int 4
#>  $ id         : int 43623941
#>  $ kids       : int 43624393
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 17:00:26"
#>  $ title      : chr "From documentation to code: closing the loop with generative AI"
#>  $ type       : chr "story"
#>  $ url        : chr "https://medium.com/@jlcases/from-documentation-to-code-closing-the-loop-with-generative-ai-4bb7754e15f6"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[210]]
#> List of 9
#>  $ by         : chr "Tomte"
#>  $ descendants: int 0
#>  $ id         : int 43623931
#>  $ kids       : int 43623992
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:59:12"
#>  $ title      : chr "Cases of Mangoes, Coolers of Freezies"
#>  $ type       : chr "story"
#>  $ url        : chr "https://sachachua.com/blog/2025/04/cases-of-mangoes-coolers-of-freezies/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[211]]
#> List of 9
#>  $ by         : chr "Codegres"
#>  $ descendants: int 0
#>  $ id         : int 43623868
#>  $ score      : int 1
#>  $ text       : chr "Glad to Launch our First person Boxing game Free Demo"
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:54:15"
#>  $ title      : chr "Show HN: Shuruka Boxing Free Demo on Steam"
#>  $ type       : chr "story"
#>  $ url        : chr "https://store.steampowered.com/app/3606460/Shuruka_Boxing_Demo/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[212]]
#> List of 9
#>  $ by         : chr "awestley"
#>  $ descendants: int 1
#>  $ id         : int 43623860
#>  $ kids       : int 43623861
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:53:19"
#>  $ title      : chr "Incremental Context Testing for LLMs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://slingingbits.com/incremental-context-testing-for-llms-a-simple-script-for-stress-testing-limits/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[213]]
#> List of 9
#>  $ by         : chr "handfuloflight"
#>  $ descendants: int 0
#>  $ id         : int 43623858
#>  $ kids       : int 43623865
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:53:09"
#>  $ title      : chr "Arnet: The Intelligence Report (2025) [pdf]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://media.artnet.com/image/upload/IR%20Spring%202025/Artnet_IR_2025_MAR17.pdf"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[214]]
#> List of 10
#>  $ by         : chr "openWrangler"
#>  $ descendants: int 8
#>  $ id         : int 43623820
#>  $ kids       : int [1:4] 43625722 43625974 43625734 43625926
#>  $ score      : int 52
#>  $ text       : chr "A common open source approach to observability will begin with databases and visualizations for telemetry - Gra"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:49:40"
#>  $ title      : chr "Show HN: Coroot – eBPF-based, open source observability with actionable insights"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/coroot/coroot"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[215]]
#> List of 9
#>  $ by         : chr "vixen99"
#>  $ descendants: int 0
#>  $ id         : int 43623810
#>  $ kids       : int 43623814
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:48:25"
#>  $ title      : chr "Gobal greening continues despite increased drought stress since 2000"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.sciencedirect.com/science/article/pii/S2351989423004262"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[216]]
#> List of 9
#>  $ by         : chr "saikatsg"
#>  $ descendants: int 4
#>  $ id         : int 43623774
#>  $ kids       : int [1:5] 43623818 43624451 43624043 43625560 43623781
#>  $ score      : int 12
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:45:13"
#>  $ title      : chr "Most Americans don't trust AI – or the people in charge of it"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theverge.com/ai-artificial-intelligence/644853/pew-gallup-data-americans-dont-trust-ai"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[217]]
#> List of 9
#>  $ by         : chr "petethomas"
#>  $ descendants: int 0
#>  $ id         : int 43623773
#>  $ kids       : int 43623778
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:45:00"
#>  $ title      : chr "Vitriol"
#>  $ type       : chr "story"
#>  $ url        : chr "https://en.wikipedia.org/wiki/Vitriol"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[218]]
#> List of 8
#>  $ by         : chr "joekarlsson"
#>  $ descendants: int 0
#>  $ id         : int 43623758
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:43:42"
#>  $ title      : chr "Six Months with ClickHouse at CloudQuery (The Good, the Bad, and the Unexpected)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.cloudquery.io/blog/six-months-with-clickhouse-at-cloudquery"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[219]]
#> List of 8
#>  $ by         : chr "doener"
#>  $ descendants: int 0
#>  $ id         : int 43623755
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:43:13"
#>  $ title      : chr "We Improve Liquidity of Energy Markets"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.second-foundation.eu/what-we-do"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[220]]
#> List of 9
#>  $ by         : chr "walterbell"
#>  $ descendants: int 0
#>  $ id         : int 43623745
#>  $ kids       : int 43623746
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:42:27"
#>  $ title      : chr "Trump Team Mulls Exporter Tax Credit as Tariff Counterweight"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.msn.com/en-us/money/other/trump-team-considers-exporter-tax-credit-as-tariff-counterweight/ar-AA1CtoPv"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[221]]
#> List of 9
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 1
#>  $ id         : int 43623743
#>  $ kids       : int 43623813
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:42:19"
#>  $ title      : chr "We've outsourced our confirmation biases to search engines"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/science/2025/03/weve-outsourced-our-confirmation-biases-to-search-engines/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[222]]
#> List of 9
#>  $ by         : chr "raybb"
#>  $ descendants: int 1
#>  $ id         : int 43623737
#>  $ kids       : int [1:2] 43624118 43623742
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:41:58"
#>  $ title      : chr "Framework pauses sales on laptops it will make a loss on"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theregister.com/2025/04/08/small_hardware_firms_tariffs/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[223]]
#> List of 9
#>  $ by         : chr "DebtDeflation"
#>  $ descendants: int 2
#>  $ id         : int 43623710
#>  $ kids       : int 43623750
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:39:52"
#>  $ title      : chr "Quantum Physics Is on the Wrong Track, Says Gerard 'T Hooft"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.scientificamerican.com/article/breakthrough-prize-winner-gerard-t-hooft-says-quantum-mechanics-is-nonsense/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[224]]
#> List of 8
#>  $ by         : chr "dvolkhonskiy"
#>  $ descendants: int 0
#>  $ id         : int 43623697
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:38:29"
#>  $ title      : chr "Show HN: I built a 100% free Cursor rules generator"
#>  $ type       : chr "story"
#>  $ url        : chr "https://aiprompt.co/tools/cursor-rules-generator"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[225]]
#> List of 8
#>  $ by         : chr "kurinikku"
#>  $ descendants: int 0
#>  $ id         : int 43623659
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:34:54"
#>  $ title      : chr "Learning to Unlearn"
#>  $ type       : chr "story"
#>  $ url        : chr "https://ezzeriesa.notion.site/Learning-to-unlearn-1cf1308b420480edab1dde76922f50c8"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[226]]
#> List of 9
#>  $ by         : chr "rntn"
#>  $ descendants: int 1
#>  $ id         : int 43623634
#>  $ kids       : int [1:2] 43624001 43623653
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:33:13"
#>  $ title      : chr "Dual-class stock gives US company owners same power as ByteDance has over TikTok"
#>  $ type       : chr "story"
#>  $ url        : chr "https://theconversation.com/the-founder-kings-of-silicon-valley-dual-class-stock-gives-us-social-media-company-"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[227]]
#> List of 8
#>  $ by         : chr "jxmorris12"
#>  $ descendants: int 0
#>  $ id         : int 43623606
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:31:24"
#>  $ title      : chr "Understanding Flash Attention: Writing the Algorithm from Scratch in Triton"
#>  $ type       : chr "story"
#>  $ url        : chr "https://alexdremov.me/understanding-flash-attention-writing-the-algorithm-from-scratch-in-triton/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[228]]
#> List of 9
#>  $ by         : chr "impish9208"
#>  $ descendants: int 0
#>  $ id         : int 43623599
#>  $ kids       : int 43623617
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:30:47"
#>  $ title      : chr "Fatal Accident at Universal Stainless Leads Steelworkers to Flag Safety Failures"
#>  $ type       : chr "story"
#>  $ url        : chr "https://hntrbrk.com/fatal-accident-at-universal-stainless/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[229]]
#> List of 9
#>  $ by         : chr "dhorthy"
#>  $ descendants: int 0
#>  $ id         : int 43623589
#>  $ kids       : int 43623633
#>  $ score      : int 23
#>  $ text       : chr "Howdy HN - I&#x27;m Dex from HumanLayer (YC F24), and I&#x27;ve been building AI agents for a while. After tryi"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:29:44"
#>  $ title      : chr "12-Factor Agents: Patterns of Great LLM Applications"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[230]]
#> List of 9
#>  $ by         : chr "sebestindragos"
#>  $ descendants: int 4
#>  $ id         : int 43623572
#>  $ kids       : int [1:6] 43625534 43623730 43623662 43624494 43623761 43623597
#>  $ score      : int 5
#>  $ text       : chr "I’ve been running a side project for a bit over 1 year. Shortly after launching I posted a ShowHN thread to sho"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:28:14"
#>  $ title      : chr "I open sourced my side project and no one cared"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[231]]
#> List of 8
#>  $ by         : chr "urcyanide"
#>  $ descendants: int 0
#>  $ id         : int 43623568
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:27:53"
#>  $ title      : chr "Earth Observability with the Help of Vectors"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.vectorchord.ai/3-billion-vectors-in-postgresql-to-protect-the-earth"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[232]]
#> List of 9
#>  $ by         : chr "thejash"
#>  $ descendants: int 1
#>  $ id         : int 43623550
#>  $ kids       : int 43625430
#>  $ score      : int 46
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:26:20"
#>  $ title      : chr "Sculptor: Catch and fix issues as you code"
#>  $ type       : chr "story"
#>  $ url        : chr "https://imbue.com/product/sculptor/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[233]]
#> List of 8
#>  $ by         : chr "Brajeshwar"
#>  $ descendants: int 0
#>  $ id         : int 43623544
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:25:53"
#>  $ title      : chr "With the Great Mussel Die-Off, Scientists Scramble for Answers"
#>  $ type       : chr "story"
#>  $ url        : chr "https://e360.yale.edu/features/freshwater-mussels"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[234]]
#> List of 9
#>  $ by         : chr "Brajeshwar"
#>  $ descendants: int 3
#>  $ id         : int 43623543
#>  $ kids       : int [1:3] 43623912 43624527 43623601
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:25:45"
#>  $ title      : chr "A Lack of Intelligence, Not Training, May Be Why People Struggle with Computers"
#>  $ type       : chr "story"
#>  $ url        : chr "https://scitechdaily.com/new-study-a-lack-of-intelligence-not-training-may-be-why-people-struggle-with-computers/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[235]]
#> List of 8
#>  $ by         : chr "Brajeshwar"
#>  $ descendants: int 0
#>  $ id         : int 43623541
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:25:37"
#>  $ title      : chr "We should talk more about air-conditioning"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.technologyreview.com/2025/04/03/1114182/air-conditioning-demand/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[236]]
#> List of 8
#>  $ by         : chr "DanielBMarkham"
#>  $ descendants: int 0
#>  $ id         : int 43623521
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:23:50"
#>  $ title      : chr "I Killed My Beloved Electron Beam Project"
#>  $ type       : chr "story"
#>  $ url        : chr "https://twitter.com/Xaraphim/status/1909601924229337119"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[237]]
#> List of 9
#>  $ by         : chr "tyleo"
#>  $ descendants: int 1
#>  $ id         : int 43623520
#>  $ kids       : int [1:2] 43623574 43623549
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:23:45"
#>  $ title      : chr "The C# Dev Kit extension is not working anymore"
#>  $ type       : chr "story"
#>  $ url        : chr "https://forum.cursor.com/t/the-c-dev-kit-extension-is-not-working-anymore/76226"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[238]]
#> List of 8
#>  $ by         : chr "auraham"
#>  $ descendants: int 0
#>  $ id         : int 43623503
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:22:33"
#>  $ title      : chr "Visual Studio Code Themes"
#>  $ type       : chr "story"
#>  $ url        : chr "https://vscodethemes.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[239]]
#> List of 8
#>  $ by         : chr "hn_acker"
#>  $ descendants: int 0
#>  $ id         : int 43623494
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:21:16"
#>  $ title      : chr "Viral DRM Awarded Damages for Its 512(f) Claims, but at What Cost?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.ericgoldman.org/archives/2025/04/viral-drm-awarded-damages-for-its-512f-claims-but-at-what-cost.htm"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[240]]
#> List of 9
#>  $ by         : chr "not_your_mentat"
#>  $ descendants: int 1
#>  $ id         : int 43623484
#>  $ kids       : int 43624396
#>  $ score      : int 2
#>  $ text       : chr "I&#x27;m currently a FE dev working for a company that makes a DB application (basically a fancy CMS for a nich"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:20:06"
#>  $ title      : chr "How do you interview Senior UX Designers?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[241]]
#> List of 9
#>  $ by         : chr "bookofjoe"
#>  $ descendants: int 2
#>  $ id         : int 43623471
#>  $ kids       : int 43623504
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:19:09"
#>  $ title      : chr "Magicquit"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/BigBerny/magicquit"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[242]]
#> List of 9
#>  $ by         : chr "hn_acker"
#>  $ descendants: int 0
#>  $ id         : int 43623459
#>  $ kids       : int 43623467
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:18:07"
#>  $ title      : chr "President Trump, the Income Tax Wasn't a Mistake. But It Was an Accident"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.propublica.org/article/history-income-tax-history-16th-amendment-trump-tariffs-great-depression"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[243]]
#> List of 9
#>  $ by         : chr "feross"
#>  $ descendants: int 2
#>  $ id         : int 43623454
#>  $ kids       : int [1:3] 43623735 43623487 43623779
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:17:54"
#>  $ title      : chr "Apple's China Problem, Apple in the Short Term, Tech's Complement Risk"
#>  $ type       : chr "story"
#>  $ url        : chr "https://stratechery.com/2025/apples-china-problem-apple-in-the-short-term-techs-complement-risk/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[244]]
#> List of 8
#>  $ by         : chr "hn_acker"
#>  $ descendants: int 0
#>  $ id         : int 43623437
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:16:20"
#>  $ title      : chr "Connecticut DMV Never Set Up System to Enforce a Century-Old Towing Law"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.propublica.org/article/connecticut-dmv-towing-law-enforcement"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[245]]
#> List of 8
#>  $ by         : chr "ethos378"
#>  $ descendants: int 0
#>  $ id         : int 43623429
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:15:36"
#>  $ title      : chr "Show HN: QuillSpace – An Ulysses Alternative on Windows"
#>  $ type       : chr "story"
#>  $ url        : chr "https://quillspace.app/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[246]]
#> List of 8
#>  $ by         : chr "parlam"
#>  $ descendants: int 0
#>  $ id         : int 43623417
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:14:55"
#>  $ title      : chr "Cogito Preview: IDA as a path to general superintelligence"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.deepcogito.com/research/cogito-v1-preview"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[247]]
#> List of 9
#>  $ by         : chr "intotheabyss999"
#>  $ descendants: int 0
#>  $ id         : int 43623409
#>  $ kids       : int 43623410
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:13:44"
#>  $ title      : chr "Try saving and organizing your links on Keeplinker"
#>  $ type       : chr "story"
#>  $ url        : chr "https://keeplinker.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[248]]
#> List of 9
#>  $ by         : chr "mmcdermott"
#>  $ descendants: int 3
#>  $ id         : int 43623370
#>  $ kids       : int [1:4] 43623395 43624168 43623777 43623372
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:10:37"
#>  $ title      : chr "Shopify Says No New Hires Unless AI Can't Do the Job"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.wsj.com/tech/ai/shopify-says-no-new-hires-unless-ai-cant-do-the-job-81c34f1e"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[249]]
#> List of 9
#>  $ by         : chr "misterdata"
#>  $ descendants: int 0
#>  $ id         : int 43623367
#>  $ kids       : int 43623420
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:10:06"
#>  $ title      : chr "Looks like M4 support for asahilinux is going be rather painful"
#>  $ type       : chr "story"
#>  $ url        : chr "https://social.treehouse.systems/@sven/114278224116678776"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[250]]
#> List of 9
#>  $ by         : chr "speckx"
#>  $ descendants: int 1
#>  $ id         : int 43623356
#>  $ kids       : int [1:2] 43623726 43623376
#>  $ score      : int 10
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:09:04"
#>  $ title      : chr "Justice Department disbanding a unit dedicated to crypto-related investigations"
#>  $ type       : chr "story"
#>  $ url        : chr "https://fortune.com/crypto/2025/04/08/doj-ncet-disbands-memo-todd-blanche-trump/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[251]]
#> List of 9
#>  $ by         : chr "bookofjoe"
#>  $ descendants: int 1
#>  $ id         : int 43623333
#>  $ kids       : int 43623347
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:06:36"
#>  $ title      : chr "Why Cameras Are Popping Up in Eldercare Facilities"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/07/health/cameras-assisted-living.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[252]]
#> List of 9
#>  $ by         : chr "pavodive"
#>  $ descendants: int 0
#>  $ id         : int 43623309
#>  $ score      : int 1
#>  $ text       : chr "I learned a lot of R with the swirl package. I wanted something similar to learn pandas, so I hacked &quot;Swir"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:04:12"
#>  $ title      : chr "Show HN: Swirly, A CLI based Python trainer similar to R's Swirl package"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/PavoDive/swirly"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[253]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43623307
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:04:03"
#>  $ title      : chr "Hedging our bet on forest permanence for the viability of climate targets"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nature.com/articles/s41467-025-57607-x"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[254]]
#> List of 8
#>  $ by         : chr "ma9o"
#>  $ descendants: int 0
#>  $ id         : int 43623293
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:02:34"
#>  $ title      : chr "Show HN: SerenGPTy – See who else is asking the same questions to ChatGPT"
#>  $ type       : chr "story"
#>  $ url        : chr "https://chromewebstore.google.com/detail/serengpty-find-similar-ch/gegdmemlodiipfblgkmhdjciiejbgemn"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[255]]
#> List of 8
#>  $ by         : chr "diwank"
#>  $ descendants: int 0
#>  $ id         : int 43623290
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:02:08"
#>  $ title      : chr "Show HN: Open Responses –Self-hosted OpenAI Responses API, works with all models"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/open-responses/open-responses"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[256]]
#> List of 9
#>  $ by         : chr "feross"
#>  $ descendants: int 0
#>  $ id         : int 43623288
#>  $ kids       : int 43623443
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:02:04"
#>  $ title      : chr "Reminder: Livestream This Thursday April 10: Open AI WebRTC Q&A with Sean DuBois"
#>  $ type       : chr "story"
#>  $ url        : chr "https://webrtchacks.com/livestream-april-10-open-ai-webrtc-qa-with-sean-dubois/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[257]]
#> List of 8
#>  $ by         : chr "ingve"
#>  $ descendants: int 0
#>  $ id         : int 43623280
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 16:00:52"
#>  $ title      : chr "JetBrains Terminal: A New Architecture"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.jetbrains.com/idea/2025/04/jetbrains-terminal-a-new-architecture/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[258]]
#> List of 8
#>  $ by         : chr "dubrado"
#>  $ descendants: int 0
#>  $ id         : int 43623267
#>  $ score      : int 1
#>  $ text       : chr "As a participant, you get $25 in free platform credits! Just fill out the request form linked in the thread bel"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:59:52"
#>  $ title      : chr "Hyperbolic x vercel x Next.js Hackathon"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[259]]
#> List of 9
#>  $ by         : chr "geox"
#>  $ descendants: int 1
#>  $ id         : int 43623247
#>  $ kids       : int [1:2] 43623330 43623256
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:57:26"
#>  $ title      : chr "AI avatar tried to argue a case before a New York court"
#>  $ type       : chr "story"
#>  $ url        : chr "https://brooklyneagle.com/articles/2025/04/06/an-ai-avatar-tried-to-argue-a-case-before-a-new-york-court-the-ju"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[260]]
#> List of 9
#>  $ by         : chr "bayeslaw"
#>  $ descendants: int 0
#>  $ id         : int 43623237
#>  $ score      : int 2
#>  $ text       : chr "We are a pair of bootstrapped founders with several failed products behind us (ouch!)<p>While looking for our n"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:56:30"
#>  $ title      : chr "Show HN: Shouldibuild.it – Validate your startup/product ideas with real data"
#>  $ type       : chr "story"
#>  $ url        : chr "https://shouldibuild.it/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[261]]
#> List of 9
#>  $ by         : chr "NewUser76312"
#>  $ descendants: int 6
#>  $ id         : int 43623236
#>  $ kids       : int [1:3] 43625598 43624131 43624891
#>  $ score      : int 5
#>  $ text       : chr "I saw this post from YC: &quot;From OpenAI’s DeepResearch to xAI’s DeepSearch, we’re seeing the first real push"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:56:22"
#>  $ title      : chr "Ask HN: Who is getting actual value from 'AI Agents'?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[262]]
#> List of 9
#>  $ by         : chr "rnjailamba"
#>  $ descendants: int 1
#>  $ id         : int 43623231
#>  $ kids       : int [1:2] 43624268 43623253
#>  $ score      : int 11
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:55:59"
#>  $ title      : chr "How I Don't Use LLMs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.gleech.org/llms"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[263]]
#> List of 9
#>  $ by         : chr "voxadam"
#>  $ descendants: int 0
#>  $ id         : int 43623221
#>  $ kids       : int 43623223
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:54:46"
#>  $ title      : chr "China Mulling Ban on Hollywood Film Releases in Response to Trump Tariffs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.hollywoodreporter.com/movies/movie-news/china-mulling-ban-hollywood-film-releases-trump-tariffs-1236184531/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[264]]
#> List of 9
#>  $ by         : chr "tebuevd"
#>  $ descendants: int 0
#>  $ id         : int 43623217
#>  $ kids       : int 43623222
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:54:27"
#>  $ title      : chr "Why Nix Is Useful: A Minimal Example"
#>  $ type       : chr "story"
#>  $ url        : chr "https://dinislam.substack.com/p/why-nix-is-useful-a-minimal-example"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[265]]
#> List of 9
#>  $ by         : chr "dhfbshfbu4u3"
#>  $ descendants: int 1
#>  $ id         : int 43623214
#>  $ kids       : int [1:2] 43623235 43623225
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:54:20"
#>  $ title      : chr "Microsoft pushes back $1B plan for data centers in central Ohio"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.usatoday.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[266]]
#> List of 9
#>  $ by         : chr "voxadam"
#>  $ descendants: int 0
#>  $ id         : int 43623212
#>  $ kids       : int 43623238
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:54:04"
#>  $ title      : chr "Linux Storage, Filesystem, Memory-Management, and BPF Summit"
#>  $ type       : chr "story"
#>  $ url        : chr "https://lwn.net/Articles/1014815/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[267]]
#> List of 8
#>  $ by         : chr "koolhead17"
#>  $ descendants: int 0
#>  $ id         : int 43623209
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:53:49"
#>  $ title      : chr "Unlocking Innovation – Notes on Corporate Venture Capital Strategic Imperative"
#>  $ type       : chr "story"
#>  $ url        : chr "https://taghash.io/blog/unlocking-innovation-notes-on-corporate-venture-capital-through-a-strategic-imperative/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[268]]
#> List of 9
#>  $ by         : chr "TomatoProgram"
#>  $ descendants: int 0
#>  $ id         : int 43623202
#>  $ kids       : int 43623203
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:53:32"
#>  $ title      : chr "Screw Coding Assessments – an open source alternative to InterviewCoder"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/programmingTomato/ScrewCodingAssessments"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[269]]
#> List of 9
#>  $ by         : chr "rntn"
#>  $ descendants: int 4
#>  $ id         : int 43623173
#>  $ kids       : int [1:2] 43623201 43623211
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:49:54"
#>  $ title      : chr "97% of drivers want in-car payment system for tolls, parking, charging"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/cars/2025/04/97-of-drivers-want-in-car-payment-system-for-tolls-parking-charging/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[270]]
#> List of 9
#>  $ by         : chr "__NSL__"
#>  $ descendants: int 0
#>  $ id         : int 43623150
#>  $ kids       : int 43623230
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:47:59"
#>  $ title      : chr "MafiaBench: LLM eval for the social deduction game of Mafia"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.mafiabench.org/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[271]]
#> List of 9
#>  $ by         : chr "petethomas"
#>  $ descendants: int 0
#>  $ id         : int 43623102
#>  $ kids       : int 43623109
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:43:33"
#>  $ title      : chr "A16Z seeks to raise $20B megafund amid global interest in US AI startups"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/business/finance/andreessen-horowitz-seeks-raise-20-billion-megafund-amid-global-intere"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[272]]
#> List of 9
#>  $ by         : chr "dicroce"
#>  $ descendants: int 3
#>  $ id         : int 43623099
#>  $ kids       : int [1:2] 43624229 43624239
#>  $ score      : int 38
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:43:14"
#>  $ title      : chr "Show HN: HNSW index for vector embeddings in approx 500 LOC"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/dicroce/hnsw"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[273]]
#> List of 9
#>  $ by         : chr "distant_meadow"
#>  $ descendants: int 1
#>  $ id         : int 43623085
#>  $ kids       : int 43623100
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:41:36"
#>  $ title      : chr "Show HN: RankPoll – Ranked-choice polling with Condorcet analysis"
#>  $ type       : chr "story"
#>  $ url        : chr "https://rankpoll.me"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[274]]
#> List of 9
#>  $ by         : chr "jgalvez"
#>  $ descendants: int 0
#>  $ id         : int 43623076
#>  $ kids       : int 43623095
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:41:06"
#>  $ title      : chr "React Server Confusion"
#>  $ type       : chr "story"
#>  $ url        : chr "https://hire.jonasgalvez.com.br/2025/apr/8/react-server-confusion/#repost"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[275]]
#> List of 9
#>  $ by         : chr "rurp"
#>  $ descendants: int 1
#>  $ id         : int 43623025
#>  $ kids       : int [1:2] 43623104 43623042
#>  $ score      : int 10
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:36:19"
#>  $ title      : chr "As Social Security services are cut back, seniors face long drives"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.axios.com/2025/04/08/social-security-seniors-drive"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[276]]
#> List of 9
#>  $ by         : chr "nill0"
#>  $ descendants: int 0
#>  $ id         : int 43623017
#>  $ kids       : int 43623047
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:35:58"
#>  $ title      : chr "Everything You Always Wanted to Know About Mathematics – 2013 [pdf]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.math.cmu.edu/~jmackey/151_128/bws_book.pdf"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[277]]
#> List of 8
#>  $ by         : chr "ydnyshhh"
#>  $ descendants: int 0
#>  $ id         : int 43622999
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:34:58"
#>  $ title      : chr "Proof or Bluff? Evaluating LLMs on 2025 USA Math Olympiad"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arxiv.org/abs/2503.21934"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[278]]
#> List of 9
#>  $ by         : chr "mailyk"
#>  $ descendants: int 1
#>  $ id         : int 43622985
#>  $ kids       : int 43623106
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:34:10"
#>  $ title      : chr "Prions and Protein Design"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.asimov.press/p/prions"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[279]]
#> List of 8
#>  $ by         : chr "ydnyshhh"
#>  $ descendants: int 0
#>  $ id         : int 43622983
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:33:48"
#>  $ title      : chr "Rope to Nope and Back Again: A New Hybrid Attention Strategy"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arxiv.org/abs/2501.18795"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[280]]
#> List of 9
#>  $ by         : chr "ksec"
#>  $ descendants: int 0
#>  $ id         : int 43622974
#>  $ kids       : int 43623019
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:32:50"
#>  $ title      : chr "A begrudging defense of Nintendo's \"Game-Key cards\" for the Switch 2"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/gadgets/2025/04/a-begrudging-defense-of-nintendos-game-key-cards-for-the-switch-2/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[281]]
#> List of 9
#>  $ by         : chr "Ian_Macharia"
#>  $ descendants: int 0
#>  $ id         : int 43622966
#>  $ kids       : int 43623090
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:32:15"
#>  $ title      : chr "I Backdoored Cursor AI [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=FYok3diZY78"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[282]]
#> List of 9
#>  $ by         : chr "simonebrunozzi"
#>  $ descendants: int 0
#>  $ id         : int 43622947
#>  $ kids       : int 43622959
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:29:31"
#>  $ title      : chr "Some 352,000 young people emigrated from Italy in 10 years"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.ansa.it/english/news/general_news/2025/04/01/some-352000-young-people-emigrated-from-italy-in-10-ye"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[283]]
#> List of 8
#>  $ by         : chr "thomassmith65"
#>  $ descendants: int 0
#>  $ id         : int 43622945
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:29:08"
#>  $ title      : chr "G. G. Tonet \"Dedicated to Norbert Wiener\" (1981) [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=RUZ9SwK4xtc"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[284]]
#> List of 9
#>  $ by         : chr "Vox_Leone"
#>  $ descendants: int 1
#>  $ id         : int 43622923
#>  $ kids       : int 43623305
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:27:00"
#>  $ title      : chr "I Used to Work at NASA. I Have Some Insights About Sex in Space"
#>  $ type       : chr "story"
#>  $ url        : chr "https://slate.com/life/2025/04/space-nasa-sex-astronaut-sunita-williams-butch-wilmore.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[285]]
#> List of 10
#>  $ by         : chr "dtnewman"
#>  $ descendants: int 1
#>  $ id         : int 43622914
#>  $ kids       : int 43623350
#>  $ score      : int 3
#>  $ text       : chr "I&#x27;m often in the terminal and forget a command (or never knew it in the first place). This is a simple too"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:26:18"
#>  $ title      : chr "Show HN: Zev – Remember (or discover) terminal commands"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/dtnewman/zev"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[286]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43622907
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:25:47"
#>  $ title      : chr "Biomimetic freestanding microfractals for flexible electronics"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nature.com/articles/s41528-025-00381-z"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[287]]
#> List of 9
#>  $ by         : chr "throw0101c"
#>  $ descendants: int 0
#>  $ id         : int 43622898
#>  $ kids       : int 43622931
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:24:51"
#>  $ title      : chr "Big Newsletter: The history and politics of monopoly power"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thebignewsletter.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[288]]
#> List of 9
#>  $ by         : chr "voxadam"
#>  $ descendants: int 0
#>  $ id         : int 43622883
#>  $ kids       : int 43622896
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:23:39"
#>  $ title      : chr "A military satellite waiting to launch with ULA will now fly with SpaceX"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/space/2025/04/a-military-satellite-waiting-to-launch-with-ula-will-now-fly-with-spacex/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[289]]
#> List of 9
#>  $ by         : chr "Jimmc414"
#>  $ descendants: int 2
#>  $ id         : int 43622873
#>  $ kids       : int [1:2] 43625216 43622882
#>  $ score      : int 11
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:22:40"
#>  $ title      : chr "I became a doctor to save lives. The state of Alabama won't let me: op-ed"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.al.com/politics/2025/04/i-became-a-doctor-to-save-lives-the-state-of-alabama-wont-let-me-op-ed.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[290]]
#> List of 9
#>  $ by         : chr "throw0101c"
#>  $ descendants: int 1
#>  $ id         : int 43622872
#>  $ kids       : int 43622879
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:22:39"
#>  $ title      : chr "Did a private equity fire truck manufacturer consolidation worsen the LA fires?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thebignewsletter.com/p/did-a-private-equity-fire-truck-roll"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[291]]
#> List of 9
#>  $ by         : chr "stevensu"
#>  $ descendants: int 1
#>  $ id         : int 43622864
#>  $ kids       : int 43622865
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:21:46"
#>  $ title      : chr "I've built Gitoak, a open-source AI enhanced Chrome extension for GitHub"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/gitoaktools/gitoak"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[292]]
#> List of 8
#>  $ by         : chr "rbanffy"
#>  $ descendants: int 0
#>  $ id         : int 43622862
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:21:19"
#>  $ title      : chr "Cells are swapping their mitochondria. What does this mean for our health?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nature.com/articles/d41586-025-01064-5"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[293]]
#> List of 9
#>  $ by         : chr "danso"
#>  $ descendants: int 0
#>  $ id         : int 43622861
#>  $ kids       : int 43622900
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:21:19"
#>  $ title      : chr "Onomatopoeia Odyssey: How do animals sound across languages?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://pudding.cool/2025/03/language/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[294]]
#> List of 8
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 0
#>  $ id         : int 43622852
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:20:28"
#>  $ title      : chr "Dreckly: Pkgsrc fork focused on quality and portability to all Unix-like platfo"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/drecklypkg/dreckly"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[295]]
#> List of 9
#>  $ by         : chr "rbanffy"
#>  $ descendants: int 0
#>  $ id         : int 43622826
#>  $ kids       : int 43622838
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:18:46"
#>  $ title      : chr "Linux 6.15 Features Deliver a Lot for Intel and AMD, Many Other Changes"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.phoronix.com/review/linux-615-features"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[296]]
#> List of 9
#>  $ by         : chr "tntpreneur"
#>  $ descendants: int 0
#>  $ id         : int 43622822
#>  $ kids       : int 43622841
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:18:39"
#>  $ title      : chr "Google is paying some AI staff to do nothing for a year rather than join rivals"
#>  $ type       : chr "story"
#>  $ url        : chr "https://techcrunch.com/2025/04/07/google-is-allegedly-paying-some-ai-staff-to-do-nothing-for-a-year-rather-than-join-rivals/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[297]]
#> List of 9
#>  $ by         : chr "veesahni"
#>  $ descendants: int 4
#>  $ id         : int 43622819
#>  $ kids       : int [1:4] 43625539 43622820 43623655 43622848
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:18:17"
#>  $ title      : chr "Back with v2! My 9 year old updated The Gamey Game based on your feedback"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.armaansahni.com/game-v2/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[298]]
#> List of 9
#>  $ by         : chr "n1b0m"
#>  $ descendants: int 2
#>  $ id         : int 43622807
#>  $ kids       : int [1:2] 43622924 43622903
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:18:01"
#>  $ title      : chr "Stronger pour-over coffee with no extra beans unlocked by scientists"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theguardian.com/food/2025/apr/08/secret-to-stronger-pour-over-coffee-with-no-extra-beans-unlocked-by-scientists"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[299]]
#> List of 8
#>  $ by         : chr "rbanffy"
#>  $ descendants: int 0
#>  $ id         : int 43622804
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:17:50"
#>  $ title      : chr "A Deep Dive into Datacenter and Server Spending Forecasts"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nextplatform.com/2025/04/07/a-deep-dive-into-datacenter-and-server-spending-forecasts/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[300]]
#> List of 8
#>  $ by         : chr "marcusb"
#>  $ descendants: int 0
#>  $ id         : int 43622796
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:17:24"
#>  $ title      : chr "Why the Physics Underlying Life Is Fundamental and Computation Is Not"
#>  $ type       : chr "story"
#>  $ url        : chr "https://longnow.org/ideas/physics-life-complexity-assembly-theory/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[301]]
#> List of 9
#>  $ by         : chr "nfriedly"
#>  $ descendants: int 3
#>  $ id         : int 43622794
#>  $ kids       : int [1:4] 43622849 43622839 43623108 43622800
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:17:19"
#>  $ title      : chr "Framework stops selling some laptops in the US in response to tariffs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://liliputing.com/framework-stops-selling-some-laptops-in-the-us-in-response-to-tariffs/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[302]]
#> List of 9
#>  $ by         : chr "garyrob"
#>  $ descendants: int 0
#>  $ id         : int 43622790
#>  $ kids       : int 43622795
#>  $ score      : int 2
#>  $ text       : chr "I sent my MacBook Pro to Apple for repair, and it arrived there yesterday morning. Since then, a whole day now,"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:17:04"
#>  $ title      : chr "My MacBook Pro repair on hold \"because we need more information.\""
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[303]]
#> List of 9
#>  $ by         : chr "meetpateltech"
#>  $ descendants: int 0
#>  $ id         : int 43622776
#>  $ kids       : int 43623030
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:15:59"
#>  $ title      : chr "Anthropic Education Report: How University Students Use Claude"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.anthropic.com/news/anthropic-education-report-how-university-students-use-claude"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[304]]
#> List of 8
#>  $ by         : chr "austinallegro"
#>  $ descendants: int 0
#>  $ id         : int 43622770
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:15:32"
#>  $ title      : chr "How British 'geeks' launched one of most lucrative gaming franchises of all time"
#>  $ type       : chr "story"
#>  $ url        : chr "https://news.sky.com/story/how-chaotic-gang-of-british-geeks-launched-one-of-most-lucrative-gaming-franchises-o"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[305]]
#> List of 9
#>  $ by         : chr "ko_pivot"
#>  $ descendants: int 1
#>  $ id         : int 43622749
#>  $ kids       : int 43622759
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:13:54"
#>  $ title      : chr "Lena (2021)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://qntm.org/mmacevedo"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[306]]
#> List of 8
#>  $ by         : chr "thinkingemote"
#>  $ descendants: int 0
#>  $ id         : int 43622732
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:12:28"
#>  $ title      : chr "This Bench Does Not Exist"
#>  $ type       : chr "story"
#>  $ url        : chr "https://doesnotexist.openbenches.org/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[307]]
#> List of 9
#>  $ by         : chr "petethomas"
#>  $ descendants: int 0
#>  $ id         : int 43622731
#>  $ kids       : int 43622809
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:12:18"
#>  $ title      : chr "Justice Department Overhauls Cryptocurrency Enforcement"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bloomberg.com/news/articles/2025-04-08/justice-department-overhauls-cryptocurrency-enforcement"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[308]]
#> List of 9
#>  $ by         : chr "brgross"
#>  $ descendants: int 108
#>  $ id         : int 43622719
#>  $ kids       : int [1:36] 43622720 43624300 43625569 43623887 43625233 43626008 43625829 43624460 43624760 43625364 ...
#>  $ score      : int 506
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:11:26"
#>  $ title      : chr "Thank HN: The puzzle game I posted here 6 weeks ago got licensed by The Atlantic"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theatlantic.com/games/bracket-city/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[309]]
#> List of 9
#>  $ by         : chr "vitalmixofntrnt"
#>  $ descendants: int 0
#>  $ id         : int 43622711
#>  $ kids       : int 43623298
#>  $ score      : int 3
#>  $ text       : chr "Or would that go against the monolithic kernel paradigm of the Linux kernel?<p>Edit: There&#x27;s this flag in "| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:11:02"
#>  $ title      : chr "Can Linux have \"transfer data structures to new kernel\" rebooting like Minix?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[310]]
#> List of 9
#>  $ by         : chr "daavoo"
#>  $ descendants: int 0
#>  $ id         : int 43622705
#>  $ score      : int 1
#>  $ text       : chr "After working on agent evaluation the last weeks, we started to accumulate code to make trying different agent "| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:10:33"
#>  $ title      : chr "Show HN: Any-agent – a single interface to different agent frameworks"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/mozilla-ai/any-agent"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[311]]
#> List of 9
#>  $ by         : chr "todsacerdoti"
#>  $ descendants: int 25
#>  $ id         : int 43622703
#>  $ kids       : int [1:9] 43626128 43626139 43624974 43625683 43625932 43625680 43625623 43625568 43625345
#>  $ score      : int 83
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:10:29"
#>  $ title      : chr "Better typography with text-wrap pretty"
#>  $ type       : chr "story"
#>  $ url        : chr "https://webkit.org/blog/16547/better-typography-with-text-wrap-pretty/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[312]]
#> List of 9
#>  $ by         : chr "srobenalt"
#>  $ descendants: int 2
#>  $ id         : int 43622678
#>  $ kids       : int [1:2] 43622870 43622679
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:08:42"
#>  $ title      : chr "Bible Study App with a Built-In LLM"
#>  $ type       : chr "story"
#>  $ url        : chr "https://apps.apple.com/us/app/shepherd-ai-bible-study/id6743240020"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[313]]
#> List of 9
#>  $ by         : chr "gjtorikian"
#>  $ descendants: int 7
#>  $ id         : int 43622655
#>  $ kids       : int [1:7] 43622779 43622827 43622752 43622706 43622681 43623909 43622876
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:07:45"
#>  $ title      : chr "Tech C.E.O.s Spent Millions Courting Trump. It Has yet to Pay Off"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/08/technology/tech-ceos-lobbying-trump.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[314]]
#> List of 9
#>  $ by         : chr "nayanlad"
#>  $ descendants: int 1
#>  $ id         : int 43622647
#>  $ kids       : int [1:2] 43622648 43622835
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:07:04"
#>  $ title      : chr "GPU Sharing in Kubernetes: Nvidia Kai vs. Exostellar SDG"
#>  $ type       : chr "story"
#>  $ url        : chr "https://exostellar.io/2025/04/08/gpu-sharing-in-kubernetes-nvidia-kai-vs-exostellar-sdg/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[315]]
#> List of 9
#>  $ by         : chr "pr337h4m"
#>  $ descendants: int 1
#>  $ id         : int 43622638
#>  $ kids       : int 43624901
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:06:32"
#>  $ title      : chr "Study: Kids with Smartphones Are Less Depressed, Anxious, Bullied"
#>  $ type       : chr "story"
#>  $ url        : chr "https://reason.com/2025/04/07/study-kids-with-smartphones-are-less-depressed-anxious-bullied-than-peers-without-them/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[316]]
#> List of 9
#>  $ by         : chr "hello_code"
#>  $ descendants: int 2
#>  $ id         : int 43622621
#>  $ kids       : int [1:2] 43622622 43622698
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:04:20"
#>  $ title      : chr "I built Mochi to help brands post to Reddit strategically, not randomly"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.mochisocial.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[317]]
#> List of 8
#>  $ by         : chr "mpartel"
#>  $ descendants: int 0
#>  $ id         : int 43622612
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:03:40"
#>  $ title      : chr "SpacetimeDB"
#>  $ type       : chr "story"
#>  $ url        : chr "https://spacetimedb.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[318]]
#> List of 9
#>  $ by         : chr "hunvreus"
#>  $ descendants: int 0
#>  $ id         : int 43622601
#>  $ kids       : int 43622618
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:02:54"
#>  $ title      : chr "Secure and fast microVMs for serverless computing"
#>  $ type       : chr "story"
#>  $ url        : chr "https://firecracker-microvm.github.io/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[319]]
#> List of 9
#>  $ by         : chr "4ndrewl"
#>  $ descendants: int 1
#>  $ id         : int 43622590
#>  $ kids       : int [1:2] 43622902 43622597
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:01:52"
#>  $ title      : chr "Detective accused of weighing down laptop keys to pretend to work at home"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theguardian.com/uk-news/2025/apr/08/detective-accused-weighing-down-laptop-keys-pretend-work-home"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[320]]
#> List of 9
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 35
#>  $ id         : int 43622586
#>  $ kids       : int [1:11] 43623500 43623620 43623973 43623863 43624994 43623531 43625197 43623469 43623830 43623663 ...
#>  $ score      : int 31
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:01:34"
#>  $ title      : chr "Nearly $13M stolen from Abracadabra Finance in crypto heist"
#>  $ type       : chr "story"
#>  $ url        : chr "https://therecord.media/nearly-thirteen-million-stolen-abracadabra"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[321]]
#> List of 9
#>  $ by         : chr "encypherai"
#>  $ descendants: int 3
#>  $ id         : int 43622577
#>  $ kids       : int [1:2] 43622578 43623645
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:00:48"
#>  $ title      : chr "Show HN: AI detectors suck, here's an open-source way to embed proof in AI text"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/encypherai/encypher-ai"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[322]]
#> List of 9
#>  $ by         : chr "bhouston"
#>  $ descendants: int 1
#>  $ id         : int 43622575
#>  $ kids       : int [1:2] 43622824 43622598
#>  $ score      : int 17
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:00:42"
#>  $ title      : chr "After pro-Palestinian students, now foreign students being targeted by Trump"
#>  $ type       : chr "story"
#>  $ url        : chr "https://theintercept.com/2025/04/08/trump-immigration-international-student-visas-deport/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[323]]
#> List of 8
#>  $ by         : chr "NoteDance"
#>  $ descendants: int 0
#>  $ id         : int 43622573
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:00:40"
#>  $ title      : chr "Show HN: TensorFlow Implementation for Optimizer"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/NoteDance/optimizers"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[324]]
#> List of 8
#>  $ by         : chr "mooreds"
#>  $ descendants: int 0
#>  $ id         : int 43622571
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 15:00:24"
#>  $ title      : chr "Learning from the Legacy of 18F"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.lawfaremedia.org/article/learning-from-the-legacy-of-18f"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[325]]
#> List of 9
#>  $ by         : chr "jheimark"
#>  $ descendants: int 1
#>  $ id         : int 43622565
#>  $ kids       : int 43622566
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:59:42"
#>  $ title      : chr "Building an AI Firewall: Three Things I Learned While Securing MCP"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.costa.security/building-an-ai-firewall-three-things-i-learned-while-securing-mcp-f9a19b910a02"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[326]]
#> List of 8
#>  $ by         : chr "mooreds"
#>  $ descendants: int 0
#>  $ id         : int 43622561
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:59:38"
#>  $ title      : chr "Lambda programming errors that could cost you thousands of dollars a day (2018)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://asankha.medium.com/lambda-programming-errors-that-could-cost-you-thousands-of-dollars-a-day-265dfac354f"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[327]]
#> List of 8
#>  $ by         : chr "petecooper"
#>  $ descendants: int 0
#>  $ id         : int 43622556
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:59:11"
#>  $ title      : chr "OpenSSL 3.5.0 [LTS]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://openssl-library.org/post/2025-04-08-openssl-35-final-release/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[328]]
#> List of 9
#>  $ by         : chr "justinpaulson"
#>  $ descendants: int 1
#>  $ id         : int 43622551
#>  $ kids       : int 43622552
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:58:52"
#>  $ title      : chr "Show HN: Git Game Show – Multiplayer Game in Your Repo"
#>  $ type       : chr "story"
#>  $ url        : chr "https://justinpaulson.github.io/git_game_show/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[329]]
#> List of 9
#>  $ by         : chr "gheartt"
#>  $ descendants: int 5
#>  $ id         : int 43622535
#>  $ kids       : int [1:7] 43622555 43622536 43622710 43623088 43622798 43622576 43622603
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:57:17"
#>  $ title      : chr "Most PR Advice Misses What Matters Most"
#>  $ type       : chr "story"
#>  $ url        : chr "https://reillyherrewig.substack.com/p/human-centered-pull-requests-8-tips"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[330]]
#> List of 8
#>  $ by         : chr "carlos-menezes"
#>  $ descendants: int 0
#>  $ id         : int 43622519
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:55:45"
#>  $ title      : chr "The art of Struct Packing in C/C++ (2018)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.joshcaratelli.com/blog/struct-packing"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[331]]
#> List of 8
#>  $ by         : chr "hunvreus"
#>  $ descendants: int 0
#>  $ id         : int 43622514
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:55:27"
#>  $ title      : chr "We clone a running VM in 2 seconds"
#>  $ type       : chr "story"
#>  $ url        : chr "https://codesandbox.io/blog/how-we-clone-a-running-vm-in-2-seconds"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[332]]
#> List of 9
#>  $ by         : chr "josefresco"
#>  $ descendants: int 11
#>  $ id         : int 43622509
#>  $ kids       : int [1:2] 43622591 43622607
#>  $ score      : int 13
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:55:04"
#>  $ title      : chr "Microsoft workers say they've been fired after protest over Israel contract"
#>  $ type       : chr "story"
#>  $ url        : chr "https://apnews.com/article/microsoft-protest-employees-fired-israel-gaza-50th-anniversary-c5b3715fa1800450b8d0f639b492495e"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[333]]
#> List of 9
#>  $ by         : chr "antoviaque"
#>  $ descendants: int 0
#>  $ id         : int 43622508
#>  $ kids       : int 43622587
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:55:04"
#>  $ title      : chr "The Elephant in America's Room: Psychology Explains Our Political Civil War"
#>  $ type       : chr "story"
#>  $ url        : chr "https://medium.com/@_X_/the-elephant-in-americas-room-how-moral-psychology-explains-our-political-civil-war-e97824d07036"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[334]]
#> List of 8
#>  $ by         : chr "rntn"
#>  $ descendants: int 0
#>  $ id         : int 43622454
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:50:48"
#>  $ title      : chr "Science's big problem is a loss of influence, not a loss of trust"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nature.com/articles/d41586-025-01068-1"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[335]]
#> List of 9
#>  $ by         : chr "ohjeez"
#>  $ descendants: int 0
#>  $ id         : int 43622452
#>  $ kids       : int 43622458
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:50:43"
#>  $ title      : chr "A few thousand new Colorado homes will come with geothermal heat pumps"
#>  $ type       : chr "story"
#>  $ url        : chr "https://electrek.co/2025/04/02/dandelion-geothermal-lennar/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[336]]
#> List of 8
#>  $ by         : chr "chmaynard"
#>  $ descendants: int 0
#>  $ id         : int 43622439
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:49:55"
#>  $ title      : chr "Skip the setup: deploy a Cloudflare Workers application in seconds"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.cloudflare.com/deploy-workers-applications-in-seconds/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[337]]
#> List of 9
#>  $ by         : chr "adamfeldman"
#>  $ descendants: int 0
#>  $ id         : int 43622428
#>  $ kids       : int 43622432
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:48:17"
#>  $ title      : chr "Google Requires 'Free TV' Button on Google TV Remotes, for FAST"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.androidauthority.com/google-tv-remote-free-tv-button-3542332/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[338]]
#> List of 9
#>  $ by         : chr "thenthenthen"
#>  $ descendants: int 0
#>  $ id         : int 43622411
#>  $ kids       : int 43622455
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:46:40"
#>  $ title      : chr "Russia Covering Aircraft with Tires to Confuse Image-Matching Missile Seekers"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.twz.com/air/russia-covering-its-aircraft-in-tires-is-about-befuddling-image-matching-seekers-u-s-military-confirms"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[339]]
#> List of 8
#>  $ by         : chr "thejoeflow"
#>  $ descendants: int 0
#>  $ id         : int 43622399
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:45:27"
#>  $ title      : chr "Is Solo Bitcoin Mining a Good Investment?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.flowtwo.io/post/is-solo-bitcoin-mining-a-good-investment%3F"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[340]]
#> List of 8
#>  $ by         : chr "dotty-"
#>  $ descendants: int 0
#>  $ id         : int 43622389
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:44:43"
#>  $ title      : chr "Denuvo Technical Analysis"
#>  $ type       : chr "story"
#>  $ url        : chr "https://connorjaydunn.github.io/blog/posts/denuvo-analysis/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[341]]
#> List of 8
#>  $ by         : chr "ziptron"
#>  $ descendants: int 0
#>  $ id         : int 43622378
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:43:34"
#>  $ title      : chr "The Next Breakthrough in AI Agents Is Here [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=JOYSDqJdiro"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[342]]
#> List of 9
#>  $ by         : chr "tmslnz"
#>  $ descendants: int 0
#>  $ id         : int 43622330
#>  $ kids       : int 43622393
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:38:58"
#>  $ title      : chr "Pilots Discussed Alternate Ways to Land Before Deadly Jeju Air Crash"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/08/world/asia/jeju-crash-communications.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[343]]
#> List of 9
#>  $ by         : chr "TastyLamps"
#>  $ descendants: int 1
#>  $ id         : int 43622319
#>  $ kids       : int 43622473
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:37:37"
#>  $ title      : chr "Open RAG Eval"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/vectara/open-rag-eval"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[344]]
#> List of 9
#>  $ by         : chr "varun_ch"
#>  $ descendants: int 1
#>  $ id         : int 43622316
#>  $ kids       : int [1:3] 43622355 43622350 43622344
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:37:23"
#>  $ title      : chr "How to Hack the Breakthrough Prize (Ft. Session Confusion) (2024)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://varun.ch/posts/breakthrough/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[345]]
#> List of 9
#>  $ by         : chr "wavelander"
#>  $ descendants: int 0
#>  $ id         : int 43622273
#>  $ kids       : int 43622362
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:34:16"
#>  $ title      : chr "Generative Benchmarking"
#>  $ type       : chr "story"
#>  $ url        : chr "https://research.trychroma.com/generative-benchmarking"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[346]]
#> List of 9
#>  $ by         : chr "bentobean"
#>  $ descendants: int 0
#>  $ id         : int 43622272
#>  $ kids       : int 43622317
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:34:01"
#>  $ title      : chr "A Misinterpreted TV Appearance Moved $6T in 30 Minutes"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.newsweek.com/trump-tariffs-stock-market-tv-interview-2056463"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[347]]
#> List of 9
#>  $ by         : chr "eschnou"
#>  $ descendants: int 0
#>  $ id         : int 43622270
#>  $ score      : int 1
#>  $ text       : chr "Hi all, I&#x27;ve built Gepetto to automate the QA&#x2F;DevOps of my &#x27;vibe coded&#x27; projects. I wanted "| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:33:42"
#>  $ title      : chr "Show HN: Gepetto – A Minimalistic CLI-Based Browser Operator"
#>  $ type       : chr "story"
#>  $ url        : chr "https://gepetto.sh"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[348]]
#> List of 8
#>  $ by         : chr "vollmarj"
#>  $ descendants: int 0
#>  $ id         : int 43622263
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:33:08"
#>  $ title      : chr "GIScience in the Era of Artificial Intelligence"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arxiv.org/abs/2503.23633"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[349]]
#> List of 8
#>  $ by         : chr "bentobean"
#>  $ descendants: int 0
#>  $ id         : int 43622261
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:33:03"
#>  $ title      : chr "Scientists Discover New Third Method for Trait Inheritance Beyond DNA or RNA"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.popularmechanics.com/science/health/a64380912/amyloid-inheritance-mechanism/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[350]]
#> List of 9
#>  $ by         : chr "bentobean"
#>  $ descendants: int 0
#>  $ id         : int 43622250
#>  $ kids       : int 43622278
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:32:02"
#>  $ title      : chr "AI coding mandates are driving developers to the brink"
#>  $ type       : chr "story"
#>  $ url        : chr "https://leaddev.com/culture/ai-coding-mandates-are-driving-developers-to-the-brink"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[351]]
#> List of 9
#>  $ by         : chr "ColinWright"
#>  $ descendants: int 0
#>  $ id         : int 43622245
#>  $ kids       : int 43622402
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:31:44"
#>  $ title      : chr "The UK's proposed measures for court orders to suspend IP addresses/domain names"
#>  $ type       : chr "story"
#>  $ url        : chr "https://decoded.legal/blog/2025/04/the-uks-proposed-measures-for-court-orders-to-suspend-ip-addresses-and-domain-names/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[352]]
#> List of 9
#>  $ by         : chr "popol12"
#>  $ descendants: int 1
#>  $ id         : int 43622221
#>  $ kids       : int [1:2] 43622388 43622226
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:30:11"
#>  $ title      : chr "The West is bored to death"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.newstatesman.com/ideas/2025/04/the-west-is-bored-to-death"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[353]]
#> List of 8
#>  $ by         : chr "ieeespectrum"
#>  $ descendants: int 0
#>  $ id         : int 43622140
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:23:04"
#>  $ title      : chr "Engineers Are Using AI to Code Based on Vibes"
#>  $ type       : chr "story"
#>  $ url        : chr "https://spectrum.ieee.org/vibe-coding"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[354]]
#> List of 9
#>  $ by         : chr "bulla"
#>  $ descendants: int 0
#>  $ id         : int 43622133
#>  $ kids       : int 43622159
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:22:35"
#>  $ title      : chr "China to publish policy to boost RISC-V chip use nationwide"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/technology/china-publish-policy-boost-risc-v-chip-use-nationwide-sources-2025-03-04/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[355]]
#> List of 9
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43622121
#>  $ kids       : int 43622132
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:21:18"
#>  $ title      : chr "PFAS found in household dust near North Carolina chemical plant"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thenewlede.org/2025/03/pfas-found-in-household-dust-near-north-carolina-chemical-plant/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[356]]
#> List of 8
#>  $ by         : chr "thinkingemote"
#>  $ descendants: int 0
#>  $ id         : int 43622098
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:19:46"
#>  $ title      : chr "Positron Data Science IDE"
#>  $ type       : chr "story"
#>  $ url        : chr "https://positron.posit.co/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[357]]
#> List of 8
#>  $ by         : chr "0xKelsey"
#>  $ descendants: int 0
#>  $ id         : int 43622090
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:18:59"
#>  $ title      : chr "So, I Wrote a Book: The Story Behind 100 Go Mistakes"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thecoder.cafe/p/100-go-mistakes"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[358]]
#> List of 9
#>  $ by         : chr "bookofjoe"
#>  $ descendants: int 3
#>  $ id         : int 43622083
#>  $ kids       : int [1:3] 43622094 43622110 43622146
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:18:23"
#>  $ title      : chr "Nintendo boss Doug Bowser explains the $80 price for 'Mario Kart World'"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.washingtonpost.com/entertainment/video-games/2025/04/07/mario-kart-world-price-nintendo-doug-bowser/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[359]]
#> List of 10
#>  $ by         : chr "socaldev"
#>  $ descendants: int 1
#>  $ id         : int 43622065
#>  $ kids       : int 43622631
#>  $ score      : int 2
#>  $ text       : chr "I recently launched YourChecklist, a super minimal daily checklist app built with SwiftUI. While the to-do list"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:16:30"
#>  $ title      : chr "Show HN: YourChecklist – A lightweight daily checklist app that resets every day"
#>  $ type       : chr "story"
#>  $ url        : chr "https://apps.apple.com/in/app/daily-checklist-to-do-list/id6743703945"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[360]]
#> List of 9
#>  $ by         : chr "fork-bomber"
#>  $ descendants: int 0
#>  $ id         : int 43622060
#>  $ kids       : int 43622076
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:16:04"
#>  $ title      : chr "Ubuntu Adds Support for New Low-Cost RISC-V Board: The OrangePi RV2 8GB For –$64"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.phoronix.com/news/Ubuntu-Linux-On-OrangePi-RV2"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[361]]
#> List of 8
#>  $ by         : chr "vitorfrois"
#>  $ descendants: int 0
#>  $ id         : int 43622054
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:15:23"
#>  $ title      : chr "A Feel for the Data"
#>  $ type       : chr "story"
#>  $ url        : chr "https://briefer.cloud/blog/posts/look-the-data/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[362]]
#> List of 9
#>  $ by         : chr "czue"
#>  $ descendants: int 0
#>  $ id         : int 43622051
#>  $ kids       : int 43622130
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:15:12"
#>  $ title      : chr "My Takeaways from AI 2027 [Scott Alexander]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.astralcodexten.com/p/my-takeaways-from-ai-2027"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[363]]
#> List of 8
#>  $ by         : chr "Sienna1990"
#>  $ descendants: int 0
#>  $ id         : int 43622029
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:12:50"
#>  $ title      : chr "SVG Editor| SVG Converter"
#>  $ type       : chr "story"
#>  $ url        : chr "https://svgviewer.app/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[364]]
#> List of 8
#>  $ by         : chr "sandruso"
#>  $ descendants: int 0
#>  $ id         : int 43622025
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:12:36"
#>  $ title      : chr "Post-Act Clarity"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.rybarix.com/2025/04/08/post-act-clarity.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[365]]
#> List of 9
#>  $ by         : chr "croes"
#>  $ descendants: int 1
#>  $ id         : int 43622018
#>  $ kids       : int [1:2] 43622544 43622031
#>  $ score      : int 16
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:12:14"
#>  $ title      : chr "US Justice Dept disbands cryptocurrency enforcement unit"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/world/us/us-justice-dept-disbands-cryptocurrency-enforcement-unit-2025-04-08/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[366]]
#> List of 9
#>  $ by         : chr "tntpreneur"
#>  $ descendants: int 3
#>  $ id         : int 43622015
#>  $ kids       : int [1:3] 43622178 43622112 43622034
#>  $ score      : int 9
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:11:59"
#>  $ title      : chr "Lithuania fines Revolut 3.5M euros for money-laundering prevention failures"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/technology/lithuania-fines-revolut-35-million-euros-money-laundering-prevention-failures-2025-04-08/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[367]]
#> List of 9
#>  $ by         : chr "decazeno"
#>  $ descendants: int 8
#>  $ id         : int 43622013
#>  $ kids       : int [1:5] 43622014 43622020 43622498 43622136 43622424
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:11:52"
#>  $ title      : chr "Personal AI-Briefer for Founders"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.substant.ai/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[368]]
#> List of 8
#>  $ by         : chr "NaOH"
#>  $ descendants: int 0
#>  $ id         : int 43622010
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:11:40"
#>  $ title      : chr "The Austrian Cigarette Collection"
#>  $ type       : chr "story"
#>  $ url        : chr "http://www.zigsam.at"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[369]]
#> List of 10
#>  $ by         : chr "mkummer"
#>  $ descendants: int 0
#>  $ id         : int 43622008
#>  $ kids       : int 43622027
#>  $ score      : int 1
#>  $ text       : chr "After seeing yesterday&#x27;s browser MCP I published my Google Sheets MCP server, makes a really nice cloud da"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:11:33"
#>  $ title      : chr "Show HN: Google Sheets MCP"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/mkummer225/google-sheets-mcp"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[370]]
#> List of 9
#>  $ by         : chr "throwup238"
#>  $ descendants: int 0
#>  $ id         : int 43621989
#>  $ kids       : int 43622043
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:09:59"
#>  $ title      : chr "The CRPG Renaissance, Part 1: Fallout"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.filfre.net/2025/01/the-crpg-renaissance-part-1-fallout/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[371]]
#> List of 9
#>  $ by         : chr "srvaroa"
#>  $ descendants: int 2
#>  $ id         : int 43621971
#>  $ kids       : int [1:2] 43622193 43622186
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:08:48"
#>  $ title      : chr "AI generated code will choke delivery pipelines"
#>  $ type       : chr "story"
#>  $ url        : chr "https://varoa.net/2025/04/07/ai-generated-code.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[372]]
#> List of 10
#>  $ by         : chr "jdeng"
#>  $ descendants: int 2
#>  $ id         : int 43621953
#>  $ kids       : int 43622331
#>  $ score      : int 3
#>  $ text       : chr "Hello HN community!<p>I&#x27;m thrilled to introduce Rabrain, a tool that redefines how you manage and recall i"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:06:59"
#>  $ title      : chr "Show HN: Rabrain – AI Note Taking with Voice Input and Notion-Like Editor"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.rabrain.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[373]]
#> List of 8
#>  $ by         : chr "3littlefish"
#>  $ descendants: int 0
#>  $ id         : int 43621947
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:06:18"
#>  $ title      : chr "Deploy AI at Scale with YugabyteDB's Agentic AI App and Extensible Vector Search"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.yugabyte.com/blog/agentic-ai-and-extensible-vector-search/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[374]]
#> List of 8
#>  $ by         : chr "Tomte"
#>  $ descendants: int 0
#>  $ id         : int 43621926
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:04:43"
#>  $ title      : chr "An unused nuclear power plant became home to a world-class acoustics lab"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theverge.com/tech/644385/nuclear-power-plant-acoustics-lab"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[375]]
#> List of 8
#>  $ by         : chr "ivanlinux"
#>  $ descendants: int 0
#>  $ id         : int 43621925
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:04:38"
#>  $ title      : chr "SlapbirdAPM – the Free, and Open Source observability platform"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.slapbirdapm.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[376]]
#> List of 8
#>  $ by         : chr "geox"
#>  $ descendants: int 0
#>  $ id         : int 43621909
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:02:49"
#>  $ title      : chr "World’s oldest impact crater found, rewriting Earth’s ancient history"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.curtin.edu.au/news/media-release/worlds-oldest-impact-crater-found-rewriting-earths-ancient-history/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[377]]
#> List of 8
#>  $ by         : chr "aperi"
#>  $ descendants: int 0
#>  $ id         : int 43621902
#>  $ score      : int 1
#>  $ text       : chr "2 days ago, the UK government banned fake reviews and hidden fees but the extent to which the former is enforce"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:02:09"
#>  $ title      : chr "Fake reviews or just negative reviews? UK bans fake reviews"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[378]]
#> List of 9
#>  $ by         : chr "sakharesuraj07"
#>  $ descendants: int 0
#>  $ id         : int 43621897
#>  $ score      : int 1
#>  $ text       : chr "Hello, I&#x27;m Suraj Sakhare, and I developed this app to help users track their daily habits in a simple and intuitive way."
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:01:51"
#>  $ title      : chr "Show HN: A free minimalist daily habit tracker"
#>  $ type       : chr "story"
#>  $ url        : chr "https://habitpulse.xyz/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[379]]
#> List of 9
#>  $ by         : chr "kurdish-yoda"
#>  $ descendants: int 1
#>  $ id         : int 43621886
#>  $ kids       : int 43621887
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 14:00:15"
#>  $ title      : chr "Show HN: I Bombed an Interview, Then Built Mindorah to Fix It"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.mindorah.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[380]]
#> List of 10
#>  $ by         : chr "theonlyt3"
#>  $ descendants: int 8
#>  $ id         : int 43621841
#>  $ kids       : int [1:4] 43623344 43622236 43622572 43621885
#>  $ score      : int 7
#>  $ text       : chr "Hi HF, I&#x27;m Terrell, and we built an open-source app that lets developers create their own Operator with a "| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:56:08"
#>  $ title      : chr "Show HN: An open-source Operator that can use computers"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/aditya-nadkarni/spongecake"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[381]]
#> List of 8
#>  $ by         : chr "thm"
#>  $ descendants: int 0
#>  $ id         : int 43621838
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:55:58"
#>  $ title      : chr "Virtual reality: The widely-quoted media experts who are not what they seem"
#>  $ type       : chr "story"
#>  $ url        : chr "https://pressgazette.co.uk/publishers/digital-journalism/virtual-reality-the-widely-quoted-media-experts-who-ar"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[382]]
#> List of 9
#>  $ by         : chr "lordleft"
#>  $ descendants: int 0
#>  $ id         : int 43621827
#>  $ kids       : int 43621832
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:54:59"
#>  $ title      : chr "Microsoft Copilot Reunites Bill Gates, Steve Ballmer, and Satya Nadella [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=ncjM7mY4LvE"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[383]]
#> List of 9
#>  $ by         : chr "rntn"
#>  $ descendants: int 0
#>  $ id         : int 43621824
#>  $ kids       : int 43621911
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:54:46"
#>  $ title      : chr "XL Batteries is using petrochemical infrastructure to store solar and wind power"
#>  $ type       : chr "story"
#>  $ url        : chr "https://techcrunch.com/2025/04/08/xl-batteries-is-using-petrochemical-infrastructure-to-store-solar-and-wind-power/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[384]]
#> List of 8
#>  $ by         : chr "thm"
#>  $ descendants: int 0
#>  $ id         : int 43621822
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:54:25"
#>  $ title      : chr "Amazon's new Nova Sonic foundation model understands how you say it"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.aboutamazon.com/news/innovation-at-amazon/nova-sonic-voice-speech-foundation-model"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[385]]
#> List of 9
#>  $ by         : chr "artem001"
#>  $ descendants: int 0
#>  $ id         : int 43621783
#>  $ kids       : int 43621789
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:50:47"
#>  $ title      : chr "Top-30 Manual QA Interview Questions (+Answers)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://testrigor.com/blog/manual-qa-interview-questions/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[386]]
#> List of 9
#>  $ by         : chr "drydenwilliams"
#>  $ descendants: int 0
#>  $ id         : int 43621762
#>  $ kids       : int 43621861
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:49:06"
#>  $ title      : chr "Get Started with CarbonRunner in Minutes"
#>  $ type       : chr "story"
#>  $ url        : chr "https://carbonrunner.io/product/installation-guide"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[387]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43621760
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:49:05"
#>  $ title      : chr "DNA scaffolds enable self-assembling 3D electronic devices"
#>  $ type       : chr "story"
#>  $ url        : chr "https://techxplore.com/news/2025-03-dna-scaffolds-enable-3d-electronic.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[388]]
#> List of 9
#>  $ by         : chr "daviducolo"
#>  $ descendants: int 4
#>  $ id         : int 43621758
#>  $ kids       : int [1:4] 43621836 43622653 43621872 43621785
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:48:44"
#>  $ title      : chr "Sam Altman says AI will make coders 10x more productive, not replace them"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.windowscentral.com/software-apps/sam-altman-ai-will-make-coders-10x-more-productive-not-replace-them"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[389]]
#> List of 9
#>  $ by         : chr "gmays"
#>  $ descendants: int 0
#>  $ id         : int 43621757
#>  $ kids       : int 43621779
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:48:33"
#>  $ title      : chr "Americans Have $35T in Housing Wealth–and It's Costing Them"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.wsj.com/economy/housing/american-home-equity-wealth-costs-982e79a4"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[390]]
#> List of 8
#>  $ by         : chr "drydenwilliams"
#>  $ descendants: int 0
#>  $ id         : int 43621753
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:48:14"
#>  $ title      : chr "A CI runner that reduces emissions by picking the cloud region for you"
#>  $ type       : chr "story"
#>  $ url        : chr "https://carbonrunner.io/features/multiple-regions"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[391]]
#> List of 9
#>  $ by         : chr "philk10"
#>  $ descendants: int 0
#>  $ id         : int 43621734
#>  $ kids       : int 43621750
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:46:27"
#>  $ title      : chr "Machine Learning for Absolute Beginners: Mastering the ML Loop"
#>  $ type       : chr "story"
#>  $ url        : chr "https://spin.atomicobject.com/mastering-machine-learning-ml-loop/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[392]]
#> List of 9
#>  $ by         : chr "dspv"
#>  $ descendants: int 1
#>  $ id         : int 43621725
#>  $ kids       : int 43621726
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:45:44"
#>  $ title      : chr "Guardi.space – forecasting satellite collision risks for smallsat operators"
#>  $ type       : chr "story"
#>  $ url        : chr "https://guardi.space"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[393]]
#> List of 8
#>  $ by         : chr "lentoutcry"
#>  $ descendants: int 0
#>  $ id         : int 43621703
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:43:33"
#>  $ title      : chr "To make a meaningful contribution to neuroscience, fMRI must break out of silo"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.thetransmitter.org/future-of-fmri/to-make-a-meaningful-contribution-to-neuroscience-fmri-must-break"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[394]]
#> List of 8
#>  $ by         : chr "egretfx"
#>  $ descendants: int 0
#>  $ id         : int 43621693
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:42:55"
#>  $ title      : chr "Show HN: I made a node-based color palette design tool"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.paletteflow.co"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[395]]
#> List of 8
#>  $ by         : chr "caned"
#>  $ descendants: int 0
#>  $ id         : int 43621673
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:41:17"
#>  $ title      : chr "Novasaur: Run 8080 CP/M with a few dozen TTL logic chips"
#>  $ type       : chr "story"
#>  $ url        : chr "https://hackaday.io/project/164212-novasaur-cpm-ttl-retrocomputer"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[396]]
#> List of 9
#>  $ by         : chr "rozenmd"
#>  $ descendants: int 3
#>  $ id         : int 43621670
#>  $ kids       : int [1:2] 43621769 43621727
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:41:08"
#>  $ title      : chr "Four years of running a SaaS in a competitive market"
#>  $ type       : chr "story"
#>  $ url        : chr "https://maxrozen.com/on-four-years-running-saas-competitive-market"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[397]]
#> List of 9
#>  $ by         : chr "throw0101d"
#>  $ descendants: int 1
#>  $ id         : int 43621661
#>  $ kids       : int [1:2] 43621666 43621685
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:40:33"
#>  $ title      : chr "Did Tariffs Make American Manufacturing Great? New Evidence from the Gilded Age"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nber.org/papers/w33100"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[398]]
#> List of 9
#>  $ by         : chr "marcusb"
#>  $ descendants: int 0
#>  $ id         : int 43621636
#>  $ kids       : int 43621655
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:37:15"
#>  $ title      : chr "Six arrested for AI-powered investment scams that stole $20M"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bleepingcomputer.com/news/security/six-arrested-for-ai-powered-investment-scams-that-stole-20-million/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[399]]
#> List of 9
#>  $ by         : chr "taleodor"
#>  $ descendants: int 1
#>  $ id         : int 43621610
#>  $ kids       : int 43621658
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:34:21"
#>  $ title      : chr "Show HN: ReARM – SBOM / xBOM and Release Manager"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/relizaio/rearm"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[400]]
#> List of 8
#>  $ by         : chr "gemanor"
#>  $ descendants: int 0
#>  $ id         : int 43621588
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:31:02"
#>  $ title      : chr "AI Security Posture Management (Aispm): How to Handle AI Agent Security"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.permit.io/blog/aispm-how-to-handle-ai-agent-security"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[401]]
#> List of 8
#>  $ by         : chr "yevgen_s"
#>  $ descendants: int 0
#>  $ id         : int 43621584
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:30:22"
#>  $ title      : chr "Build global MySQL apps using Cloudflare Workers and Hyperdrive"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.cloudflare.com/building-global-mysql-apps-with-cloudflare-workers-and-hyperdrive/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[402]]
#> List of 9
#>  $ by         : chr "cellover"
#>  $ descendants: int 0
#>  $ id         : int 43621580
#>  $ kids       : int 43621597
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:29:48"
#>  $ title      : chr "Fyre Festival 2 \"does not exist\" says local tourism board"
#>  $ type       : chr "story"
#>  $ url        : chr "https://djmag.com/news/fyre-festival-2-does-not-exist-says-local-tourism-board"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[403]]
#> List of 9
#>  $ by         : chr "greentfrapp"
#>  $ descendants: int 0
#>  $ id         : int 43621571
#>  $ score      : int 3
#>  $ text       : chr "Hi HN! While building agents for various use cases, we found ourselves copying and reusing code for common tool"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:28:52"
#>  $ title      : chr "Show HN: Stores, a library to make tool use simple"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/silanthro/stores"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[404]]
#> List of 9
#>  $ by         : chr "fseixas"
#>  $ descendants: int 0
#>  $ id         : int 43621563
#>  $ kids       : int 43621564
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:28:05"
#>  $ title      : chr "Atlas – AI Tiered Levels for Agile Software"
#>  $ type       : chr "story"
#>  $ url        : chr "https://atlas-framework.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[405]]
#> List of 9
#>  $ by         : chr "Michelangelo11"
#>  $ descendants: int 0
#>  $ id         : int 43621550
#>  $ kids       : int 43621689
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:26:49"
#>  $ title      : chr "Google AI Search Shift Leaves Website Makers Feeling 'Betrayed'"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bloomberg.com/news/articles/2025-04-07/google-ai-search-shift-leaves-website-makers-feeling-betrayed"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[406]]
#> List of 8
#>  $ by         : chr "mfro"
#>  $ descendants: int 0
#>  $ id         : int 43621513
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:22:37"
#>  $ title      : chr "Laws of Systems Behavior"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.draftymanor.com/bart/systems1.htm"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[407]]
#> List of 8
#>  $ by         : chr "enzo_ghll"
#>  $ descendants: int 0
#>  $ id         : int 43621508
#>  $ score      : int 1
#>  $ text       : chr "Hello everyone !<p>I recently posted in this forum about creating the easiest tool to launch AI models locally "| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:21:47"
#>  $ title      : chr "Ask HN: Ask HN: working on a tool to launch AIs locally – I'd love your feedback"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[408]]
#> List of 8
#>  $ by         : chr "kiyanwang"
#>  $ descendants: int 0
#>  $ id         : int 43621496
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:21:02"
#>  $ title      : chr "Don't Mock Your Framework: Writing Tests You Won't Regret"
#>  $ type       : chr "story"
#>  $ url        : chr "https://laconicwit.com/dont-mock-your-framework-writing-tests-you-wont-regret/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[409]]
#> List of 9
#>  $ by         : chr "thm"
#>  $ descendants: int 0
#>  $ id         : int 43621480
#>  $ kids       : int 43621505
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:19:38"
#>  $ title      : chr "Apple Customers Dash to Stores to Buy iPhones Ahead of Tariffs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bloomberg.com/news/articles/2025-04-07/apple-customers-dash-to-stores-to-buy-iphones-ahead-of-tariffs"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[410]]
#> List of 8
#>  $ by         : chr "philzook"
#>  $ descendants: int 0
#>  $ id         : int 43621467
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:17:56"
#>  $ title      : chr "\"Verified\" \"Compilation\" of \"Python\" with Knuckledragger, GCC, and Ghidra"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.philipzucker.com/knuckle_C_pcode/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[411]]
#> List of 9
#>  $ by         : chr "dangle1"
#>  $ descendants: int 1
#>  $ id         : int 43621459
#>  $ kids       : int 43622457
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:17:26"
#>  $ title      : chr "Don't call it a drone: Zipline's uncrewed aircraft wants to reinvent retail"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/gadgets/2025/04/dont-call-it-a-drone-ziplines-uncrewed-aircraft-wants-to-reinvent-retail/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[412]]
#> List of 9
#>  $ by         : chr "Fajar_Rahmad"
#>  $ descendants: int 0
#>  $ id         : int 43621449
#>  $ score      : int 1
#>  $ text       : chr "Hello everyone, just want to share pro version of my project. This is an all-in-one tool that combines auto cli"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:16:08"
#>  $ title      : chr "Show HN: I Made a Powerful All-in-One Macro or Automation Tool"
#>  $ type       : chr "story"
#>  $ url        : chr "https://fajarrahmadjaya.gumroad.com/l/keytik-pro"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[413]]
#> List of 8
#>  $ by         : chr "sixhobbits"
#>  $ descendants: int 0
#>  $ id         : int 43621443
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:15:16"
#>  $ title      : chr "AI Reaction Archetypes"
#>  $ type       : chr "story"
#>  $ url        : chr "https://dwyer.co.za/static/ai_reaction_archetypes.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[414]]
#> List of 9
#>  $ by         : chr "Tomte"
#>  $ descendants: int 4
#>  $ id         : int 43621420
#>  $ kids       : int [1:4] 43621944 43621818 43621565 43621538
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:12:20"
#>  $ title      : chr "Microsoft's new Windows 11 Start menu is bigger and fixes a major pain point"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theverge.com/news/645078/microsoft-windows-11-new-start-menu-bigger-redesign"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[415]]
#> List of 9
#>  $ by         : chr "randlet"
#>  $ descendants: int 1
#>  $ id         : int 43621416
#>  $ kids       : int [1:2] 43623087 43621535
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:12:11"
#>  $ title      : chr "The dire wolf has not been brought back from extinction"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.newscientist.com/article/2475407-no-the-dire-wolf-has-not-been-brought-back-from-extinction/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[416]]
#> List of 9
#>  $ by         : chr "dxs"
#>  $ descendants: int 1
#>  $ id         : int 43621407
#>  $ kids       : int 43622217
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:11:04"
#>  $ title      : chr "How the US dropped four nuclear bombs on Spain in 1966"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bbc.com/culture/article/20250404-how-the-us-dropped-nuclear-bombs-on-spain-in-1966"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[417]]
#> List of 8
#>  $ by         : chr "tosh"
#>  $ descendants: int 0
#>  $ id         : int 43621403
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:10:54"
#>  $ title      : chr "Sometimes Never Compete on Price"
#>  $ type       : chr "story"
#>  $ url        : chr "https://longform.asmartbear.com/never-compete-on-price/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[418]]
#> List of 8
#>  $ by         : chr "earcar"
#>  $ descendants: int 0
#>  $ id         : int 43621400
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:10:47"
#>  $ title      : chr "RubyLLM 1.1.0: AWS Bedrock support and more"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/crmne/ruby_llm/releases/tag/1.1.0"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[419]]
#> List of 9
#>  $ by         : chr "creativedg"
#>  $ descendants: int 3
#>  $ id         : int 43621399
#>  $ kids       : int [1:2] 43621764 43621456
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:10:36"
#>  $ title      : chr "Front end, back end, and database – now in one Cloudflare Worker"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.cloudflare.com/full-stack-development-on-cloudflare-workers/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[420]]
#> List of 9
#>  $ by         : chr "creativedg"
#>  $ descendants: int 1
#>  $ id         : int 43621388
#>  $ kids       : int 43622047
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:09:45"
#>  $ title      : chr "\"Just use Vite\" with the Workers runtime"
#>  $ type       : chr "story"
#>  $ url        : chr "https://blog.cloudflare.com/introducing-the-cloudflare-vite-plugin/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[421]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43621378
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:08:49"
#>  $ title      : chr "A 32-bit processor made with an atomically thin semiconductor"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arstechnica.com/science/2025/04/researchers-build-a-risc-v-processor-using-a-2d-semiconductor/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[422]]
#> List of 9
#>  $ by         : chr "stareatgoats"
#>  $ descendants: int 2
#>  $ id         : int 43621377
#>  $ kids       : int [1:2] 43621504 43621545
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:08:48"
#>  $ title      : chr "Will Liberation Day transform the world?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://unherd.com/2025/04/will-liberation-day-transform-the-world/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[423]]
#> List of 8
#>  $ by         : chr "keepamovin"
#>  $ descendants: int 0
#>  $ id         : int 43621370
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:08:33"
#>  $ title      : chr "Toot – a beep that beeps, cross-platform speaker fallbacks"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/vareille/toot"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[424]]
#> List of 10
#>  $ by         : chr "NabilChiheb"
#>  $ descendants: int 65
#>  $ id         : int 43621350
#>  $ kids       : int [1:30] 43623219 43623168 43621967 43622445 43621930 43622158 43623010 43622718 43623265 43625149 ...
#>  $ score      : int 71
#>  $ text       : chr "Hey HN<p>After years working in software engineering and helping with hiring, I noticed a frustrating pattern:<"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:07:02"
#>  $ title      : chr "Show HN: I built a tool to find devs based on code, not LinkedIn titles"
#>  $ type       : chr "story"
#>  $ url        : chr "https://gitmatcher.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[425]]
#> List of 9
#>  $ by         : chr "andrewstetsenko"
#>  $ descendants: int 1
#>  $ id         : int 43621313
#>  $ kids       : int 43621404
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:03:50"
#>  $ title      : chr "Guide to Moving to Japan for Work"
#>  $ type       : chr "story"
#>  $ url        : chr "https://relocateme.substack.com/p/moving-to-japan-for-work"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[426]]
#> List of 8
#>  $ by         : chr "fungibletaco"
#>  $ descendants: int 0
#>  $ id         : int 43621304
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:03:23"
#>  $ title      : chr "Are Product Managers Cooked?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://product3.beehiiv.com/p/pms-cooked-april-25"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[427]]
#> List of 9
#>  $ by         : chr "speckx"
#>  $ descendants: int 1
#>  $ id         : int 43621286
#>  $ kids       : int 43623068
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:02:00"
#>  $ title      : chr "I tried gaming on Linux – and it's better (and worse) than you think"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.tomsguide.com/gaming/pc-gaming/i-tried-gaming-on-linux-and-its-better-and-worse-than-you-think"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[428]]
#> List of 8
#>  $ by         : chr "ReadCarlBarks"
#>  $ descendants: int 0
#>  $ id         : int 43621281
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:01:46"
#>  $ title      : chr "Mozilla project manager reaches out to user community"
#>  $ type       : chr "story"
#>  $ url        : chr "https://connect.mozilla.org/t5/discussions/quot-control-quot-as-a-theme-to-inspire-experience/m-p/92739#M36085"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[429]]
#> List of 9
#>  $ by         : chr "vayora"
#>  $ descendants: int 1
#>  $ id         : int 43621278
#>  $ kids       : int 43621279
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 13:01:32"
#>  $ title      : chr "Plan the Perfect Honeymoon with Trip.com: Romantic Getaways Made Easy"
#>  $ type       : chr "story"
#>  $ url        : chr "https://us.trip.com/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[430]]
#> List of 10
#>  $ by         : chr "louisjoejordan"
#>  $ descendants: int 0
#>  $ id         : int 43621258
#>  $ kids       : int 43621582
#>  $ score      : int 4
#>  $ text       : chr "Here&#x27;s a video of me ordering a pizza with it: <a href=\"https:&#x2F;&#x2F;x.com&#x2F;elevenlabsio&#x2F;st"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:59:50"
#>  $ title      : chr "Show HN: ElevenLabs MCP server"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/elevenlabs/elevenlabs-mcp"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[431]]
#> List of 8
#>  $ by         : chr "bhupesh"
#>  $ descendants: int 0
#>  $ id         : int 43621255
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:59:24"
#>  $ title      : chr "The humanity in each line of code"
#>  $ type       : chr "story"
#>  $ url        : chr "https://bhupesh.me/humanity-line-of-code/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[432]]
#> List of 8
#>  $ by         : chr "walterbell"
#>  $ descendants: int 0
#>  $ id         : int 43621252
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:59:21"
#>  $ title      : chr "MNT Reform Arm laptop review: brutalist hardware, familiar software (2024)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.osnews.com/story/138608/mnt-reform-review-brutalist-hardware-familiar-software/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[433]]
#> List of 8
#>  $ by         : chr "dgellow"
#>  $ descendants: int 0
#>  $ id         : int 43621233
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:57:35"
#>  $ title      : chr "MCP for Your API"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.stainless.com/blog/mcp-for-your-api"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[434]]
#> List of 9
#>  $ by         : chr "jcartw"
#>  $ descendants: int 1
#>  $ id         : int 43621222
#>  $ kids       : int 43626050
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:56:42"
#>  $ title      : chr "Larry Fink says Bitcoin could replace the dollar as the reserve currency"
#>  $ type       : chr "story"
#>  $ url        : chr "https://fortune.com/2025/04/01/larry-fink-letter-bitcoin-dollar-national-reserve-currency/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[435]]
#> List of 9
#>  $ by         : chr "pk97"
#>  $ descendants: int 0
#>  $ id         : int 43621218
#>  $ score      : int 1
#>  $ text       : chr "Whipped up this quick MCP server (using Cline) for performing web accessibility audits. You can use the results"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:56:22"
#>  $ title      : chr "Show HN: MCP server for a11y audits"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/priyankark/a11y-mcp"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[436]]
#> List of 10
#>  $ by         : chr "Robtop99"
#>  $ descendants: int 4
#>  $ id         : int 43621213
#>  $ kids       : int [1:2] 43621360 43621484
#>  $ score      : int 4
#>  $ text       : chr "Hey HN!<p>I’ve always loved seeing creative portraits of pets, but getting custom artwork can be expensive and "| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:56:06"
#>  $ title      : chr "Show HN: I made a website to turn your pet photos into AI-generated characters"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.petpictureai.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[437]]
#> List of 8
#>  $ by         : chr "sohkamyung"
#>  $ descendants: int 0
#>  $ id         : int 43621212
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:55:57"
#>  $ title      : chr "Titanic scan reveals ground-breaking details of ship's final hours"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bbc.com/news/articles/cwy6gjwd0g6o"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[438]]
#> List of 9
#>  $ by         : chr "dgsiegel"
#>  $ descendants: int 0
#>  $ id         : int 43621210
#>  $ score      : int 2
#>  $ text       : chr "Hey HN,<p>After years of using Vim, I still found myself forgetting useful commands. There are so many hidden t"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:55:49"
#>  $ title      : chr "Show HN: Daily Vim – Master Vim with Spaced Repetition"
#>  $ type       : chr "story"
#>  $ url        : chr "https://dailyvim.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[439]]
#> List of 9
#>  $ by         : chr "ebenezerdon"
#>  $ descendants: int 1
#>  $ id         : int 43621193
#>  $ kids       : int 43622990
#>  $ score      : int 5
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:54:38"
#>  $ title      : chr "Security best practices for vibe coding"
#>  $ type       : chr "story"
#>  $ url        : chr "https://appwrite.io/blog/post/vibe-coding-security-best-practices"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[440]]
#> List of 8
#>  $ by         : chr "logikblok"
#>  $ descendants: int 0
#>  $ id         : int 43621187
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:53:56"
#>  $ title      : chr "Goodbye Old Phone Friend"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.surajr.com/goodbyeoldphonefriend/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[441]]
#> List of 8
#>  $ by         : chr "gpi"
#>  $ descendants: int 0
#>  $ id         : int 43621179
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:53:07"
#>  $ title      : chr "How to resource Engineering-driven projects at Calm? (2020)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://lethain.com/resourcing-eng-driven-projects/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[442]]
#> List of 8
#>  $ by         : chr "domcooke"
#>  $ descendants: int 0
#>  $ id         : int 43621178
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:53:00"
#>  $ title      : chr "Inside crypto giant Paradigm with Co-Founder and Managing Partner Matt Huang"
#>  $ type       : chr "story"
#>  $ url        : chr "https://joincolossus.com/article/paradigm-shifts-matt-huang/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[443]]
#> List of 8
#>  $ by         : chr "jger15"
#>  $ descendants: int 0
#>  $ id         : int 43621161
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:51:16"
#>  $ title      : chr "Terms of Centaur Service"
#>  $ type       : chr "story"
#>  $ url        : chr "https://contraptions.venkateshrao.com/p/terms-of-centaur-service"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[444]]
#> List of 9
#>  $ by         : chr "xnhbx"
#>  $ descendants: int 1
#>  $ id         : int 43621151
#>  $ kids       : int 43622296
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:50:32"
#>  $ title      : chr "China's BGI Genomics loses access to Microsoft's office software"
#>  $ type       : chr "story"
#>  $ url        : chr "https://asia.nikkei.com/Politics/International-relations/US-China-tensions/China-s-BGI-Genomics-loses-access-to"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[445]]
#> List of 8
#>  $ by         : chr "curmudgeon22"
#>  $ descendants: int 0
#>  $ id         : int 43621146
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:50:04"
#>  $ title      : chr "Not even police are safe from high-tech spyware"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.cbc.ca/news/canada/rcmp-spyware-mcnamara-merrifield-1.7500360"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[446]]
#> List of 8
#>  $ by         : chr "rntn"
#>  $ descendants: int 0
#>  $ id         : int 43621129
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:48:48"
#>  $ title      : chr "P&G finds AI could make Pringles tastier, spice up Old Spice, sharpen Gillette"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theregister.com/2025/04/08/procter_gamble_finds_ai_improves_teamwork/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[447]]
#> List of 9
#>  $ by         : chr "dimarco"
#>  $ descendants: int 0
#>  $ id         : int 43621070
#>  $ score      : int 2
#>  $ text       : chr "Nim is an interesting language. Elixir looks amazing. Zig has some fantastic syntax patterns. Rust has blown up"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:43:20"
#>  $ title      : chr "Show HN: dialectical.dev: Compare and contrast programming languages"
#>  $ type       : chr "story"
#>  $ url        : chr "https://dialectical.dev/zig/typescript"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[448]]
#> List of 9
#>  $ by         : chr "eduction"
#>  $ descendants: int 3
#>  $ id         : int 43621066
#>  $ kids       : int [1:2] 43621605 43621237
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:42:56"
#>  $ title      : chr "We won't hire a junior with five years of experience"
#>  $ type       : chr "story"
#>  $ url        : chr "https://world.hey.com/dhh/why-we-won-t-hire-a-junior-with-five-years-of-experience-0a548994"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[449]]
#> List of 9
#>  $ by         : chr "DotSauce"
#>  $ descendants: int 0
#>  $ id         : int 43621065
#>  $ score      : int 1
#>  $ text       : chr "I&#x27;m pretty sure nobody has successfully made a solution like this before. I searched the web prior. I was "| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:42:48"
#>  $ title      : chr "Show HN: ChatGPT sprite sheet animator (Vibe coded in 2 hours)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://spriteanimator.netlify.app/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[450]]
#> List of 8
#>  $ by         : chr "bookofjoe"
#>  $ descendants: int 0
#>  $ id         : int 43621023
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:38:45"
#>  $ title      : chr "Precipitation of gadolinium MRI contrast agents may be Brass tacks of toxicity"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.sciencedirect.com/science/article/pii/S0730725X25000670"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[451]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43621021
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:38:34"
#>  $ title      : chr "Levitating Bugs with Sound Could Transform Scientific Photography"
#>  $ type       : chr "story"
#>  $ url        : chr "https://petapixel.com/2025/03/25/levitating-bugs-with-sound-could-transform-scientific-photography/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[452]]
#> List of 10
#>  $ by         : chr "norbert_kehrer"
#>  $ descendants: int 34
#>  $ id         : int 43621007
#>  $ kids       : int [1:14] 43624091 43622097 43622496 43625970 43621809 43624088 43622171 43623077 43622203 43624186 ...
#>  $ score      : int 111
#>  $ text       : chr "The IBM 3151 from 1987 is an interesting ASCII terminal. Unlike &quot;normal&quot; serial terminals, it not onl"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:36:53"
#>  $ title      : chr "Show HN: Connecting an IBM 3151 terminal to a mainframe [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=V14ac9cRi9Q"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[453]]
#> List of 8
#>  $ by         : chr "speckx"
#>  $ descendants: int 0
#>  $ id         : int 43621000
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:36:21"
#>  $ title      : chr "Micron to impose tariff-related surcharge on some products from April 9"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/technology/micron-impose-tariff-related-surcharge-some-products-april-9-sources-say-2025-04-08/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[454]]
#> List of 9
#>  $ by         : chr "idancohen"
#>  $ descendants: int 0
#>  $ id         : int 43620995
#>  $ score      : int 2
#>  $ text       : chr "Set79.com analyzes DJ sets and provides detailed tracklists, showing exactly which tracks were played at each minute."
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:35:55"
#>  $ title      : chr "Show HN: Set79 – Automatically extracts the full tracklist from a SoundCloud set"
#>  $ type       : chr "story"
#>  $ url        : chr "https://set79.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[455]]
#> List of 8
#>  $ by         : chr "geox"
#>  $ descendants: int 0
#>  $ id         : int 43620983
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:34:47"
#>  $ title      : chr "Metals and oil fall to four-year lows on fears of recession"
#>  $ type       : chr "story"
#>  $ url        : chr "https://energynews.oedigital.com/crude-oil/2025/04/07/metals-and-oil-fall-to-fouryear-lows-on-fears-of-recession"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[456]]
#> List of 9
#>  $ by         : chr "fercircularbuf"
#>  $ descendants: int 0
#>  $ id         : int 43620978
#>  $ score      : int 2
#>  $ text       : chr "My friend and I have been working on this word game as a side project for about six months, and we’re excited t"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:34:20"
#>  $ title      : chr "Show HN: My friend and I built a word game called subletters"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.subletters.fun/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[457]]
#> List of 9
#>  $ by         : chr "Michelangelo11"
#>  $ descendants: int 1
#>  $ id         : int 43620975
#>  $ kids       : int 43621095
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:33:49"
#>  $ title      : chr "Why Have Sentence Lengths Decreased?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://arjunpanickssery.substack.com/p/why-have-sentence-lengths-decreased"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[458]]
#> List of 8
#>  $ by         : chr "ksec"
#>  $ descendants: int 0
#>  $ id         : int 43620974
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:33:49"
#>  $ title      : chr "Scientists Claim to Have Brought Back the Dire Wolf"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.wired.com/story/scientists-brought-back-dire-wolf-deextinct/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[459]]
#> List of 10
#>  $ by         : chr "objcts"
#>  $ descendants: int 4
#>  $ id         : int 43620969
#>  $ kids       : int [1:3] 43621347 43624558 43621631
#>  $ score      : int 8
#>  $ text       : chr "Ever wish you could anonymously drip-feed kindness through the mail?<p>I tried answering that with Three Kind W"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:33:19"
#>  $ title      : chr "Show HN: Three Kind Words – Spread kindness one mysterious postcard at a time"
#>  $ type       : chr "story"
#>  $ url        : chr "https://threekindwords.com"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[460]]
#> List of 9
#>  $ by         : chr "supunimersian"
#>  $ descendants: int 0
#>  $ id         : int 43620955
#>  $ kids       : int 43621044
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:31:35"
#>  $ title      : chr "Show HN: Visualise any furniture item from any website in your home, instantly"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nestin.ai/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[461]]
#> List of 8
#>  $ by         : chr "chiffre01"
#>  $ descendants: int 0
#>  $ id         : int 43620938
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:29:57"
#>  $ title      : chr "What Are Microplastics Doing to Our Bodies? This Lab Is Racing to Find Out"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.nytimes.com/2025/04/08/well/microplastics-health.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[462]]
#> List of 8
#>  $ by         : chr "hllpark0311"
#>  $ descendants: int 0
#>  $ id         : int 43620910
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:26:57"
#>  $ title      : chr "Simple Way to Transform REST API into MCP Server"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/alibaba/higress/tree/main/plugins/wasm-go/mcp-servers"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[463]]
#> List of 9
#>  $ by         : chr "thundervelvet"
#>  $ descendants: int 0
#>  $ id         : int 43620899
#>  $ score      : int 2
#>  $ text       : chr "Hi community :)<p>I love creating pictures and video on socials using things like ChatGPT and Mid-journey and c"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:25:29"
#>  $ title      : chr "Show HN: Agent Heroes – Generate, animate and schedule your AI characters"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/agentheroes/agentheroes"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[464]]
#> List of 9
#>  $ by         : chr "ksec"
#>  $ descendants: int 3
#>  $ id         : int 43620867
#>  $ kids       : int [1:3] 43621197 43620877 43621158
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:22:44"
#>  $ title      : chr "The iPhone. Here's the iPhone with Tariffs"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.wsj.com/tech/personal-tech/iphone-apple-tariffs-china-bb20c7a3"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[465]]
#> List of 9
#>  $ by         : chr "gpi"
#>  $ descendants: int 89
#>  $ id         : int 43620859
#>  $ kids       : int [1:12] 43621144 43621078 43621084 43621441 43621326 43621507 43621085 43621389 43621106 43621184 ...
#>  $ score      : int 78
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:21:48"
#>  $ title      : chr "Doge using AI to snoop on U.S. federal workers, sources say"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.reuters.com/technology/artificial-intelligence/musks-doge-using-ai-snoop-us-federal-workers-sources"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[466]]
#> List of 8
#>  $ by         : chr "willvarfar"
#>  $ descendants: int 0
#>  $ id         : int 43620853
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:21:01"
#>  $ title      : chr "Experts dispute claims dire wolf brought back from extinction"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bbc.com/news/articles/c4g9ejy3gdvo"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[467]]
#> List of 8
#>  $ by         : chr "chrisjj"
#>  $ descendants: int 0
#>  $ id         : int 43620846
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:20:13"
#>  $ title      : chr "TinyCard Game Maker"
#>  $ type       : chr "story"
#>  $ url        : chr "http://www.technoblogy.com/show?51KR"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[468]]
#> List of 8
#>  $ by         : chr "rbanffy"
#>  $ descendants: int 0
#>  $ id         : int 43620838
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:19:43"
#>  $ title      : chr "The Institution That Engineered a Culture – Kasurian"
#>  $ type       : chr "story"
#>  $ url        : chr "https://kasurian.com/p/institution-engineering-culture"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[469]]
#> List of 9
#>  $ by         : chr "melling"
#>  $ descendants: int 1
#>  $ id         : int 43620831
#>  $ kids       : int 43620851
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:18:53"
#>  $ title      : chr "Trump Order Seeks to Tap Coal Power in Quest to Dominate AI"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bloomberg.com/news/articles/2025-04-08/trump-order-seeks-to-tap-coal-power-in-quest-to-dominate-ai"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[470]]
#> List of 9
#>  $ by         : chr "zeech"
#>  $ descendants: int 2
#>  $ id         : int 43620798
#>  $ kids       : int [1:2] 43624709 43621128
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:15:40"
#>  $ title      : chr "How to Meditate Wrong"
#>  $ type       : chr "story"
#>  $ url        : chr "https://daviramos.com/meditate-wrong/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[471]]
#> List of 8
#>  $ by         : chr "DeathArrow"
#>  $ descendants: int 0
#>  $ id         : int 43620789
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:14:11"
#>  $ title      : chr "HiDream-I1: new open-source image generation model"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/HiDream-ai/HiDream-I1"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[472]]
#> List of 8
#>  $ by         : chr "akrylov"
#>  $ descendants: int 0
#>  $ id         : int 43620788
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:13:33"
#>  $ title      : chr "Awesome AI"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.com/avkcode/AwesomeAI"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[473]]
#> List of 8
#>  $ by         : chr "fedorvin"
#>  $ descendants: int 0
#>  $ id         : int 43620773
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:11:13"
#>  $ title      : chr "Iamb: A TUI Matrix client for Vim enthusiasts, written in Rust"
#>  $ type       : chr "story"
#>  $ url        : chr "https://iamb.chat/index.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[474]]
#> List of 8
#>  $ by         : chr "indiantinker"
#>  $ descendants: int 0
#>  $ id         : int 43620769
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:10:34"
#>  $ title      : chr "The Thought Quadrant: A Mental Model of Time and Control"
#>  $ type       : chr "story"
#>  $ url        : chr "https://indiantinker.bearblog.dev/the-thought-quadrant-a-mental-model-of-time-and-control/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[475]]
#> List of 8
#>  $ by         : chr "x11antiek"
#>  $ descendants: int 0
#>  $ id         : int 43620758
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:09:46"
#>  $ title      : chr "Fake it until you brake it"
#>  $ type       : chr "story"
#>  $ url        : chr "https://unbeatenpath.substack.com/p/fake-it-until-you-brake-it"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[476]]
#> List of 8
#>  $ by         : chr "rntn"
#>  $ descendants: int 0
#>  $ id         : int 43620755
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:09:18"
#>  $ title      : chr "UALink debuts its first AI interconnect spec: run different GPUs on one network"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.theregister.com/2025/04/08/ualink_200g_version_1/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[477]]
#> List of 8
#>  $ by         : chr "croes"
#>  $ descendants: int 0
#>  $ id         : int 43620754
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:09:17"
#>  $ title      : chr "EncryptHub's dual life: Cybercriminal vs. Windows bug-bounty researcher"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.bleepingcomputer.com/news/security/encrypthubs-dual-life-cybercriminal-vs-windows-bug-bounty-researcher/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[478]]
#> List of 8
#>  $ by         : chr "thunderbong"
#>  $ descendants: int 0
#>  $ id         : int 43620736
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:07:12"
#>  $ title      : chr "Schlieren"
#>  $ type       : chr "story"
#>  $ url        : chr "https://en.wikipedia.org/wiki/Schlieren"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[479]]
#> List of 8
#>  $ by         : chr "jve_design"
#>  $ descendants: int 0
#>  $ id         : int 43620735
#>  $ score      : int 1
#>  $ text       : chr "I&#x27;ve been using RepoPrompt for selecting code to feed into LLMs, but I&#x27;m looking for alternatives tha"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:07:08"
#>  $ title      : chr "Alternatives to RepoPrompt for AI-ready code compression?"
#>  $ type       : chr "story"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[480]]
#> List of 8
#>  $ by         : chr "thehoff"
#>  $ descendants: int 0
#>  $ id         : int 43620721
#>  $ score      : int 6
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:05:17"
#>  $ title      : chr "Exclusive-Musk's Doge Using AI to Snoop on U.S. Federal Workers, Sources Say"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.usnews.com/news/top-news/articles/2025-04-08/exclusive-musks-doge-using-ai-to-snoop-on-u-s-federal-"| __truncated__
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[481]]
#> List of 9
#>  $ by         : chr "VaibhavKalra"
#>  $ descendants: int 0
#>  $ id         : int 43620710
#>  $ kids       : int 43620711
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:04:41"
#>  $ title      : chr "I was sick of doomscrolling so I built AI that browse and yaps on social for me"
#>  $ type       : chr "story"
#>  $ url        : chr "https://twitter.com/absurdfounder/status/1909577512662839501"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[482]]
#> List of 9
#>  $ by         : chr "inno_sun"
#>  $ descendants: int 0
#>  $ id         : int 43620708
#>  $ score      : int 1
#>  $ text       : chr "Manage your todos like code! Create branches for task variations, making task management more flexible."
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:04:19"
#>  $ title      : chr "Show HN: Gitto – Git Meets Todo for Parallel Workflows"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.gitto.ltd/en"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[483]]
#> List of 8
#>  $ by         : chr "PaulHoule"
#>  $ descendants: int 0
#>  $ id         : int 43620707
#>  $ score      : int 7
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:04:18"
#>  $ title      : chr "Advanced Suspension Techniques in Interferometric Gravitational Wave Detectors"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.mdpi.com/2075-4434/13/2/28"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[484]]
#> List of 9
#>  $ by         : chr "rahhulk7"
#>  $ descendants: int 0
#>  $ id         : int 43620704
#>  $ kids       : int 43620705
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:03:49"
#>  $ title      : chr "AI Prompt Enhancer – An open-source tool to improve your AI prompts"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.prompt-enhancer.ai/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[485]]
#> List of 9
#>  $ by         : chr "carlos-menezes"
#>  $ descendants: int 0
#>  $ id         : int 43620698
#>  $ kids       : int 43621527
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:03:01"
#>  $ title      : chr "Git turns 20: A Q&A with Linus Torvalds"
#>  $ type       : chr "story"
#>  $ url        : chr "https://github.blog/open-source/git/git-turns-20-a-qa-with-linus-torvalds/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[486]]
#> List of 9
#>  $ by         : chr "gcanyon"
#>  $ descendants: int 1
#>  $ id         : int 43620694
#>  $ kids       : int 43620942
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:02:29"
#>  $ title      : chr "Total recall: A brilliant memory helps chickadees survive"
#>  $ type       : chr "story"
#>  $ url        : chr "https://knowablemagazine.org/content/article/mind/2019/chickadee-memory-food"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[487]]
#> List of 8
#>  $ by         : chr "heavensteeth"
#>  $ descendants: int 0
#>  $ id         : int 43620676
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:00:51"
#>  $ title      : chr "Remember FastCGI? (2021)"
#>  $ type       : chr "story"
#>  $ url        : chr "https://brokenco.de/2021/06/27/remember-fastcgi.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[488]]
#> List of 8
#>  $ by         : chr "mefengl"
#>  $ descendants: int 0
#>  $ id         : int 43620673
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 12:00:43"
#>  $ title      : chr "Verifiability Is the Limit"
#>  $ type       : chr "story"
#>  $ url        : chr "https://alperenkeles.com/posts/verifiability-is-the-limit/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[489]]
#> List of 8
#>  $ by         : chr "pjmlp"
#>  $ descendants: int 0
#>  $ id         : int 43620647
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:57:37"
#>  $ title      : chr "Windows Longhorn Explained by a Retired Microsoft Engineer [video]"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.youtube.com/watch?v=RpRZ8BQiiMo"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[490]]
#> List of 8
#>  $ by         : chr "mhb"
#>  $ descendants: int 0
#>  $ id         : int 43620646
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:57:30"
#>  $ title      : chr "More Drowning Children"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.astralcodexten.com/p/more-drowning-children"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[491]]
#> List of 8
#>  $ by         : chr "JustExAWS"
#>  $ descendants: int 0
#>  $ id         : int 43620610
#>  $ score      : int 3
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:53:03"
#>  $ title      : chr "What did Tim Cook spend a million bucks on?"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.macworld.com/article/2660799/apples-bad-no-good-week.html"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[492]]
#> List of 9
#>  $ by         : chr "mooreds"
#>  $ descendants: int 1
#>  $ id         : int 43620609
#>  $ kids       : int 43623264
#>  $ score      : int 8
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:53:01"
#>  $ title      : chr "Record global temperatures in March illustrate threat to climate goals"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.aljazeera.com/news/2025/4/8/record-global-temperatures-in-march-illustrate-threat-to-climate-goals"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[493]]
#> List of 8
#>  $ by         : chr "perihelions"
#>  $ descendants: int 0
#>  $ id         : int 43620607
#>  $ score      : int 4
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:52:36"
#>  $ title      : chr "China's megaconstellation launches could litter orbit for more than a century"
#>  $ type       : chr "story"
#>  $ url        : chr "https://spacenews.com/chinas-megaconstellation-launches-could-litter-orbit-for-more-than-a-century-analysts-warn/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[494]]
#> List of 8
#>  $ by         : chr "klaussilveira"
#>  $ descendants: int 0
#>  $ id         : int 43620595
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:50:18"
#>  $ title      : chr "Advanced Stencil Shadow and Penumbral Wedge Rendering (2005) [pdf]"
#>  $ type       : chr "story"
#>  $ url        : chr "http://www.terathon.com/gdc05_lengyel.pdf"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[495]]
#> List of 9
#>  $ by         : chr "vinnyglennon"
#>  $ descendants: int 3
#>  $ id         : int 43620588
#>  $ kids       : int 43621172
#>  $ score      : int 11
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:49:12"
#>  $ title      : chr "iPhone sales drop in China over nationalism, newer technology"
#>  $ type       : chr "story"
#>  $ url        : chr "https://restofworld.org/2025/iphone-apple-sales-china-trump-tariffs/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[496]]
#> List of 8
#>  $ by         : chr "DeathArrow"
#>  $ descendants: int 0
#>  $ id         : int 43620559
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:45:46"
#>  $ title      : chr "The new OPEN SOURCE model HiDream is positioned as the best image model"
#>  $ type       : chr "story"
#>  $ url        : chr "https://old.reddit.com/r/StableDiffusion/comments/1juahhc/the_new_open_source_model_hidream_is_positioned/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[497]]
#> List of 9
#>  $ by         : chr "HeyMeco"
#>  $ descendants: int 1
#>  $ id         : int 43620539
#>  $ kids       : int 43620540
#>  $ score      : int 1
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:42:54"
#>  $ title      : chr "State of ARM/Embedded devices: Q1 2025"
#>  $ type       : chr "story"
#>  $ url        : chr "https://sbcwiki.com/news/articles/state-of-embedded-q1-25/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[498]]
#> List of 8
#>  $ by         : chr "brandrick"
#>  $ descendants: int 0
#>  $ id         : int 43620535
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:42:26"
#>  $ title      : chr "AI has shaped global elections"
#>  $ type       : chr "story"
#>  $ url        : chr "https://restofworld.org/2025/global-elections-ai-use/"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[499]]
#> List of 8
#>  $ by         : chr "amichail"
#>  $ descendants: int 0
#>  $ id         : int 43620518
#>  $ score      : int 2
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:39:48"
#>  $ title      : chr "Why Tron: Ares Looks Like a Truly Baffling Sequel"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.ign.com/articles/why-tron-ares-looks-like-a-truly-baffling-sequel"
#>  - attr(*, "class")= chr "hn_item"
#> 
#> [[500]]
#> List of 9
#>  $ by         : chr "nwatab"
#>  $ descendants: int 0
#>  $ id         : int 43620509
#>  $ score      : int 1
#>  $ text       : chr "I developed an AI tool that automates contact form submissions for marketing. Simply select target companies fr"| __truncated__
#>  $ time       : POSIXct[1:1], format: "2025-04-08 11:38:27"
#>  $ title      : chr "Show HN: FormReach – LLM form marketing automation for Japan"
#>  $ type       : chr "story"
#>  $ url        : chr "https://www.formrea.ch"
#>  - attr(*, "class")= chr "hn_item"
#> 
# }