Posts

The Muggy Weather Robotics Duo

Image
 The Muggy Weather Robotics Duo A C++ System That Thinks, Feels (Sensors!), and Acts Humidity is like the quiet character in the weather story that actually runs the show. On muggy days, everything feels heavier—breathing, drying laundry, running machines, even keeping a data center cool. For people, it’s about comfort and health; for machines, it’s about performance and reliability; for plants and buildings, it’s about moisture balance and mold risk. In robotics and automation, muggy weather isn’t just a nuisance—it’s a signal . It tells your systems when to ventilate, when to dehumidify, when to throttle physically demanding tasks, and when to take preventative maintenance actions. Today, we’ll build a two-program C++ system that “understands” muggy weather: Program A — sensor_hub.cpp A sensor-side program that generates (or ingests) a live stream of environmental data (temperature, relative humidity, pressure, CO₂, VOCs). Think of it as your robotic nose and skin , con...

oracle dba: Entity relationship modeling conventions

oracle dba: Entity relationship modeling conventions : Entity  singular,unique name uppercase soft box synonym in parenthesis  Attribute singular name lowercase mandatory...

Entity relationship modeling conventions

Entity  singular,unique name uppercase soft box synonym in parenthesis  Attribute singular name lowercase mandatory marked with"*" optional marked with "o"  symbol ........................... description  dashed line...........maybe solid line................mustbe crows foot.............one or more single line...............only one

Entity-relationship model

In an effective system,data is divided into categories or entities.An entity relationship (ER) model is  an illustration  of  various entities in a business and the relationships among them .ER models separate  the information required  by a business from the activities performed  within the business .

oracle dba: Oracle.............data models

oracle dba: Oracle.............data models : Oracle.............data models      model of   system in clients  mind       entity model of clients  model      table mode...

Oracle.............data models

Oracle.............data models      model of   system in clients  mind       entity model of clients  model      table model of entity model     tables on disk of Oracle server  Models are the cornerstone of design.Systems engineers or designers develop models to explore ideas and improve db design.Models help communicate  the concepts that are in peoples minds.They can be used to do the following: communicate describe categorize investigate evolve analyze The objective is to create a model that fits these uses ,can be understood by end users.and contain sufficient detail for a developer to build a database system.

oracle dba: Definition of a Relational Database

oracle dba: Definition of a Relational Database : Definition of a Relational Database A relational db uses relations or two-dimensional tables to store information.e.g you might want to...

Definition of a Relational Database

Definition of a Relational Database A relational db uses relations or two-dimensional tables to store information.e.g you might want to store information  about all the employees in your country. In a relational db you create several tables to store different pieces of info about your employees  such as an employees table, a department table and a salary table.