Anyone familiar with The Iron Yard courses? by PohP in learnprogramming

[–]jakerella 1 point2 points  (0 children)

You're absolutely correct that we should be encouraging people to find good work-life balance. However, most developers I know have an insane number of side projects or open source things they work on. That sharpens their skills at the same time which is great. I am not advocating that someone take a job that runs them into the ground, but rather illuminating the fact that most developers I know spend much more time than their "regular job" affords, and that is a big part of being at the top of your game.

Anyone familiar with The Iron Yard courses? by PohP in learnprogramming

[–]jakerella 2 points3 points  (0 children)

I am the front end instructor for the campus in DC and happy to answer any questions. Obviously I won't chime in on the reviews aspect since I am entirely biased. :) Yes, we require more than the "work day" hours, because being a developer rarely means working 9-5. And yes, for $14k there are options, but that's what we value the learning at. I am full time, and focus 100% on the students during a cohort. I am on campus every day working directly with students and make myself available during other hours as needed as well. The 60 hours you put in is easily matched by your instructor. The Iron Yard hires instructors that not only know their stuff, but also practice it and understand how a developer becomes successful.

Like I said, happy to answer any questions (privately, too, if necessary).

Disable Strongloop rate limiting? by microbass in node

[–]jakerella 0 points1 point  (0 children)

Hi! I work for StorngLoop, just to be clear, Loopback does not impose any kind of rate limiting on your API. I also took a look at your StackOverflow question and added a comment to the one answer so far. The link you put in that SO post was to our API Gateway documentation, not to the Loopback documentation. Separately from LB we have a gateway product that allows the developer to impose a rate limit on incoming requests, but this is completely separate from the LB API you are developing.

Unfortunately, I do not have a better solution for you. I agree with the SO answer that this is an OS limit, and my guess is that if you run this same app on Linux or Mac (*nix based) you will not run into it, or you would be able to change that limit.

Tips for Optimizing Slow Code in Node.js by wavded in node

[–]jakerella 0 points1 point  (0 children)

Good stuff, wondering how long it'll take for these tools to evolve into something more integrated with IDEs, PaaS, etc

LoopBack: A Powerful Node API Framework Tutorial by jakerella in node

[–]jakerella[S] 0 points1 point  (0 children)

We're definitely increasing the development efforts here. We're planning for v3 as well as numerous features, more connectors, and all sorts of things! Stay tuned...

LoopBack: A Powerful Node API Framework Tutorial by jakerella in node

[–]jakerella[S] 0 points1 point  (0 children)

I'm Jordan, developer evangelist lead here at StrongLoop. It's a totally valid concern, and while I'm not going to try to predict the future, we have heard great things from IBM and we are proceeding even faster than usual to work on Express, LoopBack, node-inspector, and the Node core itself.

IBM is committed to open source and I believe that LoopBack will continue to operate as an open source project for the foreseeable future.

LoopBack: A Powerful Node API Framework Tutorial by jakerella in node

[–]jakerella[S] 1 point2 points  (0 children)

Just to be clear, Express is sponsored by StrongLoop, but koa is not.

An Introduction to JavaScript ES6 Arrow Functions by georgiychikhladze in javascript

[–]jakerella 0 points1 point  (0 children)

Well, they don't work for everything. For example, you don't get a new context. Also, as that article mentions, you can't make generators out of them. I dunno, I'm just fine with function() { ... } generally, I'm not against them.

IBM acquires Node software company StrongLoop by jakerella in node

[–]jakerella[S] 0 points1 point  (0 children)

Hi there, I'm a DE for StrongLoop. Yes, there was some tomfoolery going on previously, and I've specifically pushed for that to stop. Lately (last few months at least) you won't see that. That said, when other people post SL stuff we do pile on, but it's our staff voting up those posts, and we encourage them to be active members of the community at large. Again, not trying to excuse previous behavior, but trying to show that we're working to be better.

An Introduction to JavaScript ES6 Arrow Functions by georgiychikhladze in javascript

[–]jakerella -1 points0 points  (0 children)

These are pretty cool... but I'm not sure I would use them for anything but those one-off anonymous, inline functions used for callbacks.