Live data from Hacker News

Show HN: Startuper's life – Damn True moments from startuper's life

startuperlife.xyz

31–34 of 34 posts

Re: Show HN: Startuper's life – Damn True moments from startuper's life

#31
post #29
post #28

Earlier quoted context omitted.

I've used both and Vue is a mess in comparison. I didn't use components or Vuex but in that scenario I may just as well use React + Redux.

This whole data binding looks lie what angular pulled years ago.

Yes, standard newbie-friendly Vue is a very similar to ng1 but with lower barrier of entry. Unfortunately it comes with the same downsides as Angular 1. The normal data-binding leads to a lot of confusion.

In order to mitigate that it is recommended to use components with unidirectional bindings but at that stage it just becomes an inferior version of React IMO.

Re: Show HN: Startuper's life – Damn True moments from startuper's life

#32
post #14

On my screen, every time I click the button the different text width changes the button's position, making lazy repeat, procrastinatory clicking hard work.

yep, will fix it later

Quick fix (works on mobile too):

  .gradient-button {
     position: fixed;
     bottom: 2rem;
  }

Re: Show HN: Startuper's life – Damn True moments from startuper's life

#34

Not to be that guy but: This loads as a blank page on Windows Phone 8.1, just FYI :)

I did just for fun so, obviously, I didn't check it on Windows Phone or even IE :) But thanks for reporting, maybe I'll take a look at that once

Makes sense. I would think, even without testing, most people would expect vue etc to render their content on various browsers, rather than render nothing. I myself am sometimes surprised/confused when code that runs elsewhere fails on WP. Might not affect this fun project, but worth knowing down the line. Often it related to promises, if you are using them.
Post reply on HN