Skip Navigation
Tiritibambix Tiritibambix @lemmy.ml

French, speaking English and Spanish.

Posts 46
Comments 372
I have an online business. How f*cked am I ?
  • That's great reading something else than "use a work computer".

    Actually, this is the root of my problem, I don't really seek clients that are people using tiktok. My target customer doesn't use any of this crap, but before I can count on word of mouth, I need to eat, and I'll make some profit when I've finally met my target customers.

    In the meantime, it's thin line to walk on.

  • I have an online business. How f*cked am I ?
  • Thanks for your input.

    I'm using Insular atm, which I like.

    I was curious so I installed Shelter, but I can't find how to setup a VPN for the work profile as you mentioned.

  • I have an online business. How f*cked am I ?

    Hi there,

    I'm currently going through some significant changes in my life. I'll be making a professional transition soon by leaving Paris for a more rural area, but I won't bore you with all the details.

    My issue is that I really value my privacy and dislike big tech companies like gafam. To protect myself, I use Pihole and only allow an old phone to have access to meta products.

    I recently caved in and reactivated my old Facebook and Instagram accounts to help with advertising, along with using a platform similar to Hootsuite to streamline things. When responding to private messages on Instagram, I use Aeroinsta to block ads and telemetry.

    I'm managing okay so far, but I've seen the success some people have on TikTok and feel tempted to create an account. The thought of it turns my stomach, though.

    If you're in a similar situation where online communication is vital, how do you navigate it? Have you found any alternative apps for TikTok like Aerosinsta ?

    I'd really appreciate hearing from you and getting some insights. Thank you for your input.

    19
    Exodus-Privacy release-v3.3.0
  • Exodus est une application Android qui vous permet de savoir quels traceurs sont intégrés dans les applications installées sur votre smartphone à l'aide de la plateforme εxodus. Elle vous permet également de connaître les autorisations requises par les applications installées sur votre smartphone.

    Elle vous aide à reprendre votre vie privée en main !

  • [Forum libre parentalité] Semaine du 06/05
  • Posté 27 fois. 27 FOIS !! Z''avez pourri.le feed de tout le monde et probablement perdu un paquet d'abonnés. Dont moi

  • Post your Servernames!
  • RPI4

    Shuttle

    Transporter

    Orbiter

  • CalDAV web gui
  • Let me.know what you think if you set it up

  • CalDAV web gui
  • Let me.know what you think if you sort it up

  • CalDAV web gui
  • I don't remember when I last tried it but for some reason I disliked it. Why dont you use it ?

  • CalDAV web gui
  • Been looking for a solid solution for a while and found these:

    https://github.com/intri-in/manage-my-damn-life-nextjs

    https://github.com/nibdo/bloben-app

    I use bloben. It's not perfect but it works

  • Guide: How to run MediaCMS with Docker

    This is a followup to my previous post.

    If you want to bind volumes outside of Docker, this is what you need to do.

    There was a huge permission and volume mapping problem. I mention github issues that helped me here.

    I hope that will help noobs and insecure people like me.

    ------------

    bash cd /srv/path/Files

    bash git clone https://github.com/mediacms-io/mediacms

    bash cd /srv/path/Files/mediacms

    mkdir postgres_data \ && chmod -R 755 postgres_data

    nano docker-compose.yaml

    ```yaml version: "3"

    services: redis: image: "redis:alpine" restart: always healthcheck: test: ["CMD", "redis-cli","ping"] interval: 30s timeout: 10s retries: 3

    migrations: image: mediacms/mediacms:latest volumes: - /srv/path/Files/mediacms/deploy:/home/mediacms.io/mediacms/deploy - /srv/path/Files/mediacms/logs:/home/mediacms.io/mediacms/logs - /srv/path/Files/mediacms/media_files:/home/mediacms.io/mediacms/media_files - /srv/path/Files/mediacms/cms/settings.py:/home/mediacms.io/mediacms/cms/settings.py environment: ENABLE_UWSGI: 'no' ENABLE_NGINX: 'no' ENABLE_CELERY_SHORT: 'no' ENABLE_CELERY_LONG: 'no' ENABLE_CELERY_BEAT: 'no' ADMIN_USER: 'admin' ADMIN_EMAIL: 'admin@localhost' ADMIN_PASSWORD: 'complicatedpassword' restart: on-failure depends_on: redis: condition: service_healthy web: image: mediacms/mediacms:latest deploy: replicas: 1 ports: - "8870:80" #whatever:80 volumes: - /srv/path/Files/mediacms/deploy:/home/mediacms.io/mediacms/deploy - /srv/path/Files/mediacms/logs:/home/mediacms.io/mediacms/logs - /srv/path/Files/mediacms/media_files:/home/mediacms.io/mediacms/media_files - /srv/path/Files/mediacms/cms/settings.py:/home/mediacms.io/mediacms/cms/settings.py environment:

    ENABLE_UWSGI: 'no' #keep commented

    ENABLE_CELERY_BEAT: 'no' ENABLE_CELERY_SHORT: 'no' ENABLE_CELERY_LONG: 'no' ENABLE_MIGRATIONS: 'no'

    db: image: postgres:15.2-alpine volumes: - /srv/path/Files/mediacms/postgres_data:/var/lib/postgresql/data/ restart: always environment: POSTGRES_USER: mediacms POSTGRES_PASSWORD: mediacms POSTGRES_DB: mediacms TZ: Europe/Paris healthcheck: test: ["CMD-SHELL", "pg_isready", "--host=db", "--dbname=$POSTGRES_DB", "--username=$POSTGRES_USER"] interval: 30s timeout: 10s retries: 5

    celery_beat: image: mediacms/mediacms:latest volumes: - /srv/path/Files/mediacms/deploy:/home/mediacms.io/mediacms/deploy - /srv/path/Files/mediacms/logs:/home/mediacms.io/mediacms/logs - /srv/path/Files/mediacms/media_files:/home/mediacms.io/mediacms/media_files - /srv/path/Files/mediacms/cms/settings.py:/home/mediacms.io/mediacms/cms/settings.py environment: ENABLE_UWSGI: 'no' ENABLE_NGINX: 'no' ENABLE_CELERY_SHORT: 'no' ENABLE_CELERY_LONG: 'no' ENABLE_MIGRATIONS: 'no'

    celery_worker: image: mediacms/mediacms:latest deploy: replicas: 1 volumes: - /srv/path/Files/mediacms/deploy:/home/mediacms.io/mediacms/deploy - /srv/path/Files/mediacms/logs:/home/mediacms.io/mediacms/logs - /srv/path/Files/mediacms/media_files:/home/mediacms.io/mediacms/media_files - /srv/path/Files/mediacms/cms/settings.py:/home/mediacms.io/mediacms/cms/settings.py environment: ENABLE_UWSGI: 'no' ENABLE_NGINX: 'no' ENABLE_CELERY_BEAT: 'no' ENABLE_MIGRATIONS: 'no' depends_on: - migrations ```

    bash docker-compose up -d

    CSS will probably be missing because reasons, so bash into web container

    bash docker exec -it mediacms_web_1 /bin/bash

    Then

    bash python manage.py collectstatic

    No need to reboot

    3
    Trouble running MediaCMS: “Server Error (500)” on logging in.
  • Okay so I tried again, but only changing port. It worked. I really wish I could figure out this permission issues and bond volumes. Thanks again for your help :)

  • Trouble running MediaCMS: “Server Error (500)” on logging in.
  • Still no luck, but thanks for trying :)

  • Trouble running MediaCMS: “Server Error (500)” on logging in.
  • I have the folder. I chown and chmod it as it should be. Looks like it reverts back to the wrong permissions though. Don't know why.

    Here is my docker-compose

  • Trouble running MediaCMS: “Server Error (500)” on logging in.
  • I manually set it to 777 several times for testing purposes, but apparently, it switches back to 700

  • Trouble running MediaCMS: “Server Error (500)” on logging in.
  • Thanks for trying. The issue you mentioned helped me before to have it spinning. I feel like I've tried everything mentioned in the docs as well as what I am aware of and capable of 😅

  • Trouble running MediaCMS: “Server Error (500)” on logging in.
  • Thanks for your answer. I'm not sure what to look for in the browser's logs but here it is.

    I have logs for all containers here:

    celery_beat

    celery_worker

    db. A lot of errors here, but I think I recall reading somewhere in the issues that it doesn't matter. I'd have to double check that.

    redis

    web

    I have one container exited, mediacms_migrations, but I noticed it stopped right after the stack's setup and thought it would be used only for startup. Here are the logs for it

  • Trouble running MediaCMS: “Server Error (500)” on logging in.
  • celery_beat

    celery_worker

    db. A lot of errors here, but I think I recall reading somewhere in the issues that it doesn't matter. I'd have to double check that.

    redis

    web

  • Trouble running MediaCMS: “Server Error (500)” on logging in.

    Hey there!

    I'm a self-hosting enthusiast, and I'm learning the hard way, so I appreciate your patience as I navigate through this.

    I've been on the hunt for a video hosting solution that offers categories and tags, and I've heard great things about MediaCMS. It seems like the perfect fit for what I need.

    After some trial and error, I finally got it up and running. The only hiccup I'm facing now is with logging into the admin panel. I keep getting an error 500. I checked out some similar issues on github, but it doesn't seem to apply to my situation, and there isn't a solution posted. Plus, it looks like the developer is not very active on the issues.

    I was wondering if anyone else has encountered this problem before and might have some insights to share.

    Here's some additional info: I cloned the repository from https://github.com/mediacms-io/mediacms and made some edits to the docker-compse.yaml file to suit my preferences, mainly adjusting the volume paths. You can check it out here. The service takes a bit of time to start, but eventually it does and I can access the landing page. However, when I try to sign in, I just get a "Server Error (500)" message. I've checked the logs but haven't found anything useful.

    Has anyone who uses MediaCMS encountered this issue before? Can someone reproduce and help me clear this out? Thanks a lot for your assistance!

    16
    What Android download manager do you recommand ?
  • I'll try it. Thank you

  • What Android download manager do you recommand ?
  • I haven't yet but I will. Thank you

  • What Android download manager do you recommand ?
  • I can only answer for myself, but I use it to resume large downloads that failed and organize them.

  • What Android download manager do you recommand ?

    Hey there!

    I find myself frequently downloading large files on my android phone from servers that aren't always the fastest. These downloads can range from audio and video files to zip and rar files.

    I'm on the lookout for an app that will allow me to resume downloads that have failed, as well as choose where to save each file individually.

    So far, I've only come across apps that have been discontinued.

    Do you happen to know of any good, regularly updated apps that fit the bill?

    Thanks so much for your help :)

    18

    How to organize courses and tutorials ?

    Hey there!

    So, I've accumulated a ton of courses and tutorials over the years - everything from photography to cooking to music mixing and mastering, DIY, gardening, you name it.

    I've been trying to keep everything organized with Jellyfin, but honestly, it's a bit of a hassle to navigate through all my content and find what I need.

    I'd love to find something with a user-friendly interface where I can easily sort, organize, and tag all my courses and videos.

    I've been searching high and low for a solution these past few days, but haven't had much luck. Any suggestions?

    Thanks in advance for your help!

    6

    [SOLVED] Temporarily hosting on Oracle Free tier.

    Solution : Don't be stupid. Open the proper ports.

    -------------------------------------------------------------

    Hey there!

    So, I'm getting ready to move from places to places for the next six months and it's going to be a bit of a hassle. My servers will be offline until I find a permanent home, which is stressing me out because I rely on a bunch of services I host for my daily routine.

    So I've set up an Oracle free tier account so I can still access my favorite services while I'm in limbo. I'm using docker and Portainer to manage everything, and so far Serge (for the lolz) and Vikunja are up and running with no issues using the IP Oracle provided.

    But when I tried to set up Bookstack, Whoogle and Searxng, they installed fine but for some reason they won't open. I've checked the logs and there are no errors, I just keep getting a timeout message in my browser.

    I haven't tested any other services yet, but I'm stumped as to why these two won't cooperate. I'm just a casual hobbyist and not an expert, so if anyone could lend a hand, I'd really appreciate it. Thanks!

    11

    Too many issues with Lychee. Any alternative ?

    Hello there.

    First, I want to specify that I use Lychee-Docker and that's the only experience I have with Lychee.

    I've been using it for some time to share family pics with family members and it's been great. However, with v5, I've noticed some issues that are making things a bit challenging. I appreciate some of the good ideas that came with the new update, but in my opinion, there are also quite a few bad decisions that have been made.

    For example:

    • Can't import photos / videos from server anymore. I sometimes used to drop files directly in a location of my server and then use the UI to import them. Convenient on mobile or with large number of files.

    • Can't upload large files (LycheeOrg/Lychee#2207, LycheeOrg/Lychee#2129)

    • Can't remove single / several photos from an album anymore. You need to delete the album and re-upload

    • Can't obtain shorter link to a gallery anymore with the "share" button they removed a while back

    • The new "+" menu should have a background for legibility

    • There is a HUGE useless empty space at the top of galleries now

    • Had to tinker with config like adding TRUSTED_PROXIES=* to fix a thing and was told to keep it anyway but the reason why and how to properly do it are not documented

    • Had to temporarily fix my Nginx config but it seems like it has become a permanent fix, but it is not documented

    But at the same time I LOVE these options for public albums:

    • Original: Anonymous users can behold full-resolution photos.

    • Hidden: Anonymous users need a direct link to access this album.

    • Downloadable: Anonymous users can download this album.

    • Password protected: Anonymous users need a shared password to access this album.

    Actually, those 4 options are all I need. But I need the tool that provides them to work...

    They said "the team is so slow that we don't have anybody to review complex pull requests." That makes me sad. I wish I had the time to learn how to code and help out, but I can't. And even if I could, I'd probably end up building my own tool in the end.

    I am not looking for a google photos replacement. Immich is great but that is not what I want to use.

    I have tried several known alternatives but I'm curious to hear your thoughts on Lychee in its current state and if you have any suggestions for other tools that could serve a similar purpose.

    14

    SOLVED. Has anyone installed Shotshare using docker-compose ?

    Ok so the solution was this. Thank you @[email protected]

    cd /home

    git clone https://github.com/mdshack/shotshare

    cd .../Files/

    sudo mkdir Shotshare

    cd .../Files/Shotshare

    sudo mkdir shotshare_data

    sudo touch .env database.sqlite

    cp -r /home/shotshare/storage/* .../Files/Shotshare/shotshare_data

    chown 82:82 -R .../Files/Shotshare/

    version: "3.3" services: shotshare: ports: - 2000:80 environment: - HOST=:80 - ALLOW_REGISTRATION=false volumes: - .../Files/Shotshare/shotshare_data:/app/storage - .../Files/Shotshare/database.sqlite:/app/database/database.sqlite - .../Files/Shotshare/.env:/app/.env restart: unless-stopped container_name: shotshare image: mdshack/shotshare:latest networks: {}

    ---------------

    Hello everyone.

    I am deeply struggling to install shotshare on my server using docker-compose.

    I followed the instructions and I've been talking with someone (from their team I guess) for 2 weeks without finding a solution.

    Does anyone have a working docker-compose to share so I can compare it and understand ?

    12

    How do you download the new Fossify apps ?

    Sorry for my ignorance, but how do you download these apps. I see nothing in releases.

    Thanks for your assistance.

    Edit: yes, the Fossify Fork, not the original Simple Mobile Apps version

    7

    I've tried ownCloud.

    Hey there!

    I just wanted to share a bit about my experience as a hobbyist and self-hosting enthusiast. While I may not be the most educated on the topic, I've been able to self-host my favorite services to avoid relying on big companies like Google and Amazon.

    A few years ago, I started my self-hosting journey with Nextcloud, and it completely blew my mind. Finally, I didn't have to rely on Google Drive anymore!

    However, I quickly realized that using a Raspberry Pi made things a bit sluggish. I tried upgrading to a more powerful machine. Still slow. I then tried with an i5-4460, but it was still slow and buggy. I even tried an i3-10100, and it was still a bit of a pain to use. It seems like many others feel the same frustration, so I know I'm not alone. I often wonder how some other people claim they have no issues with Nextcloud, but hey, good for them!

    Because of the tinkering it seems to need, I feel like I don't have enough time and knowledge to make Nextcloud work as smoothly as I'd like, which defeats the purpose of self-hosting it.

    That's why I've been exploring other options. I gave Seafile a shot, but couldn't figure out how to solve a "CSRF verification failed" error. Projectsend and Xbackbone are great, but they don't quite match what I'm looking for. I also tried Cloudreve, but I wasn't a fan of its sorting philosophy. I did find Picoshare, which I stuck with, but for a totally different purpose.

    Then, I tried ownCloud for the first time. Wow, it was fast! Uploading an 8GB folder took just 3 minutes compared to the 25 minutes it took with Nextcloud. Plus, everything was lightning quick on the same machine. I really loved using it. Unfortunately, there's currently a vulnerability affecting it, which led me to uninstall it.

    I also gave OCIS a try, and it felt even faster. The interface was smooth and fluid, it was truly impressive. However, with the recent news of it becoming part of Kiteworks, I'm a bit unsure about its future.

    I can't help but wonder why so many people have been raving about Nextcloud all these years when ownCloud performs so well right out of the box. I'd love to hear about your experience and the services you use. Share your thoughts!

    59

    How would you handle having an online business you need to advertise ?

    Hi !

    I'm a privacy enthousiast. I have pihole running at home, I use it as my DNS resolver, and I use wireguard on my phone to connect home and use pihole on it. Never been happier. No Facebook, no Instagram, no social media at all.

    Thing is, I'm making big changes in my life. I'm moving from Paris to the countryside and I need, I badly need to advertise my services as a freelancer (sound engineer and wedding photographer).

    Of course, I'm in the process of building my website (almost there), but I am nothing if I don't post on Instagram and Facebook (in particular for my photo work). I've seen what other successful wedding photographers do with social media, and I need to do something alike.

    I deeply despise meta, but I'll have to make a sacrifice at some point.

    I've already found something like hootsuite to schedule my posts without having to login into fb or insta, but I'll have to login at some point for the interactions. So I'll install some secure OS on an old phone I'll use only for that purpose, but damn, I already feel dirty.

    How would you feel about this ? What would be your approach ? For those of you that are in a similar situation, what's your method ?

    31

    Bubbler cleaning

    Hello !

    I'm new to bubblers. I got a cheap one and it turns my Air Max into a brand new shiny unknown vaporizer. I love it 8D

    But how do you guys clean this ? Is iso enough ? How do you scrap any potential leftover after an overnight sinking ?

    8

    To dockerize an application: where to start learning.

    I've recently started a crusade for the perfect selfhosted note taking app.

    I posted here and I read a lot of others posts and for now I think I have what I need.

    But as I see Joplin recommended every now and then, and given it doesn't offer a webui I can access everywhere from any computer (you need to install their app), I had this thought: how could I dockerize, say, the Linux Joplin app so I can put it behind a reverse proxy with auth and access it when I'm away from home from any computer.

    I've seen this done for soulseek, mkvtoolnix and others, so I know it is feasibile.

    Being just a hobbyist selfhoster with no programming background, I'm not sure where to start educating myself.

    I'm sure there are some guides out there, but I'm not sure what to look for, what terms to use in my searches.

    Somebody could point me to the right direction?

    18

    [Solved] I want to ditch Nextcloud notes

    Hi.

    I'm curently using Nextcloud notes for its convenience. I use the app on my phone, and the webui on my pc.

    I'm willing to ditch Nextcloud as a whole, so I want to replace my note taking habits.

    I've tried Trilium, which lacks an Android app, and I feel the WPA makes the UI unpractical and hard to read.

    I've tried Joplin, but it lacks a webui.

    Are there other alternatives I've missed out ?

    Solution: I ended up finding Flatnotes. It's dead simple to run and to use, has markdown and WYSIWYG, and the WPA is flawless.

    53

    [Solved] Solution to send mostly text but also files from android to pc and pc to android

    Hello.

    I'm looking for a solution to send text from my PC to my phone, but also the other way around. Big plus if I can send files too in both ways. I already use pairdrop which is nice (while not 100% reliable from my experience) for files, and ntfy is good to send a notification (so basically text) to my phone but the android app won't let me send from my phone to my pc.

    I used to use airdroid a while back, but I don't want to use proprietary software if I can.

    Any idea ?

    Solution: snapdrop or pairdrop. For text, right click on PC, long press on phone.

    30

    What would be the best saturn emulator for android ?

    Hello.

    It was some time ago so I'm not sure but I think I tried picodrive to play a Saturn game. It was Shining Force 3 scenario 1.

    While the game was running without bugs, it was sloooooow and it wasn't the best experience.

    Now that it's 2023, what would be the most optimized emulator to run saturn games at full speed ?

    Thanks for your help.

    2

    WoL through Wireguard

    Hello.

    I was willing to post this in the home network community, but it is not active at all... So I hope this is the right place, as I use a self hosted wireguard and pihole.

    I'm just a hobbyist whose first language is not English, so please, bare with me :)

    So I use Wireguard Easy to create a tunnel to my home network to use pihole on my phone and access my services from outside.

    I have an app to wake my home computer on LAN that is working fine when I'm home. I'd like to be able to wake it from outside and I don't know how.

    A few things are bugging me. If I'm connected to my home network, shouldn't I be able to WoL my computer as long as I use my tunnel ?

    And, on some occasions, I was able to WoL my PC when I wasn't home (I remember doing it once when I was visiting my parents).

    Can someone ELI5 this please ?

    Thanks for your help :)

    14

    I just want to be sure about modifiers on bows.

    So O got these 2 bows and I want to be sure which one is better.

    This one has +10 att. Meaning it deals 48+10=58 damage. !

    This one has 32 att and shits 5 arrows. Meaning it deals 32x5=160 damage. !

    Assuming all 5 arrows hit the target, the second one is by far better right?

    As all 5 arrows seem to be shot in a line, what are the odds I hit the target with all 5 arrows ?

    Isn't it more efficient to hit one time at 58 instead of taking a chance to hit more than 32 ?

    8

    Tears Companion

    I'm sure you guys know of this incredible app. Shout-out to the dev.

    If you don't, tears companion is the ideal companion app to help you in your journey. It has locations to absolutely everything in many languages.

    Beware not to use this app too early in the game or you'll get spoiled a lot ! But if you're struggling to find these last korok seeds, or if you just want to keep track of your findings, it is great !!

    If you feel like downloading it, below is a link to find it. If 10 of you guys download it using this link, I'll be awarded unlocked content in-app.

    But you can also download it the old usual way :)

    Have fun !

    https://software-notion.de/apps/tears-companion/?id=18415056-2a24-4afb-ffff-ffff9093b0bf

    2