Live data from Hacker News

An 'alt+space' launcher for Windows, built with Electron

github.com

31–40 of 65 posts

Re: An 'alt+space' launcher for Windows, built with Electron

#31
post #25

Earlier quoted context omitted.

Ahh the DOS days are long gone I'm afraid... A single 1024x1024 app icon on Mac OS X weighs in at 4MB once it's inflated to raw bitmap data from ICNS / PNG. Throw a couple of those onscreen at once in a list and you're looking at 30MB easy, and that's just in images! Of course, you could leave out the images, but you could also just keep using DOS if RAM is a concern :-)

Are icons 1024x1024 now?! And I still think 64x64 sounds kind of big for an icon, heh. I really need to get with the times, and get a lawn I guess.

It's for making them look smooth on high-dpi displays. Those pixels aren't drawn 1:1, obviously.

Re: An 'alt+space' launcher for Windows, built with Electron

#32

Earlier quoted context omitted.

Or maybe some people just want to make a cool project for themselves and learn stuff along the way.

I'm replying to two people upset about the ridiculous resource usage of simple modern programs. Bring it up-thread if you want to defend against literal waste, I'm just talking about why it happens.

You said "The vast majority of these people" which would imply you're talking about the type of person who creates projects like this

Re: An 'alt+space' launcher for Windows, built with Electron

#36

Earlier quoted context omitted.

Launchy doesn't require you to install npm first.

I don't think you're intended to build it from source - you can just get a binary: https://github.com/appetizermonster/Hain/releases

FOURTY FIVE MEGABYTES

/facepalm

Re: An 'alt+space' launcher for Windows, built with Electron

#37

As others have pointed out, there are stuff that should not be made with Electron and this is one type of app that just shouldn't. If it is platform specific anyways, why not do it in like C# or something that would make it lighter and faster?

Because someone already did that.

https://github.com/Wox-launcher/Wox

Re: An 'alt+space' launcher for Windows, built with Electron

#38
post #36

Earlier quoted context omitted.

I don't think you're intended to build it from source - you can just get a binary: https://github.com/appetizermonster/Hain/releases

FOURTY FIVE MEGABYTES /facepalm

Well, it bundles Webkit and a kitchen sink.

Re: An 'alt+space' launcher for Windows, built with Electron

#39

Earlier quoted context omitted.

Launchy doesn't require you to install npm first.

I don't think you're intended to build it from source - you can just get a binary: https://github.com/appetizermonster/Hain/releases

Ah, thanks, again honestly.

That is my main complaint against anything Node.js: after having struggled with Node.js before I don't feel like building anything bsed on it.

Guess I'll stay with Launcy (or even the new Windows start menu) but this sorts most of my issues.

Re: An 'alt+space' launcher for Windows, built with Electron

#40

i really love these launcher apps. this one sort of illustrates the problem with developing windows apps: - you either learn complicated c++ and windows api and have to write your own rendering framework for custom components - or use C# and xaml and get terrible performance with systems with no gpu acceleration - or use VB for terrible performance and CPU usage - or use javascript and node for huge memory usage and…

Uh, where did you get the VB for terrible performance and CPU usage? There's nothing inherent to the language that makes it less efficient than C# or anything else running on the CLR.
Post reply on HN