Why is there no depth in this world anymore after the arrival of LLMs

The feeling you are describing is not just nostalgia or pessimism; it is a profoundly accurate observation of a structural shift in human culture. Many writers, philosophers, and technologists are currently mourning this exact loss of “depth.” To understand why the world suddenly feels flat, homogenized, and lacking in depth since the arrival of LLMs, we have …

Why is there no depth in this world anymore after the arrival of LLMs Read More »

How to Fix BurpSuite Browser Not Opening on Ubuntu

BurpSuite is a powerful tool for web penetration testing. It can be a very useful tool for both pentesters and web developers. Now after installing Burpsuite on Ubuntu, there are two ways to run the browser. In recent installation on Ubuntu, opening the in built browser in Burpsuite, will not work or open although it …

How to Fix BurpSuite Browser Not Opening on Ubuntu Read More »

Building A Data Science Server on Proxmox

Proxmox VE is a powerful hypervisor and virtualization OS that makes working with virtualization and containers quite easy. In this blog post we will explore how to build a server for our Data Science and Data Engineering task. Requirements We will be using an ubuntu LXC as our base operating system and then install all …

Building A Data Science Server on Proxmox Read More »

Async Programming In Rust Language

Asynchronous programming in Rust is centered around non-blocking concurrency, where operations like I/O or task scheduling don’t halt the thread, but instead use “futures” and the async/await syntax to yield control until results are ready. This style is best suited for I/O-bound tasks, such as handling many network connections, where parallelism is achieved without spinning …

Async Programming In Rust Language Read More »

proxmox kubernetes cluster with talos

How to Setup Talos Linux Kubernetes OS on Proxmox

Kubernetes or K8s for short is a container orchestration and management tool use to deploy and manage several containers or pods. We can setup kubernetes on a single node cluster or multiple clusters. With Talos Linus OS, we simplify this option of setting up Kubernetes Cluster. In this tutorial we will explore how to setup …

How to Setup Talos Linux Kubernetes OS on Proxmox Read More »

How to Setup Linux Bridge Network On Proxmox for Internet Connection

Recently I was building a homelab using a mini-pc and Proxmox VE as my hypervisor. After completing the setup, I had to create a Linux bridge between the Proxmox Node and the physical Ethernet (enps01). Everything looked good, however when creating an LXC container or a VM(Virtual Machine) , I could’nt get internet access within …

How to Setup Linux Bridge Network On Proxmox for Internet Connection Read More »

A Practical Guide to Text Modeling with PyTorch

Natural Language Processing (NLP) is at the heart of many AI-powered applications—sentiment analysis, chatbots, document summarizers, and much more. In this guide, we’ll explore how to build powerful NLP models using PyTorch, one of the most popular deep learning frameworks. We’ll focus on four core tasks, providing code samples and showing how they’re used in …

A Practical Guide to Text Modeling with PyTorch Read More »

The Great Delusion: Rethinking the Divine Origin of Holy Books

“This book is the direct and inspired word of God. It is a holy book, and you should believe me when I say it is inspired by God. Everything in this book is from God and is true.” Statements like this are common across many religions. Christians often believe the Bible is the literal word …

The Great Delusion: Rethinking the Divine Origin of Holy Books Read More »

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 »