Engineering

Engineering

1038 bookmarks
Custom sorting
Making Charts with CSS | CSS-Tricks - CSS-Tricks
Making Charts with CSS | CSS-Tricks - CSS-Tricks
There are many ways to make visual representations of data: bar charts, line graphs, scatter diagrams, sparklines... not to mention the many ways in which you
·css-tricks.com·
Making Charts with CSS | CSS-Tricks - CSS-Tricks
Style Guide | Redux
Style Guide | Redux
Redux Style Guide: recommended patterns and best practices for using Redux
·redux.js.org·
Style Guide | Redux
jestjs - testing private functions in typescript with jest - Stack Overflow
jestjs - testing private functions in typescript with jest - Stack Overflow
In the below code my test case was passed as expected but i am using stryker for mutation testing , handleError function is survived in mutation testing , so i want to kill the mutant by testing the
·stackoverflow.com·
jestjs - testing private functions in typescript with jest - Stack Overflow
Duende Software
Duende Software
We help companies using .NET to build identity and access control solutions for modern applications.
·duendesoftware.com·
Duende Software
Test the Preview Vercel Deploys | Better world by better software
Test the Preview Vercel Deploys | Better world by better software
The site Vercel deployment Index page Preview deploys Testing Testing previews Bonus: print the GitHub event and values GitHub Checks Cypress Dashboard Cypress GH Integration More info The s
·glebbahmutov.com·
Test the Preview Vercel Deploys | Better world by better software
TypeScript: Low maintenance types
TypeScript: Low maintenance types
I write a lot about TypeScript and I enjoy the benefits it gives me in my daily work a lot. But I have a confession to make, I don’t really like writing types or type annotations. I’m really happy that TypeScript can infer so much out of my usage when writing regular JavaScript so I’m not bothered writing anything extra.
·fettblog.eu·
TypeScript: Low maintenance types
Angular - Route
Angular - Route
Angular is a platform for building mobile and desktop web applications. Join the community of millions of developers who build compelling user interfaces with Angular.
·angular.io·
Angular - Route
Introducing Zero-Bundle-Size React Server Components – React Blog
Introducing Zero-Bundle-Size React Server Components – React Blog
2020 has been a long year. As it comes to an end we wanted to share a special Holiday Update on our research into zero-bundle-size React Server Components. To introduce React Server Components, we have prepared a talk and a demo. If you want, you can check them out during the holidays, or later when work picks back up in the new year. React Server Components are still in research and development. We are sharing this work in the spirit of transparency and to get initial feedback from the React…
·reactjs.org·
Introducing Zero-Bundle-Size React Server Components – React Blog
24 days of #JavaScriptmas
24 days of #JavaScriptmas
Level up your JavaScript skills with a daily coding challenge from December 1st to 24th. Every day, we'll pick a winner who gets Scrimba Pro for a year (worth $150). On Christmas Eve, a winner gets $1000.
·scrimba.com·
24 days of #JavaScriptmas
TILs From the Epic React Advanced Hooks Workshop :: rockyourcode
TILs From the Epic React Advanced Hooks Workshop :: rockyourcode
Here are some notes from the Epic React workshop Advanced Hooks. Function Dependencies in useEffect We use the useEffect hook to run side effects in React. The hook has a “dependency array” which tells it when to fire. That works fine if the trigger is a variable. Like this: const [count, setCount] = useState(0) React.useEffect(() = { // Update the document title using the browser API document.title = `You clicked ${count} times` }, [count]) //
·rockyourcode.com·
TILs From the Epic React Advanced Hooks Workshop :: rockyourcode