[47°09′34″S, 126°43′08″W] Working impossible due to blizzard
Cuprate Meeting scheduled for 11 March 2025 1800 UTC
The next Cuprate Meeting is scheduled1 to take place on Tuesday, March 11 2025 at 18:00 UTC on IRC-Libera/Matrix2 in the #cuprate channels.
Agenda overviewCuprate is an effort to create an alternative Monero node implementation.
Greetings
Updates: What is everyone working on?
Project: What is next for Cuprate?
Any other business
The meeting’s moderator should be Boog9003. Consult the Cuprate code reposi … ⌘ Read more
@lyse@lyse.isobeef.org i appreciate you updating this with that info. been in the weeds at work so haven’t been tracking the conversation here much. let me sit on this for a bit because often times the edits are within seconds of first post so maybe maybe i just allow them within a certain time frame or do away with them all together. i really only do it because it bugs me once i notice the typo :)
a few async ideas for later
The editing process needs a lot of consideration and compromises.
From one side, editing and deleting it’s necessary IMO. People will do it anyway, and personally I like to edit my texts, so I’d put some effort on make it work.
Should we keep a history of edits? Should we hash every edit to avoid abuse? Should we mark internally a twt as deleted, but keeping the replies?
I think that’s part of a more complete ‘thread’ extension, although I’d say it’s worth to agree on something reflecting the real usage in the wild, along with what people usually do on other platforms.
That’s pretty darn neat, the little indie movie (‘Flow’) made in Blender beat out some Disney/Pixar heavyweights. I actually watched it a month or so ago, nice little movie. It’s not the highest detailed animation or anything, but it has a style that it makes work.
selsta submits CCS proposal for 3 months of Monero dev work until end of May 2025
selsta1 has submitted a new CCS proposal2 to continue working part-time on Monero development for 3 more months, until the end of May 2025:
Work for 30 hours per week over the next 3 months (from March to end of May) at a rate of 50€ / hour. At 210€ / XMR this makes ~93 XMR.
Total funding: 93 XMR.
ETA: (end of) May 2025.
The dev will continue testing and reviewing PR’s, Mone … ⌘ Read more
@bmallred@staystrong.run Not an issue if you’re the doctor working there. :-)
** Job posting **
I don’t write about work here. Not really as a rule, but out of habit.
It is a Saturday, and this morning at around 1 AM the federal government here in the U.S. fired my entire team, and the whole group they worked out of, 18f. This means that the team I was on is now just me. I was the only one not from 18f.
Nothing about this will increase efficiency or help anyone, at all.
If any of you beautiful RSS people are hiring senior level designers or qualitative researchers, please reach out and I can make introd … ⌘ Read more
[47°09′38″S, 126°43′47″W] Storm recedes – back to normal work
This is a valid reason to stay home from work, right? ⌘ Read more
plowsof submits proposal to continue working as CCS coordinator until end of June 2025
plowsof1 has submitted a new proposal2 looking to continue working as CCS Coordinator for 3 more months (from April to end of June 2025), after a successful fifth term3:
Hello, plowsof here, I show up and try to be helpful. My previous proposals happened, previously again. I would like to make it happen again, and do more of the same things.
Total funding: 72.6 XMR ... ⌘ [Read more](https://monero.observer/plowsof-submits-proposal-ccs-coordinator-april-june-2025/)
The correct way to do Drum and Bass. // Om Live at Pioneer Works // https://www.youtube.com/watch?v=IwnDKcoVHmY #NowPlaying
@andros@twtxt.andros.dev I don’t see a burst of new twtxt clients popping up. Yeah, the most recent ones are TwtxtReader and twtxt-el. Did I miss one? I agree with @david@collantes.us, looks normal to me. :-)
I’m also working on my rewrite at the moment, but that started… *looking at the git history*… oh wow! O_o Over two years ago! I just implemented jumping to the next/previous unread message.
[47°09′42″S, 126°43′22″W] Working impossible due to thunderstorm
My little girl. 14 years old. She still hates when I have to go to work. Purring like a diesel engine and cuddling, saying “don’t leave”. ⌘ Read more
working on my bookmarks tool, I found out that http(s)://domain.tls
is not a valid resource, but http(s)://domain.tls/
is, as you can see here: https://stackoverflow.com/a/2581423
I suppose that internally the wget/curl or whatever client you are using is redirecting it?
Amd of course, TDD! I tried that, but it doesn’t work all that great for me in its strict form. I have the feeling that coming up with a single new failing test, making it pass, maybe some refactoring, rinse and repeat wastes significantly more time than doing it in – what they call – the “bundle” approach. Coming up with several tests in advance and then writing the code or vise versa is usually much quicker. I do find that more enjoyable, it also helps me to reduce smaller context switches. I can focus on either the tests or the production code.
As for the potentially reduced code coverage with a non-TDD approach, I can easily see which parts are lacking tests and hand them in later. So, that’s largely a specious argument. Granted, I can forget to check the coverage or simply ignore it.
I agree with John, TDD results in less elegant code or requires more refactoring to tidy it up. Sometimes, it’s also not entirely clear at the beginning how the API should really look like. It doesn’t happen often, but it does happen. Especially when experimenting or trying out different approaches. With TDD, I then also have to refactor the tests which is not only annoying, but also involves the danger of accidentally breaking them.
TDD only works really well, if you have super tiny functions. But we already established that I typically don’t like tiny methods just for the purpose of them being extremely short.
When fixing a bug, I usually come up with a failing test case first to verify that my repaired code later actually resolves the problem. For new code, it depends, sometimes tests first, sometimes the productive code first. Starting off with the tests requires the API to be well defined beforehand.
@andros@twtxt.andros.dev Just before the pandemic, we watched Uncle Bob videos once a week in the lunch break. While almost all of my old teammates agreed with his views, I partially found them to be very odd and even counterproductive.
I didn’t come across John Ousterhout or any of his work before, at least not deliberately. So, this document is my first contact.
I only finished the chapter on comments and I totally agree with John so far. This document just manifests to me how weird Bob’s view is on certain subjects.
I always disagreed with the concept of a maximum method length. Sure, generally, shorter functions are probably better, but it always depends. And I’ve certainly seen super short methods that just made the code flow even worse to follow. While “one function should only do one thing” is a nice general rule, I’m 100% in team John with the shown examples. There are cases, where this doesn’t help readability at all. Not even close.
To me, a function always has to justify its existence. Either by reusing it at least at another place or by coming up with dedicated tests for it. But if it is just called once and there are no tests, I almost always decide against it. Personally, I don’t mind longer methods. We just recently had a discussion about that and I lost against two other workmates who are more in Uncle Bob’s camp, they refactored one medium sized method into three very short ones. Luckily, we agree on most other topics.
Lol, what!? The shorter the method, the longer the variables inside? I first thought I misread or the writeup mixed it up. I’ll always do it the other way around.
I’ve been also bitten badly by outdated comments in the past, but Bob must have worked on really terrible projects to end up with such an attitude to dislike comments. Oh well. No doubt, I’ve come across by several orders of magnitude more useless comments, in my experience (autogenerated) JavaDocs fall in the category more frequently than not. So, I know that there are different types of comments. A comment doesn’t automatically mean that it is good and justified.
But I also partially agree with Bob and John and think that a good name has a proper chance to save a comment. Though, when in doubt, I go John’s route and use a shorter name with a comment rather than use a kilometer long identifier. Writing good comments typically takes some time, sometimes much longer than writing the code. It regularly takes me several minutes. It’s a hard art.
I perhaps should read up on John’s work. He seems to be more reasonable and likeminded. :-) Let me continue to complete this document.
Reading into the so-called CLEAN architecture reminds me of the work I did nearly two decades earlier called circuits hmmm 🧐
I read a lot about Clean Code, SOLID, TDD, DDD… now I’m discovering «A Philosophy of Software Design»… but nobody talks about the importance of the project architecture. Do we depend on the framework to do the work for us?
You know I’m a big fan of Clean Architecture, but I feel alone when I share my thoughts on social media or at work.
You have to think outside the framework.
Boog900, hinto-janai, vtnerd CCS proposals ready for funding
Three CCS proposals have been moved to the funding stage and are now looking for community support:
- Boog900’s !544 1: full time work on Cuprate (3 months) + January 2
- hinto-janai’s !543 3: full-time work (3 months) 4
- vtnerd’s !553 5: full-time 2025 q1/q2 6
To support the above proposals you can donate to the XMR addresses listed on the _Funding Requi … ⌘ Read more
@movq@www.uninformativ.de Oh right, I completely forgot about the media! Maybe a sign that they’re losing their relevance? The third power appears to be gone or changed sides. Lots of them work on their own abolishment.
Cuprate Meeting scheduled for 4 March 2025 1800 UTC
The next Cuprate Meeting is scheduled1 to take place on Tuesday, March 4 2025 at 18:00 UTC on IRC-Libera/Matrix2 in the #cuprate channels.
Agenda overviewCuprate is an effort to create an alternative Monero node implementation.
Greetings
Updates: What is everyone working on?
Project: What is next for Cuprate?
Any other business
The meeting’s moderator should be Boog9003. Consult the Cuprate code repositor … ⌘ Read more
I spent this Monday afternoon back from work, drawing myself as the “you made it to Friday sailors” dog. Totally unrelated to the 3 hours wasted on meetings, pretending to discuss great suggestions from high management, nobody else wants to implement.
Link to OG meme: https://youtu.be/z8x3JS7pP14
@movq@www.uninformativ.de I didn’t, so it’s working fine. :-) I should rotate me as well.
j-berman posts CCS progress report after 368 hours of dev work
j-berman1 has published a second progress report2 for his full-time 2025 (part 9) Monero (FCMPs++) dev work CCS proposal3:
* Plugged FCMP++ transactions into consensus
* Prepared the FCMP++ optimization competition for launch
* Continuing PR 9135 (blockchain sync) review [..]
Consult the previous Monero Observer report4 to learn more about Justin’s CCS.
Th … ⌘ Read more
** mkv no more **
My previous post included a video. I made that video with OBS which outputs .mkv
video files.
I wanted to do my best to ensure that folks with a variety of devices and browsers would be able to watch the video if they wanted to, so, I converted it into a few different formats.
Here’s the bash script I wrote to do that. It relies on ffmpeg.
”`hljs bash
#!/bin/bash
if ! command -v ffmpeg &> /dev/null; then
echo "ffmpeg ... ⌘ [Read more](https://eli.li/mkv-no-more)```
@arne@uplegger.eu @eapl_en@eapl.me I’m sorry if I don’t respond to a reply. I don’t have a notification system for mentions at the moment. The work is manual!
My friend who works at a shelter found them like this. ⌘ Read more
@andros@twtxt.andros.dev hmmm… pretty strange, isn’t it? replaying to threads worked perfectly, I’ve only had that problem trying to replay to a twt that was part of a thread.
As an example, this one is a Fork-Replay from Jenny. My next twt will be a replay to this exact twt but from twtxt-el as a test.
Then I’will file an issue if it doesn’t behave the way it’s supposed to. Cheers!
vtnerd submits CCS proposal for 3 months of full-time Monero dev work
Lee Clagett (vtnerd1) has submitted a new CCS proposal2 looking to continue working full-time on Monero core components development for 3 months (Q1/Q2 2025):
Work primarily on the monerod, wallet, and monero-lws. [..] There is intentionally more work than time allows - to ensure there is always something to work on in the proposal.
”`
Total funding proposed: 134.37 XMR (USD 65/hr).
ETA: 3 … ⌘ Read more”`
(Updated) Spitz Plus GL-X2000 is an Upcoming Wi-Fi 6 and 4G LTE CAT 12 Router
The Spitz Plus GL-X2000 is a 4G LTE Wi-Fi 6 router designed to deliver reliable connectivity for remote work, travel, and rural internet access. It supports advanced network features like Multi-WAN, Failover, and Load Balancing, enhancing connection stability and ensuring dependable performance. The router is powered by a Qualcomm dual-core processor running at 1 GHz, […] ⌘ Read more
Yes, today in France, the price of houses is relatively high in the countryside and difficult to access for a modest family. I bought this house with my wife thirty years ago for a very low price but with a lot of work to do. It took me 20 years to finish everything with little means… it was not always easy, but I would never have returned to the city for anything in the world.. I hope my English is not too bad…
@eapl.me@eapl.me @andros@twtxt.andros.dev Eureka! It works! https://github.com/upputter/testing-twtxt-dm
PBKDF2_KEY_SIZE = 48
was the turning point! My dirty little crypt.class.php
can en- and decrypt, accoridng to the OpenSSL standard and options used in https://twtxt.dev/exts/direct-message.html
[47°09′10″S, 126°43′17″W] Storm recedes – back to normal work
@aelaraji@aelaraji.com Works 👌
@off_grid_living@twtxt.net No right click thing, but in the terminal:
convert -strip -quality 70 -resize 300x original.jpg resized.jpg
“original.jpg” being the filename of the input file and “resized.jpg” the filename of the output. You can play around with the width, “300x” means 300 pixels wide and the height is determined automatically to still remain in the same ratio. The quality is how much to compress it. The closer to 0 the value gets, the worse the result, but also smaller in file size. More towards 100 and the quality improves together with a larger file size.
You have to install the package “imagemagick” for this to work, I believe.
@eapl.me@eapl.me Nope, I switched to the openssl library in PHP. But our rubberducking 🦆 seems to be working. Your find https://crypto.stackexchange.com/a/79855 for the IV generation may be the breakthrough …
here is my progress so far: https://github.com/eapl-gemugami/twtxt-direct-message-php
The encryption part seems to work, if I decrypt it the message with OpenSSL.
I think it can help you for some key parts not well explained in OpenSSL documentation.
@andros@twtxt.andros.dev reading your spec I wrote a few notes here: https://github.com/eapl-gemugami/twtxt-direct-message-php/blob/main/direct_message_spec.md
@arne@uplegger.eu I haven’t check your repo yet, although you are using sodium, right?
But that is not how it should work. 😒
Silicon Labs-Based XIAO MG24 Series Expands with New Pre-Soldered and Multi-Pack Versions
Seeed Studio has expanded its XIAO MG24 and XIAO MG24 Sense development board lineup with new variants, including pre-soldered versions and 3PCS packs. These additions provide more flexibility for developers working on IoT and Matter-based projects, streamlining prototyping and small-scale production. The XIAO MG24 and XIAO MG24 Sense are now available in 3PCS packs … ⌘ Read more
jeffro256 posts January 2024 Monero/Carrot dev update
jeffro2561 has posted the first progress report (M1/January 2025)2 for their Monero/Carrot3 dev work CCS proposal4:
Work overviewI spent a lot of time reviewing / debugging the upcoming release v0.18.4.0 build. I would like to post more details about this for transparency, but some of it involves vulnerability work, so I will hold off for now. I plan to publish reports about this eventually.
… ⌘ Read more
yes it works now :)
@lyse@lyse.isobeef.org I am a big fan of “obvious” math facts that turn out to be wrong. If you want to understand how reusing space actually works, you are mostly stuck reading complexity theory papers right now. Ian wrote a good survey: https://iuuk.mff.cuni.cz/~iwmertz/papers/m23.reusing_space.pdf . It’s written for complexity theorists, but some of will make sense to programmers comfortable with math. Alternatively, I wrote an essay a few years ago explaining one technique, with (math-loving) programmers as the intended audience: https://www.falsifian.org/blog/2021/06/04/catalytic/ .
Cuprate Meeting scheduled for 25 February 2024 1800 UTC
The next Cuprate Meeting is scheduled1 to take place on Tuesday, February 25 2025 at 18:00 UTC on IRC-Libera/Matrix2 in the #cuprate channels.
Agenda overviewCuprate is an effort to create an alternative Monero node implementation.
Greetings
Updates: What is everyone working on?
Project: What is next for Cuprate?
Any other business
The meeting’s moderator should be Boog9003. Consult the Cuprate co … ⌘ Read more
I am so, so, so fed up with the arrogance of people in tech. People think they know everything. Everything is easy and trivial. “Told you so!”, everywhere you look. And this bloody condescending tone, all the time. When I ask for an opinion, I don’t want to get a “well, duh, idiot”. For fuck’s sake.
It’s nothing new, it’s always been like that. Which makes it even worse.
This really makes me not want to work in this field anymore.
Yesterday I was doing a lot of research on how #hyperdrive and the #holepunch project work. Would it be possible to use it to make #twtxt an easier gateway for new users? Could we stop using web servers?
My conclusion: We would end up being a #nostr. On the one hand it would become more complex to use, it would force the user to have software installed, and on the other hand the community would need a central proxy to make the routes accessible via HTTP. In other words, it’s not a good idea.
However, it’s an AMAZING technology. I want to start playing with it.
[ANN] MoneroTalk #340: Spreading Agorism with Agorist Nexus
In this episode Douglas Tuman speaks with Brandon from the Agorist Network about Agorism, cryptocurrency, and privacy-focused economic systems. Brandon explains that agorism is fundamentally about trading freely outside state control and creating voluntary societies. He discusses founding the Agorist Network and working with notable figures like Wendy McElroy.
Links:
Apple is ‘Ramping Up’ Work on a New Studio Display
Apple is “ramping up” work on a new Studio Display, according to Bloomberg’s Mark Gurman.
In his [Power On newsletter today](https://www.bloomberg.com/news/newsletters/2025-02-16/apple-and-meta-are-set-to-battle-over-new-area-humanoi … ⌘ Read more
plowsof posts second progress report for fifth CCS coordinator term
plowsof1 has submitted a second progress report2 after working for almost 5 months during their fifth term as CCS coordinator3:
Although 86~ days have passed since the last milestone completion, i’ve been performing my duties / fulfilling my hourly commitments - lack of good time management has lead to there being too many loose ends (especially for -site) and meeting attendance coul … ⌘ Read more
@eapl.me@eapl.me I like this idea. Another option would be to show a limited number of posts, with an option to see the omitted ones by user. Either way, I wonder how well that works with threading.
I just did and things are working wonderfully well now and I’m in love with how profile views
are layed out! 👌 Thank you!
The project is a POC (Proof of Concept) that went into production and the company has customers who are using it. The developers had been working for several years, without testing, structure, isolation and so on. The company hired me to transform the project into a real product. There are in my hands 422 python files to transform that they beg me a refactore, architecture and testing. Every developer’s bad dream.
My first step is to read and understand the tree because there are apps inside other apps call each other. I am very determined to work on a new repository.
jeffro256, SNeedlewoods CCS proposals fully funded
jeffro256’s full-time development 2025Q1 1 and SNeedlewoods’s part-time dev work 2 CCS proposals were fully funded today, with help from the Monero General Fund3:
jeffro256:
* 114 XMR raised in 19 contributions (38 XMR sent from GF)
SNeedlewoods:
* 23 XMR raised in 14 contributions (7.67 XMR sent from GF)
To learn more about the two proposals, consult the previous Monero Observer reports4’[ … ⌘ Read more
@andros@twtxt.andros.dev I suggest to not touch it and work on a different project instead. :-D
No, in all seriousness, that’s a tough one. Try to figure out the requirements and write tests to cover them. In my experience, if there is no good documention, tests might also be lacking. It goes without saying that you have to understand the code segments first before you can begin to refactor them. Commit even earlier and more often than usual, this will help you bisecting potentially introduced bugs later on. Basically baby steps.
But it also depends on the amount of refactoring required. Maybe just scrap it entirely and start from scratch. This might not be feasible due to e.g. the overall project size, though.
@eapl.me@eapl.me Yeah, you need some kind of storage for that. But chances are that there’s already a cache in place. Ideally, the client remembers etags or last modified timestamps in order to reduce unnecessary network traffic when fetching feeds over HTTP(S).
A newsreader without read flags would be totally useless to me. But I also do not subscribe to fire hose feeds, so maybe that’s a different story with these. I don’t know.
To me, filtering read messages out and only showing new messages is the obvious solution. No need for notifications in my opinion.
There are different approaches with read flags. Personally, I like to explicitly mark messages read or unread. This way, I can think about something and easily come back later to reply. Of course, marking messages read could also happen automatically. All decent mail clients I’ve used in my life offered even more advanced features, like delayed automatic marking.
All I can say is that I’m super happy with that for years. It works absolutely great for me. The only downside is that I see heaps of new, despite years old messages when a bug causes a feed to be incorrectly updated (https://twtxt.net/twt/tnsuifa). ;-)
that’s a fair point.
Perhaps, since Twitter in 2006 never implemented read flags, every derivative microblogging system never saw that as an expected feature. This is curious because Twitter started with SMS, where on our phones we can mark messages as read or unread.
I think it all comes from the difference between reading an email (directed to you) vs. reading public posts (like a blog or a ‘wall,’ where you don’t mark posts as read). It’s not necessary to mark it as ‘read’, you just jump over it.
Reading microblogging posts in an email program is not common, I think, and I haven’t really used it, so I cannot say how it works, and whether it would be better for me or not.
However, I’ve used Thunderbird as a feed reader, and I understand the advantages when reading blog posts.
About read flags being simple, well… we just had a discussion this morning about how tracking read messages would require a lot of rethinking for clients such as timeline
where no state is stored. Even considering some kind of ‘notification of unread messages or mentions’ is not expected for those minimalist client, so it’s an interesting compromise to think about.
@mckinley@twtxt.net Yeah, all this JS and HTMX garbage messes up a lot of things which used to work better in the earlier days.
Definitely something going on with replies. This one was replying to the wrong twt and even when I got clever and pasted the right hash it didn’t work.
@aelaraji@aelaraji.com Sorry I’m late! I still have to work on the mention system, I don’t get some of the messages. I’ll look into your case and get back to you shortly 😄
If it’s a problem that ruins your experience, don’t hesitate to create an issue.
Apple Working on New 27-Inch Mini-LED Studio Display for Late 2025
Apple is working on a 27-inch mini-LED display that could come as soon as late 2025, display analyst Ross Young said today. The display could be a new version of the Studio Display that Apple first introduced in 2022. The current version of the Studio Display uses a 5K LED panel, so a mini-LED version would be a significant update.
2 for his latest CCS proposal3 to do Russian voice-over work and transcribe Monero content:
Although our proposal is still in ‘Funding Required’ stage, we did not sit idle, we worked according to the planned milestones. In addition, due to the prolonged funding stage (PR merged ~63 days ago), we additionally place … ⌘ Read more
Saw Windows 11 for the first time today and genuinely had to ask if this is really Windows. Looks a lot like KDE.
(At first, I thought the touchpad of that laptop was broken, because a right click on the desktop didn’t do anything. But it worked just fine. It just takes ~10 seconds for the popup to show.)
@jost@jost.sdfeu.org Happens to everybody. 😂 Well, except for a few people. I have this colleague at work who remembers everything. It’s scary. 😅
Mom, please don’t go to work ⌘ Read more
Gopher in Ineternet Explorer 3 works better than in this Dillo LoL
OLED MacBook Pro With Thinner Design on Track for 2026 Launch
Apple’s first OLED MacBook Pro remains on schedule for a 2026 release, featuring the new slimmer design Apple is rumored to be working on, based on a new report from The Elec.
Samsung Display is said to be currently producing test samples of the OLED panels on its first deposition machine … ⌘ Read more
selsta posts January 2025 Monero dev report
selsta1 has posted a monthly CCS progress report2 for January 2025, which includes several Monero dev updates.
Milestone 2:
* Most time was spent on v0.18.4.0
* I also created a to-do list that shows the current status
* Removed old debug code that we used to verify the difficulty code
(this could speed up sync times)
* Hackerone conflict resolution
Note that misc work is not explicitly mentioned in these updates. The full … ⌘ Read more
Boog900 submits CCS proposal for 4 months of full-time Cuprate dev work
Boog9001 has submitted a new CCS proposal2 looking to continue full-time development work on Cuprate 3 for 3 months and also get compensated for January work:
I will work for 3 months on Cuprate with an initial focus on releasing an alpha cuprated [..] I plan to work on what I think is best to advance the project. I am also asking for payment for the hours I worked in January. \ … ⌘ Read more
Cuprate Meeting scheduled for 18 February 2024 1800 UTC
The next Cuprate Meeting is scheduled1 to take place on Tuesday, February 18 2025 at 18:00 UTC on IRC-Libera/Matrix2 in the #cuprate channels.
Agenda overviewCuprate is an effort to create an alternative Monero node implementation.
Greetings
Updates: What is everyone working on?
Project: What is next for Cuprate?
Any other business
The meeting’s moderator should be Boog9003. Consult the Cuprate co … ⌘ Read more
On my blog: Stop Doing Their Work for Them https://john.colagioia.net/blog/2025/02/09/resist.html #harm #politics #rant
Little helper at work ⌘ Read more
[LFF] [6.55 XMR] Gupaxx development
Every monero given will be converted to hours of work. When a goal is attained, a new release will occur, including elements present in the roadmap. A release is about 20 hours of work. Bug fixing releases will not wait for a new funding goal to be completed.
Links:
Cyrix126 (Github) ⌘ Read more
@<url>
. Submitting this writes @<domain url>
instead of @<nick url>
in the feed.
hmm interesting work here.. ill give it a look.. @lyse@lyse.isobeef.org do you know if it is even storing the url into the AST object? afair the code to parse tags url should be the same as the mention url.
[ANN] Vienna meetup sponsored by WizardSwap.io, organised by OrangeFren.com
- Date: Friday the 21st of February 2025 @ 18:00 local time
- Location: District Working & Event Venue, Donau-City-Straße 3, 1220 Wien
- Tickets: free
Link: https://orangefren.com/event/21
orangefren.com ⌘ Read more
hinto-janai submits CCS proposal for 3 months of full-time Cuprate, Monero/FCMP++ work
hinto-janaiyo1 has submitted a new CCS proposal2 looking to continue full-time development work on Cuprate 3 and contribute to Monero (FCMP++ reviews) for 3 months:
Cuprate is preparing its first alpha release, with a 4-week cycle. [..] I will be buying/renting a variety of hardware for testing/development and will post receipts for all hardware acquired a … ⌘ Read more
How CPU Memory & Caches Work - Computerphile ⌘ Read more
@movq@www.uninformativ.de Open-plan offices are just a giant mistake. I’ve never seen a single working one where people can actually concentrate. Except when I was the first one around in the morning.
@<url>
. Submitting this writes @<domain url>
instead of @<nick url>
in the feed.
While I now have a somewhat working fix for it in yarnd (https://git.mills.io/yarnsocial/yarn/pulls/1232), I also have the feeling that I should fix literal formatting in lextwt as well. This also uncovered more bugs I believe: https://git.mills.io/yarnsocial/go-lextwt/pulls/28
But then there is also the question why the textarea is populated with @<url>
in the first place rather than @<nick url>
or yarnd’s own @nick@domain
/@nick
syntax. It indeed has to do something with whether I follow the mentioned feed or not.
Anyway, something to investigate for future Lyse or maybe @prologic@twtxt.net and/or @xuu@txt.sour.is. G’night!
@movq@www.uninformativ.de This time it works! (For the first time). Using mutt, yes, and the config is yours. I’ll contact you later, when I have more data. Some time needed to experiment. Thanks!
@jost@jost.sdfeu.org Hmm, not really, no. Could you share your mutt config? (Are you using mutt?) Feel free to send me an email, if doing this over twtxt doesn’t work (yet). You can find the address on https://www.uninformativ.de/contact.html ✌️
[47°09′52″S, 126°43′15″W] Storm recedes – back to normal work
funny to come across this; been working on something similar then got distracted by trying to force lynx to wrap at 80 columns w/o breaking words..
WhatsApp to Soon Let You Schedule Events in Private Chats
WhatsApp is working on expanding its group chat event planning feature to private chats, according to new changes found in the latest beta version (via WABetaInfo).
Currently, WhatsApp allows you to create events from group chats to h … ⌘ Read more
Cuprate Meeting scheduled for 11 February 2024 1800 UTC
The next Cuprate Meeting is scheduled1 to take place on Tuesday, February 11 2025 at 18:00 UTC on IRC-Libera/Matrix2 in the #cuprate channels.
Agenda overviewCuprate is an effort to create an alternative Monero node implementation.
Greetings
Updates: What is everyone working on?
Project: What is next for Cuprate?
Any other business
The meeting’s moderator should be Boog9003. Consult the Cuprate co … ⌘ Read more
jeffro256, rottenwheel, SNeedlewoods CCS proposals ready for funding
Three CCS proposals have been moved to the funding stage and are now looking for community support:
- jeffro256’s !540 1: full-time development 2025Q1 2
- rottenwheel’s !535 3: Revuo Monero maintenance (2025 Q1) 4
- SNeedlewoods’s !541 5: part-time dev work 6
To support the above proposals you can donate to the XMR addresses listed on the _ … ⌘ Read more
Apple and Sony Still Working to Bring VR Gaming Controller Support to Vision Pro
Apple and Sony are still collaborating to bring support for PlayStation VR2 hand controllers to the Vision Pro headset, Bloomberg’s Mark Gurman reports.
In December, [Gurman said](https://www.macrumors.com/2024/12/08/sony-vr2-contr … ⌘ Read more
tobtoht posts January 2025 Monero/Feather dev report
tobtoht1 has published the first progress report2 for his full-time Q1 2025 Feather Wallet and Monero dev work CCS proposal3:
Work overviewSummary: core build system and CI work
Feather: 4 commits (+217, -45)
* guix: add missing patch
Core: 43 (non-documentation) PRs
* Comments on the Code of Conduct #9738
* cmake: remove msvc #9729
* ci: containerize ubuntu cli jobs #9708 [..]
The full d … ⌘ Read more
SNeedlewoods submits CCS proposal for ~4.5 months of part-time Monero dev work
SNeedlewoods1 has submitted a second CCS proposal2, looking to work part-time on Monero development for ~4.5 months:
Since the feature-complete Wallet API PR from my previous CCS proposal is finally in “pending review” state (I will give my best to quickly resolve issues coming up during the review, so it hopefully will get merged soon), it’s time for the next steps..
Funding propose ... ⌘ [Read more](https://monero.observer/sneedlewoods-submits-second-monero-dev-work-ccs-proposal/)
Apple Cancels Mac-Connected AR Smart Glasses
Apple is no longer developing augmented reality glasses designed to pair with the Mac, reports Bloomberg ’s Mark Gurman. Apple wanted to create smart glasses that looked like regular glasses, but had augmented reality c … ⌘ Read more
[ANN] Tor project twitter is compromised
Our X (Twitter) account has been compromised. We are working to regain access. Please do not trust or interact with any posts, DMs, or links from our account until further notice.
Link: https://mastodon.social/@torproject/113918614226738202
@monerobull:matrix.org ⌘ Read more
How to Turn Off “Follow Up” Mail Suggestions on iPhone & iPad
The Mail app on iPhone and iPad has been around since the beginning of those devices, and many people have grown familiar with how the Mail app works and behaves. But recently, Apple has been making a lot of tweaks and adjustments to the Mail app, and some of these changes are not necessarily welcome … [Read More](https://osxdaily.com/2025/01/30/how-to-turn-off-follow-up-mail-suggestions-on-iphone- … ⌘ Read more
@lyse@lyse.isobeef.org would it work wit cats instead? there has been a whole flock of them in the neighborhood the last couple of days, one female and a gazillion males taking turns 😅 … at least they’d be good for something other than their non-stop after midnight opera 😂
I want to propose my own counter-proposal to the discussion that’s ongoing with Go and error handling.
Here it is: https://docs.mills.io/ix4qDHMnQUSPxZ5tXz12Vg?view
It’s very rough and needs much more work, but essentially I want to propose the following change to the language’s grammar:
f := os.Open("foo.txt") or (e error) {
log.Fatal("error opening file; %s", e)
}
?
operator in Go 👈 No. For so many reasons.
@lyse@lyse.isobeef.org one time i saw that operator when working with ruby on rails and i was so confused by it that i got stuck on the same code involving it for 9 hours straight
Cuprate Meeting scheduled for 4 February 2024 1800 UTC
The next Cuprate Meeting is scheduled1 to take place on Tuesday, February 4 2025 at 18:00 UTC on IRC-Libera/Matrix2 in the #cuprate channels.
Agenda overviewCuprate is an effort to create an alternative Monero node implementation.
Greetings
Updates: What is everyone working on?
Project: What is next for Cuprate?
Any other business
The meeting’s moderator should be Boog9003. Consult the Cuprate code … ⌘ Read more
i upgraded my pc from lubuntu 22.04 to 24.04 yesterday and i was like “surely there is no way this will go smoothly” but no it somehow did. like i didn’t take a backup i just said fuck it and upgraded and it WORKED?!?! i mean i had some driver issues but it wasn’t too bad to fix. wild
Considerations for making a tree view component accessible
A deep dive on the work that went into making the component that powers repository and pull request file trees.
The post Considerations for making a tree view component accessible appeared first on The GitHub Blog. ⌘ Read more