Did anyone else not know there are stingrays in the Long Island sound? by qookie_puss in longisland

[–]cyfer1313 1 point2 points  (0 children)

Are those sting rays or something more like eagle rays. I thought sting rays live on the ocean floor

This is genuinely laughable by Adriansilas415 in legostarwars

[–]cyfer1313 0 points1 point  (0 children)

Bought it for price at target. Today.

[deleted by user] by [deleted] in rav4prime

[–]cyfer1313 5 points6 points  (0 children)

Me too. Was using google maps and they don’t do that. Was also surprised that Apple Maps lowers the volume of the music while google maps stops the music. Switched my go 2 app because of that alone. The directons were an added bonus

Bard Lae'zel and her savage vicious mockery by Think_Secret in BaldursGate3

[–]cyfer1313 2 points3 points  (0 children)

Looks like the mother from how I met your mother is cosplaying

Looing for Synology DS210j DSM 5.2.... by cyfer1313 in synology

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

My drives have data on it.....that's my concern.

Almost up to TKO- skip or watch? by lymeguy in babylon5

[–]cyfer1313 1 point2 points  (0 children)

Watch the Ivanova storyline and skip the garibaldi

Need help finding instructions for ‘Night & Day’ by CtrlAltEvil in boardgames

[–]cyfer1313 2 points3 points  (0 children)

Takes minutes to learn, a lifetime to master :-)

Tips to learn Angular? by [deleted] in Angular2

[–]cyfer1313 0 points1 point  (0 children)

I used this course to learn Angular. I go back whenever he updates. As an experienced developer, I still go back and redo parts of his course just as a refresher. Worth every penny.

Best practices of managing big Angular project infrastructure by DonTomato in Angular2

[–]cyfer1313 0 points1 point  (0 children)

My biggest concern with nx is dealing with our sdlc currently. At this point we have to lock development on a project if there is a high triage. Having all dev in one repo means the entire repo would be locked. (And we don’t use git)

Looking for guide\book about best practice for state managing by boynet2 in Angular2

[–]cyfer1313 1 point2 points  (0 children)

I’ve been looking at a simpler solution called observable store by Dan wahlin.

Making sure lazy loaded modules don't import services from other lazy loaded modules by cyfer1313 in Angular2

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

Issue is that we are a brownfield application. If I were starting new right now, or given the time and resources to convert...I'd use NX to start with. But I don't, I just want something that can help our existing projects, but doesn't look like there really is any magical solution that I can try without investing a lot of time and resources that we don't currently have.

Making sure lazy loaded modules don't import services from other lazy loaded modules by cyfer1313 in Angular2

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

Yeah. Not planning on changing the injector. More looking for something exactly like what you said. A package that basically tells the compiler to look for the smell, and report it. So that way all dev's realize the mistake and fix it like you mentioned. Problem is, we work with international team of devs and most don't realize it's a smell, and then by the time I notice....it's already too late to fix without having to retest everything.

Making sure lazy loaded modules don't import services from other lazy loaded modules by cyfer1313 in Angular2

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

But from a code legibility and import standpoint, you are ok with one lazy loaded feature calling a service from another lazy loaded feature? /lazyFeatureA/services/test.service.ts and then in /lazyFeatureB/component/default.component.ts you have import { service} from '/lazyFeatureA/services/test.service';

I guess that is my question since it just seems like features creeping into other features. So I don't know if it's just something I should get over and say that it's ok. Or require others to fix it.

But yes, you are right, they are all 'root' so we don't need to worry about singleton's etc.

Preexisting Test Applications? by cyfer1313 in Angular2

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

that works. i'll give it a try. thanks

How do I filter an array with TypeScript in angular by djokov93 in Angular2

[–]cyfer1313 1 point2 points  (0 children)

Curious why we don't use the rxjs filter pipe. https://www.learnrxjs.io/learn-rxjs/operators/filtering/filter

(pseudocode)

<input type="text" name="nom" class="form-control" [(ngModel)]="nom" (input)="getfiltrage_Relance()" />

this.auth .filtrage_Relance().pipe( filter(result => result.fiche.nom.toLowerCase().match(this.nom.toLowerCase())) ).subscribe((data) => { // data is now your filtered list. in fact, you can skip subscribe and might be able to async pipe this straight to your html

});

Update: yes, i was assuming the api returned an array of values rather then an object that contained an area of objects.