Spyke

Replies

Comment on

Cool SQL editor that I found today, licensed under GPL 3

Reply in thread

Each electron app has its own Chromium runtime. With the prevalence of electron apps, the result is multiple instances of chromium running on your machine. Chromium isn’t light weight. On top of that, there is the philosophical aspect. Do we really need to be shipping an entire browser for the purpose of creating a UI? That being said I understand why so many electron apps are created. HTML/JS/CSS are powerful and easy to use (IMO) and cross platform. I just try to avoid them and use alternatives to electron.

Comment on

What's an elegant way of automatically backing up the contents of a large drive to multiple smaller drives that add up to the capacity of the large drive? (on Linux)

You could create a Python script to do this. There is a library called psutil that would help. Basically,

  • iterate over mounted drives and see how much each has available
  • based on these values, iterate over your backup files and separate them into chunks that will fit on each drive
  • copy chunks to respective drives

Would be a fun little project even for a beginner I think.

iphone

Comment on

Startup/New Device battery drain in iP15 Pro

I have a 15 pro and don’t think I experienced this. I know that photos on a Mac will run in the background, scanning your photos for faces and objects. That could be what happened, along with some other indexing. Surprised it occurred while on battery though. I wouldn’t worry about it unless it consistently happens.