Itās the little things that make me happy these days. Like adding a function to search for text with various encodings to my hex editor. All neatly organized in the menu and with accelerators.
@klaxzy@klaxzy.net or even better https://search.twtxt.net/users.txt
@klaxzy@klaxzy.net Something like https://search.twtxt.net/stats/users ?
If you use GenAI images on your posts, you might have people thinking your posts are slop :-/
Try some nice public domain images! How about some bridges?
https://www.loc.gov/search/?fa=partof:library+of+congress+free+to+use+and+reuse&q=bridges
If you use GenAI images on your posts, you might have people thinking your posts are slop :-/
Try some nice public domain images! How about some bridges?
https://www.loc.gov/search/?fa=partof:library+of+congress+free+to+use+and+reuse&q=bridges
Oh man wow š® Problem 9 was quite hard š± I had to build two new functions in the Mu stdlib for computing combinations and permutations, but then the combinations of range(1000) for triples such as a + b == c is enormous! So i had to write iterator versions of these to do lazy evaluation. Anyway solution follows:
#!/usr/bin/env mu
// Special Pythagorean Triplet
import "iter"
fn usage() {
print("Usage:", args()[0], "<n>")
}
fn sqr(x) { x * x }
fn main() {
if len(args()) < 2 {
usage()
exit(1)
}
n := must(int(args()[1]))
print("n:", n)
// For a < b < c and a + b + c == n, both a and b are strictly less
// than n/2. Generate only (a,b) combinations and derive c directly. This
// keeps the search lazy and reduces n=1000 from C(999,3) = 165,668,499
// candidate triples to C(499,2) = 124,251 candidate pairs.
pairs := iter.combinations(iter.range(1, n / 2), 2)
triples := iter.map(pairs, fn(xs) {
a := xs[0]
b := xs[1]
return [a, b, n - a - b]
})
// Enforce b < c; a < b is already guaranteed by combinations over an
// increasing range, and a + b + c == n holds by construction.
triples = iter.filter(triples, fn(xs) {
return xs[1] < xs[2]
})
// Euler 9 has one answer for n=1000. find() stops the entire upstream
// iterator chain as soon as the first Pythagorean triple is found.
answer := iter.find(triples, fn(xs) {
return sqr(xs[0]) + sqr(xs[1]) == sqr(xs[2])
})
print(answer)
if answer != nil {
print(answer[0] * answer[1] * answer[2])
}
}
main()
I am a bit split on this, donāt think thereās any real use for AI in things like art, at absolute most getting a reference to compare with multiple non-AI ones, or possibly some animation in between frames, if it ever gets better at making those. Would not rely on it for any of my personal projects, more than maybe a quick search that would have previously been done on Stack Overflow, but if I work somewhere and they demand it be used similarly to how it is described on this site, considering the current IT job market, Iād probably take the slop bullet, over being unemployed.
Obviously even in that case, Iād only do this to generate code I can understand, improve and review. Iām definitely not advacating people just put their feet up on the table and let some random combination of āAI agentsā, vibecode their entire codebase.
I will very likely add a way to delete your feed(s) from the search engine, because I do thing thatās important. But as Art 17 points out, we canāt really guaranteed deletion in everyoneās caches around the planet haha š
The only place where this would be an issue is the Twtxt Search Engine ā But as the GDPR also points out:
Art. 17
The one place the āit propagated and I canāt recall itā problem is legally acknowledged is Art. 17(2), and it explicitly scales to whatās technically feasible:
āā¦the controller, taking account of available technology and the cost of implementation, shall take reasonable steps, including technical measures, to inform controllers which are processing the personal data that the data subject has requested the erasureā¦ā
Best-effort, given the technology. A decentralised, append-only, content-addressed feed is the available technology, and its limits are baked into the standard the law applies. Nobody ā not the user, not you ā is obliged to guarantee every cached copy vanishes.
@david@daiwei.me Yeah the search engine/crawler has only found 28 active users in the ecosystem so far š
Say hello to the Twtxt Social Graph š
#Twtxt #social #Graph
š„³ Finally! After nearly 4 years, yarnd v0.16.0 āSilver Sojournerā is out! š Twt Hash v2, SQLite FTS5 search, HTMX-powered UI, first-time setup wizard and literally hundreds of bug fixes š
Release notes: https://git.mills.io/yarnsocial/yarn/releases/tag/0.16.0
Upgrading is fully automatic ā the Twt Hash v2 migration re-fetches all feeds on first start, so expect the first cycle to be a bit heavier. Images on Docker Hub as prologic/yarnd:0.16.0 š
cc @kat@yarn.girlonthemoon.xyz @abucci@anthony.buc.ci @shinyoukai@yume.laidback.moe @eldersnake@we.loveprivacy.club š
you should see the new search engine stats page where Iāve added, spark lines, and time series graphs š
@balloonfu-sen@yarn.girlonthemoon.xyz Thank you for doing this š ā Just a thought⦠It might be possible for this to be fully automated from the Twtxt Search engine / crawler? Right? š¤ It has all of the data⦠I also think it might be possible to distinguish between 1-way feedsa and āreal folksā (ya know, 2-ways feeds) š¤£
We slept in the forest. It was really great except of my mateās fucking terror dog who was barking and snarling the entire night to each and every sound. I had maybe half an hour of sleep in total. Despite that, it was pleasantly warm. Well, the night, that is. The heat was brutal during the days. Literally streams of sweat were running down on us on the way there in the evening and back in the morning.
Surprisingly, there werenāt any mozzies around at night, I would have lost all safe bets. On the way there, my mate convinced me to take a shortcut through the taller and taller growing grass. Itās been some time that somebody traveled on this track, so we had to search around a bit for the overgrown path where we could cross the mostly dried up creek. In the beginning I said that this will be a bad idea. Lo and behold, I discovered a tick on my inner upper leg the next morning. Luckily, I got it out with my tick hook on the first attempt.
@lyse@lyse.isobeef.org simplified it a little bit. Using only *bot* will bring collateral damage I want to avoid (there are, still some āgoodā bots):
@aibots {
header_regexp User-Agent (?i)(GPTBot|ChatGPT|OAI-Search|anthropic|Claude|Google-Extended|FacebookBot|CCBot|Perplexity|Applebot-Extended|cohere|Omgili|Bytespider)
}
abort @aibots
@GabesArcade@gabesarcade.com Did you by change edit or otherwise delete the Twt you replied to (2nd last in your feed) with the reply/thread id lleeypvkzbw2? That Twt was never ingested by twtxt.net (and likely the search engine) so umm hmmm threading breaks š¤£
Hello everyone ! š Behold I bring you (after many years) the launch of the Twtxt App š ā Ye, this is a Desktop and Mobile app built as a Progressive Web App (PWA) using a little framework (Swag) I put together iafter some experiments @xuu@txt.sour.is and I did in Go and HTMX and Service Workers.
The App is offline-first and supports installing to Desktop and Mobile (add to Home screen) and supports a number of publishing backends, including Yarn.socialās yarnd Pod, Github, Codeberg/Gitea, and a little tiny twtd Twtxt server (See: https://git.mills.io/yarnsocial/twtd).
Please try it out, no need for any account(s) or such, works with your existing feed(s) (as long as the publishing backends work well enough for you!). Please give me feedback! š
Also, did you know the Twtxt Search Engine is back? š
Hey folks š Today I announce the re-release of the Twtxt Search Engine now live and running and actively re-crawling and re-indexing. š Please report bugs or any useability issues to me! š #Twtxt #Search
I indexed 669 GB of my GoPro videos using my M1 Max computer and local ML models
TLDR: I had 2,207 GoPro videos, and I need to rewatch them to find interesting moments from my cycling journey. I built a project to index them locally on my M1 Max using open-source ML models, search for those moments, and send the best clips straight to my DaVinci Resolve timeline. I indexed 628 videos (668.68 GB, 15h 13m 18s of footage duration), more details in the metrics table in the last section of this article.
Full article: https:// ⦠ā Read more
tt. But then, in the message tree, I spot another missed typo. My process is then to go to my twtxt.txt and fix it by hand. However, I still have to clean up tt's cache. This is rather tidious:
Now Iām curious how movwin deals with that. ;-)
Focus handling? I hardly remember, lol. š Did that 6 months ago and havenāt touched it since. Letās see.
The core main loop gets keyboard/mouse events from curses. At this level, the main loop only knows about exactly one widget, so it passes the event to that widget (whatever that is, doesnāt matter ā they all inherit from the Widget base class, it could be a Window, a WindowManager, or an Edit box directly).
The outermost widget is usually a WindowManager. It implements a few hotkeys of its own, like switching to another window. If none of those hotkeys match, it passes the event to the currently focused window.
Same story here: Window implements some hotkeys (like opening the menu bar). If none of those match, then ⦠the magic happens.
Each Window acts as a focus manager. It can descend into its child widget hierarchy and collect all child widgets in a depth-first search. They are collected into a flat list. Each Window then has an attribute _focus_position, which is an index into that list. Pressing Tab or Shift+Tab increases or decreases that index and that allows you to select the next/previous focusable widget in the current window.
Eventually, Window passes the input event to the currently focused widget.
Usually on initialization, the application can ask a Window object to focus a certain widget. The file selection dialog does that, for example, because the ānaturalā focus order would be to focus the Edit box at the top of the window first ā but thatās not what the user wants, the Table showing the list of files should be focused.
If no widget ever feels responsible for handling a certain input event, then thereās a global unhandled_input callback that the application can provide (same as in urwid).
I think thatās it.
Hm, thatās more complicated than I remembered, but apparently it works fine, because I completely forgot about this. š
All I did in the last few months was make new classes that inherit from Widget, like the new Table class or Edit or HexEdit or whatever, and if they want to get input events, then they must implement the methods input_key() or input_mouse().
Does this answer your question? š (I admit that I didnāt exactly understand your scenario, so I just went ahead and rambled about my implementation. š )
Every now and then, I think that I have carefully proof-read my message enough times and hit the āAdd messageā button in tt. But then, in the message tree, I spot another missed typo. My process is then to go to my twtxt.txt and fix it by hand. However, I still have to clean up ttās cache. This is rather tidious:
- Recall the
sqlitebrowser ~/.local/share/twtxt/tt2.sqlitefrom my shell history.
- Switch to the āBrowse dataā tab.
- Go to the
messagestable and wait a second or two until itās loaded.
- Sort by the
created_atcolumn twice, so that I get descending order.
- Select the first message, which is typically the one in question.
- Find the āRemove currently selected rowā button in the tool bar.
- Commit the changes.
- Close sqlitebrowser.
So, I finally implemented the removal of messages from the cache in tt. I can now hit d and confirm the removal. Bam! Should have done that ages ago!
Next up is the search, I think.
Remains believed to be of missing woman were buried in creek
Thereās been a major development in the search for western Sydney grandmother who disappeared in 2018 following the discovery of a body in a creek. ā Read more
Remains believed to be of missing woman were buried in creek
Thereās been a major development in the search for western Sydney grandmother who disappeared in 2018 following the discovery of a body in a creek. ā Read more
Man charged with murder of Sydney woman, police search for body
The woman had not been seen since Monday afternoon, when she drove to a relativeās house in Sydneyās north-western suburbs. ā Read more
Drug Sites Hijacked Spotifyās Search Ranking Through Fake Podcasts, Report Finds
A joint congressional report describes a spam operation that turned tens of thousands of fake podcasts into search-engine bait for illegal pharmacy and scam sites. ā Read more
Police searching for gunman behind failed after-school hit
Police are throwing all their resources into the hunt for a gunman behind a failed hit on a father and his daughter outside a Sydney high school. ā Read more
Police searching for gunman behind failed after-school hit
Police are throwing all their resources into the hunt for a gunman behind a failed hit on a father and his daughter outside a Sydney high school. ā Read more
Aussie skipper rescues dog blown away on kayak
Australian skipper Jimmy Reidās tourist boat joined the search when Bruce the dog was blown away by a sudden burst of wind. ā Read more
Job: Head of Stonehenge
Article URL: https://www.english-heritage.org.uk/about/our-people/careers-with-us/job-search/default-job-page/?jobRef=16449
Comments URL: https://news.ycombinator.com/item?id=48455928
Points: 7
# Comments: 0 ā Read more
Cigarettes, drugs and alcohol used to bribe teens into fights in youth detention, class action claims
The lawsuit also accuses dozens of guards at the Parkville youth correctional facility of unlawful strip searches and alleges detainees were subjected to beatings and sexual assaults. ā Read more
Show HN: ABC Classic 100 Rankings visualised
This weekend is the ABC Classic FM countdown, which prompted me to dust off an old un-published data visualisation of rankings from previous years.
Iāve considered adding a search function, but I also kind of like that it requires a bit of exploration in the current form.
Some of the code is a bit clunky and I wouldnāt mind refactoring it. Iām also not sure about browser compatibility - Iāve only got access to a couple of devices to test it on.
Comments URL: [https://news.yc ⦠ā Read more
Melbourne underworld identity Mick Gatto arrested
Underworld figure Mick Gatto has been arrested following a search of his Victorian home by police. ā Read more
Melbourne underworld identity Mick Gatto arrested
Underworld figure Mick Gatto has been arrested following a search of his Victorian home by police. ā Read more
I Donāt Want My Search Engine to Think for Me
Article URL: https://searchzee.com/blog/search-without-ai-summaries
Comments URL: https://news.ycombinator.com/item?id=48378099
Points: 6
# Comments: 1 ā Read more
Vivid Sydney hopes drones will fly again next year. But they are hunting for a new operator
The search for an operations manager with āsubstantialā drone show experienceĀ was launched the day after dozens of drones descended into Darling Harbour. ā Read more
DuckDuckGo makes its āno-AIā search engine easier to access as its traffic booms
Article URL: https://techcrunch.com/2026/06/01/duckduckgo-makes-its-no-ai-search-engine-easier-to-access-as-its-traffic-booms/
Comments URL: https://news.ycombinator.com/item?id=48359130
Points: 36
# Comments ⦠ā Read more
Man on the run after cross-town stabbings in Epping, Dandenong North
Police are searching for a man who allegedly stabbed two people on different sides of the city in targeted attacks on Sunday. ā Read more
Border Force uncover 34kg of cocaine in Fremantle bus search
An ABF spokesman said the amount of cocaine, had it reached the Australian community, had an estimated street value up to $11 million, with the potential for 170 000 street-level deals. ā Read more
So going back to the understanding of how it generated this, is quite simply the most statistically relevant search space of itās weights it has been trianed on and it has basically just produced a series of tokens, one after another that are relevant to the input, the next token and so on. Itās a trivial example I know, but it basically pattern matches itās way through itās vast search space just producing outputs based on context.
@bender@twtxt.net Well no. Some of us donāt. Let me point you at some research on the subject š Some people donāt have an inner monologue
New clue revealed in search for missing US Air Force general
William Neil McCasland may have met up with some members of US Space Force the night before he disappeared. Itās a mystery that has endured now for se⦠ā Read more
Google Security Engineer Arrested in Million-Dollar Polymarket Trading Scheme
According to federal prosecutors, Michele Spagnuolo made more than $1 million on the prediction market platform using confidential information about Google Search traffic. ā Read more
DuckDuckGo search saw 28% more visits after Google said people love AI mode
Article URL: [https://www.pcgamer.com/hardware/duckduckgos-ai-free-search-saw-nearly-28-percent-more-visits-in-the-week-following-googles-insistence-that-people-love-ai-mode/](https://www.pcgamer.com/hardware/duckduckgos-ai-free-search-saw-nearly-28-percent-more-visits-in-the-week-following-googles-insistence-that-people-love-ai-mode/ ⦠ā Read more
The AI Era Is Creating a Bug Hunting Arms Race
As attackers ramp up their AI exploit development, the search for software vulnerabilities is changing rapidly. ā Read more
And we have a search function now. This should cover most of the basic features, I think.
Even If You Hate AI, You Will Use Google AI Search
The search giantās AI-crafted answers are so convenient, youāll be sucked ināto the detriment of the web and the artists and thinkers behind it. ā Read more
Meta Is in Crisis, Google Searchās Makeover, and AI Gets Booed by Graduates
In this episode of Uncanny Valley, we unpack the mass layoffs at Meta, big announcements at Google I/O, and the latest backlash against AI. ā Read more
Best Yoga Mats (2026): Lululemon, Manduka, JadeYoga
Searching for the best yoga mat to help deepen your flow, master tree pose, and discover the meaning of life? For two of the three, weāve got you covered. ā Read more
Everything Announced at Google I/O 2026: Gemini, Search, Smart Glasses
Google is sprucing up its Gemini models, revamping search, and enabling AI agents in everything. There are also some spiffy new smart glasses coming this fall. ā Read more
Google Search Goes Agenticāand Doesnāt Need You Anymore
Vibe-coded results! Super widgets! Bots that never sleep! Googleās vision for the future of Search is hyper-personalized, automated, and extremely AI. ā Read more
Google I/O 2026 Live Blog: All the Gemini and Smart Glasses Updates as They Happen
Follow our live coverage of Googleās annual developer keynote, where the company will announce updates to its Gemini suite of AI tools and more details about Android XR smart glasses. ā Read more
How to Watch Google I/O
Google I/O is back with updates to Search, Android, Gemini, and a fresh peek at upcoming Android XR smart glasses. Hereās how to watch the announcements live and what to expect. ā Read more
This Indigenous Language Survived Russian Occupation. Can It Survive YouTube?
YouTubeās search and recommendation algorithms are driving children to Russian-language content even when they seek out videos in Kyrgyz, creating a cultural shift that concerns some parents. ā Read more
Your Phone Notifications Reveal More Than You Realize. Hereās How to Lock Them Down
A recent case shows law enforcement can see incoming Signal messages by searching an iPhone, even after the Signal app has been deleted. Hereās what to know, and how to protect yourself. ā Read more
When Iāve been searching for hours and still donāt understand where the bug is coming from ā Read more
Escaped capybara gives search teams the runaround in England
The evasive mammal managed to escape its handlers at Marwell Zoo last week and has been on the run ever since. An unexpected creature is currently on ⦠ā Read more
FBI joins the search as mystery of missing USAF general deepens
Retired general William Neil McCasland had many links to government conspiracies and the UFO phenomenon. Itās a mystery that continues to grip the nat⦠ā Read more
@rdlmda@rdlmda.me I never saw the point of a registry to be honest, as it defeated the point of what I believed to be a truly decentralised non-social social ecosystem. What can and does work however is a search engine and crawler. I used to run one, but I took it down, mostly because it got expensive to operate, at least the implementation I built⦠Maybe one day iāll try again with a SQLite backend.
@rdlmda@rdlmda.me Yeah, but I think the registries are very slow and unhandy. I just search for ātwtxtā in my favorite search engine. From time to time there are new feeds to follow.
Mars organics point at presence of possible biological processes
According to new research, organics found on Mars cannot be explained by any known geological process. The search for life on Mars - and in particular⦠ā Read more
If you search for #py5 on the #InternetArchive you might find it mentioned in the #Processing Community Catalog 2021 commemorating 20 years of the Processing community projects and their developments!
https://archive.org/details/processing-community-catalog-2021/page/n401/mode/2up?q=py5
(There is a page by @hx2A@hx2A and another one by me!)
Iām struggling with the archive.org #waybackmachine interface⦠would anyone know if it is possible to do textual search on a single site/domain (over the multiple recorded snapshots and sub-pages)?
Iām struggling with the @internetarchive@internetarchive #waybackmachine interface⦠would anyone know if it is possible to do textual search on a single site/domain (over the multiple recorded snapshots and sub-pages)?
Looks like someone loves Depth First Search.
@movq@www.uninformativ.de How about āQuongsiā? I generated the first five letters with pwgen --no-capitalize --no-numerals 5 and since that already showed up in DDG search results, I simply appended the last two, which yielded nothing on DDG and Google).
What kind of project is it? Maybe we can help you find a name or nudge you in the right direction.
Oh, thatās cute:
DuckDuckGo puts a little helmet on the duck when you search for Skyrim. (Katria is a Skyrim character.)Pentagon officials reopen āYankee Blueā memo search after FOIA appeal
The documents concern an alleged directive to halt a notorious hazing ritual involving claims of alien technology. Back in September, we reported on t⦠ā Read more
«Our online catalogue comprises the largest media art collection in the Netherlands. Search through more than 3,500 works of art, from video-art pioneers from the 1960s to up-and-coming talents and well-known contemporary artists working with the latest technologies. New works are continuously added. The works are available for screenings, exhibitions and research.»
Via @ranoya@ranoya
Searching the web a bit brings up lots of threads where people hate WebP. The problem being that browsers support WebP but other programs tend to be problematic ⦠? š¤
Iām contemplating the idea of switching my activity pub instance from Gootosocial to a Pleroma one. While GTS is kinda cute (lightweight and easy to manage) of a software, the inability to fetch/scroll through peopleās past toots when visiting a profile or having access to a federated timeline and a proper search functionality ā¦etc felt like handicap for the past N months.
@bender@twtxt.net Unfortunately, this also breaks the browser search.
@bender@twtxt.net Sounds about right.
I had a brainfart yesterday, though. For whatever reason I thought of subdomains, which are modeled with server entries in nginx. So, each could define its own access_log location. However, there are no subdomains in place! Searching around, I didnāt find any solution to give each user their own access log file.
One way would be a cronjob, aeh, systemd timer as I learned the other day, that greps the main access log and writes all user access log files with only the relevant stuff.
I used Gemini (the Google AI) twice at work today, asking about Google Workspace configuration and Google Cloud CLI usage (because we use those a lot). Youād think that itād be well-suited for those topics. It answered very confidently, yet completely wrong. Just wrong. Made-up CLI arguments, whatever. It took me a while to notice, though, because itās so convincing and, well, you implicitly and subconsciously trust the results of the Google AI when asking about Google topics, donāt you?
Will it get better over time? Maybe. But what I really want is this:
- Good, well-structured, easy-to-read, proper documentation. Google isnāt doing too bad in this regard, actually, itās just that they have so much stuff that itās hard to find what youāre looking for. Hence ā¦
- ⦠I want a good search function. Just give me a good fuzzy search for your docs. Thatās it.
I just donāt have the time or energy to constantly second-guess this stuff. Give me something reliable. Something that is designed to do the right thing, not toy around with probabilities. āAI for everythingā is just the wrong approach.
@movq@www.uninformativ.de Have we reached peak enshittification yet?
YouTube is completely broken for me for a week or more. The player doesnāt even load anymore. Trying to limit the search results to real videos doesnāt do shit, etc. Itās useless. But downloading the videos with yt-dlp still works like a dream.
I should work on my client again and add some new features. Like adding a new feed directly in the client and not having to go to the config first. And showing a preview of a feed before actually adding it. Also, a search would be something to add. And finally combining my User-Agent analyzer with my subscription list to spot new feeds automatically.
@prologic@twtxt.net Letās go through it one by one. Hereās a wall of text that took me over 1.5 hours to write.
The criticism of AI as untrustworthy is a problem of misapplication, not capability.This section says AI should not be treated as an authority. This is actually just what I said, except the AI phrased/framed it like it was a counter-argument.
The AI also said that users must develop āAI literacyā, again phrasing/framing it like a counter-argument. Well, that is also just what I said. I said you should treat AI output like a random blog and you should verify the sources, yadda yadda. That is āAI literacyā, isnāt it?
My text went one step further, though: I said that when you take this requirement of āAI literacyā into account, you basically end up with a fancy search engine, with extra overhead that costs time. The AI missed/ignored this in its reply.
Okay, so, the AI also said that you should use AI tools just for drafting and brainstorming. Granted, a very rough draft of something will probably be doable. But then you have to diligently verify every little detail of this draft ā okay, fine, a draft is a draft, itās fine if it contains errors. The thing is, though, that you really must do this verification. And I claim that many people will not do it, because AI outputs look sooooo convincing, they donāt feel like a draft that needs editing.
Can you, as an expert, still use an AI draft as a basis/foundation? Yeah, probably. But hereās the kicker: You did not create that draft. You were not involved in the āthought processā behind it. When you, a human being, make a draft, you often think something like: āOkay, I want to draw a picture of a landscape and thereās going to be a little house, but for now, Iāll just put in a rough sketch of the house and add the details later.ā You are aware of what you left out. When the AI did the draft, you are not aware of whatās missing ā even more so when every AI output already looks like a final product. For me, personally, this makes it much harder and slower to verify such a draft, and I mentioned this in my text.
Skill Erosion vs. Skill EvolutionYou, @prologic@twtxt.net, also mentioned this in your car tyre example.
In my text, I gave two analogies: The gym analogy and the Google Translate analogy. Your car tyre example falls in the same category, but Geminiās calculator example is different (and, again, gaslight-y, see below).
What I meant in my text: A person wants to be a programmer. To me, a programmer is a person who writes code, understands code, maintains code, writes documentation, and so on. In your example, a person who changes a car tyre would be a mechanic. Now, if you use AI to write the code and documentation for you, are you still a programmer? If you have no understanding of said code, are you a programmer? A person who does not know how to change a car tyre, is that still a mechanic?
No, youāre something else. You should not be hired as a programmer or a mechanic.
Yes, that is āskill evolutionā ā which is pretty much my point! But the AI framed it like a counter-argument. It didnāt understand my text.
(But what if thatās our future? What if all programming will look like that in some years? I claim: Itās not possible. If you donāt know how to program, then you donāt know how to read/understand code written by an AI. You are something else, but youāre not a programmer. It might be valid to be something else ā but that wasnāt my point, my point was that youāre not a bloody programmer.)
Geminiās calculator example is garbage, I think. Crunching numbers and doing mathematics (i.e., ācomplex problem-solvingā) are two different things. Just because you now have a calculator, doesnāt mean itāll free you up to do mathematical proofs or whatever.
What would have worked is this: Letās say youāre an accountant and you sum up spendings. Without a calculator, this takes a lot of time and is error prone. But when you have one, you can work faster. But once again, thereās a little gaslight-y detail: A calculator is correct. Yes, it could have ābugsā (hello Intel FDIV), but its design actually properly calculates numbers. AI, on the other hand, does not understand a thing (our current AI, that is), itās just a statistical model. So, this modified example (āaccountant with a calculatorā) would actually have to be phrased like this: Suppose thereās an accountant and you give her a magic box that spits out the correct result in, what, I donāt know, 70-90% of the time. The accountant couldnāt rely on this box now, could she? Sheād either have to double-check everything or accept possibly wrong results. And that is how I feel like when I work with AI tools.
Gemini has no idea that its calculator example doesnāt make sense. It just spits out some generic āargumentā that it picked up on some website.
3. The Technical and Legal Perspective (Scraping and Copyright)The AI makes two points here. The first one, I might actually agree with (ābad bot behavior is not the fault of AI itselfā).
The second point is, once again, gaslighting, because it is phrased/framed like a counter-argument. It implies that I said something which I didnāt. Like the AI, I said that you would have to adjust the copyright law! At the same time, the AI answer didnāt even question whether itās okay to break the current law or not. It just said ālol yeah, change the lawsā. (I wonder in what way the laws would have to be changed in the AIās āopinionā, because some of these changes could kill some business opportunities ā or the laws would have to have special AI clauses that only benefit the AI techbros. But I digress, that wasnāt part of Geminiās answer.)
tl;drExcept for one point, I donāt accept any of Geminiās ācriticismā. It didnāt pick up on lots of details, ignored arguments, and I can just instinctively tell that this thing does not understand anything it wrote (which is correct, itās just a statistical model).
And it framed everything like a counter-argument, while actually repeating what I said. Thatās gaslighting: When Alice says āthe sky is blueā and Bob replies with āwhy do you say the sky is purple?!ā
But it sure looks convincing, doesnāt it?
Never againThis took so much of my time. I wonāt do this again. š
sorry i havenāt been working on bbycll or even hanging around twtxt much at all as of late ā gf was over for a few weeks, i turned twenty years old, and have been doing extremely unnecessary things to my website

TĆ” rolando essa exposição bem bonita na BMA: āDo livro ao museu: #MAM #SĆ£oPaulo e a #BibliotecaMĆ”rioDeAndradeā
Tem um exemplar do album Jazz do #Matisse https://www.metmuseum.org/art/collection/search/353770
āEnglandās world-class duo put rivals on noticeā
Nat Sciver-Brunt and Sophie Ecclestone deliver statement showings as India and Australia loom, but England are still searching for the complete performance, writes Ffion Wynne. ā Read more
Symiosis: a Vim-centric keyboard-driven, notes app inspired by Notational Velocity. With instant search, in-place Markdown rendering and built-in editor ā Read more
Vimium (Search and directly clicking?) ā Read more
Body recovered during search for 15yo swimmer in Tamworth
A multi-agency search of the Peel River began on Monday night after police were told the teen had entered the water and failed to resurface. ā Read more
āSignificantā aerial search for four-year-old Gus conducted over the weekend
Police say they have conducted a āsignificantā aerial search of a property in South Australiaās mid-north, where a four-year-old boy went missing 10 days ago. ā Read more
Mounted rescue crews join search for 76yo missing in Tasmanian bushland
Mounted crews and drones are now involved in the search for Peter Willoughby, 76, who became disoriented and walked off into dense bushland near Launceston, police say. ā Read more
Hundreds rescued after Mount Everest blizzard, but around 200 still missing
Villagers have joined rescue crews in attempting to save those who have become stuck in heavy snow on Mount Everest in Tibet. ā Read more
OSINT: Google Dorking Hacks: The X-Ray Vision for Google Search
You type in some keywords, scroll past 10 pages of useless results, and wonder why the internetās hiding the good stuff. Sound familiar?
[Continue reading on Inf ⦠ā Read more
New telescope cuts through space noise in hunt for distant Earth-like worlds
EU researchers are developing powerful new telescopes to help uncover Earth-like planets around distant stars and advance the search for extraterrestrial life. ā Read more
From Shell Scripts to Science Agents: How AI Agents Are Transforming Research Workflows
Itās 2 AM in a lab somewhere. A researcher has three terminals open, a half-written Jupyter notebook on one screen, an Excel sheet filled with sample IDs on another, and a half-eaten snack next to shell commands. Theyāre juggling scripts to run a protein folding model, parsing CSVs from the last experiment, searching for literature,⦠ā Read more
GitHub Copilot gets smarter at finding your code: Inside our new embedding modelĀ
Learn about a new Copilot embedding model that makes code search in VS Code faster, lighter on memory, and far more accurate.
The post GitHub Copilot gets smarter at finding your code: Inside our new embedding model appeared first on The GitHub Blog. ā Read more
Press key after search ā Read more
Hello everyone! š
After a long while away, Iām back on twtxt with this new feed.
Some of you might remember me as justamoment@twtxt.net, that was a test account I made for trying things out, but I ended up keeping it more than planned.
I also tried other social platforms in search of a place that felt right for me.
In the end twtxt was the one that ticked all of my boxes:
- Slow social: it act more like a feed reader and I really appreciate that thereās no flood of content that I canāt keep up with.
- No server needed: I absolutely love to have total control over my content, I tend to avoid having moving parts that might break, plus you can put your feed under version control and itās all backed up.
- Ownership: I can put my feed anywhere I want and nobody can decide if I can access it or not.
- For hackers: a single .txt file allows me to join a community, how cool is that!
This is why I decided to build my own twtxt client, one that allows you to decide how the feed is presented on your āinstanceā.
Itās still in the making but Iāll try to share a bit of it once I defined how things should work.
Coincidentally, I discovered that @itsericwoodward@itsericwoodward.com and @zvava@twtxt.net were also building a twtxt client, seems like twtxt is set to grow!
Drawn based on a quick doodle, the canine returns victorious, from the battle of Hot Topic bargain bin, as smug as can be.
Whoever will be the first to inform him, the spikes arenāt real gold and itās most likely not even leather, meaning itās not what heās really been searching the universe for, better prepare themselves, to be jumped on, bitten and shredded by claws.

search page, bookmarks page, improved thread view (that i will probably improve further), as well as a logo and a whole ui redesign. it is truly all coming togetherā¦were i to mark any items off the roadmap :p
Here are nice tools to search for news, if your newsoutlet is blocked. Web search or Port70news under newsfeeds.
About ChatGPT rotting peopleās brains, similarly could be said about search engines, and reference books. Oh, also doom scrolling, and mobile devices, and the Internet⦠:-P
Spent an absurd amount of time searching for the āupdate forkā button on #gitlabās web interface.
Why? Because it turns out you can only see it if you are in landscape, in portrait view the button simply does not existā¦
Lately (since there are AI summaries at the top), each time I Google for the answer to a question, the AI summary has at least a part of the answer wrong. It makes up laws that do not exist, books that were never published - in sum, well written sentences that make linguistic sense, but with made up content.
Let me repeat: each time. Maybe I only search for hard stuff, or fringe stuff, or this some other explanation - but seriously, itās hard to understand how isnāt Google ashamed of its AI overviews⦠or not sued under some regulation regarding fake news.
PS: yes, I know, my fault for using Google as a search engine.
Man missing at Cradle Mountain since Sunday
A search is underway for a man believed to be missing in Tasmaniaās Cradle Mountain region since Sunday. ā Read more
Ish: Grep-like text search with optimal alignment, built with Mojo
Associated preprint: https://www.biorxiv.org/content/10.1101/2025.06.04.657890v1
The ābuilt with Mojoā is there because this tool exists specifically to test run Mojo as a language for bioinformatics tool development.