i found this site by searching âthing-fishâ
Apple A16 SoC Now Manufactured In Arizona
âApple has begun manufacturing its A16 SoC at the newly-opened TSCM Fab 21 in Arizona,â writes Slashdot reader NoMoreACs. AppleInsider reports: According to sources of Tim Culpan, Phase 1 of TSMCâs Fab 21 in Arizona is making the A16 SoC of the iPhone 14 Pro in âsmall, but significant, numbers. The production is largely a test for the facility at this stage, but more production is expected ⊠â Read more
Incredibly upsetâmore than you could imagineâbecause I already made the first mistake, and corrected it (but twtxt.net got it on itâs cache, ugh!) :â-( . Canât wait for editing to become a reality!
Alright. My first mentionsâwhich were picked not so randomly, LOLâare @prologic@twtxt.net, @lyse@lyse.isobeef.org, and @movq@www.uninformativ.de. I am also posting my first image too, which you see below. Thatâs my neighbourhood, in a âwinterâ day. Hopefully @prologic@twtxt.net will add my domain to his allowed list, so that the image (and any other further) renders.
Everything starts at a âhello worldâ. At least around these parts; the nerdy parts.
@prologic@twtxt.net I wouldnât want my client to honour delete requests. I like my computerâs memory to be better than mine, not worse, so it would bug me if I remember seeing something and my computer canât find it.
LinkedIn Is Training AI on User Data Before Updating Its Terms of Service
An anonymous reader shares a report: LinkedIn is using its usersâ data for improving the social networkâs generative AI products, but has not yet updated its terms of service to reflect this data processing, according to posts from various LinkedIn users and a statement from the company to 404 Media. Instead, the company says it ⊠â Read more
Beginnings of a little notebook app. Doesnât actually run any code yet. https://akkartik.name/images/20240917-notebook.png
I just ran dwarf fortress on #openbsd O:)
@quark@ferengi.one Mine is a little overkill đ but I need to do something for practice:
#!/bin/bash
set -e
trap 'echo "!! Something went wrong...!!"' ERR
#============= Variables ==========#
# Source files
LOCAL_DIR=$HOME/twtxt
TWTXT=$LOCAL_DIR/twtxt.txt
HTML=$LOCAL_DIR/log.html
TEMPLATE=$LOCAL_DIR/template.tmpl
# Destination
REMOTE_HOST=remotHostName # Host already setup in ~/.ssh/config
WEB_DIR="path/to/html/content"
GOPHER_DIR="path/to/phlog/content"
GEMINI_DIR="path/to/gemini-capsule/content"
DIST_DIRS=("$WEB_DIR" "$GOPHER_DIR" "$GEMINI_DIR")
#============ Functions ===========#
# Building log.html:
build_page() {
twtxt2html -T $TEMPLATE $TWTXT > $HTML
}
# Bulk Copy files to their destinations:
copy_files() {
for DIR in "${DIST_DIRS[@]}"; do
# Copy both `txt` and `html` files to the Web server and only `txt`
# to gemini and gopher server content folders
if [ "$DIR" == "$WEB_DIR" ]; then
scp -C "$TWTXT" "$HTML" "$REMOTE_HOST:$DIR/"
else
scp -C "$TWTXT" "$REMOTE_HOST:$DIR/"
fi
done
}
#========== Call to functions ===========$
build_page && copy_files
Hmm, but yarnd also isnât showing these twts as being part of a thread. @prologic@twtxt.net you said yarnd respects customs subjects. Shouldnât these twts count as having a custom subject, and get threaded together?
@sorenpeter@darch.dk I like this idea. Just for fun, Iâm using a variant in this twt. (Also because Iâm curious how it non-hash subjects appear in jenny and yarn.)
URLs can contain commas so I suggest a different character to separate the url from the date. Is this twt Iâve used space (also after âreplytoâ, for symmetry).
I think this solves:
- Changing feed identities: although @mckinley@twtxt.net points out URLs can change, I think this syntax should be okay as long as the feed at that URL can be fetched, and as long as the current canonical URL for the feed lists this one as an alternate.
- editing, if you donât care about message integrity
- finding the root of a thread, if youâre not following the author
An optional hash could be added if message integrity is desired. (E.g. if you donât trust the feed author not to make a misleading edit.) Other recent suggestions about how to deal with edits and hashes might be applicable then.
People publishing multiple twts per second should include sub-second precision in their timestamps. As you suggested, the timestamp could just be copied verbatim.
@bender@twtxt.net LOL normally things (in the vanilla template) render like <time class="dt-published" datetime="2024-09-17T15:05:19+01:00"> 2024-09-17 14:05:19 +0000 UTC+0000 </time> the datetime=... atribute is in my local time UTC+1 then the text within the tag is in UTC+0
The thing is, Iâve been poking at the template as well, but nothing changes. I literally whole portionsm added in lorem text just to see if it would do anything, then twtxt2html -T ./layout.html <link to twtxt file> | less shows same thing as before! nothing changes. LOL Iâm not sure Iâm going at it the right way.
(#hash;#originalHash) would also work.
Maybe Iâm being a bit too purist/minimalistic here. As I said before (in one of the 1372739 posts on this topic â or maybe I didnât even send that twt, I donât remember đ ), I never really liked hashes to begin with. They arenât super hard to implement but they are kind of against the beauty of the original twtxt â because you need special client support for them. Itâs not something that you could write manually in your
twtxt.txtfile. With @sorenpeter@darch.dkâs proposal, though, that would be possible.
Tangentially related, I was a bit disappointed to learn that the twt subject extension is now never used except with hashes. Manually-written subjects sounded so beautifully ad-hoc and organic as a way to disambiguate replies. Maybe Iâll try it some time just for fun.
It feels like an Aâ Hole pointing at typos while other people are the ones doing the real work ! đ
Iâve got 100G to copy from one disk to another. This is going to take foreverâŠ
@bender@twtxt.net Itâs just a simple twtxt2html and scp ⊠it goes like:
twtxt2html $HOME/path/to/local_twtxt_dir/twtxt.txt > $HOME/path/to/local_twtxt_dir/log.html && \
scp $HOME/path/to/local_twtxt_dir/log.html user@remotehost:/path/to/static_files_dir/
Iâve been lazy to add it to my publish_command script, now I can just copy/pasta from the twt đ
@sorenpeter@darch.dk Itâs nobodyâs fault! đ Itâs all part of the fun with them Ones and Zeros
Message to the void : présentation. https://si3t.ch/log/2024-09-17-message-to-the-void.txt
So, today I created a space where you can send an email to the void: https://void.si3t.ch/ gemini://void.si3t.ch/ #smolnet
Thank you @movq@www.uninformativ.de Things are working again!! đ
Done and done! everything is back to normal! đ„ł
FIX: Temporarily removed sorenpeterâs twtxt link from my follow list, whipped my twtxt Maildir and jenny Cache. Only then I was able to fetch everything as usual (I think). Now Iâll backup things and see what happens if I pull sorenpeterâs feed.
No keyboards were harmed during this experiment⊠yet.
On my blog: Developer Diary, Ozone Day https://john.colagioia.net/blog/2024/09/16/ozone-layer.html #programming #project #devjournal
@prologic@twtxt.net Nah! I donât do news feeds đ€Ł I gave some a try back then but it was just way too much noise. I have a separate app for RSS feeds I want to follow. None of them mention AI except for one article about the authorâs fight back against the crawlers, I believe Iâve mentioned it before.
Bonus: On his Pod/Profile it shows as if his last twt is from 4 Months ago.
@quark@ferengi.one No can do! I canât see any of the replies to that thread, not even mine LOL. let me se if I can fetch @sorenpeter@darch.dk âs feed with the https link.
Something odd just happened to my twtxt timeline⊠A bunch of twts dissapered, others were marked to be deleted in mutt. so I nuked my whole twtxt Maildir and deleted my ~/.cache/jenny in order to start with a fresh Pull. I pulled feed as usual. Now like HALF the twts arenât there đ even my my last replay. WTF IS GOING ON? đ€Łđ€Łđ€Ł
Also what are the change that the same human will make two different posts within the same second?!
Just out of curiosity, What would happen someday if I (maybe trolling) edit my twtxt.txt-file manually and switch/switch a couple of twt timestamps, or add in 3 different twts manually with the same time stamp?
@prologic@twtxt.net didnât it already? or is it just me and my social bubble? đ€
On my blog: Chosen https://john.colagioia.net/blog/2024/09/15/chosen.html #fiction #freeculture
Crap, I canât find how and why rdomain is not set using /etc/hostname.if #openbsd
@prologic@twtxt.net earlier you suggested extending hashes to 11 characters, but hereâs an argument that they should be even longer than that.
Imagine I found this twt one day at https://example.com/twtxt.txt :
2024-09-14T22:00Z Useful backup command: rsync -a â$HOMEâ /mnt/backup
and I responded with â(#5dgoirqemeq) Thanks for the tip!â. Then Iâve endorsed the twt, but it could latter get changed to
2024-09-14T22:00Z Useful backup command: rm -rf /some_important_directory
which also has an 11-character base32 hash of 5dgoirqemeq. (Iâm using the existing hashing method with https://example.com/twtxt.txt as the feed url, but Iâm taking 11 characters instead of 7 from the end of the base32 encoding.)
Thatâs what I meant by âspoofingâ in an earlier twt.
I donât know if preventing this sort of attack should be a goal, but if it is, the number of bits in the hash should be at least two times log2(number of attempts we want to defend against), where the âtwo timesâ is because of the birthday paradox.
Side note: current hashes always end with âaâ or âqâ, which is a bit wasteful. Maybe we should take the first N characters of the base32 encoding instead of the last N.
Code I used for the above example: https://fossil.falsifian.org/misc/file?name=src/twt_collision/find_collision.c
I only needed to compute 43394987 hashes to find it.
Weird, I canât set up my iwm0 interface to rdomain 1 : ifconfig: SIOCSIFRDOMAIN: Invalid argument. What am I missing? #openbsd
On my blog: Free Culture Book Club â Aumyr, part 2 https://john.colagioia.net/blog/2024/09/14/aumyr-2.html #freeculture #bookclub
We need more support summer software :(
@sorenpeter@darch.dk !! I freaking love your Timeline ⊠I kind of have an justified PHP phobia đ but, Iâm definitely thinking about giving it a try!
/ME wondering if itâs possible to use it locally just to read and manage my feed at first and then maybe make it publicly accessible later.
On my blog: Toots 𩣠from 09/09 to 09/13 https://john.colagioia.net/blog/2024/09/13/week.html #linkdump #socialmedia #quotes #week
The Fediverse Files â https://notiz.blog/a/9L7
On my blog: Real Life in Star Trek, Cause and Effect https://john.colagioia.net/blog/2024/09/12/cause-effect.html #scifi #startrek #closereading
aujourdâhui, jâai configurĂ© un serveur caldav pour Ă©viter les oublis de rendez-vous avec ma chĂ©rie, et jâai configurĂ© unbound pour quâil fasse le rĂ©solveur DNS en mĂȘme temps quâĂȘtre le point de sortie de mon VPN #wireguard. Ăa traĂźnait depuis trop longtemps. CâĂ©tait pas une si mauvaise journĂ©e ^^
First Look: Exploring OpenAI o1 in GitHub Copilot
Weâve tested integrating OpenAI o1-preview with GitHub Copilot. Hereâs a first look at where we think it can add value to your day to day.
The post First Look: Exploring OpenAI o1 in GitHub Copilot appeared first on The GitHub Blog. â Read more
quelquâun peut me dire pourquoi https://buymeacoffee.com/ ça serait mieux que https://liberapay.com/ ?
Cette nuit, jâai rĂȘvĂ© de PV Nova qui reprenait RATM et modifiait trĂšs lĂ©gĂšrement le rythme, câĂ©tait vraiment excellent. Jâai maintenant la musique dans la tĂȘte :)
Summer, going too fast. :(
@prologic@twtxt.net canât one just link to a keyoxide profile with a link to their Twtxt feed for identity or something?
GitHub Availability Report: August 2024
In August, we experienced one incident that resulted in degraded performance across GitHub services.
The post GitHub Availability Report: August 2024 appeared first on The GitHub Blog. â Read more
Streamlining your MLOps pipeline with GitHub Actions and Arm64 runners
Explore how Armâs optimized performance and cost-efficient architecture, coupled with PyTorch, can enhance machine learning operations, from model training to deployment and learn how to leverage CI/CD for machine learning workflows, while reducing time, cost, and errors in the process.
The post [Streamlining your MLOps pipeline with GitHub Actions and Arm64 runners](https://githu ⊠â Read more
Ford Seeks Patent For Tech That Listens To Driver Conversations To Serve Ads
Ford is seeking a patent for technology that would allow it to tailor in-car advertising by listening to conversations among vehicle occupants, as well as by analyzing a carâs historical location and other data, according to a patent application published late last month. The Record: âIn one example, the controller may moni ⊠â Read more
Fine-tuned models are now in limited public beta for GitHub Copilot Enterprise
Fine-tuned models empower organizations to receive code suggestions specifically tailored to their coding practices and internal languages.
The post Fine-tuned models are now in limited public beta for GitHub Copilot Enterprise appeared ⊠â Read more