- Introduction
Why This Series Exists Most tutorials teach you how to code. They walk you through syntax, frameworks, and algorithms. That’s valuable, but it’s only a fraction of what building real software demands. When you sit down on a professional team and someone says “we need to build this,” the gap between…
- Elasticsearch – Installation and First Connection
Getting 8.x running and talking to it, including the part that changed and breaks every older tutorial: security is on by default, so the plain docker run you were given in 2020 now answers 401. Docker Compose with sensible settings, what the enrollment token and elastic password are for, checking cluster health, and connecting the Python client with a timeout that will not take your API down.
- CSS Shadows
Text Shadow text-shadow property applies shadow to text. <div class=”row”> <div class=”col-4″> <h4>Text Shadow</h4> </div> <div class=”col-8″ id=”textShadow”> Hi my name is Folau </div> </div> <style> #textShadow{ /* text-shadow: h-shadow v-shadow blur-radius color h-shadow – The position of the…
- Linux Zip
Zip Zip is a compression tool. Zip files have the .zip extension. zip is very useful when you are on a limited bandwidth and need to send a big file over the internet. zip {options} {zipFilename} {files…} zip zipfile.zip test.txt test1.txt unzip {zipFilename} unzip myfile.zip Gzip gzip command…
- Linux Vi Editor
vi stands for visual editor and comes as one of default applications in every Linux/Unix system. The vi editor has two modes. Command Mode: In command mode, actions are taken on the file. The vi editor starts in command mode. Here, the typed words will act as commands in vi editor. To pass a…