Tootfinder

Opt-in global Mastodon full text search. Join the index!

No exact results. Similar results found.
@heiseonline@social.heise.de
2025-06-12 09:06:00

Dia: Neuer KI-Browser der Arc-Macher geht in die Betaphase
Die Macher des Arc-Browsers haben ihren zweiten Browser als Betaversion freigegeben. Bei Dia liegt der Fokus auf KI. 

@qurlyjoe@mstdn.social
2025-06-14 01:28:36

#silentSunday #RockyMountainNationalPark
View from Many Parks Curve. October 2016

Scenic photo taken in Rocky Mountain National Park. Looking south from the observation area at Many Parks Curve along Trail Ridge Road. In the left foreground an aspen tree that’s lost all of its leaves pokes up, reaching to the top of the frame. To the right of the tree, and reaching across the frame, green pine trees stretch out to the center, dropping away in the distance. Areas of brightly lit trees are mixed with areas shadowed by clouds. Across the background a range of mountains are in s…
@heiseonline@social.heise.de
2025-06-14 13:49:00

Intel registriert neue IDs für neue Battlemage-GPU
Gleich an zwei Stellen hat Intel eine neue GPU mit Modellnummer "BMG-G31" in Datenbanken eingetragen. Das deutet auf eine mögliche Arc B770 hin.

@Techmeme@techhub.social
2025-06-11 14:16:20

The Browser Company launches Dia, a macOS browser in beta for Arc users based around an AI chat sidebar that can access tabs, history, and logged-in sites (David Pierce/The Verge)
theverge.com/web/685232/dia-br

@AimeeMaroux@mastodon.social
2025-06-10 14:00:33
Content warning:

Have a courageous Day of Ares aka Mars' Day aka Tuesday 🗡️
There is one character from #GreekMythology who might have been a male lover to #Ares: Alektryon, a youth dear to Ares, who would guard the door while Ares was with Aphrodite:
"A young man called Alektryon; he was a …

A photograph of a muscular young man with short, dark hair. He is dressed in a red kilt that reaches to his mid-thigh. Sandals reaching up two thirds to the knee decorate his legs. He holds a spear in his right and a helmet in his left. An aspis shield can be seen behind him in the background where it leans against a wall decorated with reliefs. He is standing between two columns, invoking Alektryon standing guard for Ares while he made love to Aphrodite.
@david_colquhoun@mstdn.social
2025-05-13 21:08:52

Pam Ayres
At last, we have a cure for all!
Ailments large and ailments small,
Good health is not beyond my reach,
If I inject myself with bleach.
Radiant, I’ll prance along,
Every trace of limescale gone,
With disinfectant as my friend,
Like him,
I’m clean around the bend.

@aardrian@toot.cafe
2025-06-15 12:25:11

Apple researchers maybe disprove ‘reasoning’ (vs. well-specified conventional algorithms):
machinelearning.apple.com/rese
Analyses:

@peterhoneyman@a2mi.social
2025-06-14 01:00:38

Kathleen Edwards at The Ark

@kurtsh@mastodon.social
2025-06-15 05:53:57

Five GLORIOUS hours documenting the history of the ol' BBS days... from FIDO/PC Board to transfer protocols to ANSI art to PCTalk to Procomm & more!
(I also have a separate clip re: battle between PKZIP vs ARC!)
▶️ BBS the Documentary [Full HD]
youtube.com/watch?v=nO5vjmDFZa

@peterhoneyman@a2mi.social
2025-06-09 16:06:53

Every few years I go and dig out a 65-line C program that I wrote as a grad student and try to gently poke it through a compiler but I finally got tired of that and replaced it with a 10-line awk script.
Wow, take a look at this jalopy! Written ca. 1977 (with ed(1), the standard editor) on a PDP-11/45 running V7, prob'ly on an ADM-3A "glass terminal" in the terminal room on the second floor of the E-Quad.

#include <stdio.h>

int	print = 0;

main(argc, argv)
register char	**argv;
{
	register short	printname;

	if (--argc && argv[1][0] == '-') {
		print++;
		--argc;
		argv++;
	}

	if (argc == 0) {
		Long();
		exit(0);
	}

	printname = argc > 1;
	while (argv++, argc--) {
		if (freopen(*argv, "r", stdin) == NULL) {
			perror(*argv);
			continue;
		}
		if (printname)
			printf("%s: ", *argv);
		Long();
	}
	exit(0);
}

Long()
{
	char	tmp1[512], tmp2[512], *in = tmp1, *save = tmp2, *hold;
	register int…