DEV Community

Ben Halpern
Ben Halpern Subscriber

Posted on

What software projects made you "wow" ๐Ÿคฏ

Be it a historical project, a brilliantly built npm package, an application, etc. What has struck you as an incredible feat of software development?

It doesn't have to be massive in scope, it could just be one awesomely thought out class, but if you've ever been incredibly impressed, let's hear about it.

Oldest comments (91)

Collapse
 
anku profile image
Ankit Tiwari

For me, it is going to be the VS Code Editor. It is an incredible piece of software. There are tons and tons of features baked into it but still its very simple to use.

The VS code dev team is phenomenal, they keep adding new features to it every month. Given how big and complex the application is, it is no easy feat to add major features every month.

Collapse
 
terabytetiger profile image
Tyler V.

This is an excellent answer! VS Code has a je ne sais quoi about it that makes it so wonderful to work with!

Collapse
 
adam_cyclones profile image
Adam Crockett ๐ŸŒ€ • Edited

Vscode always reminds me of the early iPhone adverts "there's an app for that" catchphrase.

Collapse
 
foresthoffman profile image
Forest Hoffman

I've actually said, "oh, there's an extension for that" at work before ๐Ÿคฃ

Collapse
 
kyleboe profile image
Kyle Boe

Agreed. One of the most insane part of VS Code for me is how quickly it went from being a laughing stock to the de-facto editor.

Low-key shout out to Satya Nadella.

Collapse
 
jithinks profile image
Jithin KS

Hey

Collapse
 
ben profile image
Ben Halpern

The wow factor was so clear for early adoptors of VSCode and that was what really got my attention in the first place. It wasn't any one feature, it was the observation that people just loved it.

Wrote a bit about that way back.

Collapse
 
maxart2501 profile image
Massimo Artizzu

Coming from Atom, I was pretty confident that making a modern, reliable and fast IDE based on Electron was basically impossible, if not even the creators of Electron could do it.

Glad I've been proven wrong.

Collapse
 
nathankc profile image
Nathan K. Campbell

one could say the same thing about GitHub Desktop which is woefully lacking - thankfully GitKraken is pretty great

Thread Thread
 
jsn1nj4 profile image
Elliot Derhay

Heck yes, especially for those who prefer to see the graph.

Collapse
 
jacoby profile image
Dave Jacoby • Edited

I found a bug in it. From the command line, if a filename could be interpreted as a number, it would be. For me, it was 2551.e12456872, which, as it turns out, is scientific notation.

Once I reported it, they pegged it as a Minimist issue, and the fix came out in ... < 2 weeks?

Which raises my opinion of the program and the team. +1.

Collapse
 
vonheikemen profile image
Heiker

Thats redux-thunk for me. Never thought 14 lines could cause so much confusion to so many people.

Most recently tagmeme a cool implementation of tagged-unions in plain javascript.

Collapse
 
vuild profile image
Vuild • Edited

How the first necessary leaps to create the web we use now happened (and as it is being discussed rn by some of the people who did it).

twitter.com/wiumlie/status/1151458...
twitter.com/dance2die/status/11512...
twitter.com/BrendanEich/status/115...
(I dunno how to use twitter so three links).

Collapse
 
torianne02 profile image
Tori Crawford • Edited

Honestly, Rails. When I first learned it about a year ago now, I thought it was a cool product that made my life easier but didn't really understand how.

Fast forward to 2 months ago when I was given a coding challenge to create a Ruby API without using Rails...holy cow did I realize how much is done behind the scenes that I wasn't aware of. It made me appreciate and understand Rails so much more.

Collapse
 
gypsydave5 profile image
David Wickes

What did you use in the end?

Collapse
 
torianne02 profile image
Tori Crawford

I ended up using Sequel as my ORM instead of Active Record, Sinatra as my framework, and Grape.

Collapse
 
terabytetiger profile image
Tyler V.

The most ๐Ÿคฏ I've ever felt was working through Ali's Vue intro guide for the first time:

I've been all in on Vue since working through this and every time I do something new with it I think "Holy Wow! That was magic!"

Collapse
 
anwar_nairi profile image
Anwar

Agree, vue is really mind blowing for his kind. SPA in general also, such a wonderful tech!

Collapse
 
piyukore06 profile image
Priyanka Kore • Edited

Bellwoods is a generative arts game created by Matt DesLauriers

Every time I think of it .. the colors and music makes me go "wow" ๐Ÿ˜

Collapse
 
mandaputtra profile image
Manda Putra

Hey where are the list of the game? I can't access it :(

Collapse
 
piyukore06 profile image
Priyanka Kore

Heyy .. It was a part of this competition .. Here's the link to the entry, hope this one works for ya js13kgames.com/entries/bellwoods

Collapse
 
jackharner profile image
Jack Harner ๐Ÿš€

This one's kind of specific, but the one thing that's stuck in my head for so long is the Bank of Canada's Landing page for their new $10 note.

More specifically, just how fluid and smooth the animation on flipping the bill around, the way the edges twist depending on how fast you turn it, the reflective parts reflecting, all of it.

I stumbled across it in some non-programming Reddit thread on my old (super slow) phone, and that blew my mind even more.

Collapse
 
highcenburg profile image
Vicente G. Reyes

Wow! This is the first time I saw this. ๐Ÿคฏ

Collapse
 
shiling profile image
Shi Ling • Edited

Anything that @devdevcharlie builds blows my mind.

Controlling devices with my mind was the stuff of my dreams. It's now a reality!

One step closer to being a wizard.

Collapse
 
adam_cyclones profile image
Adam Crockett ๐ŸŒ€

Wow how do I get the hardware for that!

Collapse
 
evanoman profile image
Evan Oman

Really amazing stuff. The front-end integration is neat but the face-reading and brain-reading is happening on the backend with Emotiv's tooling

Collapse
 
steelwolf180 profile image
Max Ong Zong Bao • Edited

JAM stack technology which I'm still amazed on how you can built a website.

That is fast, uses API & markdown to build a duct tape website with little to affordable hosting.

Collapse
 
cubiclebuddha profile image
Cubicle Buddha • Edited

The original wow for me was cross-env because up until Kent C Dodds made that libary, it was almost impossible to write NodeJS on a windows machine.

Or at least you couldn't write a NodeJS app that followed 12 Factor Apps' config rule

Collapse
 
mykeels profile image
Backlog Slayer

You know, I'd been seeing cross-env in codebases I use, but never really paid much attention to it. I just checked out the repo because of your comment. Thanks for bringing it up.