(#bg2vtbq) @prologic@twtxt.net Since weā€™re in topic I would like to ask about the accessibility part for the pwa, I looked at the documentation of the polythene library and it seems well covered on that part, are there any particular additions that might be useful?

Usually thereā€™s not much request at my office so I just focus on having the application decently organized on the HTML structure and allowing a good keyboard navigation but not much else.


#zihv2ya

(#pvohbma) @prologic@twtxt.net Iā€™m not sure, but this is the best I found on a quick search: PeerChat, if I remember correctly OwnCloud offer a chat plugin which is self hosted too.

Fun fact: I thought of making an app like that for fun just two days ago while chatting with a friend, never started since I didnā€™t really needed and was more of a toy project though. šŸ˜„


#gu5zheq

(#7wdfdva) @off_grid_living@twtxt.net I canā€™t say this is not much different. In Russia when you goes to public demonstrations made for liberty of minds, stopping the war, making free political prisoners and etc, u can get more then headache. u can get a some years in prison, repression and intimidation of your family (or just stealing family but this is purely Caucasian history). and also, mostly at public events, people are beaten to fractures and severe beatings.


#sn2bd4a

(#2kj5qta) @thecanine@twtxt.net Yeah, if something is missing, me, you and everyone else can add anything they might need.

Itā€™s true that it shares data with chrome since it IS chrome even if installed.

Using Cordova should fill the need of physically separate the app from the browser plus adding an API for native interactions and having more control on the output generated.

Still, the first step is to have the app working. šŸ˜œ


#n72zi3a

(#2kj5qta) @thecanine@twtxt.net Iā€™m more of a circle fan, but everything can be done, it could be a custom option.

Your concerns about switching to a webapp are not much to worry about if the PWA is made correctly, Here an example i made when building my ParcelJS setup for my office, if you select ā€œInstall Appā€ from the tab options it will install like a normal app.

Also AppsGeyser simply wrap with a frame your website, a PWAs is not made that way.

To learn more on PWAs check this out.


#skqn2bq

(#2kj5qta) @carsten@yarn.zn80.net Yeah. I already know of it, but I think itā€™s dangerous if used without thinking.

I prefer doing a simple sketch by hand or stylized (like the one I shared) to avoid getting used to a style and then getting stuck to it on any iteration.

To me mockups should be to plan and understand how a pure interface works best and nothing more.

I compare designing then as playing with index cards, you shuffle them, fold them and overlap them.

This is something that those tools never helped me do easily.


#zbrz4gq

(#2kj5qta) @prologic@twtxt.net Nice. Yeah, letā€™s focus on that.

I also recall Google offering a section dedicated to publishing pure PWAs directly in the Play store but Iā€™m not sure if itā€™s still there.

And also being a PWA could open the possibility of an iOS version too, I donā€™t own any Apple devices so canā€™t help there. šŸ˜Ž


#4it22ia

(#6uaf4fq) @ullarah@txt.quisquiliae.com I first noticed on my phone on Chrome then on PC the issue was still there on Chromium on Linux.

I should expand on my definition of flexibility:

Regarding CSS, the general rules on CSS often seems complex but once I started using Suit CSS on plain projects (or BEM if you prefer) and CSS Modules with bundlers plus dropping any kind of framework, the only limitations became how CSS worked natively.

I also started using CSS Flexbox and CSS Grid for anything on layouts and all my problems vanished.

I also use CSS over JS for most of my interfaces, instead of replacing a section I just hide or move it with CSS allowing me to change many parts by just switching a simple class.


#x3kjzwa

(#vbpdcvq) @prologic@twtxt.net Hmm, if I post a message and then itā€™s gone when I reload the page, or if the message I replied to has gone, thatā€™s definitely a bug from the UX point of view šŸ˜† ā€¦ but perhaps unavoidable in a distributed system. But since weā€™re both on the same pod, I donā€™t see why thatā€™s an issue? Or is this pod itself running on some kind of distributed architecture?


#jo6wzma

(#tuizh4q) I guess I should go read the code before asking too many questions, but Iā€™m a little puzzled why the same issues with a feed being huge donā€™t present an issue every time you want to poll for updates? Particularly with the apparent convention of the newest posts being at the bottom of the file.

As for pagination, sure, it can be hard, but why would it be harder in this case than in the cases where Yarn already does it?

(As for infinite scroll, if you have pagination on the server side already, itā€™s trivial on the client side. Yes you need JS of course, but not a lot)


#aljck6q

(#tuizh4q) I also totally get whet youā€™re saying about a twtxt file potentially growing to be huge. I guess that, and the fact that itā€™s necessary to work around it with a significant caching architecture, is a major downside to the model of twtxt itself which I hadnā€™t considered.


#3bwkpna

(#tuizh4q) Iā€™m clearly going to have to take a proper look at the code and get a feeling for the data architecture to understand this! From the outside I have to say if something as simple as ā€œdisplay all of a userā€™s postsā€ is impossible ā€“ especially when a twtxt file is literally a list of all of a userā€™s posts ā€“ it feels like some very strange architectural choices must have been madeā€¦ but I am also well aware that a lot of painstaking thought by very clever people has gone into this, and I havenā€™t even looked at the code, so donā€™t mind me šŸ˜†


#heqzkuq

(#2kj5qta) @carsten@yarn.zn80.net Yeah, I looked up at a bunch of Twitter UI redesigns on Behance and Dribbble to understand how they tried to ā€œimproveā€ the app and took what felt nice to me for the #pwa

For me an ergonomic interface is very important and keeping in mind the various ways to use a touchscreen + the desktop interface, I kept the possibility of having multiple layouts to switch to the userā€™s liking.


#e67rppa

(#tuizh4q) @prologic@twtxt.net

philosophical reasons [ā€¦] design decision

That I can understand (though to the extent that I understand it, I think I disagree with it šŸ˜„). I was asking more about the technical barriers @mutefall@twtxt.net mentioned.

responses are provided from the cache

I see, so weā€™re taking about an architectural limitation in Yarn, rather than twtxt. Still, I know cache invalidation is famously hard, but surely an intentional page load from a user trying to view a feed that isnā€™t (fully) cached is about the best signal you could get to fetch that data from the origin? šŸ¤”


#23hyvfq

(#tuizh4q) @prologic@twtxt.net

How do you display this in any reasonable way?

Pagination? Like Yarn uses elsewhere. Or infinite scroll, but from the server side thatā€™s still pagination.

Which is what? To view the entire contents one someoneā€™s feed? šŸ˜…

Exactly. Every other social network has that feature; Iā€™ve missed it here serveral times already and it looks like Iā€™m not the only one.

I still donā€™t get the difficulty from a technical point of view Iā€™m afraid. šŸ¤”


#lzf377a

(#tuizh4q) @mutefall@twtxt.net @prologic@twtxt.net I donā€™t understand this answer at all from a technical perspective (leaving any philosophical arguments aside). A twtxt file is literally a flat file containing a list of all of a personā€™s posts. Surely simply displaying all of that personā€™s posts in Yarn should be the easiest possible thing to do, way easier than threading etc. Why would it require ā€œinvesting heavily in infrastructureā€ or for the protocol to be ā€œredesigned from the ground upā€?

Iā€™m guessing Iā€™ve misunderstood what youā€™re saying; can you help me understand?


#wa3sarq

(#x6zqkha) @prologic@twtxt.net but if you used those external services directly without bridging, youā€™d still have to trust all those things, right? Take, say, FB Messenger. Whether I ā€˜bridgeā€™ it to Matrix or use Messenger directly, I have to ā€˜trustā€™ Facebook (ha ha, as if! šŸ˜†) Same for Signal, WhatsApp, IRC, or anything else you bridge to.
That said, I donā€™t really use bridging much; for the services I tried it for it was too much hassle making the bridge work for it to be worthwhile.


#2dec23a