tech/webdev magazine

March 3, 2021

Better git diffs with FZF

Wednesday, March 03, 2021 Teklinks

The setup instructions in this article are for Mac, but you should be able to do this on Linux and Windows Subsystem for Linux. Hat tip to Kevin LaFlamme for showing what’s possible with FZF. You should follow him here. Sometimes I find the git diff command a little inconvenient.

Full article

React and TensorFlow.js

Wednesday, March 03, 2021 Teklinks

I explain how to create React app with Yarn and how to integrate TensorFlow.js into that app. A simple model is trained with TensorFlow.js to give you a good starting point. I also show how to run the predict function and read the output.

Full article

Why Frontend Developers Need to be Webpack Experts

Wednesday, March 03, 2021 Teklinks

Modern web applications are not just about developing core functionalities. We also should pay attention to factors like application performance, development productivity, and efficiency to get the maximum out of our effort.

Full article

March 1, 2021

The easiest way to check all your npm dependency licenses ✅

Monday, March 01, 2021 Teklinks

Developing software especially with JavaScript is super easy to start with thanks to npm and the fast way of installing packages. Thanks to EU-GDPR and internal discussions I was curious what kind of licenses I’m using and also if there are some conflicts (not compatible with MIT).

Full article

How to Persist Your Redux Store

Monday, March 01, 2021 Teklinks

Redux simplifies state management in complex applications. As the Redux store contains your app’s entire state, persisting it lets you save and restore the user’s session. We’ll assume you’re familiar with Redux fundamentals.

Full article

February 27, 2021

Understanding Rendering in React ♻ ⚛️

Saturday, February 27, 2021 Teklinks

Hey there! 👋🏼 I'm Mateo Garcia, I co-organize a community in Medellin, Colombia called React Medellin. This year I started a series of posts called 'Coding with Mateo'; My first post was about 6 ways to write a React component.

Full article