How to run serve with HTTPS

December 17, 2022

What is serve ? serve is a package aims to easily run HTTP server for serving static files, such as HTML, CSS, JavaScript, and images. It…

Be aware of css animation

January 22, 2022

Be aware of the "dark side" of css animations fill-mode . We usually use "fill-mode" when we want the element the browser just animated to…

How to post code snippet and run it

March 30, 2020

Highlight the code Jekyll supplys a tag called highlight . It can accept some parameters - what's the code language and whether show lines…

Notifications in Chrome extension

September 05, 2019

Notifications are great. When an app wants to take its user attention, usually when a (long) process was done and maybe the user moved to…

Test JSON schema with AJV and Jest

March 20, 2019

While I worked on a project I was involved (Coding-Coach if you must know 😉) I faced with an interesting challenge. The project users…

Jekyll Tips

October 28, 2018

To present tag posts count use tag[1].size To display a ruby code but prevent compiler from render it, use {% raw %}

How to run tests after compile webpack

October 27, 2018

The problem I'm using webpack for compiling and bundling in one hand. In the other hand I'm using jest for testing. I want to run the…

"pointer-events: none" for children

October 03, 2018

Sometimes you want to "disable" all the elements inside a certain element. So we can easly use pointer-events: none . The problem What if…

"position: fixed" relative to parent

October 03, 2018

We all know that position: fixed is relatively to the window , right? Well, no. We can put it inside a position: relative element. What…

Make links work inside SVG

May 14, 2018

First of all, we can add links to a SVG file! Did you know? Well, I didn't. It's like the old good image map ( <map /> tag, remember? If…

Npm package - Placeholder for select2

April 11, 2018

A tiny library to animate the placeholder of the beloved select2 plugin Docs https://moshfeu.github.io/select2-placeholder-transition/

How To Develop a Telegram chat-bot

April 10, 2018

Chatbots are basically tools which allow to a server to "join" to a chat conversation - "listen" and "post" messages. Once the bot (the…

© 2022 - Moshe Feuchtwander