#real-time-data — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #real-time-data, aggregated by home.social.
-
🌲 IA Positiva: El Guardián que no parpadea
¿Y si los árboles pudieran avisarnos antes del fuego? No es una pregunta teórica, es una infraestructura que ¡Ya está operativa!Mientras dormimos, hay una inteligencia que no parpadea. Hoy mismo, en diversas zonas de alto riesgo de California y Europa, redes neuronales entrenadas en visión computacional monitorizan millones de hectáreas a través de cámaras térmicas y satélites.
Lo disruptivo no es solo que "vean" el humo.
Lo que tengo bajo control operacional son los datos de respuesta: **0,02 segundos**. Ese es el tiempo que tarda el sistema en distinguir entre una simple nube de polvo, el vapor de la mañana o una columna de fuego incipiente. Es tecnología salvando el aire que respiramos y el hogar de miles de especies antes de que la catástrofe sea imparable.
Esto es la IA Positiva: no es un algoritmo frío diseñado para manipular tu atención o venderte publicidad. Es un escudo invisible que protege nuestros pulmones y optimiza la labor de los bomberos forestales, dándoles la ventaja táctica del primer segundo.
👉 Vía REDDIT: https://www.reddit.com/r/IA_sin_Fronteras/s/dWGe7Qrby1
#IAPositiva #MedioAmbiente #Sostenibilidad #Tecnologia #Naturaleza #Conservacion #IA #Futuro #SoberaniaDigital #Ecologia #BioTech #InteligenciaArtificial #ForestFire #ClimateChange #Innovation #GreenTech #OpenAI #EthicalAI #DigitalSovereignty #NatureProtection #TechForGood #ClimateAction #Safety #Algorithm #NeuralNetworks #FirePrevention #SmartForest #EcoFriendly #EarthDayEveryDay #Intelligence #PositiveImpact #Resilience #GlobalWarming #Systems #ActionNow #TechResponsibility #FutureIsNow #DataScience #MachineLearning #ConservationTech #EcoSystem #Oxygen #Forestry #EmergencyResponse #RealTimeData #ZeroEmissions #WildlifeProtection #PlanetEarth #SmartTechnology #AdvancedAI #CrisisManagement #GlobalSecurity #SustainableFuture #MadridTech #IAsinFronteras #JoshuaRed #Guardians #ProteccionCivil #TecnologiaSostenible #InnovacionSocial #CambioClimatico #PrevencionIncendios
-
Pro-Grade Ham Radio Displays: Integrating OpenHamClock into PiSignage
758 words, 4 minutes read time.
A Helping Hand Needed for a Fellow Programmer
I’m reaching out to see if you can lend a hand to a talented software developer who’s currently on the job hunt. With over 30 years of experience in C#, .NET (Core/6–8), REST APIs, SQL Server, Angular/Razor, Kubernetes, and cloud CI/CD, he’s a seasoned pro with a proven track record of leading modernization projects and delivering production systems.Some of his notable accomplishments include DB2 to SQL migrations, building real-time SignalR apps, and developing full-stack API and frontend projects. Based in Southeast Michigan, he’s looking for senior engineering, architecture, or technical lead roles that will challenge him and utilize his skills.
If you’re in a position to help, you can check out his resume and portfolio at http://charles.friasteam.com.
Let’s all look out for each other – if you know of any opportunities that might be a good fit, could you please consider passing this along to your network?
—
If you are a ham radio operator, you know that a HamClock is the ultimate shack companion. But what if you want to move beyond a dedicated small screen and integrate that data-rich display into a professional digital signage environment?
By using PiSignage, you can rotate your HamClock with other station metrics, weather, or club announcements. However, getting a clean, secure, and “pop-up free” experience requires a few tricks.
In this post, I’ll show you how to deploy OpenHamClock using Docker and how to strip away the UI clutter for a seamless kiosk experience.
The Setup
To follow along, you will need a PiSignage server instance. I personally run mine as a Docker container, which keeps the server stack isolated and easy to back up.
1. The Docker Compose Configuration
PiSignage and modern browsers often require secure contexts (HTTPS) for certain features. Since the standard HamClock output is HTTP, we’ll use a two-service setup: the clock itself and a lightweight SSL-wrap sidecar using
socatandopenssl.docker-componse.yml
services: openhamclock: image: ghcr.io/accius/openhamclock:latest container_name: openhamclock expose: - "3000" environment: - CALLSIGN=<CALL SIGN> - LOCATOR=<Grid Square Locator> - THEME=dark - UNITS=imperial restart: unless-stopped ssl-wrap: image: alpine container_name: hamclock-ssl ports: - "3000:3000" command: > sh -c "apk add --no-cache socat openssl && openssl req -x509 -newkey rsa:2048 -keyout /tmp/key.pem -out /tmp/cert.pem -days 365 -nodes -subj '/CN=localhost' && cat /tmp/cert.pem /tmp/key.pem > /tmp/combined.pem && socat OPENSSL-LISTEN:3000,cert=/tmp/combined.pem,verify=0,fork,reuseaddr TCP:openhamclock:3000" restart: unless-stopped2. Silencing the “What’s New” Pop-ups
When using HamClock as a signage element, you want it to be “set and forget.” The “What’s New” slide-ins are helpful for desktop users but ruin a clean kiosk display.
While there is a formal change request pending for a toggle, you can currently “force” these elements to stay hidden by injecting a bit of CSS directly into the distribution files. Run this command within your app environment:
find /app/dist -name "*.css" -exec sh -c 'echo "div[style*=\"whatsNewSlideIn\"], div[style*=\"backdrop-filter\"] { display: none !important; }" >> {}' \;3. Setting Up the Slide in PiSignage
Once your containers are humming along, you need to tell PiSignage how to display the clock.
Create the Weblink Asset
- Log in to your PiSignage Admin Panel.
- Navigate to Assets > Add > Weblink.
- Fill in the details:
- Name: OpenHamClock
- Link Address:
https://<YOUR-HOSTNAME>:3000/?kiosk=true
- Click Save.
Pro Tip: The
?kiosk=truesuffix is critical. It tells HamClock to hide its own internal menus and headers, giving you a dedicated, high-contrast dashboard perfect for a wall-mounted display.Deploy to Your Player
- Go to Playlists and add your new “OpenHamClock” asset.
- Set the Duration: Set this to
0for a permanent display, or a high number (like300for 5 minutes) if it’s part of a rotation. - Go to Groups, select your player, and deploy the playlist.
Your screen should refresh and show a beautiful, clean HamClock interface within seconds!
Running PiSignage in Docker?
For those of you looking to keep your entire server stack contained, running the PiSignage central server in Docker is the way to go. It keeps your host OS clean and makes management a breeze.
If you’d like me to discuss how to set up a dockerized PiSignage server, please comment below!
— 73 —
Call to Action
Getting this stack to play nice wasn’t a “one-and-done” install. It was a hard-fought process that took multiple attempts to finally crack the code on bypassing those “What’s New” screens and forcing a clean kiosk display. But the victory is in the uptime.
Don’t just lurk. If you’ve got the guts to show how you’re rebuilding your station on the wreckage of the old ways, drop a comment below. How are you occupying the victory today?
SUPPORTSUBSCRIBECONTACT MED. Bryan King
Sources
- OpenHamClock GitHub Repository (accius)
- Original HamClock Source by Clear Sky Institute
- PiSignage Official Documentation
- Docker Compose Specification and Documentation
- Alpine Linux Official Docker Image
- Socat Man Page – Multipurpose Relay Tool
- OpenSSL Official Documentation
- Maidenhead Locator System Overview
- Deep Dive: HamClock on Raspberry Pi
- PiSignage Server Docker Implementation
- Raspberry Pi Kiosk Mode Configuration
- MDN Web Docs: CSS Display Property
- Docker CMD vs Entrypoint Explained
- Understanding Self-Signed SSL Certificates
- ARRL: Understanding Grid Squares
- CSS Attribute Selectors (For Style Injection)
- Docker Container Networking Guide
- Linux Find Command Documentation
- Portainer: Managing Dockerized Signage Stacks
- PiSignage Community Support Forum
Disclaimer:
I love sharing what I’m learning, but please keep in mind that everything I write here—including this post—is just my personal take. These are my own opinions based on my research and my understanding of things at the time I’m writing them. Since life moves way too fast and things change quickly, please use your own best judgment and consult the experts for your specific situations!
Related Posts
Rate this:
#AlpineLinux #AmateurRadioDashboard #amateurRadioTechnology #Automation #containerization #CSSInjection #CustomCSS #DetroitHamRadio #devops #DigitalDashboard #DigitalSignage #DisplaySolutions #Docker #DockerCompose #DXCluster #EN82le #GHCR #gridSquare #hamRadio #HamRadioKiosk #hamRadioSoftware #hamRadioTools #HamClock #HomeLab #HTTPSWrapper #KioskMode #KioskSetup #KioskTrue #Linux #MaidenheadLocator #networkSecurity #OpenSource #OpenHamClock #OpenSSL #piSignage #PiSignageDocker #PiSignageTips #RadioStationDisplay #RaspberryPi #RaspberryPiProjects #realTimeData #RemoteMonitoring #ScreenRotation #SelfHosted #ServerManagement #ShackClock #SignalTracking #SmartShack #Socat #SoftwareWorkaround #SolarData #SSLWrap #StationIntegration #TechGuide #TechnicalTutorial #UITweaks #W8DBK #WebDevelopment #WebLinkAsset -
ICYMI: Cognitiv's AudienceGPT targets stale audience data with real-time AI: Cognitiv launched AudienceGPT on March 26, 2026, a deep learning tool that replaces static audience segments with dynamic, real-time consumer journey profiles. https://ppc.land/cognitivs-audiencegpt-targets-stale-audience-data-with-real-time-ai/ #Cognitiv #AudienceGPT #AI #DeepLearning #RealTimeData
-
Started implementing support for public transit delays in Maps
https://gitlab.gnome.org/GNOME/gnome-maps/-/issues/917
https://gitlab.gnome.org/GNOME/gnome-maps/-/merge_requests/619#gnomemaps #transitous #mapstodon #PublicTransport #PublicTransit #realtimedata #motis #GtfsRT
-
https://www.fogolf.com/1163663/liv-golf-debuts-ai-fan-caddie-second-screen-companion/ LIV Golf debuts AI ‘Fan Caddie’ second-screen companion #Agentforce #AIAgents(AgenticAI) #ArtificialIntelligence(ai) #ConversationalAI #CustomerData #DataPlatform #DataVisualisation #DigitalTransformation #DirectToConsumer(D2C) #ECommerce(eCommerce) #FanExperience #GenerativeAI(GenAI) #Golf #GolfNews #Hospitality #Personalisation #PredictiveAnalytics #RealTimeData #Retail #salesforce #Semiconductors #Slack #SportsTechnology(SportsTech) #ticketing
-
IceRaidsNearMe – Real-time, crowdsourced map of immigration enforcement
#HackerNews #IceRaidsNearMe #ImmigrationEnforcement #CrowdsourcedMapping #RealTimeData #SocialJustice
-
Ein kleiner Schritt für die Menschheit,
aber ein riesiger Sprung für mich:
meteoCORE ist geboren! -
The future of data is already here—flexible, fast, and fiercely scalable. NoSQL and NewSQL are rewriting the rules of what's possible. 🚀 #NoSQL #NewSQL #RealTimeData #DataUnbound #TechLeadership #ModernInfrastructure #CloudNative #BigData #DatabaseStrategy #InnovationInData
https://medium.com/@sanjay.mohindroo66/data-unbound-embracing-nosql-newsql-for-the-real-time-era-a27c9e5fa00b -
⚡️ Kontur Event API: real-time disaster data from NOAA, GDACS & more — unified, structured, ready to use.
✅ GeoJSON endpoint
✅ Unified schema
✅ Real-time polling
✅ Feed customization
📖 Docs: [docs.endpoints.md] -
Kamchatka M 8.8 Earthquake — Live Impact Map
30 Jul 2025 | 03:06 PM GMT+2 updateExplore the live dashboard:
https://disaster.ninja/active/map?map=5.347/52.346/157.466&event=afba267a-f53f-4c5b-aa5d-bde2fcc37639&layers=eventShape%2Cfocused-geometry%2Csea-level-rise-exposurePowered by GDACS, Kontur Population, INFORM Risk, and OpenStreetMap — web-based, no GIS skills needed.
#DisasterResponse #Geospatial #Tsunami #Kamchatka #Earthquake #DisasterNinja #Kontur #Geospatial #EmergencyMapping #RealTimeData #SeaLevelRise #Japan #Hawaii #gis
-
Edge AI + 5G = lightning fast, real time predictive maintenance. No more costly downtime machines now warn you before breaking. From smart factories to emergency response, industries are acting in milliseconds, not hours. The future is proactive, not reactive.
#EdgeAI #5G #PredictiveMaintenance #SmartManufacturing #RealTimeData #Industry40 #TechInnovation #IoT #FutureReady #TECHi
Read Full Article Here :- https://www.techi.com/predictive-maintenance-edge-ai-5g-industrial-automation/
-
Bloomberg integrates Similarweb data for investment insights: Bloomberg partners with digital analytics firm to enhance alternative investment data with real-time web traffic intelligence across 3,000 companies. https://ppc.land/bloomberg-integrates-similarweb-data-for-investment-insights/ #Bloomberg #Investments #DataAnalytics #RealTimeData #FinancialInsights
-
Real-time data at the network edge inspires change and rapid decisions. #IoT #EdgeAnalytics #StreamingData #RealTimeData #DataProcessing #TechTrends #Innovation #ArtInTech
https://medium.com/@sanjay.mohindroo66/edge-analytics-streaming-data-processing-harnessing-the-power-of-real-time-iot-data-at-the-6d305e7e035e -
Build Real-Time Knowledge Graph for Documents with LLM
https://cocoindex.io/blogs/knowledge-graph-for-docs/
#HackerNews #Build #Real-Time #Knowledge #Graph #for #Documents #with #LLM #KnowledgeGraph #LLM #RealTimeData #AIInnovation #DocumentManagement
-
ICYMI: Grounding with Bing Search enhances Azure AI Agent Service: Microsoft integrates real-time web data to improve AI decision-making and accuracy. https://ppc.land/grounding-with-bing-search-enhances-azure-ai-agent-service/ #BingSearch #AzureAI #AIAgent #RealTimeData #DataAnalytics
-
Grounding with Bing Search enhances Azure AI Agent Service: Microsoft integrates real-time web data to improve AI decision-making and accuracy. https://ppc.land/grounding-with-bing-search-enhances-azure-ai-agent-service/ #AzureAI #BingSearch #AI #Microsoft #RealTimeData
-
Say Goodbye to Lag: How L4S is Revolutionizing Internet Speed and Performance. This breakthrough technology reduces latency, prevents congestion, and ensures seamless experiences for gaming, streaming, and remote work. Discover how L4S is shaping the future of ultra-fast, reliable connectivity.
https://www.kiledjian.com/main/2025/1/31/l4s-a-breakthrough-in-internet-congestion-control
#L4S #LowLatency #InternetPerformance #NetworkOptimization #FutureOfInternet #TechInnovation #LatencyReduction #5G #CloudComputing #GamingTech #Streaming #EdgeComputing #CyberSecurity #NetworkSpeed #AI #MachineLearning #SmartNetworking #InternetTechnology #Connectivity #TechTrends #HighSpeedInternet #NextGenNetworking #WiFi6 #NetworkEngineering #PacketLoss #VR #AR #IoT #DataScience #DigitalTransformation #Broadband #CloudGaming #Infrastructure #ScalableNetworking #RealTimeData #TechNews
-
Why Edge Computing is the Next Big Thing in Tech
Discover how Edge Computing is revolutionizing data processing with faster speeds, reduced latency, and enhanced security. Learn why it’s the future of tech.
https://brieflur.com/why-edge-computing-is-the-next-big-thing-in-tech/
#EdgeComputing #TechTrends #IoT #5G #RealTimeData #AI #FutureOfTech #Innovation #SmartCities #TechNews -
🚀 New blog post alert!
Andreas Neudecker shares his journey developing a Kafka client for #R, funded by the R Consortium: "We realized there was no stable Kafka client available for R… Having a Kafka client for R would have made the process much smoother."
Discover how this project is bridging real-time data gaps in R! Read the blog here 👉https://r-consortium.org/posts/bridging-the-real-time-gap-how-inwt-is-bringing-apache-kafka-to-the-r-ecosystem/
-
🌐UDP Load Balancing is a network solution designed to distribute incoming traffic across servers using the User Datagram Protocol (UDP), ideal for applications prioritizing low latency, such as VoIP, online gaming, and live streaming. Unlike TCP, UDP does not require connection establishment or data validation, allowing for faster, more efficient data handling.
#UDPLoadBalancing #NetworkSecurity #LowLatency #RELIANOID #RealTimeData #VoIP #OnlineGaming #LiveStreaming
https://www.relianoid.com/resources/knowledge-base/misc/understanding-udp-load-balancing/
-
Daily Inspiration: "Innovation? Fix things faster!" - Futurist Jim Carroll
Let me introduce you to a fellow named Ben Fortin.
He's a young fellow, in the city in which I live - Guelph, Ontario, Canada. Being of a generation that combines tech-savvy skills with a desire to 'fix things fast,' his story demonstrates what is possible in today's world.
Imagine this. He's sitting around, waiting for a bus, not knowing when it is going to show up, and decides at that moment that he should write a program that will help everyone waiting for a bus in the city to know when one is going to arrive.
I discovered this fact one day when I signed into Facebook and my feed popped up with this post.
Here's what Ben wrote that day:
---
"I was tired of standing at a bus stop and wondering where my bus was, as buses in Guelph are often running late. I discovered that Guelph provides access to real time GTFS (General Transit Feed Specification) data through their open data portal. Knowing this, and with an interest in doing fun things with publicly available data, I set out to display the locations of all the buses on a simple map. I later added the ability to view a bus' route outline. My friend Michael took an interest and made several great improvements to the app including displaying all the UI controls on the map element itself, the ability to view multiple routes at once, and the ability to view a route's stops."
---
Want to see it in action? Visit https://guelph-transit-map.ca. All that data is in real-time. At this very moment.
In this world of open data, APIs, and collaborative sharing, innovation can happen faster than you think!
**#Innovation** **#APIs** **#OpenData** **#Collaboration** **#TechSolutions** **#FastInnovation** **#ProblemSolving** **#RealTimeData** **#TechTrends**
https://jimcarroll.com/2024/10/daily-inspiration-innovation-fix-things-faster/
-
🚀 NEW on We ❤️ Open Source 🚀
Learn how to manage external data for real-time decision-making in financial institutions. Raja Chattopadhyay shares key strategies for seamless integration and improved efficiency.
-
#Verschlüsselung: Polizei will in Echtzeit an Datenströme von #WhatsApp & Co. | heise online https://www.heise.de/news/Verschluesselung-Polizei-will-in-Echtzeit-an-Datenstroeme-von-WhatsApp-Co-9747785.html #Threema #Signal #SignalApp #ThreemaApp #encryption #RealTimeData #Echtzeitdaten #E2EE #End2EndEncryption #EndToEndEncryption