• 0 Posts
  • 9 Comments
Joined 1Y ago
cake
Cake day: Jun 15, 2023

help-circle
rss

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.


Mobile improvements would be huge!

I’ve been using this for a couple weeks now and completely replaced OneNote with it (been wanting to ditch OneNote for awhile). It’s been very smooth, nice work!


It does support bios updates. That’s how I do mine on my laptop (a Lenovo).


Ah that makes much more sense. I think I crossed my wires. You mentioned backing up the Minecraft worlds and so I thought “deduplicated backups… so borg.”

I appreciate your explanation.


Is there a link?

Also, how does this compare to something like Borg?


Losing the Internet Archive would be a huge loss. Unfortunately, greedy companies don’t want us to have nice things.


Additionally, instead of actually trying to compete and gain users but making a platform that isn’t trash, they insist on instead trying to trick users with temporary free game offers. And if that doesn’t work, they try to strong arm users into going to their platform by buying exclusive sales rights to games, bringing exclusives to the PC gaming space.

Their CEO is a loud clown who is always spouting nonsense on Twitter. They buy games studios and rip their games off of the platform where users bought them (see Rocket League), and discontinue mac/Linux versions that were fully functional.

Their flagship game preys on children via micro transactions. They lack so many features on their platform that (I believe) they have endorsed using Steams community features for games bought on Epic.

I could probably go on, but I think that’s probably sufficient.


A cryptocurrency miner. It uses your computer to generate currency, which costs you resources (electricity, compute power, etc.).


I found this amusing enough to try it out. It does actually compile (I used g++ for this). However, the current implementation just goes into an infinite loop if you enter a number >= 2.

I think the original author meant to do n -= 1 rn in the tweakin loop that is inside the bussin loop. That way, at some point n % i finna cap will be false, and i will bouta. Which then makes the expression i <= n in the bussin loop eventually false, so we stop bussin and yeet cap rn.

However, that would mean that the intention of the program isn’t to output prime factors, because even with this fix it does not do so. The structure of mf chief() also doesn’t suggest that is the purpose as it is missing another tweakin and sussin like this example of calculating prime factors in C++.

Example run:

$ ./zpp.exe
Enter a number larger than 1: 50
2
7
8
47