Durchsuchen nach
Schlagwort: JSON

My little To-do list with HTML5/CSS3 and JavaScript

My little To-do list with HTML5/CSS3 and JavaScript

Beside the Linux stuff, I try to do something more easy, even on a static (no online) webpage. Only for me. How it looks like The code HTML5 CSS3 /* aufgabenliste.css – finale, saubere Version */ body { margin: 0; min-width: 250px; font-family: system-ui, -apple-system, sans-serif; background: #f5f7fa; color: #333; } h2 { color: white; margin: 0 0 20px 0; font-size: 2em; } /* Box-Modell */ * { box-sizing: border-box; } /* Zähler */ #counter { margin: 20px 0; font-size:…

Weiterlesen Weiterlesen

MongoDB – simple queries in the Mongoshell

MongoDB – simple queries in the Mongoshell

What is MongoDB? MongoDB is a document-oriented NoSQL database that stores data in flexible, JSON-like documents, allowing for easy storage and retrieval of structured, semi-structured, and unstructured data. Unlike traditional relational databases that use tables and rows, MongoDB uses collections and documents, making it more adaptable to changing data structures. It was designed to handle large volumes of data and is known for its scalability, flexibility, and ease of use.  What is Mongoshell? The MongoShell is an interactive command window for the MongoDB database….

Weiterlesen Weiterlesen

Fedora 42 Backup script for MongoDB database

Fedora 42 Backup script for MongoDB database

What is the advantage of this script? What is MongoDB? MongoDB is a document-oriented NoSQL database that stores data in flexible, JSON-like documents, allowing for easy storage and retrieval of structured, semi-structured, and unstructured data. Unlike traditional relational databases that use tables and rows, MongoDB uses collections and documents, making it more adaptable to changing data structures. It was designed to handle large volumes of data and is known for its scalability, flexibility, and ease of use. MongoDB is open-source and has a wide range…

Weiterlesen Weiterlesen

Linux Bash: Befehl, um das Seitenverhältnis eines 4K-Videos zu überprüfen.

Linux Bash: Befehl, um das Seitenverhältnis eines 4K-Videos zu überprüfen.

Was ist ffprobe? ffprobe ist ein Werkzeug, das Informationen über Mediendateien anzeigt. Es „spioniert“ in Video- und Audiodateien, um dir Details wie Videoauflösung, Audioqualität oder verwendete Codecs zu verraten. Denk an es wie einen Detektiv für deine Mediendateien. Was ist jq? jq ist ein Werkzeug, um JSON-Daten zu bearbeiten und zu filtern. JSON ist eine Art, Daten zu speichern, die oft von Webseiten oder Programmen verwendet wird. jq hilft dir, diese Daten lesbar zu machen oder nur bestimmte Teile davon…

Weiterlesen Weiterlesen