• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle
  • Sorry, this isn’t helpful. I migrated the hard way, hah. I just went to each page in OneNote and hit ctrl+a, copied that and pasted without formatting into TriliumNext, then fixed the formatting.

    It took some time, but was worth it to me. I figured it would be a good test to help me familiarize myself with TriliumNext a little.

    An easier path to help adoption would probably go a long way, but it also might eat up a lot of development time and routinely need work. I’m not sure how often the OneNote export formats change.



















  • Vahtos@programming.devtoLinux@lemmy.mlKDE keeps bugging out.
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    6 months ago

    I had similar issues. When first booting into plasma6, my bottom panel was changed to floating. Changing it to not float made it spaced from the bottom of the screen.

    While trying to fix that, I somehow managed to move the pinned icons all off the panel and onto the desktop, but they were unable to be clicked or moved. I ended up restarting for unrelated reasons and they snapped back to the panel.

    I think there were other wonky issues with the edit session, but I don’t recall specifics. Good luck!

    Edit: this was on a wayland session with integrated amd graphics.


  • This is only tangentially related to improving your code directly as you have asked. However, in a similar vein as using source control (git), when using Python learn to manage your environments. Venv, poetry, conda/mamba, etc are tools to look into.

    I used to work with mostly scientists, and a good number of them knew some Python, but none of them knew how to properly manage their environments and it was a huge problem. They would often come to me and say “I ran this script a week ago and it worked, I tried it today without making any changes and it’s throwing this error now that I don’t understand.” Every time it was because they accidentally changed their dependencies, using their global python install. It also made it a nightmare to try to revive old code for them, since there was almost no way to know what version of various libraries were used.