Skip Navigation
Jump
Eternity freezes when clicking the link in that post
  • No, it freezes : clicking anywhere doesn't work, trying to go back doesn't work, the only possible action is opening recent apps and kill it.

    2
  • lemmy.dbzer0.com [jeu] Votre pseudo illustré par une IA - Divisions by zero

    Sur une commu de génération d’images par IA, il y a un post qui fait fureur en ce moment. Il s’agit d’entrer son pseudo dans le prompt de génération d’image, et de voir ce qu’on a comme résultat. Le post en question : https://lemmy.dbzer0.com/post/7116910?scrollToComments=true [https://lemmy.dbzer0....

    6
    Jump
    Make texts fade in and out simultaneously ?
  • I set such delays so that I have time to watch things happening in devtools, that's all.

    However, reducing delays still doesn't allow the next text to appear simultaneously with the previous text disappearing.

    The solution is figuring out how to overlay the texts without requiring a background color.

    1
  • Hello,

    I'm able to make texts fade in and out sequentially, like the following :

    F Fi Fir Firs First irst rst st t S Se Sec Seco Secon Second econd cond ond nd d T Th Thi Thir Third

    Demo : https://jsfiddle.net/KaKi87/t3jm8yhx/2/

    But I'd like to to make these fade in and out simultaneously, like the following :

    F Fi Fir Firs First S rst Se st Sec t Seco Secon Second T cond Th ond Thi nd Thir d Third

    How to do that ?

    Thanks !

    3

    On Reddit, ^^ requires escaping, because of that character being used for superscript, but on Lemmy, it should be displayed normally, because of using standard Markdown.

    Thanks

    1
    Jump
    Why will Eternity come to the main F-droid repo?
  • I use Obtainium for the few apps I use that aren't available on any store (nor Google nor F-Droid nor third-party F-Droid).

    But, I won't replace F-Droid (or, in my case, Neo Store as well) with it, because regardless of UI, it's bad UX : search results lack relevance and details, apps don't updates in background and some require choosing the APK every time despite always choosing the same one.

    1
  • Jump
    Will Pop! OS continue to be based on Ubuntu?
  • The advantage of being Ubuntu-based is faster updates.

    The drawback is Snap, but it can be disabled.

    Therefore, I think Pop and Mint should continue being so and doing that.

    On a side note :

    CalVer might be better for a more general audience

    I disagree with this nevertheless, because when users learn what major/minor/patch mean, they can better understand how developers work and why should they upgrade.

    Also, coincidentally but relevantly, CalVer is an homonym of the French calvaire which means misery.

    3
  • Jump
    Blocking users?
  • sir or ma'am

    You could just say : "That's kind of you, thanks".

    2
  • Infinity's maintainer wouldn't try doing it. Would you ?

    Thanks

    3
    Jump
    Picture loads in overview but not in zoomable view
  • As I was saying, it loads fine in browser, so it can't have been removed :

    2
  • Jump
    Picture loads in overview but not in zoomable view
  • After some testing, it seems that the issue only occurs with that image.

    However, when using my browser instead of the app, I have no trouble opening the high res image.

    2
  • Jump
    Picture loads in overview but not in zoomable view
  • Well, how to cache the high res version then ?

    1
  • Jump
    Does/Will Lemmy support videos/GIFs like Reddit?
  • It's a nasty one because there's no "reject all" button, it requires manually unchecking all checkboxes instead.

    1
  • Jump
    Does/Will Lemmy support videos/GIFs like Reddit?
  • That one uses a nasty cookie notice.

    1
  • Hello,

    In many places, community mentions are prefixed by an exclamation point.

    But when pasting these mentions in the go to community dialog, an error will appear, requiring the user to manually remve that exclamation point before submitting.

    It would be nice, instead, to handle it automatically without error.

    Thanks

    0

    I tried the the conversation continues here button but it doesn't work for me :

    !

    I also tried the community's sidebar link but it results in timeout.

    Thanks

    PS : I'm sorry the GIF URL is from Discord but Lemmy converts to JPG and Infinity converts to WEBP so I didn't seem to have a choice.

    1
    Jump
    Crash from inbox -> comment-> browse all comments
  • Not stable indeed, but pre-releases still are releases (of type preview), which means these are documented with changelogs, which I care about. Thanks

    3
  • Jump
    Crash from inbox -> comment-> browse all comments
  • Nice, thanks, but I prefer using stable versions. 😊

    3
  • Jump
    New community/profile appearance (Nightly)
  • Yep, I noticed the post following this one had these screenshots. Thanks

    2
  • Jump
    New community/profile appearance (Nightly)
  • I'm not using nightly, how does the profile/community page look like there ?

    2
  • Jump
    Importing the Infinity for Reddit (IFR) settings
  • Oh, that's well-hidden. Thanks

    1
  • Jump
    Importing the Infinity for Reddit (IFR) settings
  • You're implying thay Infinity has a settings import/export feature, where's that ? Thanks

    1
  • Jump
    [Discussion] The future branding of the app
  • I vote for keeping Infinity for Lemmy, because that's how Infinity for Reddit users will hear about Lemmy and get convinced to use it.

    Also, it allows me to do this :

    Screenshot_20230808-023406_Nova7

    2
  • Jump
    Ils ont arrêté de suivre l’actu : « J’ai passé la meilleure année de ma vie »
  • Je ne suis là que depuis quelques semaines, et ne saurais donc dire.

    2
  • Hi !

    Given the following sample items :

    | ID | First name | Age | | ---------- | ---------- | --- | | xvZwiCpi | Naomi | 42 | | Nzd9UsGT | Naomi | 24 | | QiDXP2wA | Thea | 53 | | JpYeAY7H | Jeremy | 35 |

    I can store these in an array : js const data = [ { id: 'xvZwiCpi', firstName: 'Frederic', age: 42 }, { id: 'Nzd9UsGT', firstName: 'Naomi', age: 24 }, { id: 'QiDXP2wA', firstName: 'Thea', age: 53 }, { id: 'JpYeAY7H', firstName: 'Mathew', age: 35 } ]; Thus access them the same way by ID : js console.log(data.find(item => item.id === 'xvZwiCpi')); And by properties : js console.log(data.find(item => item.firstName === 'Frederic').id); Or I can store these in an object : js const data = { 'xvZwiCpi': { firstName: 'Frederic', age: 42 }, 'Nzd9UsGT': { firstName: 'Naomi', age: 24 }, 'QiDXP2wA': { firstName: 'Thea', age: 53 }, 'JpYeAY7H': { firstName: 'Mathew', age: 35 } }; Thus more easily access properties by ID : js console.log(data['xvZwiCpi'].firstName); But more hardly access ID by properties : js console.log(Object.entries(data).find(([id, item]) => item.firstName = 'Frederic')[0]); I could duplicate IDs : js const data = { 'xvZwiCpi': { id: 'xvZwiCpi', firstName: 'Frederic', age: 42 }, 'Nzd9UsGT': { id: 'Nzd9UsGT', firstName: 'Naomi', age: 24 }, 'QiDXP2wA': { id: 'QiDXP2wA', firstName: 'Thea', age: 53 }, 'JpYeAY7H': { id: 'JpYeAY7H', firstName: 'Mathew', age: 35 } }; To slightly simplify that previous line : js console.log(Object.values(data).find(item => item.firstName = 'Frederic').id); But what if a single variable type could allow doing both operations easily ? js console.log(data['xvZwiCpi'].firstName); console.log(data.find(item => item.firstName === 'Frederic').id); Does that exist ?

    If not, I'm thinking about implementing it that way : js const data = new Proxy([ { id: 'xvZwiCpi', firstName: 'Frederic', age: 42 }, { id: 'Nzd9UsGT', firstName: 'Naomi', age: 24 }, { id: 'QiDXP2wA', firstName: 'Thea', age: 53 }, { id: 'JpYeAY7H', firstName: 'Mathew', age: 35 } ], { get: (array, property) => array[property] || array.find(item => item.id === property) }); In which case I'd put it in a lib, but how would this be named ?

    I'd also make a second implementation that would enforce ID uniqueness and use Map to map IDs with indexes instead of running find : while the first implementation would be fine for static data, the second one would be more suitable for dynamic data.

    Would this make sense ?

    Thanks

    21

    Hello,

    Does Pop OS have a multitask view feature that I could assign a shortcut to, like illustrated here on Linux Mint ?

    Thanks

    3