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

Interviewer: Can “x !== x” Return True in JavaScript?

Preface Recently I was asked a few strange interview questions. They are different from the regular questions: these interview...

Apr 29 · 1 min read >

O.O.P in Javascript

Object-oriented programming is simply a programming pattern that is based on the concept of different types of objects and their...

Apr 25 · 3 min read >

How to manually bootstrap an Angular application

Official Angular documentation states that to bootstrap an application you have to put the following in the main.ts file: The first...

Apr 22 · 3 min read >

How to compile SASS into CSS and watch for changes?

SASS extends CSS which means that you can have all the features of CSS plus the features of SASS...

Apr 18 · 1 min read >

Find() vs. Filter() in JavaScript

When we handle an array in JavaScript, we may need to find a single item in the array collection....

Apr 15 · 1 min read >

Angular: Pipe testing with Jasmine & Karma

Pipes are great tools provided by the Angular framework. Their purpose is to transform strings such as dates, currencies,...

Apr 12 · 2 min read >

npm install — How To Minimize Its Use Under Specific Conditions

Requirements: Are you working on a single project? Do you have to run npm install each time you create a new...

Apr 4 · 1 min read >

5 JavaScript console methods that you should know

For debugging or showing the output we use the console method in javascript. most developers just use the console.log()...

Apr 1 · 45 sec read >

7 Alternatives to the div Tag in HTML

In the early stages of learning how to structure an HTML document, it’s not uncommon to end up with...

Mar 25 · 6 min read >

SQL UPDATE and DELETE Commands

UPDATE Statment UPDATE statement is a SQL DML statement used to change and update the data in tables. We will explain the UPDATE statement...

Mar 25 · 1 min read >