Categories
Opinions

A Case for tailwind

I am gonna start fresh, I am will write semantic CSS. The You have a blog title that is different than other titles, little bigger, with underline. So I will use class like .blog-title now all of the styles goes here. But then you  have to have design .page-title, another heading that might share styles […]

Categories
Opinions

Some Angular Concepts

What do you mean by adding behavior routerLink is a special attribute called directive, they are good at adding behaviors to html element or components. This <a> tag used to link to different page. But now it links to HomeComponent because of routerLink. We changed the behavior of <a> tag. Dependency Injection It’s a design […]

Categories
Opinions

Stow Problem ignore files

I wrote about stow before, but I was trying to use after six months, I thought it would be straight forward. But not at all. That article is missing a lot of details for example it says type the following command But type this command where, that I found that I’ve to be in .dotfiles. […]

Categories
Java Script Opinions

Why redux pattern enforces Functional Programming

I am trying to go with the route of vanilla programming for my reactive needs. Hence I choose Proxy, A wrapper over a object, where we can listen to changes in properties. It has some traps, like get, set, has and so on. We are more interested in get so we can use it to […]

Categories
Java Script Opinions

Release the thread

Changes in properties of element or manipulating the children elements will trigger updates in UI when you release the three is virtual DOM really fast? React claims that its virtual DOM implementation is proved to be faster than changing real Dom, where 10 changes are collected and real DOM is updated at once hence faster. […]