HowTo

How to Build A Useful Chrome Extension

Google Chrome extensions are powerful tools to personalize and enhance your browsing experience. In this tutorial, we’ll walk you through building a text analyzer Chrome extension similar to our prior Firefox example, but tailored to Chrome’s requirements—including use of Manifest V3, background service workers, popups, context menus, and notifications. Chrome Extension Basics: What Files Do …

How to Build A Useful Chrome Extension Read More »

How to Build Browser Extensions for Mozilla Firefox

Web Browsers are the gateway and portals to the world of the internet. Every tool, service that can be assessed online can be reached through the web browser. In this tutorial we will explore how to build useful web browser extensions so that we can use them when navigation our web surfing. Think of browser …

How to Build Browser Extensions for Mozilla Firefox Read More »

Jorm.jl – An Object Relational Mapper for Julia

Object Relational Mapping (ORM) is a powerful technique that bridges the gap between object-oriented programming languages and relational databases. It simplifies the work of developers when dealing with SQL related databases, making it easier. Jorm.jl is a simple ORM tool designed to simplify interactions between Julia applications and relational databases. This article will delve into what Jorm.jl is, …

Jorm.jl – An Object Relational Mapper for Julia Read More »

Implement Higher Order Functions in Go Lang – Map, Reduce and Filter

Higher-order functions are a fundamental concept in functional programming, and Go is no exception. In some time ago we explored how to implement some of the higher order functions in Python,you can check out the video here . In this tutorial we will learn how to implement them in Go. In Go, higher-order functions are …

Implement Higher Order Functions in Go Lang – Map, Reduce and Filter Read More »