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

5 Myths About Developing Your Startup’s MVP

If you aren’t embarrassed by your first product, you’ve launched it too late. I stumbled into entrepreneurship by accident,...

May 18 · 5 min read >

Time complexity of for loop – O(1) O(n) and O(log n)

Time complexity of for loop can be anything O(1), O(n), O(log n) depending upon the loop conditions and code...

May 12 · 59 sec read >

Reverse an array using JavaScript

In this article, we look at different methods to reverse the array elements using JavaScript. Using the reverse method...

May 5 · 1 min read >

How To Create A Queue In TypeScript?

When preparing for a coding interview, you may have encountered the queue data structure and wanted to implement it...

Apr 30 · 1 min read >

How does the TypeScript Partial type work?

The Partial<Type> type is a built-in TypeScript utility type that takes a Type and creates a new type with all Type‘s properties set to optional. (I...

Apr 25 · 2 min read >

How To Add Multiple Constructors In TypeScript?

If you come from a C# background, you may want to add multiple constructors to a TypeScript class. Although TypeScript...

Apr 25 · 2 min read >

Top 9 Differences Between Type VS Interface in TypeScript

In TypeScript, both an interface and a type alias can be used to describe a new named type. Since in most cases, almost...

Apr 18 · 3 min read >

Let’s understand Asynchronous programming in Javascript (async/await)

Introduction In a web application, there can be many events occurring simultaneously. For example, one section of the page...

Apr 12 · 4 min read >

Most common Node.js interview questions

In this article, I will try to include some of the most common Node.js interview questions with their answers....

Apr 6 · 1 min read >

Javascript vs Typescript: which is the best for you?

As most of you know, Javascript is a popular programming language primarily used for web development. It is quite...

Mar 31 · 2 min read >