Luci

Romania

I am a multidisciplinary designer and developer with a main focus on Digital Design and Branding, located in Cluj Napoca, Romania.

       

Throughout my 14 years of experience I have worked in various agencies as a web designer and developer.
I create and build websites to communicate a feeling of joy and comfort that shall invite the user to come back. For me, that means that not only graphical work, but also the frontend development like HTML & SCSS, JS, and WordPress or Craft CMS (backend, i know) are part of my field of activity.

The development section is really important to me, because I thereby constantly improve my skills and stay up-to-date with new methods and technology. Moreover, it presents a good change to the design part.

147 stories by Luci

9 Things You Should Do After Deploying the Frontend

I have never deployed my code and passed all the below-mentioned 9 steps at once. There were always things...

Dec 16 · 4 min read >

How to Use Context API in React

What is context ?In laymen term, Context means “the situation in which something happens or that caused something to...

Dec 12 · 3 min read >

How to Add Months to a Date in JavaScript

1. Date getMonth() and setMonth() methods To add months to a Date in JavaScript: For example: Our addMonths() takes a Date object and the number of months to add as...

Dec 8 · 1 min read >

Create a Proxy Server For APIs

Creating a Proxy Server in Typescript Today, we will create a proxy server in the Nodejs Typescript version. We...

Dec 6 · 3 min read >

Clean Code in TypeScript

Don’t add unneeded context If your class/type/object name tells you something, don’t repeat that in your variable name. Should...

Dec 2 · 1 min read >

Why does JavaScript’s parseInt(0.0000005) print “5”?

Why does parseInt(0.0000005) in JavaScript print 5? An amazing question! Preface Recently, I have had a strange problem when...

Nov 28 · 1 min read >

Javascript Immediately Invoked Function Expressions (IIFE)

Immediately invoked function expressions, or IIFE, are functions which are run as soon as you define the function. You...

Nov 25 · 1 min read >

Angular Basics: The CLI and Components

So you’ve scoured the internet and decided that it is worth your time and effort to learn Angular, an...

Nov 21 · 7 min read >

How to pass a value to onClick event handler in React.js

The problem If you ever tried to pass a parameter to onClick event handler, you know that it is not straightforward....

Nov 18 · 3 min read >

Modern JavaScript Shorthands

Short hand alternatives can help reduce many lines of code and save plenty of time. In this article I...

Nov 14 · 2 min read >