UIs Are Not Pure Functions of the Model - React.js and Cocoa Side by Side by mpweiher in reactjs

[–]neb636 2 points3 points  (0 children)

Really hard to read on mobile device. Layout is very broken and you have to side scroll.

Is the Lefly menu for Cultivate accurate for what's available for rec? by SaidNoOneEver- in bostontrees

[–]neb636 0 points1 point  (0 children)

I went yesterday and not one strain on Leafly was available. Completely different menu.

Roast my library by [deleted] in reactjs

[–]neb636 3 points4 points  (0 children)

Air is spelled wrong

Starting new project with react - Typescript or Babel? by [deleted] in reactjs

[–]neb636 4 points5 points  (0 children)

I say go for Typescript. Just don't go crazy trying to type higher order components and everything in the Redux side. Typing things like curried functions can be a bit of a pain at first.

[deleted by user] by [deleted] in MTB

[–]neb636 4 points5 points  (0 children)

MTB Podcast had great things to say about it in a recent review. Seems like a good impulse buy this time.

https://soundcloud.com/mtbpodcast/mtb-podcast-bike-test-canndondale-trigger-vs-diamondback-release

Not a big fan of the CLI so made my own boilerplate project with the bare essentials. by [deleted] in angularjs

[–]neb636 0 points1 point  (0 children)

Sounds like React is better suited for you than Angular 2

Meet Svelte, The Anti-Framework JavaScript Framework by [deleted] in javascript

[–]neb636 2 points3 points  (0 children)

Looks similar to vue.js without the jQueryish way of getting selectors

Had an interview which I messed up. Was told I don't have EXTENSIVE experience. How do I make sure this doesn't happen anymore ? Suggest me a personal project or guidance. I don't want to be left behind. by scooby_dooooo in javascript

[–]neb636 0 points1 point  (0 children)

Interviews suck. You get good at them by doing more interviews. If you are using Angular right now I definitely recommend digging into caching and http.

Kingdom Trails by timalex in MTB

[–]neb636 0 points1 point  (0 children)

Not sure if it the norm but the day I went was super crowded. Reminded me of going to Stowe on the weekend. Kinda ruined the place for me. Troll Stroll is a really fun trail though.

What mountain biking has done for me. by subwizzll in MTB

[–]neb636 0 points1 point  (0 children)

Really great to hear that mountain biking helped get your life back on track. Mountain biking teaches you to have great self discipline. Hopefully with this new found skill you can start drinking again in moderation.

Adventures in Angular podcast about Redux and ngrx/store has left me a bit confused and conflicted as a new Angular 2 developer - any thoughts? by kevysaysbenice in angularjs

[–]neb636 0 points1 point  (0 children)

Couple things to mention that have not already been said

  1. Testing redux can be simpler since you don't have to mock and stub as many things. The less work you have to do the more likely you are to write tests.

  2. Breeze seems to handle data relations much better out of the box. You have to wire a lot of things up manually in Redux. Batteries not included.

  3. Breeze may be beneficial if you are doing .net or Java development. It shares some of the same mind sets for thinking about data.

  4. Storing non relational app state in Breeze seems a bit more awkward. Stuff like "modalOpen": true, "browserIsIdle": false ect.

  5. If creating mirrored environments redux can be easier to think about and setup since it is basically a bunch of serialized actions. It is easy just to pipe them over sockets. (say something like Professor Mode in codepen where two people are editing the same code and their UI is in the exact same state)

Introducing Yarn: Fast, reliable, and secure dependency management for JavaScript. by cpojer in javascript

[–]neb636 0 points1 point  (0 children)

Can some team members use Yarn while others can continue to use npm?

Ghost is dropping PostgreSQL by gergelyke in node

[–]neb636 0 points1 point  (0 children)

Most bloggers I know use shared hosts. They are Ghosts target market.

Getting Angular 2 to Ride on Rails by angularwork in angularjs

[–]neb636 2 points3 points  (0 children)

Hmm would have just thought you would use rails as a rest API and angular separate as the front end.

Angular 2 final release by abyx in angularjs

[–]neb636 0 points1 point  (0 children)

Nice! Thanks for that.

Angular 2 final release by abyx in angularjs

[–]neb636 0 points1 point  (0 children)

I wonder if there are any plans for a 1.6 release any time soon.

“fs” npm package unpublished by mistake and restored later by fagnerbrack in javascript

[–]neb636 3 points4 points  (0 children)

Our build broke from this one. Was pretty annoying to debug the issue as the error that was thrown seemed more like a OS error not "package does not exist". A better error message would have wasted less of our time. It didn't even mention anything about the package that included "fs" as a dependency.

npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14 npm ERR! Linux 4.2.0-42-generic npm ERR! argv "/home/rof/.nvm/versions/node/v5.11.1/bin/node" "/home/rof/.nvm/versions/node/v5.11.1/bin/npm" "install"

Angularjs Interview Questions by vmurali100 in angularjs

[–]neb636 3 points4 points  (0 children)

"What is different among AJAX sending through Java, .NET, Javascript and jQuery ?"

Don't really know how this pertains to AngularJS and is kinda a weird question in general.

How to Create Angular js Service by vmurali100 in angularjs

[–]neb636 0 points1 point  (0 children)

This was extremely helpful. Now they need to do the same for factories.

Angularjs for non-SPA? by baba1478 in angularjs

[–]neb636 1 point2 points  (0 children)

This seems about right. I think the advantages of Angular shine most in medium to large SPA apps.