There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

@november@iusearchlinux.fyi avatar

november

@[email protected]

This profile is from a federated server and may be incomplete. Browse more on the original instance.

november ,
@november@iusearchlinux.fyi avatar

I use WireGuard to access my home services and for net-forwarding when I’m outside.
To set it up, I followed this simple guide.

Self Hosting an RSS feed for news/media/etc?

Heyas, wondering if there’s an open sourced piece of software or the like, that could scrape media platforms for a specific topic. Platforms like YT, X, Lemmy, News Media, etc., perhaps using RSS? But, a program I can host on my server, that only I have access too, via webpage, CLI, whatever…...

november ,
@november@iusearchlinux.fyi avatar

FreshRSS has been working great for me! It even has the ability for web scraping if you need it.

november , (edited )
@november@iusearchlinux.fyi avatar

There’s some tinkering with their docker-compose.yml to make it work. Here’s mine you can copy if you want to get it up and running. I don’t use nginx or any reverse-proxy btw. All data is saved in their own individual volumes which you can back up:


<span style="color:#323232;">services:
</span><span style="color:#323232;">    sharelatex:
</span><span style="color:#323232;">        restart: always
</span><span style="color:#323232;">        image: sharelatex/sharelatex
</span><span style="color:#323232;">        depends_on:
</span><span style="color:#323232;">            mongo:
</span><span style="color:#323232;">                condition: service_healthy
</span><span style="color:#323232;">            redis:
</span><span style="color:#323232;">                condition: service_started
</span><span style="color:#323232;">        ports:
</span><span style="color:#323232;">            - *DESIRED_PORT*:80
</span><span style="color:#323232;">        links:
</span><span style="color:#323232;">            - mongo
</span><span style="color:#323232;">            - redis
</span><span style="color:#323232;">        stop_grace_period: 60s
</span><span style="color:#323232;">        volumes:
</span><span style="color:#323232;">            - data:/var/lib/sharelatex
</span><span style="color:#323232;">            - texlive:/usr/local/texlive
</span><span style="color:#323232;">
</span><span style="color:#323232;">        environment:
</span><span style="color:#323232;">            SHARELATEX_APP_NAME: Overleaf Community Edition
</span><span style="color:#323232;">            SHARELATEX_MONGO_URL: mongodb://mongo/sharelatex
</span><span style="color:#323232;">            SHARELATEX_REDIS_HOST: redis
</span><span style="color:#323232;">            REDIS_HOST: redis
</span><span style="color:#323232;">            ENABLED_LINKED_FILE_TYPES: 'project_file,project_output_file'
</span><span style="color:#323232;">            ENABLE_CONVERSIONS: 'true'
</span><span style="color:#323232;">            EMAIL_CONFIRMATION_DISABLED: 'true'
</span><span style="color:#323232;">
</span><span style="color:#323232;">    mongo:
</span><span style="color:#323232;">        command: "--replSet overleaf"
</span><span style="color:#323232;">        restart: always
</span><span style="color:#323232;">        image: mongo:4.4
</span><span style="color:#323232;">        expose:
</span><span style="color:#323232;">            - 27017
</span><span style="color:#323232;">        volumes:
</span><span style="color:#323232;">            - mongo_data:/data/db
</span><span style="color:#323232;">        healthcheck:
</span><span style="color:#323232;">            test: echo 'db.stats().ok' | mongo localhost:27017/test --quiet
</span><span style="color:#323232;">            interval: 10s
</span><span style="color:#323232;">            timeout: 10s
</span><span style="color:#323232;">            retries: 5
</span><span style="color:#323232;">
</span><span style="color:#323232;">    redis:
</span><span style="color:#323232;">        restart: always
</span><span style="color:#323232;">        image: redis:6.2
</span><span style="color:#323232;">        expose:
</span><span style="color:#323232;">            - 6379
</span><span style="color:#323232;">        volumes:
</span><span style="color:#323232;">            - redis_data:/data
</span><span style="color:#323232;">
</span><span style="color:#323232;">volumes:
</span><span style="color:#323232;">  data:
</span><span style="color:#323232;">  mongo_data:
</span><span style="color:#323232;">  redis_data:
</span><span style="color:#323232;">  texlive:
</span>

Some of my documents rely on certain packages which didn’t come with the Docker image. You will need to run
docker exec sharelatex-sharelatex-1 tlmgr update --self;docker exec sharelatex-sharelatex-1 tlmgr install scheme-full
so that you can render your documents properly if they utilize certain packages.

Optionally—since the full scheme takes about 8 GB and you may not need everything—you can replace scheme-full with a different scheme you can find by running
docker exec sharelatex-sharelatex-1 tlmgr info schemes
The i before any scheme name means that it is already installed.

Update:
Included a texlive volume to save any packages that were installed, so when recreating the containers, they will persist.

november , (edited )
@november@iusearchlinux.fyi avatar

I checked the volumes that I included in the compose file, and looked for either a texlive, tlmgr or a package folder and didn’t find anything. I think it’s safe to assume that you would need to reinstall the packages if you recreated the containers.

This is a problem that I didn’t consider. I will try to make an update to my compose file that will keep the packages persistent.

Check above for the update!

november , (edited )
@november@iusearchlinux.fyi avatar

Also, I’d like to point out that Overleaf’s hosting and pricing options are quite reasonable, especially if you’re working for a university or institution: www.overleaf.com/user/subscription/plans

While I did take advantage of the free Overleaf Pro during my university days, I don’t have it anymore after graduating, and so I’m missing some features which their free tier doesn’t have.
By self-hosting I’m given better control, and all those features I once had before.

Also, the whole point of this community is to kind of avoid relying on third-party hosting, and especially paying for it too🙂

november , (edited )
@november@iusearchlinux.fyi avatar

Throwback to Microsoft’s pre-Kinect project dubbed Xbox ‘Natal’ way back in the day.
Being younger, I—along with many—really thought that was the close future of gaming. In hindsight, of course it was all fabricated.
I’m not surprised by Google’s Gemini demo video either. The way that which the whole demo was narrated and played out made it seem too linear, too perfect.

would it be illegal to download Ubuntu on a Chromebook?

what if I, for example, had a job in Google and I liked Linux so much I install Ubuntu on my Chromebook, would that be illegal/send me to prison?? Or, if I had the job, would I be kicked?? I like Chromebooks because they are so smol and nice. But I don’t know if it’s legal to install a Linux distro on it. Thank you!!

november ,
@november@iusearchlinux.fyi avatar

Stop feeding the troll…

november ,
@november@iusearchlinux.fyi avatar

Maybe I have mistaken you for a troll, but your behavior and recent posts on this community say otherwise as they are low-effort and look like bait. Asking questions is always a good thing, I don’t want to discourage you from that. Though you should keep the hypothetical, unrealistic ones in your head as they are contributing nothing here and only waste other people’s time.

It seems you are just young and naive judging from your profile picture, so here’s some advice:
Post less, and research/read more before asking anything. It’ll make you grow faster, not only as a developer, but it also teaches you to think things through better and so you can learn things easily in the future. (RTFM anyone?)

november ,
@november@iusearchlinux.fyi avatar

I’m not sure if I am I having deja vu, but didn’t someone make this exact post two weeks ago or so?

Action Cams on Linux (i.e. GoPro, DJI, Canon, etc)

Hi folks. I’ve been running some form of Linux since about 2006 or so. Hardware support has gotten so much better, and yet here I am, looking for personal experiences people have had using action cams with their Linux based operating systems. I’ve done research on this, but most of the info I’ve found is out of date or...

november ,
@november@iusearchlinux.fyi avatar

Do you own an action cam and does it work with Linux?

I have a DJI Action 3. It works with no issues on (Arch) Linux.

What totally rad sport/hobby do you use it for?

I mount it to my helmet while I’m out riding my motorcycle on the streets as sort of a dashcam.

Are you able to update the firmware over Linux or from he device itself? (I have windows for emergencies, but prefer not to use it.

The one thing I hate about the Action 3 is that it requires a mobile app to do firmware updates. Just to start using it requires registration on their DJI Mimo app which is terrible.

How does the device mount and have you had issues with file transfers?

The device lets you choose if it is as a webcam or storage for mounting when turned on if it is plugged in through USB.

Is there any special software that helps you use your device, for example “piper” can help me configure fancy mice.

The Action 3 doesn’t have anything special, but a search on the AUR shows there are some for GoPros.

Can you use your device as a webcam?

Answered above.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines