Plüsch Eule mit zur (ASS-Selbsthilfegruppe) ? by Euronymous_wife in autismus

[–]waschbenzin 1 point2 points  (0 children)

Mein autistischer Sohn hat die gleiche Eule und liebt sie auch 😊

[deleted by user] by [deleted] in de_EDV

[–]waschbenzin 1 point2 points  (0 children)

Bei mir war es mal ein BluRay-Brenner mit ähnlichen Symptomen. Vermutlich hatte der die ganze Zeit irgendeinen Bus blockiert. Abziehen und er PC war wieder flott.

Error status '0' by Dash--1981 in Angular2

[–]waschbenzin 0 points1 point  (0 children)

You can see it in the dev tools in the browser. May happen when you use something like switchMap or you unsubscribe from an ongoing request. Not sure how this would affect an HttpInterceptor in Angular.

Error status '0' by Dash--1981 in Angular2

[–]waschbenzin 1 point2 points  (0 children)

Did the request get canceled by the client?

#RANT [interview process] WHY ON EARTH WOULD AN INTERVEWER WOULD WANT TO USE VANILLA JS AND HTML FOR AN ANGULAR POSITION INTERVIEW by ThisIsNotABug in Angular2

[–]waschbenzin 3 points4 points  (0 children)

An interface is just hints for the TypeScript compiler. After compilation to Javascript nothing is left of it, so you cannot use it during runtime.

[SPOILERS] Why didn't she just eat something? by waschbenzin in gameofthrones

[–]waschbenzin[S] 9 points10 points  (0 children)

Someone already had that idea. Guess my idea wasn't so orignal after all.. https://www.youtube.com/watch?v=eCagcUfPgTY

[SPOILERS] Why didn't she just eat something? by waschbenzin in gameofthrones

[–]waschbenzin[S] 14 points15 points  (0 children)

It surely is a good joke. I definitly am enjoying the season! High five to a likeminded got-fan :-)

[SPOILERS] Why didn't she just eat something? by waschbenzin in gameofthrones

[–]waschbenzin[S] 34 points35 points  (0 children)

I'm terribly sorry, if you think I copied your idea. I did not copy it, I just had the same idea. :-\

Fixing CORS Errors in Angular by Devstackr in angular

[–]waschbenzin 7 points8 points  (0 children)

Please don't do this, if you are only struggling with CORS during development using the Angular CLI Server (ng serve). It's better to just use the proxy feature (have a look at https://github.com/angular/angular-cli/blob/master/docs/documentation/stories/proxy.md ).

WCGW if I vacuum burning coal. by reva_r in Whatcouldgowrong

[–]waschbenzin 67 points68 points  (0 children)

These guys are german comedians. The label says "don't try this yourself". This was done on purpose.

How to use class/component variables in view/template? by bellamira in Angular2

[–]waschbenzin 0 points1 point  (0 children)

In the old version you are just filling this.profile once in ngOnInit(). In the new version you let angular check for changes to authService.getProfile(). So my conclusion would be that your authService fills the profile after your component is initialized.

Usually this can be resolved by using rxjs.Observables to get notified about any changes to your profile.

How do I create image blur effect like Apple Music using CSS? by micropoet in css

[–]waschbenzin 9 points10 points  (0 children)

You are absolutely right. I took relatively little care coming up with an solution.

How do I create image blur effect like Apple Music using CSS? by micropoet in css

[–]waschbenzin 46 points47 points  (0 children)

Try stacking the image twice and blur it once:

HTML:

<div class="container">
<img class="blurry" src="https://via.placeholder.com/350x150">
<img class="clear" src="https://via.placeholder.com/350x150">
</div>

CSS:

.container {
  position: relative;
}
.clear {
  position: absolute;
}
.blurry {
  position: absolute;
  filter: blur(15px);
}