sisrar.comFind Data in MongoDb Using Mongoose, Express JS Routes and $text OperatorSetup First, install the necessary packages with: npm install express cors mongoose Code Then, add dependencies to server.js create the database schema and the name of the collection, create an Express.js server, and connect to MongoDB: const express...Dec 3, 2020·3 min read
sisrar.comHow to Hide navbar & Footer on Authentication Pages in ReactJsSo, Tayday Iwas working on one of my projects and I felt that this is simple script that can help many beginners out there building up their own projects and so I decided to put this here. Basically, I am Hiding My Navigation bar and Footor Bar on my...Nov 29, 2020·1 min read
sisrar.comObject, property, and method in JavaScriptIt all start with an object. An object is a thing that we interact with, it has properties and methods. The object is the heart of object-oriented programming, not only for JavaScript but also for Python, Swift, Java and others. Stop thinking about i...Oct 7, 2020·3 min read
sisrar.comJavaScript - USe .map(), .reduce(), and filter().map() Let me explain how it works with a simple example. Say you have received an array containing multipe objects each one representing a person. The thing you really need in the end, though, is an array containing only the id of each person. // Wh...Oct 6, 2020·5 min read
sisrar.comBrowser PythonThe other day I start playing around with python some more and took a look at gtk and webkit. GTK is a gui thing(IDK what else to call it) for Python, like Swing is to Java. it comes installed on most linux systems and is pretty nice. Webkit is a nic...Oct 5, 2020·3 min read