Tweetovi
- Tweetovi, trenutna stranica.
- Tweetovi i odgovori
- Medijski sadržaj
Blokirali ste korisnika/cu @CooperDev
Jeste li sigurni da želite vidjeti te tweetove? Time nećete deblokirati korisnika/cu @CooperDev
-
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi
-
Turns out a daily cycle really does add up over the course of the year!
pic.twitter.com/eH4C09VI3w
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
So proud of my company for raising so much for a great cause!https://twitter.com/GRESEARCHjobs/status/1222835184036466688 …
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Great article from
@danm_t showing how ngtemplateoutlets can be used to improve accessibility in#Angular! I love this feature!https://dev.to/thisdotmedia/make-it-accessible-no-more-walls-of-text-in-angular-33jl …Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Stephen Cooper proslijedio/la je Tweet
Mark your calendars: we're back on 13 & 14 October 2020!
Stay tuned for the official launch of Early Bird tickets, CFP, scholarship scheme and our first announced speakers in March.Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Here is the code for easier copy //NgRx Meta Reducer to assert always in NgZone export function assertInNgZoneMetaReducer(reducer) { return function(state: State, action: Action): State { NgZone.assertInAngularZone(); return reducer(state, action); }; }
Prikaži ovu nitHvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
This
#ngrx meta reducer would have saved me a lot of debugging time! It immediately pin points the event that was being fired unintentionally outside of Angular's zone. https://twitter.com/TheAngularDev/status/1221097078354477060 …pic.twitter.com/8pFCEt7rzX
Prikaži ovu nitHvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Maybe a silly question but when writing a post in http://dev.to how do you post it under the Angular topic and have this appear at the end of your post? Is it a restricted option?pic.twitter.com/lWXWsSZjFE
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Well I completely missed being able to do that with tap!
https://twitter.com/JonRistaDev/status/1220516402353754112 …
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Stephen Cooper proslijedio/la je Tweet
I have written up today's debugging efforts. Thanks for your input and suggestions!https://dev.to/cooperdev/getting-in-the-angular-zone-1fbf …
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Wonder if there is a way to respond to the 'http://hidden.bs .dropdown' event without jQuery that would avoid the need for ngZone?
Prikaži ovu nitHvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Got it! Deep within a shared component the update event that triggered the output originated within jQuery callback so Angular was not aware of the change. Wrapping in ngZone fixes the issue.pic.twitter.com/0FKYVcWcrK
Prikaži ovu nitHvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Hmmm, by fixing the need for a CPU draining setinterval, I have unearthed a change detection issue. Turns out that setinterval had the side effect of making sure the template got updated!
Now got to track down the real problem...Prikaži ovu nitHvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Great success swapping out jQuery charts for the corresponding Angular
@KendoUI components in my Angular app! Memory leaks gone, custom resize logic gone, improved perceived performance too! Also much easier to develop with!
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Just got my ticket to
@rxjslive and the workshop by@Michael_Hladky! Looking forward to it already!
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Stephen Cooper proslijedio/la je Tweet
Do you think you can solve our January maths puzzle? Try now:http://bit.ly/GR_January_maths_puzzle …
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Stephen Cooper proslijedio/la je Tweet
New shot by
@CooperDev! Click on the link below to learn how to restructure your#TypeScript project with ease using path mappings
https://www.educative.io/edpresso/restructure-with-ease-thanks-to-typescript-path-mappings …Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Great article on the creator functions! Learnt that the on method used within createReducer can take multiple actions and you can list an action in multiple on methods!
https://twitter.com/tim_deschryver/status/1216621039184236544 …Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Stephen Cooper proslijedio/la je Tweet
(uh, I was wondering about a way to do this a couple of times now... and the solution is so simple
)
So, #TypeScript tip for today is: You can access the type of what's in a specific Array type by using the `number`!pic.twitter.com/9Mu0yNbICz
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi -
Stephen Cooper proslijedio/la je Tweet
“Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.” aka Kernighan’s Lawhttps://blog.acolyer.org/2020/01/08/ironies-of-automation/ …
Hvala. Twitter će to iskoristiti za poboljšanje vaše vremenske crte. PoništiPoništi
Čini se da učitavanje traje već neko vrijeme.
Twitter je možda preopterećen ili ima kratkotrajnih poteškoća u radu. Pokušajte ponovno ili potražite dodatne informacije u odjeljku Status Twittera.

Ever wanted to just log the errors in your RxJs pipes? This is, in fact, entirely possible with the existing `tap` operator! It actually takes three possible parameters:
next
error
complete
You can handle all three of these possible notifications, or any combination:
Blogged "