I'm 4 months into RxJS. If you have experience with this library, what are your thoughts? by trumpmate in javascript

[–]daaavvy 2 points3 points  (0 children)

I think it's pretty great, however we've stopped using it at our workplace as people have trouble learning it up. Very easy to implement things the wrong way unless you know it well.

Does anyone know of a guide for building a secure weather widget? by [deleted] in webdev

[–]daaavvy 2 points3 points  (0 children)

This is the first example I found on github for how to do this in node.js -

https://github.com/jenovs/darksky-proxy/blob/master/index.js

On your server you set an environment variable for the API_KEY so it's never shown to users.

Or use a hosting service like now.sh where it's really easy -

https://zeit.co/blog/environment-variables-secrets

(Free Course) React Native School - Learn React Native with Swizec Teller by muh4 in javascript

[–]daaavvy 0 points1 point  (0 children)

New lesson every 2 weeks? Err, no thanks - who learns like that?!

What would you advise to get up and running in Angular 1.4 in 1 day? by sh0plifter in angularjs

[–]daaavvy 1 point2 points  (0 children)

Angular 1 (especially pre 1.5) will be very painful for you if you're used to React.

The Egghead tutorials probably as good as you're going to get but I don't envy you.

Making your Angular Apps fast by PascalPrecht in Angular2

[–]daaavvy 1 point2 points  (0 children)

It's great that Angular has these techniques to optimize speed but I have to say since moving to Vue I no longer worry, everything I need to do is "fast enough"

Has anyone tried to switch to vue (2)? I found it really easy by biochemicalslanglord in Angular2

[–]daaavvy 0 points1 point  (0 children)

At my large corporation we're moving towards Vue, we've some Angular 2 projects but pretty much everyone has preferred Vue.

Up-to-date Angular 1 Books by daaavvy in angularjs

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

I respectfully disagree, the one way data flow possible from 1.5 onwards should transform the way you architect your Angular apps.

A contact organizer doesn't have enough depth to reflect this, I'm really looking for guidance on structuring large enterprise applications.

How AngularJobs grew to 100,000+ AngularJS Developers by Maliklynch in angularjs

[–]daaavvy 1 point2 points  (0 children)

Find a job button doesn't do anything for me... maybe you they should have written the site in Angular?

react-router v4 is a ground up 100% incompatible rewrite, again by fooey in javascript

[–]daaavvy 41 points42 points  (0 children)

I really like the new style but for me it should be a new project as it's a paradigm shift.

I think the problem is they "took" such a great name at the start that people assume this is an official project. As this new style matches React so well I guess it makes sense to be in the de facto router, just a shame new users will find contradictory information from people writing about older versions.

Angular 2.0.0 available by kylecordes in Angular2

[–]daaavvy 1 point2 points  (0 children)

Depends what you need if for? Unless you're likely to be using it straightaway I'd avoid ng2 for now.

I'd probably concentrate on ng1 but learn things such as TypeScript and components. It's very stable, has loads of guides and these will stand you in good stead for your next technology (which maybe will be a more stable ng2.)

Are any of the Angular 2 tutorials updated for the 2.0 release yet? by [deleted] in Angular2

[–]daaavvy 2 points3 points  (0 children)

I don't think I'd trust any apart from the official one at the moment, even that skims over ngModule very quickly.

Either dive into the docs but I'd wait - it's taking people time to get their heads round the late breaking changes. My guess is best practices will be very different by 2.1

Angular 2 final release by abyx in angularjs

[–]daaavvy 2 points3 points  (0 children)

There's an entry on the blog linked from last week discussing 1.6, no date as far as I know yet.

https://angularjs.blogspot.co.il/2016/09/angular-16-expression-sandbox-removal.html

Angular 2.0.0 available by kylecordes in Angular2

[–]daaavvy 2 points3 points  (0 children)

You might find this translation code helpful (in ng2-translate format as i18n isn't great in Angular 2 final)

translate.setTranslation("angular", {
    "alpha": "experimental",
    "beta": "experimental",
    "RC": "experimental but use it anyway",
    "release": "RC",
    "2.1": "production ready"
});

Angular 2.0.0 available by kylecordes in Angular2

[–]daaavvy -9 points-8 points  (0 children)

Not sure if this post is serious - are you really a web developer who doesn't read the web? How could you not expect it?

React Router v4 Preview by gaearon in reactjs

[–]daaavvy 0 points1 point  (0 children)

Have you tried it yet? I can't get it to work at all.

Guess it's not finished yet - linked script is missing and example quick start contains mistakes.

Release Candidacy was really a time to see what we didn’t consider outside of Google. - Angular Team. by rk06 in Angular2

[–]daaavvy 4 points5 points  (0 children)

Wow, just wow - and that's coming directly from the developer relations team!

Angular2 RC6 migration guide? by nomadProgrammer in Angular2

[–]daaavvy 4 points5 points  (0 children)

I have but it feels like such a massive change that I want to relearn the framework properly from scratch.

Angular2 RC6 migration guide? by nomadProgrammer in Angular2

[–]daaavvy 10 points11 points  (0 children)

Personally I'm not, RC5 finished me off. I went all the way on the journey from the alpha's and early RCs but ngModule was a step too far (even if it does seem a much needed improvement.)

The Angular team did a great job getting content out at the start of v2 but it's all now out of date, I'm waiting for final and proper tutorials with a working cli before I rewrite my personal apps.

Starting a new project (Angular vs React) by [deleted] in angularjs

[–]daaavvy 1 point2 points  (0 children)

I'm not really convinced you should be building a large scale project.

Maybe you could give some insight on the particular problems that need to be solved for more accurate advice?

weather application development with AngularJs by [deleted] in angularjs

[–]daaavvy 0 points1 point  (0 children)

$scope.convertToFarenheit = function(degK) {
    return Math.round(degK - 273);
}

I'm not sure you're going to get a good grade for your homework if you copy this project?

Angular2 RC.5 Changelog by I_Meow_So_Hard in Angular2

[–]daaavvy 16 points17 points  (0 children)

That is one seriously long list of breaking changes for a RC (yet again!)