# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 674
# self = https://watcher.sour.is?uri=https://twtxt.net/user/justamoment/twtxt.txt&offset=574
# prev = https://watcher.sour.is?uri=https://twtxt.net/user/justamoment/twtxt.txt&offset=474
@eaplmx the octopus clock
@prologic this would allow super flexible extensions, good going!πŸ‘Œ
@prologic gitxt.net
@prologic @abucci gitxt.net
@prologic that's right, do you call the JSON RPC from the server rendering or directly from a middle layer (to keep in Go)? I see both as good.
@prologic that's right, do you call the JSON RPC from the server rendering or directly from a middle layer (to keep in Go) I see both as good.
@prologic that's right, do you call the JSON RPC from the server rendering or directly from a middle layer (to keep in go) I see both as good.
@prologic what I recommend is a dedicated layer for data fetching and manipulation, and call it from where you need it.

By simply serializing the data via API and as raw data on server templates.
@prologic Glad we're getting there! πŸ₯³
@prologic actually with next.js it does that on the server but it's not quite what I'm thinking, you should find examples on cli apps for remote services or modular projects with the server side UI as a separate component.
@prologic "Git.social" then! 😎

Git "pods" with "repos", "issue" and "review" feeds.

Every changes on a repo is notified in a repos feed.

Each issue or review is a file in a folder with an hash and people can reply on the conversation, or at least the "notification" of it in their feed.

A nice approach I saw in Trello, you can email a card ID and it get embedded in the card, it can be done here too on the file, as to not have everything spread on hundreds of feeds.

Working like this you can integrate twtxt but not rely on it entirely, letting users use it without it, I'd see this as generic integration though, so other can add more "bridges" (like in git-bug) to their liking.

How it's it?
@prologic "Git.social" then! 😎

Git "pods" with "repos", "issue" and "review" feeds.

Every changes on a repo is notified in a repos feed.

Each issue or review is a file in a folder with an hash and people can reply on the conversation, or at least the "notification" of it in their feed.

A nice approach I saw in Trello, you can email a card ID and it get embedded in the card, it can be done here too on the file, as to not have everything spread on hundreds feeds.

Working like this you can integrate text but not rely on it entirely, letting users use it without it, I'd see this as generic integration though, so other can add more "bridges" (like in git-bug) to their liking.

How it's it?
@prologic "Git.social" then! 😎

Git "pods" with "repos", "issue" and "review" feeds.

Every changes on a repo is notified in a repos feed.

Each issue or review is a file in a folder with an hash and people can reply on the conversation, or at least the "notification" of it in their feed.

A nice approach I saw in Trello, you can email a card ID and it get embedded in the card, it can be done here too on the file, as to not have everything spread on hundreds of feeds.

Working like this you can integrate twtxt but not rely on it entirely, letting users use it without it, I'd see this as generic integration though, so other can add more "bridges" (like in git-bug) to their liking.

How is it?
@prologic exactly, exposed as a struct and functions (for actions) in a dedicated layer, then the API would have GET from structs and POST for functions, on server you render html the same way, structs in templates and POST for actions.

A way to have them seamlessly would be to handle the same page with content-type but maybe it's an overkill for this kind of project.
@prologic I see, pretty cool.

But personally I prefer the file based approach though, you have a friendly folder that lets you open anyway you want without fiddling the repo, you can use a separate repo if you don't like it in the source and everything is tracked in the same way without having to manual dig in them if you don't want to use a given tool.

This is one that could be a better solution if you like that approach too: https://github.com/dspinellis/git-issue

Being file based also let you build a "protocol" on it that can be detached from the repo in itself and let you manage it in a similar fashion of twtxt.

What do you think?
@prologic ok, for interface what do you mean exactly? Are you talking about editing the repo?

About the web interface, I'd suggest to use REST API as the main interface regardless of where it's built, so you can use them both on client and server side with the same data structure and available actions.

For the client side of any external scripting or custom web clients you have pure data to work with, if on the server side you have the same structs to build the HTML.

This helps us avoid having to work on both in parallel like with Yarn.social and leaving one side behind the other.
@prologic it's possible to store any missing data using the git-bug approach to add any missing functionality to a git repo without relying on external data storage, can't we?
@darch yeah πŸ‘

I saw the code after replying here.

I tried to give some tips for everyone other than the code itself, feel free to follow just what you need from my review. πŸ˜‰
@prologic What are the functionality we need?

I can see those:
- hosting
- bug tracking
- code reviews
- forking (i guess?)
- SSH
- push / pull (it's read only now, right?)
@lyse the next undo would take it to the market first 🀣
@prologic I checked the GitHub discussion, it became a request to join forces.

Do you plan on having them join?

Also for the name, how about:
- "progit" or "prologit" (prologic official hard fork)
- "git-stance" (git instance)
- "GitTree" (Gitea inspired, maybe to related)
- "Gitomata" (git automata)
- "Git.Source"
- "Forgor" (forgit is taken so I forgor) 🀣
- "SweetGit" (as salty chat)
- "Pepper Git" (other ingredients) πŸ˜‰
- "GitHeart" (core of git with a GitHub sounding name)
- "GitTaka" (With music in mind)

Ok, enough fun... Hope this helps sprout some ideas from others if nothing is to your taste.
Doing CTRL+Z on my tangerine... So fun! 🍊

CTRL+Z my tangerine
@darch I actually like the horizontal scrolling a lot.

On a phone it's intuitive, but it's hell on desktop, I'd personally make them wrap on larger screens.

The only issue I can point out is the height is the scrollable area, just adding a bit of space above and below make a great difference for a better "fat-finger" design.

@prologic what you want for filters is a really great idea, I thought about it too for some of my projects at work, It allow you to support advanced filters and then implement them after as buttons or similar all while keeping a plain texts format, they can also be used as custom filters potentially too.
@prologic Nice, visually it's really similar to legit, probably since both rely on git for that part.
@eaplmx When I started learning to play the guitar at school I got so hooked I ended up being able to play flamenco songs in around a month since starting, meanwhile all my classmates couldn't do even the basics chords, I guess my best ability is to learn and experiment in a obsessive matter by myself until I get it right.

But I need to avoid at all cost to push this approach onto others as often they can't keep up with my pacing.

As a solution I found that drawing is the best way to explain things to me, since i get slowed down by my hands focusing on the current sketches and it also help them understand what's happening in code or other structures visually.
@prologic On It! πŸ•΅οΈ
@prologic But if we edit those on a remote repo then we can use it as a public description and when cloned you don't need to case for it, right?
@prologic But if we edit those on a remote repo then we can use it as a public description and when cloned you don't need to care for it, right?
@prologic Nice going there!

That's right...
Got back on Yarn.social after resting for a bit after all those days of parties and eating.

My new mentions is filling the screen! πŸ€“
@prologic so a web UI is the only way (or a cli version that act similarly)?
@prologic yeah too bothersome, but I guess it's good if you don't want to rely on anything else.
@prologic Oh! So it work for entire branches, but what about merging them? How is goes from the maintainer side, does it handle the branches automatically?
@prologic maybe keeping the management in git and using emails just for notification could be better?
@prologic Ok. I'll try it and play around with it!
@prologic I knew it!

@ocdtrekkie let's keep watching him!
@prologic Oh, cool and the feed is in the repo so you can host it together?

Things like git-notes might work with it?
@prologic so sending to main will include your dog from the branch feature?
@prologic so sending to main will include your diff from the branch feature?
@prologic there's too many steps to me.

Love the illustrations though. 😍
@prologic This patch workflow looks complicated for no reason to me, it also leave everything to a maintainer to handle privately before touching the public repo.

Maybe a branch based approach like the one used in GitHub/Lab/tea is simpler but still doable? Maybe as part for legit fork?
@prologic Jokes aside, what do you think is the best way to go?
@ocdtrekkie By that time he'll be forking the language too... 😎
@bender Oh... You rejected my merge request. πŸ₯²
@ocdtrekkie Wait a bit more and he'll make an open source spacecraft! πŸ˜‰πŸš€πŸ›°οΈ
@prologic I'm not sure, we can try but I'm more of a terminal person when handling my projects, I end up neglecting the web UI pretty fast, what do you recommend?

Also a quick look around got me on this site, could it be what you're aiming for? (In scope at least)

As for the name of the project if it get to a good point it could become a complete solution for the basic needs of git dev (if I understood the hard-fork need).

It'll be like a swiss army knife, so, with that thinking in mind:

> MacGitter

In honor of MacGyver, thanks to this meme.

MacGyver meme
@darch You can call us @justabender 😎

I also noticed it and replied when I saw your mention πŸ˜‰
@darch You can call us justabender 😎

I also noticed it and replied when I saw your mention πŸ˜‰
@darch Glad you already fixed, here the screenshots anyway.

Before scrolling:

Before scroll

After scrolling:

After scroll
@darch on my phone about 3 words (from the "Abuse" link in the footer), I quickly checked and it seems to be done negative margin in the footer, I might be wrong though. I only checked with Eruda.
@prologic Hmm, I think I can give it a try! πŸ˜‰

I'm experimenting a bit on theming and design tokens, having a fun project to work on might be a good chance to fiddle a bit more.
@prologic It's a deterministic password manager that rely on hashes to generate the passwords, you put a user and password (you can use it freely, no data is sent to any servers) and it's used as a key to generate the passwords.

I also made it to be extensible with modules-like field types.

You can generate passwords, PINs and TOTPs.

And the coolest one is the ability to store arbitrary data using XOR operations on the content to keep them safe, not usually in these kind of tools.

It has the usual downsides of a deterministic password generator but I find it more secure than a cloud provider and simpler to use than fiddling with GPG.
@prologic I did something similar with a external module for my work project (in python), extending a class that does nothing and implementing what you need for each "extension".

Basically I'm relying on a Polymorphic class to do it.
@abucci The crayon act as a sundial. 🌞
Having fun giving my family in another countries Christmas greetings and listening to them calling my name wrong (language barrier) 🀣.
@prologic Nice πŸ‘
Just updated yesterday my homebrew "Vector Pass", it's a PWA that works offline and don't store anything on any server, planning to make a cli version to use via rofi on my PC.

https://sunetraalex.gitlab.io/vector-pass/

Soon I'll get a better presentation and a proper Open Source repo.
@prologic Merry Christmas to you too!
@prologic It became interesting on that issue In GitHub!
@prologic Looks really simple and elegant from the author's link on GitHub!
@prologic So it's just a client filter in this case, I understand.

What I thought was maybe something to share with others but you're right about not being needed, a friend to me could a simple news feed to others.

@lyse Didn't noticed the registry format, I thought it was a custom tool for the one I saw online.
@prologic I thought that if one could "tag" a feed in the twtxt.txt it can be used by other clients with a centralized solution, maybe I'm overthinking it too much.

Great feature nonetheless. πŸ‘Œ
Thanks you all!

@lyse Yes, they are units related to the viewport:

- vh Height
- vw Width
- vmin Shortest side
- vmax Longest side

Used together with font-size allows me to use em units as a percentage that scale dynamically on any screen, keeping proportion on everything (like the border-radius of the rings).

Using viewport units is simple with good support and let me avoid using less supported rules like aspect-ratio or hacks like the padding-bottom trick (both to make squares or rectangles without a specific size).
@prologic Oh, I see, do you plan on adding it as an extension in twtxt or is just for yarn?
@lyse More than the approach itself I mainly share my own struggles and my experiments on how to fix them.

I have a routine of "breaking the status quo" for my workflow just for get smarter and better, and eventually share them with others.
@lyse That's a great story, my colleague at work started with basically nothing and I carefully explained literally anything he saw on screen and thanks to his passion we're now working side to side.
I published the source for anyone wondering how it's made.

https://gitlab.com/sunetraalex/3d-css-tunnel

It is pure CSS and HTML, no JS or any libraries/frameworks.

The CSS for everything is, to my own surprise, shorter than expected, it's really easy to follow in my opinion.

Fell free to ask if anyone has any doubts or want more explanations! 😊
So you can create lists of feeds and other can follow them too?
Today at lunch break I made a small scene in 3D to help my colleague to understand how 3D worked in pure CSS for a personal project, here's the link.

WARNING: This page might cause motion sickness to some of you, open with care πŸ€—

https://sunetraalex.gitlab.io/3d-css-tunnel/
@lyse Getting help from someone you work with is great, it's like working with colleagues.

I personally learned my first programming language (Python), on my own with some random video tutorial, by following them, repeating, analysing the results and breaking apart all I just made to see what worked and what didn't.

I still use this approach up until now, with my little journey in Go for example. 😎✌️
@eaplmx Your approach is really smart on the time constraint.

It might be hard to follow without the essentials, at that university they never ever worked with a project with more than one file, even if someone is interested it's hard to work on something that reflect a realistic case in those circumstances.

They're probably on their own I think, hope I can help him to get better at it.
@lyse He explained his project idea.

A PDF parser that read texts but extract it like a chessboard.

I'm a bit confused and we didn't met yet, so for now I'll take it as a parser for a table (the chessboard).
An update on the situation, got him to answer a little quiz on basic knowledge of programming as an assessment and the results were..... catastrophic. 🫣

I think we're going to learn programming from the zero.

When I think back to the exams, now that I've seen his skills, could it be that the university lowered their expectations about their students because of their nonexistent interest?

As I said, he seems interested because he saw a software being built at his company, the time prior to that might have been just wasted time of doing nothing...
@prologic Well, we are all on twtxt, if any problems like these arises we can talk to each other and fix them as its been done so far. ✌️
@eaplmx Oh, I see.

Hope to see more about it! 😎
@eaplmx A target shooting game? Guns, bows? Tell us more. πŸ€—
@eaplmx that's what I think too.

That must be the reason for such hostility on the project, of course it's not really an issue since we know it's been renamed to "Yarn.social" now, but I guess the domain "twtxt.net" might still be a problem for some people. πŸ€”
@movq B all the way, best way to not crush to anything when opened bare handed.

@eaplmx Fun fact: I actually learned from a real monkey, it bit off on B and the banana came out cleanly, once I tried it became the only way for me. 🐡🍌
@prologic I think one of the biggest issues I faced before joining Yarn.social was the confusion with twtxt and twtxt.net, I asked myself "Why? Which is which? Why a plain text file have a site like that?"

I think some people can see it as "stealing" for the sake of "overriding" a project with it's own, I know it's not like that, but I stayed away from twtxt and yarn.social for some years just because I was confused about where to go.

Of course, once I dug in it a bit more I came to understand what and why, but I guess others can see this as a threat, maybe?
@eaplmx I usually peel the banana from the tip so it goes off first, but if it's still there I'll remove it anyway because I don't like it, taste and feel.
@prologic Achievement unlocked: Let me code, Daddy!
@lyse That's the issue, most statement seems to come from experiments made in isolated environments that won't resemble in the slightest what a real life case with all the combinations that let you come to the conclusion that dark or light is better.

The best way is to allow both options and let the user decide on what is needed, I too keep dark mode always on, but I have some occasional situations where I need to switch to light mode.
@stigatle Neat! I always used nixos-up to install it but this installer seems to work with a proper partitioning UI.

I'll try on my next install! 😎
@prologic πŸ€—
@prologic I approve! πŸ‘
For now I'll see what he wants to build and start from there.

I'll let you know what he manages to pull off.

it'll be a long journey
@eaplmx Thanks for the tip!

He's already working in a software company as a tester (but can't access any code).

And reached out to me for help to become better at something he's bad at, so the excitement and an helping hand should push him to have proper interest on coding in general, as I said he's now stuck in C but I hope he'll get to a point where what language he knows at the time won't stop him to learn something easier and more versatile.
@lyse It's a danger someone should take 😎
@lyse It's a danger someone should take😎
@lyse It's a danger some
@prologic looks like the security camera on the house?
@prologic I'm not sure myself, we just started talking about it for a single day but I didn't see any of his actual reasoning and coding yet.

I personally learn by doing: make something you want and learn how on the run, that was my idea for him too.

I also asked him what would be interesting to make for him personally and then start from there.
Yes. That's why sharing your experience has much more value that opinions alone.

As you said, being "correct" about something doesn't mean others will find it "right" since it can subjective on some cases and first-hand experiences can help on finding the "mid point" in a discussion.

@prologic sorry if it sounded like I was fooling around, I replied like that because I thought I messed up the topic of "echo chambers" entirely, it started from a meme so I tried to end on a lighter note. πŸ€—
Yes. That's why sharing your experience has much more value that opinions alone.

As you said, being "correct" about something doesn't mean others will find it "right" since it can be subjective on some cases and first-hand experiences can help on finding the "mid point" in a discussion.

@prologic sorry if it sounded like I was fooling around, I replied like that because I thought I messed up the topic of "echo chambers" entirely, it started from a meme so I tried to end on a lighter note. πŸ€—
@prologic I know, he even dropped python in class because there was "too much" he said. πŸ˜“

The only real case I could think is something like a game or something but it's still a mess not being experience myself I don't want to bother too much.

I ever thought of using wasm to make something in a web page but I might give his teachers an heart attack. 😎

Still he needs C to pass the exam for now.

Just to note, the exam is like this:

- Load a text file
- Read the numbers in it
- Print the highest number

That's what that university asks to graduate as a tech engineer. πŸ₯²

No wonder he said he made an app in python and the source was made of only print() calls. 🀣
@prologic whoops... 🀭

Well, echo chambers are fun to sing duets with yourself. 🎺 πŸ•ΊπŸ•Ί 🎻
Got a friend asking me for help with their final C programming exams which they failed 8 times (yes, 8 🀷).

The situation is bad, seeing him execute source.c without compiling it made me feel things. πŸ₯²

I'm not proficient in C myself but thanks to Go I got the essential quickly...

Does anyone have any ideas for some small projects to build in C that looks interesting to make?
@lyse in my case I have the "Dark reader" plugin everywhere in my browsers, for me it's not about the readability but the amount of light coming from the screen, on a white page, whether it's day or night I find myself squinting my eyes in pain, this happen with pure screen brightness too (light or dark), especially on smartphones. I also noticed that the contrast in AMOLED when the background is true black hurt my eyes more, the colored parts seems to glow too much for me. 🫣
It gives "Tweet not found" did they took it down?

What did it say?
I personally prefer to avoid sharing my view on certain topics, not because I'm better than others, but because I often notice my opinion on the matter is different and what I might say could change my relationship (friends, family, etc.) with the other party, maybe all without any gained value on mine or their side.

As for my opinion on the topic of echo chambers, what I and others can do to share their point of view without hurting others in a discussion is to also tell your personal experience on the matter, if you add context to why your own statement is "correct" to you (not to be confused with "right" or "truth"), than the other party can interpret the reasoning behind it and come to understand the "gap" in opinions on the same subject.

I often try to start topics by sharing my life experience on the matter which allows others to add to the table rather than fight each other. πŸ€—

@prologic Thanks for the insight 😊 on Meta/Facebook, that's exactly what I'm thinking when sharing your view to others.