SShortSingh.
Back to feed

How a €100 SDR dongle grew into a two-country satellite reception network

0
·3 views

A hobbyist developer recounts how a cheap RTL-SDR dongle and a rooftop antenna led to a sprawling DIY project for receiving unencrypted weather satellite imagery. The setup began with tracking low-orbit Russian METEOR-M satellites transmitting on VHF around 137 MHz, which pass overhead for only 10–15 minutes per orbit. The project gradually expanded across two countries, repurposing an old laptop as a server and enlisting family help to install equipment remotely. The author is now attempting to receive signals from a geostationary satellite, Elektro-L3, orbiting at 36,000 km and still drifting into position at the time of writing. The piece highlights that such satellite imagery is broadcast openly and can be captured by anyone with roughly €100 in equipment and a clear view of the sky.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Why Data Modeling in Power BI Matters as Much as Visualizations

Data modeling in Power BI involves organizing tables and defining how they relate to each other, forming the backbone of any reliable dashboard. Fact tables store measurable events like sales or exam scores, while dimension tables provide descriptive context such as students, teachers, or dates. The star schema, where a central fact table is surrounded by dimension tables, is Microsoft's recommended structure for Power BI due to its speed and simplicity. Power BI supports one-to-many, one-to-one, and many-to-many relationships, with the first being most common and the last requiring careful use to avoid calculation errors. Best practices include separating fact and dimension tables, ensuring matching data types on key columns, and avoiding unnecessary many-to-many relationships to maintain report accuracy and performance.

0
ProgrammingDEV Community ·

A Non-Traditional CS Student Recounts Stress Dreams Fueled by Linux and Bash Errors

A self-described non-traditional tech student shared a humorous personal essay about a recurring nightmare involving Tux, the Linux mascot, on the DEV Community platform. In the dream, Tux taunts her over a persistent coding error, guiding her through a surreal landscape of floating error messages and circular documentation. After finally locating the culprit — a single missing semicolon — she is denied the fix when Tux shuts her laptop and presents a fresh, blinking terminal prompt. The piece is part of the author's ongoing blog series documenting the real, often stressful experience of learning technology outside traditional pathways. She ends by inviting other developers to share their own coding nightmares, suggesting the anxiety is widely relatable among students learning Bash and Linux.

0
ProgrammingDEV Community ·

Python Functions Explained: Parameters, Return Values, and Scope Basics

Python functions are reusable named blocks of code defined with the 'def' keyword and executed only when explicitly called. They can accept inputs through parameters, which may have default values or be passed by name using keyword arguments. When the number of inputs is unknown, '*args' and '**kwargs' allow functions to handle variable positional and keyword arguments respectively. The 'return' statement sends a computed value back to the caller for further use, unlike 'print()', which only displays output to the console without storing it. Understanding these core concepts — definition, parameters, return values, and variable scope — is fundamental to writing effective Python programs.

0
ProgrammingDEV Community ·

What Actually Drives SaaS Development Costs in 2025: A Technical Breakdown

Building a SaaS product costs far more than the number of screens suggests, with budgets ranging from $500 for a prototype to over $50,000 for a complex production system. The real engineering complexity lies beneath the UI, in areas like multi-tenant data isolation, role-based permissions, and secure authorization logic applied consistently across every API endpoint. Billing integration is another commonly underestimated component, as handling Stripe webhooks, failed payments, subscription state changes, and edge cases adds significant development work beyond a basic checkout flow. Database architecture also becomes a major cost driver in B2B SaaS, where every query must correctly scope data to the right organization to prevent accidental data leakage between customers. Rather than estimating by screen count, developers and founders are advised to assess the specific backend workflows and reliability requirements their product demands.