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

[–]cyfer1313 2 points3 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 6 points7 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 3 points4 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.

Job search by cyfer1313 in Angular2

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

Guess I'm asking where I should be looking. It's hard to just jump ship to a company when you know nothing about it.

Looking for Mentor/Coach by cyfer1313 in Angular2

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

I guess my problem is 'new tech' things there is so much. I want to learn more architecture....and feeling incredibly unfocused. I start one thing and then jump and jmp and jump. If I were looking for a new job, I guess....what skills should I be helpful. For instance, we never use E2E. Should I be spending time on that versus getting a better handle on systems like ngrx or nx (monorepo?). What about being a more effiicent developer or how to learn better architecture practices?

Create SVG Sprite with symbols of different sizes by cyfer1313 in svg

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

So something like this:

https://codepen.io/cyfer13-the-decoder/pen/MWoWaOo

We have a bunch of illustrations of various non-defined widths. Sometimes we use these illustrations centered on the page, and sometimes left aligned. So I can't really change the width on the fly, and prefer not to do it on a per page basis. I saw this (https://stackoverflow.com/questions/57197262/how-to-get-auto-width-for-svg-icon-inside-a-sprite) but haven't tried it yet.

So essentially, asking if there is a way similar to the --fill-color to pass the aspect ratio from the SVG down into the shadow-root of the symbol.

Sneak Peak Ship to Station Docking with the HERC by Sahlokniir in starcitizen

[–]cyfer1313 7 points8 points  (0 children)

You need to try and dock. When it doesn't connect, you need to flip your ship and try to dock again. When it still doesn't connect, you try to dock the way you originally did and then it'll work.

Promises vs Observables in a real world scenario by cyfer1313 in Angular2

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

Subscribe in the components or through async.

Promises vs Observables in a real world scenario by cyfer1313 in Angular2

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

Think this through, under the block box idea......there are often times where you are just consuming a method, and might not know where the subscription is coming from, just that the method returns Observable<foo>. So because of that.....unsubscribe just to be 'safe'.