conrad82

joined 2 years ago
[–] [email protected] 1 points 43 minutes ago

I use it too. I am too old to tinker with my OS, Bluefin has some nice defaults and stuff just works (mostly)

[–] [email protected] 2 points 1 week ago

Have you considered gollum https://github.com/gollum/gollum ?

A simple, Git-powered wiki with a local frontend and support for many kinds of markup and content.

I used it a long time ago, but then I wanted to try the next shiny note taking app..

[–] [email protected] 3 points 1 month ago

I set up a server with all my stuff on, and use syncthing for syncing my files, and self hosting for services. I mostly use vanilla configs for apps, and prefer distros with good defaults.

Some time ago I switched to Bluefin, and stopped distro-hopping 😅

[–] [email protected] 9 points 1 month ago (1 children)

I also use miniflux, have used it for more than a year and I have not looked for alternatives, which is good sign.

I use Flux News on android to consume my feeds. https://github.com/KevinCFechtel/FluxNews

[–] [email protected] 1 points 1 month ago

I agree. I learned and used emacs and org mode for several years. With age, I now want simpler tools that do not need extensive configuration. Using mainly Spyder and VS Code for python coding

[–] [email protected] 5 points 1 month ago (1 children)

Me too. I use uptime kuma to send the api request. then I also get uptime status 🙂

[–] [email protected] 1 points 3 months ago

Yes it is correct. TLDR; threads run one code at the time, but can access same data. processes is like running python many times, and can run code simultaneously, but sharing data is cumbersome.

If you use multiple threads, they all run on the same python instance, and they can share memory (i.e. objects/variables can be shared). Because of GIL (explained by other comment), the threads cannot run at the same time. This is OK if you are IO bound, but not CPU bound

If you use multiprocessing, it is like running python (from terminal) multiple times. There is no shared memory, and you have a large overhead since you have to start up python many times. But if you have large calculations you can do in parallell that takes long time, it will be much faster than threads as it can use all cpu cores.

If these processes need to share data, it is more complicated. You need to use special functions to share data, like queues and pipes. If you need to share many MB of data, this takes a lot of time in my experience (10s of milliseconds).

If you need to do large calculations, using numpy functions or numba may be faster than multiple processes, due to good optimizations. But if you need to crunch a lot of data, multiprocessing is usually the way to go

[–] [email protected] 4 points 3 months ago

if i remember correctly, i just replaced gitea with forgejo for image: in my docker-compose, and it just worked

it was a couple of versions back, so i don't know if that still works

[–] [email protected] 2 points 3 months ago

I'm using leng in an dedicated LXC container in Proxmox

https://github.com/cottand/leng

I'm using defaults + some local dns lookups. Works fine for my use, and lighter than pihole. No web ui

[–] [email protected] 4 points 4 months ago (1 children)

Which apps are you testing?

I set up minio s3 for testing myself, but found that most of my docker services doesn't really support it. So I went back to good old folders

[–] [email protected] 1 points 4 months ago

I use nforwardauth . It is simple, but only supports username/password

https://github.com/nosduco/nforwardauth

[–] [email protected] 1 points 4 months ago

yes, regular markdown notes has been a good decision 😅

In the beginning, the query results were stored in the markdown files, which could be useful if reading them in another app. But now I just get the query code. I think there were reasons

I'm glad to hear things have cooled down. Does it take much effort to understand and use the templating stuff? I just remember templates got pushed to a different view, and I needed some header tags to get it working

So you like spaces or not? I never got that far with silverbullet. And I haven't used Trillium. I loved evernote when it came out. But it made me aware of the value of maintaining my own data.

Now I try to have data in a directory structure and not in databases

27
Miniflux + News App (lemmy.world)
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

I started using miniflux a while back, and enjoy it. Recently I also gave News app on F-droid a try, and the combination of the two is one of the best news reading experiences I've had.

Miniflux: https://miniflux.app/

News app: https://github.com/bubelov/news

Just wanted to share!

EDIT: Based on comment from @[email protected] , I am now mostly using Flux News https://github.com/KevinCFechtel/FluxNews . But I could go either way

9
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]
 

I run my containers in an LCX on Proxmox (yes I heard I should use a VM, but it works..)

For data storage (syncthing, jellyfin ..) I make volumes in the LXC. But I was wondering if this is the best way?

I started thinking about restoring backups. The docker backups can get quite large with all the user data. I was wondering if a separate "NAS" VM and NFS shares makes more sense. Then restoring/cloning docker lxc would be faster, for troubleshooting. And the user data I could restore separately.

What do you guys do?

 

In the of all web pages I've checked so far there is always a line <link href="data:text/css,%5Bid*%3D'google_ads_iframe'%5D%2C%5Bid*%3D'taboola-'%5D%2C.taboolaHeight%2C.taboola-placeholder%2C%23credential_picker_container%2C%23credentials-picker-container%2C%23credential_picker_iframe%2C%5Bid*%3D'google-one-tap-iframe'%5D%2C%23google-one-tap-popup-container%2C.google-one-tap-modal-div%7Bdisplay%3Anone!important%3Bmin-height%3A0!important%3Bheight%3A0!important%3B%7D" rel="stylesheet" type="text/css">

Does anyone know what it means? I tried to open a page in edge, and I do not see it there.

I am running mozilla-flatpak, version 115 on Fedora

 

I use Fedora on a laptop with touchscreen.

Some months ago, I could pinch to zoom on the screen (and on touchpad?). But now, touching the screen only marks the text.

Does anyone know what happened, and how to enable pinch to zoom in firefox? I think it may have happened after updating to newest Fedora version 38. I use Gnome DE with wayland enabled.

view more: next ›