𝘋𝘪𝘳𝘬

Somewhere between Linux woes, gaming, open source, 3D printing, recreational coding, and occasional ranting.

🔗 Me, but elsewhere

🇬🇧 / 🇩🇪

  • 1 Post
  • 29 Comments
Joined 2 years ago
cake
Cake day: June 9th, 2023

help-circle





  • but I’d like to give Nginx Proxy Manager a try, it seems easier to manage stuff not in docker.

    NPM is pretty agnostic. If it receives a request for a specific address and port combination it just forwards the traffic to another specific address and port combination. This can be a docker container, but also can be a physical machine or any random URL.

    It also has Let’s Encrypt included (but that should be a no-brainer).


  • If you’re into watching YouTube: You can add channels as RSS into your reader. The latest 15 videos are offered via the feeds. All you need is the channel ID of the channel whose feed you want to access.

    The channel ID is not visible anywhere on the page, but if you look at the DOM in the web browser via the developer console, you will find a meta entry <link rel="canonical" href="https://www.youtube.com/channel/CHANNEL_ID"> in the <head>, where CHANNEL_ID is the required ID. There are also websites that can be found quickly and easily using the appropriate keywords, which read out and return the ID associated with the provided handle.

    https://www.youtube.com/feeds/videos.xml?channel_id=CHANNEL_ID
    

    If you have a lot of subscriptions, you can use Google Takeout at takeout.google.com and export the YouTube subscriptions as a CSV file. The CSV file contains the subscribed channels with their ID and title for you to parse into whatever format you need for your reader.

    For Newsboat you can use this script on the Abos.csv from my Google Takeout archive:

    while IFS="," read id url name; do
      feedURL="https://www.youtube.com/feeds/videos.xml?channel_id=%24%7Bid%7D"
      [ ! -z "${id}" ] && echo "$feedURL youtube videos \"~${name}\""
    done < <(tail -n +2 Abos.csv) >> urls
    

    Edit: Seems like, Lemmy messes up the code formatting, but you get the gist …








  • If your company goes full-on Microsoft cloud (including OneDrive), maybe try logging in on https://www.microsoft365.com/ with your corporate account. From there you have access to all the OneDrive files that are shared with you, as well as all Office web applications (they’re basically identical with the installed apps).

    Using a Chromium-based browser you can run the individual web-apps like chromium --app="https://...." to give them a more native look-and-feel by removing the browser interface.

    Same goes for Teams, btw.: Just open http://teams.microsoft.com/, it works just like the installed version. Including audio, video, screen sharing, and notifications.






  • Ah, I see. Not as native web application, though.

    They’re using Alpine Linux, install X and Openbox and Xvnc and serve KasmVNC via Nginx and connect via KasmVNC to that X instance. LibreOffice is started in fullscreen and looks like a slightly blurry web application.

    But in reality it is just a regular desktop installation with some extra things.

    @[email protected], maybe this is a solution? I wouldn’t recommend it because it’s not really a web-based document editor.