Searching We.Love.Privacy.Club

Twts matching #lives
Sort by: Newest, Oldest, Most Relevant

@prologic@twtxt.net Thanks for writing that up!

I hope it can remain a living document (or sequence of draft revisions) for a good long time while we figure out how this stuff works in practice.

I am not sure how I feel about all this being done at once, vs. letting conventions arise.

For example, even today I could reply to twt abc1234 with “(#abc1234) Edit: …” and I think all you humans would understand it as an edit to (#abc1234). Maybe eventually it would become a common enough convention that clients would start to support it explicitly.

Similarly we could just start using 11-digit hashes. We should iron out whether it’s sha256 or whatever but there’s no need get all the other stuff right at the same time.

I have similar thoughts about how some users could try out location-based replies in a backward-compatible way (append the replyto: stuff after the legacy (#hash) style).

However I recognize that I’m not the one implementing this stuff, and it’s less work to just have everything determined up front.

Misc comments (I haven’t read the whole thing):

  • Did you mean to make hashes hexadecimal? You lose 11 bits that way compared to base32. I’d suggest gaining 11 bits with base64 instead.

  • “Clients MUST preserve the original hash” — do you mean they MUST preserve the original twt?

  • Thanks for phrasing the bit about deletions so neutrally.

  • I don’t like the MUST in “Clients MUST follow the chain of reply-to references…”. If someone writes a client as a 40-line shell script that requires the user to piece together the threading themselves, IMO we shouldn’t declare the client non-conforming just because they didn’t get to all the bells and whistles.

  • Similarly I don’t like the MUST for user agents. For one thing, you might want to fetch a feed without revealing your identty. Also, it raises the bar for a minimal implementation (I’m again thinking again of the 40-line shell script).

  • For “who follows” lists: why must the long, random tokens be only valid for a limited time? Do you have a scenario in mind where they could leak?

  • Why can’t feeds be served over HTTP/1.0? Again, thinking about simple software. I recently tried implementing HTTP/1.1 and it wasn’t too bad, but 1.0 would have been slightly simpler.

  • Why get into the nitty-gritty about caching headers? This seems like generic advice for HTTP servers and clients.

  • I’m a little sad about other protocols being not recommended.

  • I don’t know how I feel about including markdown. I don’t mind too much that yarn users emit twts full of markdown, but I’m more of a plain text kind of person. Also it adds to the length. I wonder if putting a separate document would make more sense; that would also help with the length.

⤋ Read More

@movq@www.uninformativ.de I’m glad you like it. A mention (@<movq https://www.uninformativ.de/twtxt.txt>) is also long, but we live with it anyway. In a way a replyto: is just a mention of a twt instead of a feed/person. Maybe we chould even model the syntax for replies on mentions: (#<2024-09-17T08:39:18Z https://www.eksempel.dk/twtxt.txt>) ?!

⤋ Read More

Pinellas County - Long Run: 11.04 miles, 00:11:22 average pace, 02:05:22 duration
body was a bit worn out today. switched it up to walk-run after about 5 miles because i have a daddy-daughter dance this afternoon and did not want to be too stiff. met another runner who actually only lives about a mile or less from me. maybe i will try to meet with him after my business trip next week.
#running

⤋ Read More

Kubestronaut in Orbit: Fangel Colón
Get to know Fangel This week’s Kubestronaut in Orbit, Fangel Emilio Colón Navarro, lives in the Dominican Republic and is an SRE at Banco BHD. He’s been working with CNCF technologies since 2020. If you’d like to be… ⌘ Read more

⤋ Read More

Erlang Solutions: The Diversity & Inclusion Programme: Our Pledge
As technology becomes increasingly integrated into our lives, the minds behind it must come from diverse backgrounds. Different viewpoints lead to better solutions, ensuring that the tech we create addresses the needs of a global audience.

At Erlang Solutions, we believe that a diverse workforce is a catalyst for creativity and progress. By sponsoring the Diversity & Inclusion Programme for [Code BEAM events](https://codebeameurope … ⌘ Read more

⤋ Read More

Join us as gRPConf returns this August 27!
Attention gRPC community! Mark your calendars for August 27th, 2024, as gRPConf returns to the Google Cloud Campus in Sunnyvale, California. The schedule is now live! This is your chance to dive deep into the world of gRPC, connect with fellow… ⌘ Read more

⤋ Read More

Kubestronaut in Orbit: Kolawole Olowoporoku
Get to know Kolawole This week’s Kubestronaut in Orbit, Kolawole Olowoporoku wears many hats in his role as a Senior Site Reliability Engineer at SEKAI. Kolawole has a passion for learning and for open source and lives in… ⌘ Read more

⤋ Read More

Avocados are likely to stay cheap for years, but farmers are getting smashed
Once considered a luxury, avocados have stayed cheap throughout the cost-of-living crisis. But while consumers are cheering, farmers are looking to other markets to absorb an oncoming glut. ⌘ Read more

⤋ Read More

Cloud Native Glossary — the Turkish version is live! (blog in English + Turkish)
The Cloud Native Glossary is a project led by the CNCF Business Value Subcommittee. Its goal is to explain cloud native concepts in clear and simple language without requiring any previous technical knowledge. We are in the process… ⌘ Read more

⤋ Read More

Fun: Get a Bouncy Ball to Play With on Your Mac Screen
Ball is a super fun project for Mac that is goofy, simple, and wildly creative. It’s, well, a virtual bouncy ball. Ball lives in your Mac Dock, and when you click on the Dock icon, the bouncy ball pops out and drops onto your screen. The big red bouncy ball has decent physics too, so … Read MoreRead more

⤋ Read More

How to Install tvOS 18 beta on Apple TV
tvOS 18 includes some intriguing new features that aim to improve your Apple TV experience, including Enhance Dialogue to make it easier to hear voices and dialog in shows and movies, Live Captions offers live transcripts of FaceTime calls on Apple TV, new screen savers, new Fitness features, Home app guest access, and more. If you’re … Read MoreRead more

⤋ Read More

How to Install watchOS 11 Beta on Apple Watch
WatchOS 11 for Apple Watch was recently announced, and watchOS 11 beta is available to run and install right now on compatible Apple Watch models. WatchOS 11 has a variety of features like training load tracking, ability to add rest days to your workouts or pause your activity rings without losing your streaks, live language … Read MoreRead more

⤋ Read More

Could you perhaps just have a check box to do the opposite, like “Don’t remember me”? I’ve seen that a couple of places I think. Sort of an opt in short lived login, if you’re at a public library or something etc.

⤋ Read More

@prologic@twtxt.net I was wondering if my reverse proxy could cause something but it’s pretty standard…

server {

    listen 80;
    server_name we.loveprivacy.club;
    location / {
            return 301 https://$host$request_uri;
            <a href="https://we.loveprivacy.club/search?q=%23proxy_pass">#proxy_pass</a> http://127.0.0.1:8000;
    }

}
server {

    listen 443 ssl http2;
    server_name we.loveprivacy.club;

    ssl_certificate /etc/letsencrypt/live/we.loveprivacy.club/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/we.loveprivacy.club/privkey.pem;

    client_max_body_size 8M;

    location / {
            proxy_pass http://127.0.0.1:8000;
    }

}

⤋ Read More

Cloud Native Glossary — the Russian version is live!
Community post by Kirill Kononovich, Dmitry Shurupov, Timur Tukaev The Cloud Native Glossary is a project led by the CNCF Business Value Subcommittee. Its goal is to explain cloud native concepts in clear and simple language without requiring… ⌘ Read more

⤋ Read More

Empowering Developers at Microsoft Build: Docker Unveils Integrations and Sessions
Docker’s presence at Microsoft Build is more than just a showcase — it’s a portal to the future of application development. Visit our booth to interact with Docker experts, experience live demos, and explore the powerful capabilities of Docker Desktop and other Docker products. ⌘ Read more

⤋ Read More

Get the first look at CloudNativeSecurityCon North America 2024’s schedule, add-on events, and more
The schedule for CloudNativeSecurityCon North America 2024 is now live, and is filled with 75 sessions offering practical solutions and thoughtful discussions of some of the biggest challenges in security today. The conference will be held June 26… ⌘ Read more

⤋ Read More

Celebrating 1 year of A11y Design Bootcamp: Takeaways and tips
A11y Design Bootcamp is a live educational program that consists of exercises, discussions, and knowledge shares to raise awareness of web accessibility best practices, the role designers play in creating accessible products, and how to advocate for accessibility with cross-functional partners.

The post [Celebrating 1 year of A11y Design Bootcamp: Takeaways and tips](https://github.blog/2024-05-02-celebrating-1- … ⌘ Read more

⤋ Read More

Is ditching the city for a country vineyard as romantic as it sounds?
Leaving the city and buying a vineyard in the country sounds romantic – the fresh air, drinking wine from the grapes you’ve cultivated, working your own hours, and raising a family in wide open spaces. But does the reality live up to the narrative? ⌘ Read more

⤋ Read More

Get Real-Time Sport Scores & Live Stats with Apple Sports
Sports fans will be pleased to know that Apple has released an Apple Sports app for iPhone, which offers real-time score information, live stats, and betting odds. Apple Sports intends to be fast, direct, and features a simple user interface that is not overengineered. Given some of the other sports apps out there with very … Read MoreRead more

⤋ Read More

How to Watch Super Bowl 58 Free from iPhone, Apple TV, Mac, iPad, Web
Super Bowl 58 (or Super Bowl LVIII) is set to begin on February 11 at 3:30PM PT / 6:30PM ET, where the San Francisco 49ers will face the Kansas City Chiefs at Allegiant Stadium in Las Vegas, Nevada. The game is being aired on CBS live, but if you don’t have a TV with an … Read MoreRead more

⤋ Read More

I appreciate living in a city with a university and multiple libraries nearby. Whenever there is too much noise from construction works at home, I can simply go to the library and enjoy a quiet place. 😌 A 5G cell tower is also within reach, enabling fast internet access without the necessity of logging into the eduroam Wi-Fi network. 🤓 ⌘ Read more

⤋ Read More

** Accessibility-first **
Whereas mobile-first design and development invited folks to think more expansively about the physical reality of the devices people use, accessibility-first design and development invites folks to think more expansively about the lived experiences, and physical reality of actual people.Read more

⤋ Read More

we presented jarotsim: a playground for the discovery, exploration and livecoding of Turing machines, at the Hybrid Live Coding Interfaces 2023: Boundless Thinking workshop. we had a lot of fun! | gemini://compudanzas.net/jarotsim_at_hlci.gmi

⤋ Read More

How to Stop Instacart Ads Promo Notifications on iPhone
The Instacart app for iPhone is convenient in that it allows you to shop for groceries and other items and have them delivered (if you live in a major city anyway), but like an ever-growing number of iPhone apps, it defaults to pelting you with annoying sales, promotional, and marketing notifications that are completely unrelated … [Read More](https://osxdaily.com/2023/11/26/how-to-stop-instacart-ads-promo-notifications-on … ⌘ Read more

⤋ Read More

3 Helpful Tech Ideas for Your Thanksgiving Visits
It’s not unusual for those of us who are the “family geek” to spend time with less tech savvy people during the holidays, so why not use Thanksgiving as an opportunity to assist or improve the tech lives of loved ones? Express your thankfulness and gratitude with some helpful tech tips! 1: Setup, Explain, & … Read MoreRead more

⤋ Read More

Beta 2 of iOS 17.2, iPadOS 17.2, MacOS Sonoma 14.2 Released for Testing
Apple has released the second beta versions of iOS 17.2 for iPhone, iPadOS 17.2 for iPad, and macOS Sonoma 14.2 for Mac. The beta versions are available now to users participating in the beta testing programs for iOS, iPadOS, and macOS. iOS 17.2 beta includes the Journal app, which lets users track their lives in … [Read More](https://osxdaily.com/2023/11/10/beta-2-of-ios-17-2-ipados-17-2-maco … ⌘ Read more

⤋ Read More

Political speech is something I shy away from. But, of course, that is political.

Sometimes there are things that you can’t ignore. There are, perhaps, many such things…right now there is one that I’m particularly close to, close enough that I am made to look because I am in some way directly implicated in it.

I am Jewish. I was raised so, and live so today.

Being raised a Jew I was constantly taught to“never forget.”

There seems to have been a forgetting.

A genocide is being perpetrated against Palestinians. I r … ⌘ Read more

⤋ Read More

Getting Started with JupyterLab as a Docker Extension
JupyterLab is a web-based interactive development environment (IDE) that allows users to create and share documents that contain live code, equations, visualizations, and narrative text. It is the latest evolution of the popular Jupyter Notebook and offers several advantages over its predecessor. We provide an overview the JupyterLab architecture and explain how to start using JupyterLab as a Docker extension. ⌘ Read more

⤋ Read More