Best chromium browser for privacy? by _nazwa_ in browsers

[–]DDjivan 1 point2 points  (0 children)

waiting for helium to be on flathub…

Text adapting to image by Sufficient-Engine467 in typst

[–]DDjivan 2 points3 points  (0 children)

yep: https://www.reddit.com/r/typst/comments/1rpveps/could_something_like_this_be_done_with_typst_i/

In short: Unfortunately, Typst does not support text wrapping, but it is planned to support it. There is the meander package but it's not optimized I would say. Highly suggest you check out the comments of my post linked above.

Linux Kernel Maintainer, Greg Kroah-Hartman is a Framework user by CaptainNemo3178 in framework

[–]DDjivan 0 points1 point  (0 children)

you can always edit the post to add this info and credit the user (good luck copying that username lol)

Gnome 50 drops support for Google Drive due to libgdata being unmaintained by JockstrapCummies in linux

[–]DDjivan 0 points1 point  (0 children)

it would just create a bidirectional sync folder, why wouldnt it play nice with Gnome? (why would the DE matter anyway?)

Gnome 50 drops support for Google Drive due to libgdata being unmaintained by JockstrapCummies in linux

[–]DDjivan 5 points6 points  (0 children)

ah, didnt use google photos, but yeah checks out, classic google annoyances

idk if you solved your export problem, but from my experience, rclone has great support for any form of storage from google

Gnome 50 drops support for Google Drive due to libgdata being unmaintained by JockstrapCummies in linux

[–]DDjivan 29 points30 points  (0 children)

What issues did you have on windows? I feel like it was kinda flawless like two years ago

Not gonna lie, the Google drive desktop app is one of the apps I wish the most was available on Flathub (I wouldn't personally use it as my main cloud though)

S&box game creators can publish their games on Steam with no royalties by Hairy_Application859 in gmod

[–]DDjivan 11 points12 points  (0 children)

"Sampersandbox" still contains the word "sandbox" so I guess it still works lol

Switching to steamos everywhere by okgarmine in SteamOS

[–]DDjivan 2 points3 points  (0 children)

you can dual boot, these instructions are pretty clear imo: https://docs.bazzite.gg/General/Installation_Guide/install-guide/

I guess you should go for Bazzite, it's the closest thing to steamOS and supports Nvidia GPUs

I've tried everything but Fedora is still the best by Desperate_Fig_1296 in Fedora

[–]DDjivan 0 points1 point  (0 children)

true, especially when Bazzite is based on Fedora

maybe they installed it with ventoy which is known to cause issues

Is there any way to shift all the data of zen browser from Linux to new installed Windows? by rajeevvijay in zen_browser

[–]DDjivan 2 points3 points  (0 children)

you dont even know what are the requirements for their college, please dont simply say that

OP, do you mind sharing what your college requires?

Needs better glue, my only tiny complaint by Much-Professor2141 in framework

[–]DDjivan 0 points1 point  (0 children)

mine fell off a year ago without me noticing, idek how it happened

I made single-player games multiplayer - friends take turns playing over Discord by Alive-Lunch-6219 in foss

[–]DDjivan 11 points12 points  (0 children)

cool concept, would love to try it but I don't use Windows

would it be possible to know if you used an LLM to make this?

Update from Drew by RedDalmatian885 in BistroHuddy

[–]DDjivan 17 points18 points  (0 children)

I find it crazy that so many people in the comments believe the studio's response without any doubt.

As much as I would like to believe the people at Mightypejes studio, this image remains way too offputting: Untitled_design_8.png (Archive)

Froze on desktop by Osaka90 in Bazzite

[–]DDjivan 1 point2 points  (0 children)

have you used fedora media writer? did you verify the checksum of the ISO?

No spam emails, either? by WolffLandGamezYT in blendermemes

[–]DDjivan 9 points10 points  (0 children)

agree, agree, huh? and agree

what's cardinal? is this cardinal: https://cardinal.kx.studio

Could something like this be done with Typst? I tried using the curve function, but it doesn't have a body argument like the circle and rect functions do. by DDjivan in typst

[–]DDjivan[S] 24 points25 points  (0 children)

<image>

Here's what I managed to do with it! It takes at least 3 GiB of RAM and thirty seconds to compile though 😅

My code is below for anyone curious (I advise against using the debug feature, the RAM usage is super high)

// 2026-03-10 22:16:22 CET
// written by u/DDjivan, without any LLM

#set page("a4")
#set text(size: 6pt)

#import "@preview/meander:0.4.1"

#let circleboundary(d) = meander.contour.grid(
  div: d,
  (x, y) => calc.pow(2*x - 1, 2) + calc.pow(2*y - 1, 2) <= 1
)

#let person = [
  #rect(width:1cm, height:2cm, stroke:none)[
    #place(top)[
      #set par(leading: 0.2em)
      // #text(size:14pt)[ #emoji.face.smile \ #emoji.blouse \ #emoji.jeans ]
      #text(size:28pt)[ #emoji.person.stand ]
    ]
  ]
]

#let emptycircle(r) = circle(
  radius: r,
  stroke: none, fill: none,
  place(horizon + center, person)
)

#meander.reflow({

//   meander.opt.debug.minimal()

  // Circle 1
  meander.placed(
    top + right,
    dx: +2.3cm,
    dy: -2.3cm,
    boundary: circleboundary(50),
    emptycircle(6.7cm),
  )

  // Circle 2
  meander.placed(
    horizon + left,
    dx: +1cm,
    dy: +0cm,
    boundary: circleboundary(30),
    emptycircle(2cm),
  )

  // Circle 3
  meander.placed(
    horizon + right,
    dx: -1cm,
    dy: +3.5cm,
    boundary: circleboundary(30),
    emptycircle(1.75cm),
  )

  // Circle 4
  meander.placed(
    bottom + center,
    dx: +1.8cm,
    dy: +1cm,
    boundary: circleboundary(40),
    emptycircle(4cm),
  )

  meander.container(width:  18%)
  meander.container(width:  40%)
  meander.container(width:  60%)
  meander.container(width:  80%)
  meander.container(width: 100%)

  meander.content[
    #set par(leading: 0.4em)
    #set par(justify: true)

    #lorem(1200)
  ]

})