Welcome on my new blog
On this blog, I will try to show every day of my 100 days challenge. My goal is to create a nice Agenda app in React Native, which I’ve been for almost a year now.
If you’re interested in my journey, check my blog daily for new posts!


Something about me
Hello, my name is Valentina, I’m 18 and I have computing as one of my A-levels. I really love coding and I do that all that time, or almost! I have a job as an App developer since the last August. In my free time I decided that I will do a 100 days challenge and share everything on this blog!
Hope you guys will enjoy reading my difficulties and my successes that I will share!
Enhancing Security in Your React Applications: Best Practices and JavaScript Solutions
The realm of web development has experienced significant strides in ensuring robust security protocols. With React's popularity for building dynamic user interfaces, it is essential to fortify security to protect both the application and its users. This article...
Bootstrap 4 Grid system
Hello devs, here is a quick tutorial on the bootstrap 4 grid system. I will try to talk on many things as possible. Bootstrap can be used in reactJS as well and it's pretty useful. One of the main things you need to learn is the grid system. It is important because...
Create a table in ReactJS
Hey devs, here is a new article.In this article I will explain how to create a table in reactJS with the use of Bootstrap. If you don't know how to use bootstrap in reactJS, you can check this previous article on how to use bootstrap with reactJS. If you want to read...
Navbar in reactJS
Hey devs, I have started a new project today and I was doing the navbar and I noticed I had never wrote an article about the navbar in reactJS, so I thought to write one. In this article I will create a navbar in reactJS how I usual do it, by using reactJS and...
Alert in reactJS
Hey devs, here is a new article on reactJS. Today we are going to add an alert in reactJS. Let's start by installing the react-bootstrap library, then we import it in our project. npm I react-bootstrap import Alert from 'react-bootstrap/Alert' Now we can start code it...
Create a search filter in React
Hey devs, today we are going to talk a bit on react and how to create a search filter in React. First of all, the important thing to understand it that react is based on javascript and the function that we use to map an array and to filter it are javascript functions....
Connect to an mySQL database in node.js
Hey devs, here is a new article. During the days I was off, I was working on a project. For this project, I worked on both the backend and the frontend. I know how to create a backend, but I'm not as good as working on the frontend, so a few things were a bit...
Animations in react native
Hey devs. I have been talking about some animations in reactJS, so now it's time to talk about some animations in react native. This library I will be talking about today, is one of my favourite. It's easy to use and understand and it can be useful when you don't want...
Create a form in react native
Hello devs! Since I've seen you really liked the form in reactJS, I decided to do the same thing in react native. Why did I choose to make a tutorial on a form? Because it's the most basic thing but at the same time the most used thing! You are going to have more than...
Exploring Hooks in React: Simplifying State and Lifecycle Management
Introduction: React Hooks have revolutionized the way developers work with state and lifecycle operations in React applications. With React hooks, you can write functional components that have the ability to manage state and lifecycle methods previously reserved for...