<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Super Funicular</title>
    <description>The latest articles on DEV Community by Super Funicular (@superfunicular).</description>
    <link>https://dev.to/superfunicular</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3905292%2F0eab2966-f7d2-41d0-983d-d240a6caa5d4.jpg</url>
      <title>DEV Community: Super Funicular</title>
      <link>https://dev.to/superfunicular</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/superfunicular"/>
    <language>en</language>
    <item>
      <title>RedHook malware turns on your phone's Wireless Debugging to stream your screen — and it never touches the consent dialog</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Tue, 21 Jul 2026 08:05:43 +0000</pubDate>
      <link>https://dev.to/superfunicular/redhook-malware-turns-on-your-phones-wireless-debugging-to-stream-your-screen-and-it-never-459b</link>
      <guid>https://dev.to/superfunicular/redhook-malware-turns-on-your-phones-wireless-debugging-to-stream-your-screen-and-it-never-459b</guid>
      <description>&lt;p&gt;On July 9, Group-IB published an analysis of a new build of the Android trojan &lt;strong&gt;RedHook&lt;/strong&gt;, and it contains a first: the malware turns on &lt;strong&gt;Wireless Debugging&lt;/strong&gt; on the victim's own phone and uses it to give itself shell-level privileges — no PC, no USB cable, no root, no exploit. (&lt;a href="https://www.group-ib.com/blog/redhook-android-rat-upgraded/" rel="noopener noreferrer"&gt;Group-IB's writeup&lt;/a&gt;; &lt;a href="https://www.bleepingcomputer.com/news/security/redhook-android-malware-now-uses-wireless-adb-for-shell-access/" rel="noopener noreferrer"&gt;BleepingComputer's summary&lt;/a&gt;.)&lt;/p&gt;

&lt;p&gt;The part that should interest anyone who builds or uses a camera app is buried in the capability list. RedHook streams the victim's screen. And once it holds shell privileges, it streams &lt;strong&gt;over RTMP, capturing the screen directly — bypassing the MediaProjection API and its mandatory consent dialog.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That is worth sitting with. The consent dialog is the thing Android shows you so that screen capture cannot happen silently. RedHook does not defeat it. It goes around it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually happens
&lt;/h2&gt;

&lt;p&gt;There is no clever zero-day here, which is what makes it worth writing about. The chain is entirely made of legitimate parts:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A victim gets a phone call or a message from someone impersonating a bank or a government office, and is walked to a site built to look like the Play Store.&lt;/li&gt;
&lt;li&gt;They sideload the APK.&lt;/li&gt;
&lt;li&gt;The app runs a guided walkthrough that convinces them to enable the &lt;strong&gt;Accessibility Service&lt;/strong&gt;, framed as a necessary step to "enable full features."&lt;/li&gt;
&lt;li&gt;With Accessibility, the malware drives the Settings UI itself — taps the build number seven times to unlock Developer Options, opens Wireless Debugging, hits "Pair device with pairing code," and reads the pairing code off the screen. A full-screen overlay hides all of it.&lt;/li&gt;
&lt;li&gt;It embeds an ADB client, connects to the phone's own ADB daemon over loopback (127.0.0.1), and comes up as uid 2000.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Step 5 borrows from &lt;a href="https://github.com/rikkaapps/shizuku" rel="noopener noreferrer"&gt;Shizuku&lt;/a&gt;, the well-known open-source tool that enthusiasts use to grant apps elevated permissions without rooting. Group-IB's phrasing is precise: "There is no exploit here, 'merely' turning a debugging interface into a path to shell-level privileges."&lt;/p&gt;

&lt;p&gt;From uid 2000 the app can grant itself runtime permissions, run shell commands, write to &lt;code&gt;Settings.Secure&lt;/code&gt;, silently install and uninstall packages, and capture low-level touch events. The current build supports 53 distinct server-issued commands. It also holds on hard: a 1×1-pixel activity to look like a foreground process when the screen is off, silent audio via MediaSession, a WakeLock, two services in separate processes that resurrect each other via &lt;code&gt;bindService()&lt;/code&gt; with &lt;code&gt;BIND_AUTO_CREATE&lt;/code&gt;, an &lt;code&gt;oom_score_adj&lt;/code&gt; of −1000, and a &lt;code&gt;BOOT_COMPLETED&lt;/code&gt; receiver that re-enables Wireless ADB and restores the privileged helper within seconds of power-on.&lt;/p&gt;

&lt;p&gt;Active campaigns are targeting Vietnam and Indonesia. The technique is not regional.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters beyond banking trojans
&lt;/h2&gt;

&lt;p&gt;The instinct after a story like this is to distrust the capability. Screen streaming is scary, so screen streaming is bad. Remote camera access is scary, so remote camera access is bad.&lt;/p&gt;

&lt;p&gt;That reading is wrong, and following it makes you less safe rather than more.&lt;/p&gt;

&lt;p&gt;RedHook is not dangerous because it streams. It is dangerous because it acquired &lt;strong&gt;unaccountable privilege&lt;/strong&gt; — permission that the user cannot see, did not knowingly grant, and cannot easily revoke. The streaming is a symptom. The disease is a permission model that got escalated behind an overlay.&lt;/p&gt;

&lt;p&gt;There are entirely legitimate reasons to want a phone to send video somewhere while its screen is off: watching a pet, keeping an eye on a doorway, running a second-angle camera, monitoring a workshop. The question is never &lt;em&gt;does this app stream?&lt;/em&gt; It is &lt;strong&gt;who can start it, who can see it, and where does it go?&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What to actually check on your phone
&lt;/h2&gt;

&lt;p&gt;Independent of any product, do these now. They take under two minutes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Settings → System → Developer options → Wireless debugging.&lt;/strong&gt; If you did not deliberately turn this on, turn it off. If Developer Options is enabled and you never enabled it, that is a signal in itself.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Settings → Accessibility.&lt;/strong&gt; Read the list of apps with the Accessibility Service. This is the single most abused permission on Android. A camera app, a flashlight, a file manager, a game — none of these have any business here. Accessibility exists for screen readers and switch access.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Check what can install packages.&lt;/strong&gt; Settings → Apps → Special app access → Install unknown apps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sideload nothing you did not go looking for.&lt;/strong&gt; Every RedHook infection starts with an APK from a site that looks like the Play Store but is not.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Group-IB's own end-user guidance leads with the same point: be on extreme alert when an application requests the Accessibility Service.&lt;/p&gt;

&lt;h2&gt;
  
  
  The standard a camera app should be held to
&lt;/h2&gt;

&lt;p&gt;We build &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam" rel="noopener noreferrer"&gt;Background Camera RemoteStream&lt;/a&gt;, an Android app for recording and live-streaming from a phone with the screen off. So we have an obvious interest here, and you should read the next paragraph with that in mind.&lt;/p&gt;

&lt;p&gt;The honest version of our pitch is not "trust us." It is that the design choices worth demanding are checkable ones:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Footage stays on the device.&lt;/strong&gt; Recordings are stored locally. There is no cloud pipeline that has to be trusted, because there is no cloud pipeline.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No account.&lt;/strong&gt; No sign-up means no credential to phish, no server-side profile, no password reuse blast radius.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Distribution through Google Play only.&lt;/strong&gt; If you are ever asked to sideload our APK from a site that looks like the Play Store, that site is not us.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Streaming goes where you point it.&lt;/strong&gt; YouTube Live is your own destination on your own account, not an intermediary we operate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;None of that is exotic. It is the baseline, and the useful takeaway from RedHook is that you should ask any camera app on your phone to meet it — ours included. We wrote more about the pattern across the category in &lt;a href="https://dev.to/superfunicular/i-analyzed-9-android-camera-apps-the-pattern-surprised-me-34fp"&gt;an analysis of nine Android camera apps&lt;/a&gt;, and about the no-cloud approach in &lt;a href="https://dev.to/superfunicular/how-to-turn-an-old-android-phone-into-a-private-baby-monitor-no-cloud-no-subscription-2026-3ilg"&gt;this baby monitor walkthrough&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The uncomfortable part for developers
&lt;/h2&gt;

&lt;p&gt;Shizuku is a good tool. Wireless ADB is a good feature. Accessibility is load-bearing for people who genuinely need it. RedHook did not break any of them — it assembled them.&lt;/p&gt;

&lt;p&gt;That is the durable lesson. The Android security model increasingly depends on a user correctly evaluating a permission prompt while an attacker is on the phone with them, actively coaching them through it. Consent dialogs are a real protection and RedHook still routed around the screen-capture one by climbing to a privilege level where the dialog does not apply.&lt;/p&gt;

&lt;p&gt;Treat Accessibility and Wireless Debugging as high-value abuse vectors, as Group-IB puts it. And if you ship an app that touches the camera, the microphone, or the screen, assume your users have just read a story like this one — and make the permissions you request small enough to defend line by line.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Background Camera RemoteStream&lt;/strong&gt; — background recording and live streaming from an Android phone, local storage, no account required.&lt;br&gt;
&lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam" rel="noopener noreferrer"&gt;Google Play&lt;/a&gt; · &lt;a href="https://superfunicular.com" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Source: &lt;a href="https://www.group-ib.com/blog/redhook-android-rat-upgraded/" rel="noopener noreferrer"&gt;RedHook Returns with a Dangerous Upgrade&lt;/a&gt;, Group-IB, July 9, 2026.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>android</category>
      <category>security</category>
      <category>privacy</category>
      <category>mobile</category>
    </item>
    <item>
      <title>Can an Old Android Phone See in the Dark? An Honest Guide to Overnight Recording (2026)</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Tue, 21 Jul 2026 07:08:03 +0000</pubDate>
      <link>https://dev.to/superfunicular/can-an-old-android-phone-see-in-the-dark-an-honest-guide-to-overnight-recording-2026-490n</link>
      <guid>https://dev.to/superfunicular/can-an-old-android-phone-see-in-the-dark-an-honest-guide-to-overnight-recording-2026-490n</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Short answer (updated July 2026):&lt;/strong&gt; No. An old Android phone cannot do infrared "night vision," and no app can give it that — the IR-cut filter sitting on the sensor is physically permanent. But you almost certainly don't need IR. What you need is a small amount of visible light in the room, and then a phone will record a perfectly usable overnight video with its screen off. This guide covers what actually happens in the dark, the numbers that matter, and the five-minute setup that makes it work.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Every week someone asks a version of the same question: &lt;em&gt;I've got an old Pixel in a drawer, I want to point it at the back door overnight — will it see anything?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The honest answer has two halves, and most articles only tell you the flattering one. So here's both.&lt;/p&gt;

&lt;h2&gt;
  
  
  The half nobody wants to hear: your phone will never have night vision
&lt;/h2&gt;

&lt;p&gt;A dedicated $30 security camera "sees in the dark" using a trick that has nothing to do with a good sensor. It floods the room with near-infrared light — invisible to you, bright as day to the sensor — from a ring of IR LEDs, usually at 850nm or 940nm. Then it captures the reflection.&lt;/p&gt;

&lt;p&gt;For that to work, the camera has to be able to &lt;em&gt;see&lt;/em&gt; infrared. And by default, camera sensors see far too much of it — enough that daytime colour goes strange and washed out. So every camera ships with an &lt;strong&gt;IR-cut filter&lt;/strong&gt; between the lens and the sensor to block it.&lt;/p&gt;

&lt;p&gt;Here's the difference that decides everything:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A security camera has a mechanical IR-cut filter.&lt;/strong&gt; It's on a tiny switching mechanism. In daylight it swings into place for accurate colour; at night it swings &lt;em&gt;out&lt;/em&gt;, the sensor becomes IR-sensitive, the LEDs fire, and you get that grey-green night image.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A phone has a permanent IR-cut filter.&lt;/strong&gt; It's bonded into the camera stack. It does not move. It cannot be switched off in software.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is why every "night vision camera" app on the Play Store is, at best, a green colour filter over a noisy image. There is no software path to IR on a phone, and any app claiming otherwise is selling you a tint. We don't ship a night-vision mode in &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3D2026w30" rel="noopener noreferrer"&gt;Background Camera RemoteStream&lt;/a&gt; for exactly this reason — it would be a lie rendered in green.&lt;/p&gt;

&lt;p&gt;You can test the filter yourself in ten seconds: point a TV remote at your phone's camera and press a button. On most phones you'll see a faint purple flicker on the &lt;em&gt;front&lt;/em&gt; camera (whose filter is often weaker) and little or nothing on the main rear camera. That flicker is the small amount of IR leaking past the filter. It is nowhere near enough to light a room.&lt;/p&gt;

&lt;h2&gt;
  
  
  The other half nobody mentions: "night mode" doesn't come with you into video
&lt;/h2&gt;

&lt;p&gt;The second assumption is that modern computational photography rescues this. Your phone takes astonishing dark photos, so surely it records astonishing dark video?&lt;/p&gt;

&lt;p&gt;No — and the reason is structural.&lt;/p&gt;

&lt;p&gt;Night mode works by holding the shutter open longer, pushing ISO, and then &lt;strong&gt;capturing and merging a burst of frames&lt;/strong&gt; to average away noise. That is a fundamentally &lt;em&gt;still-photo&lt;/em&gt; technique. It spends a second or two of real time to produce one frame. Video needs thirty of those every second, in real time, while things are moving. Stacked frames of a moving subject produce ghosting and smear, which is worse than the noise you were trying to remove.&lt;/p&gt;

&lt;p&gt;The exceptions prove the point. Google's Night Sight Video on the Pixel 8 Pro and Pixel 9 series works via &lt;strong&gt;Video Boost — which uploads your footage to Google's servers&lt;/strong&gt; and replaces the local file with the processed version hours later. It requires Google Photos and cloud backup to function at all. (Google has been moving this on-device for the Pixel 11's Ultra Low Light mode, which won't need a connection — but that's one flagship line, not "phones.")&lt;/p&gt;

&lt;p&gt;That's worth sitting with if privacy is why you're reading this. The single best low-light video feature on Android in 2026 works by &lt;strong&gt;sending the video off the device.&lt;/strong&gt; If you're setting up an overnight camera specifically so footage doesn't leave your house, the marquee night-video feature is the thing you'd have to turn off.&lt;/p&gt;

&lt;h2&gt;
  
  
  The numbers that actually decide whether this works
&lt;/h2&gt;

&lt;p&gt;Skip the marketing and look at illumination, measured in lux.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Scene&lt;/th&gt;
&lt;th&gt;Roughly&lt;/th&gt;
&lt;th&gt;What a phone does with it&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Overcast daylight indoors, near a window&lt;/td&gt;
&lt;td&gt;~1,000+ lux&lt;/td&gt;
&lt;td&gt;Clean, easy, full frame rate&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Normal lit living room, lamps on&lt;/td&gt;
&lt;td&gt;~100–300 lux&lt;/td&gt;
&lt;td&gt;Fine. This is the target.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Single dim lamp, or a hallway light two rooms away&lt;/td&gt;
&lt;td&gt;~30 lux&lt;/td&gt;
&lt;td&gt;The edge — single-frame capture starts to struggle here&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Heavy dusk / TV-glow only&lt;/td&gt;
&lt;td&gt;~3 lux&lt;/td&gt;
&lt;td&gt;Only survivable with frame-merging, which video doesn't get&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Genuinely dark room, curtains shut&lt;/td&gt;
&lt;td&gt;~0–0.3 lux&lt;/td&gt;
&lt;td&gt;Black. No app fixes this.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Research on mobile capture puts the single-image struggle point at around &lt;strong&gt;30 lux&lt;/strong&gt;, with merge-based techniques extending usable capture down to about &lt;strong&gt;3 lux&lt;/strong&gt; and needing further modification below that. Video sits on the &lt;em&gt;harder&lt;/em&gt; side of that line, because it can't merge freely.&lt;/p&gt;

&lt;p&gt;Meanwhile a typical surveillance camera spec quotes something like &lt;strong&gt;2 lux&lt;/strong&gt; as its minimum in colour day mode — and then leans on IR below that. So the gap between a phone and a dedicated camera in a &lt;em&gt;lit&lt;/em&gt; room is much smaller than the marketing suggests. The gap in a &lt;em&gt;pitch-black&lt;/em&gt; room is total.&lt;/p&gt;

&lt;p&gt;Which points straight at the fix.&lt;/p&gt;

&lt;h2&gt;
  
  
  The fix is a lamp, not an app
&lt;/h2&gt;

&lt;p&gt;The entire problem collapses if you put light in the room. Not floodlight — a normal amount.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Option 1: leave one lamp on.&lt;/strong&gt; A single LED bulb in the room you're monitoring puts you comfortably in the 100+ lux band. A 9W LED costs pennies a night to run and gets you full-colour footage with a readable frame rate. Colour, incidentally, is worth more than you'd think — "grey jacket" is a far weaker description than "red jacket."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Option 2: a motion-activated light.&lt;/strong&gt; A cheap PIR-triggered lamp or a smart bulb on a motion routine. The room is dark until something moves, then it isn't. This is what actually matters anyway: you don't need footage of an empty dark room, you need footage of the moment something happened. It also means you're not lighting the house all night.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Option 3: put the camera where the light already is.&lt;/strong&gt; A phone facing a window catches streetlight and headlights. A phone in a hallway catches the light bleeding under doors. Front porches usually already have a light on a switch.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Option 4: accept a lower frame rate.&lt;/strong&gt; If you're recording a driveway rather than a person's face, a darker, grainier clip that establishes &lt;em&gt;a car arrived at 2:14am&lt;/em&gt; is still evidence. Perfect is not the bar.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What does not work:&lt;/strong&gt; buying a standalone IR illuminator and pointing it at the room. The phone can't see it. You'd be lighting the room for a camera that has been deliberately blinded to that wavelength. This is the single most common wasted purchase in this whole category.&lt;/p&gt;

&lt;h2&gt;
  
  
  The five-minute overnight setup
&lt;/h2&gt;

&lt;p&gt;Once you've solved light, the rest is straightforward. Here's the actual sequence:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Plug it in.&lt;/strong&gt; Overnight recording on battery is a losing game — you'll wake up to a dead phone and four hours of footage. Permanent power, always.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pick the spot before you mount anything.&lt;/strong&gt; Wedge the phone where you think you want it, record two minutes, and &lt;em&gt;watch it back.&lt;/em&gt; Framing mistakes are invisible on a 6-inch screen at eye level and glaring on playback.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Turn on the lamp you chose above,&lt;/strong&gt; and re-check that clip in the actual lighting you'll be using — not with the ceiling light on.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Start the recording and let the screen go off.&lt;/strong&gt; This is the whole reason to use a purpose-built app rather than the stock camera: the stock app stops when the screen does. Background Camera RemoteStream keeps recording with the display off via a foreground service, which also means a black phone on a shelf isn't advertising itself as a camera. The full mechanics of that path are covered in &lt;a href="https://dev.to/superfunicular/streaming-to-youtube-live-from-an-android-phone-with-the-screen-off-the-whole-path-end-to-end-ik2"&gt;the screen-off recording and streaming walkthrough&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Decide how you'll watch it.&lt;/strong&gt; Two options, and they're different jobs. On the same Wi-Fi, the app's built-in web server lets you open a browser on a laptop and watch the live view without installing anything — that's the &lt;a href="https://dev.to/superfunicular/the-best-way-to-watch-an-old-android-phone-as-a-camera-in-your-web-browser-over-your-own-network-l7f"&gt;browser-over-your-own-network setup&lt;/a&gt;. From outside the house, the unlisted YouTube Live path is the one that reaches you anywhere.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Do the storage maths before you commit.&lt;/strong&gt; This is the constraint that actually bites on overnight jobs — eight hours a night adds up fast, and a full disk ends a recording just as thoroughly as a dead battery. There's a full breakdown in &lt;a href="https://dev.to/superfunicular/storage-not-heat-is-the-real-limit-on-247-android-recording-segment-rotation-retention-math-2j5"&gt;the storage and retention piece&lt;/a&gt;, but the short version: budget your nights against free space &lt;em&gt;before&lt;/em&gt; night one, not after.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Being straight with you about the tradeoffs
&lt;/h2&gt;

&lt;p&gt;An old phone is genuinely good at this, and genuinely worse at some things. Both are true:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where the phone wins:&lt;/strong&gt; it costs nothing, footage stays on the device with no account and no subscription, there's no vendor who can change the price or shut the service down, and you can watch it in a browser on your own network or stream it out when you choose to.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where a dedicated camera wins:&lt;/strong&gt; true IR night vision in a pitch-black room, weatherproofing for outdoors, motion alerts and AI person-detection, and a mount designed for the job. We don't do motion alerts or object detection — if you need to be &lt;em&gt;notified&lt;/em&gt;, rather than to &lt;em&gt;review&lt;/em&gt;, a purpose-built camera with a subscription is the honest recommendation, and we've said so before in &lt;a href="https://dev.to/superfunicular/can-i-replace-my-nest-simplisafe-or-kasa-cloud-cam-with-an-old-android-phone-an-honest-2026-18oj"&gt;the honest cloud-cam replacement comparison&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The overnight use case sits right on that line, which is why it deserves a straight answer rather than a pitch.&lt;/p&gt;

&lt;h2&gt;
  
  
  FAQ
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Can any Android app give my phone infrared night vision?
&lt;/h3&gt;

&lt;p&gt;No. The IR-cut filter is a physical layer bonded into the camera module and cannot be disabled in software. Apps advertising "night vision" apply a green or amplified tint to an already-dark image.&lt;/p&gt;

&lt;h3&gt;
  
  
  Will an external IR illuminator help my phone camera see at night?
&lt;/h3&gt;

&lt;p&gt;No — that's the most common mistake here. The phone's filter blocks the exact wavelengths the illuminator emits. Spend the money on a normal LED bulb or a motion-triggered light instead.&lt;/p&gt;

&lt;h3&gt;
  
  
  How much light does a phone actually need to record usable video?
&lt;/h3&gt;

&lt;p&gt;A normally lit room (roughly 100–300 lux — one or two lamps) is comfortable. Around 30 lux it gets difficult, and below a few lux it isn't usable for video regardless of the phone.&lt;/p&gt;

&lt;h3&gt;
  
  
  Does night mode work while recording video?
&lt;/h3&gt;

&lt;p&gt;Generally not. Night mode merges a burst of still frames, which video can't do in real time without ghosting moving subjects. Pixel's Night Sight Video is the notable exception, and on the 8 Pro and 9 series it works by uploading footage to Google's servers for processing.&lt;/p&gt;

&lt;h3&gt;
  
  
  Can I record overnight with the screen off?
&lt;/h3&gt;

&lt;p&gt;Yes — that's the core of what Background Camera RemoteStream does. Recording continues via a foreground service with the display off, footage is stored locally on the device, and you can view the live feed in a browser on the same network or via an unlisted YouTube Live stream from anywhere.&lt;/p&gt;

&lt;h3&gt;
  
  
  Is it better to leave a light on all night or use a motion light?
&lt;/h3&gt;

&lt;p&gt;A motion light is usually the better answer. You rarely need footage of an empty dark room — you need the moment something moved, and that's exactly when the light fires.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Try it:&lt;/strong&gt; &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3D2026w30" rel="noopener noreferrer"&gt;Background Camera RemoteStream on Google Play&lt;/a&gt; — record with the screen off, keep footage local, watch it in a browser on your own network. More at &lt;a href="https://superfunicular.com" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Related: if the room in question has a cot in it rather than a back door, &lt;a href="https://dev.to/superfunicular/how-to-turn-an-old-android-phone-into-a-private-baby-monitor-no-cloud-no-subscription-2026-3ilg"&gt;the private baby-monitor setup&lt;/a&gt; covers the same overnight problem with different priorities.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>android</category>
      <category>privacy</category>
      <category>security</category>
      <category>mobile</category>
    </item>
    <item>
      <title>Most people get subscription home security wrong. Here's what actually works.</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Sun, 19 Jul 2026 15:37:22 +0000</pubDate>
      <link>https://dev.to/superfunicular/most-people-get-subscription-home-security-wrong-heres-what-actually-works-5e8h</link>
      <guid>https://dev.to/superfunicular/most-people-get-subscription-home-security-wrong-heres-what-actually-works-5e8h</guid>
      <description>&lt;p&gt;&lt;em&gt;You do not have a security problem. You have a "can I see that room right now?" problem. Those are different products, and the market only sells you the expensive one.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Every consumer camera pitch starts at the same place: a doorbell, a monthly plan, a cloud account, an app that wants your address. That bundle is designed for a household that wants evidence after an incident.&lt;/p&gt;

&lt;p&gt;Most people asking for a camera do not want evidence. They want a live look. Is the dog on the couch. Did the contractor actually show up. Is the back door shut. That is a &lt;em&gt;streaming&lt;/em&gt; problem, and streaming is the one thing the subscription bundle handles worst — it is the part they meter, throttle, and put behind the higher tier.&lt;/p&gt;

&lt;h2&gt;
  
  
  The design problem
&lt;/h2&gt;

&lt;p&gt;Strip it down. To answer "what is happening in that room right now" from somewhere else, you need exactly four things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;A camera sensor in the room.&lt;/li&gt;
&lt;li&gt;Power to it.&lt;/li&gt;
&lt;li&gt;A network path out.&lt;/li&gt;
&lt;li&gt;Something on the other end that can watch.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;An old Android phone in a drawer is items 1, 2 and 3 in one object. It has a decent sensor, a charge port, and a radio that already knows your Wi-Fi. The hardware problem was solved years ago and then thrown in a drawer.&lt;/p&gt;

&lt;p&gt;What is &lt;em&gt;not&lt;/em&gt; solved is the software assumption underneath it: Android is built for a phone you are holding. Screen on, app in front, user present. The moment a phone becomes a fixed camera, every one of those assumptions is wrong — and that is where the actual engineering lives.&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually has to be built
&lt;/h2&gt;

&lt;p&gt;The interesting constraints are not "record video." They are:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Screen off.&lt;/strong&gt; A phone propped on a shelf with its display burning for six hours is a heat problem, a battery problem, and a "that is obviously a camera" problem. Recording and streaming have to survive the screen going dark, which means fighting the OS's assumption that a dark screen means nobody cares.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Aggressive power management.&lt;/strong&gt; Android will happily suspend a long-running background process to save battery. A camera that quietly stops after 40 minutes is worse than no camera, because you &lt;em&gt;believed&lt;/em&gt; it was running.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A route out that is not a private LAN.&lt;/strong&gt; This is the honest split between the DIY options. Plenty of tools will stream to another device on the same Wi-Fi. That covers the nursery down the hall. It does not cover the thing people actually ask for, which is watching from the office, the airport, the other country. Getting a stream off the local network without shipping every frame through someone's paid cloud is the hard part — and pushing to a destination you already own, like a private YouTube Live stream, is one of the few routes that does not reinvent NAT traversal badly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Not looking like a camera.&lt;/strong&gt; Half the practical value of a repurposed phone is that it is a phone. That only holds if the screen is off and nothing announces itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where each option actually lands
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Subscription cameras&lt;/strong&gt; — best-in-class if what you want is retained footage, motion alerts and an ecosystem. You are renting hardware and paying for storage of moments you will almost certainly never watch.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LAN-only DIY apps&lt;/strong&gt; — genuinely good, free, and open. Also genuinely limited to your own network unless you are willing to run a VPN or punch holes in your router.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A repurposed phone with a screen-off recorder that can broadcast out&lt;/strong&gt; — no new hardware, no monthly line item, works from outside the house. The tradeoff is real: you are responsible for placement, power, and pointing it somewhere useful.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The wrong version of this argument is "subscriptions are a scam." They are not. The wrong &lt;em&gt;default&lt;/em&gt; is assuming the subscription is the only shape this can take, when the majority of people asking are trying to answer a question that costs nothing to answer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where I land
&lt;/h2&gt;

&lt;p&gt;I build &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Dscreen_off_streaming" rel="noopener noreferrer"&gt;Background Camera RemoteStream&lt;/a&gt; — an Android app for exactly this: an old phone, screen off, recording or broadcasting out. So take the framing above as coming from someone with a side in it. The design problem stands on its own either way.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open question for the dev.to community
&lt;/h2&gt;

&lt;p&gt;For those of you who have wired up a home camera setup — did you end up on a subscription product, a LAN-only stack, or something self-hosted? And what was the thing that actually decided it: cost, latency, remote access, or just not wanting one more account?&lt;/p&gt;




&lt;p&gt;App: &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Dscreen_off_streaming" rel="noopener noreferrer"&gt;https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Dscreen_off_streaming&lt;/a&gt;  ·  Built solo by Super Funicular LLC.&lt;/p&gt;




&lt;h2&gt;
  
  
  Related reading
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/whats-the-cheapest-way-to-set-up-a-home-security-camera-without-a-subscription-in-2026-4i28?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;the cheapest no-subscription home camera setup in 2026&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/best-free-no-subscription-apps-to-turn-an-old-android-phone-into-a-local-only-security-camera-4582?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;best free apps to turn an old Android phone into a local-only security camera&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/how-to-watch-your-home-or-pet-while-traveling-without-a-subscription-turn-an-old-android-phone-h43?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;how to watch your home or pet while traveling, without a subscription&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>android</category>
      <category>privacy</category>
      <category>iot</category>
      <category>opensource</category>
    </item>
    <item>
      <title>This week on @Digital_Nomad_Media — 25 new clips (2026-W29)</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Sun, 19 Jul 2026 14:02:30 +0000</pubDate>
      <link>https://dev.to/superfunicular/this-week-on-digitalnomadmedia-25-new-clips-2026-w29-5124</link>
      <guid>https://dev.to/superfunicular/this-week-on-digitalnomadmedia-25-new-clips-2026-w29-5124</guid>
      <description>&lt;p&gt;Quick weekly digest from my YouTube channel — every clip below is fresh in the last 7 days.&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=WDukQKU_wFM" rel="noopener noreferrer"&gt;Rough Tough Dig Nomad ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=WDukQKU_wFM" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fguwmvd153obtc4hqgpw3.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;5s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=5lXshPWRQuc" rel="noopener noreferrer"&gt;Never give up.&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=5lXshPWRQuc" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmc3bk16kb799heo4ay0p.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;28s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=9LLRkrYgQPY" rel="noopener noreferrer"&gt;Swim day for the dogs&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=9LLRkrYgQPY" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fiy1bja8h751y4qpv9guj.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;51s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=GqovsRUkq5g" rel="noopener noreferrer"&gt;Stocking up for Stockings ✌️🎅&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=GqovsRUkq5g" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fo1i8a6w9h37n6m0tcrlq.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;29s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=7dRtIxVKbjs" rel="noopener noreferrer"&gt;Adventure Dog&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=7dRtIxVKbjs" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffxoydby9ck9efmltewkw.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;65s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=pP7xpBMZJH4" rel="noopener noreferrer"&gt;Good ole Baptist Health Care ⚕️&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=pP7xpBMZJH4" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjablavxbal1e72v121rm.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;32s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=w5ynUa_XlBI" rel="noopener noreferrer"&gt;Wanna go Pee? Lady the PeeBull&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=w5ynUa_XlBI" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fa37943ao4olomszwjfdq.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;21s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=AkX3SqKEpMg" rel="noopener noreferrer"&gt;The life of a Nomad ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=AkX3SqKEpMg" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fxpem43l39pfcppyqhkkf.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;25s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=z4S1fJmT9cU" rel="noopener noreferrer"&gt;Dashing thru the snow ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=z4S1fJmT9cU" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4qlusmm38l6fkzmet44j.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;59s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=-1KEbn44MVA" rel="noopener noreferrer"&gt;Happy Holidays&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=-1KEbn44MVA" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7c3guc6vxu10xrj4ebtn.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;19s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=6r0ZxO5xO0I" rel="noopener noreferrer"&gt;Wanna?&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=6r0ZxO5xO0I" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fkqa6tpbmjgwhc0rn2c9g.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;15s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=AP490jLejRA" rel="noopener noreferrer"&gt;Not on her watch!&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=AP490jLejRA" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffuk3megsspvljo8yj7i0.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;62s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=q1AVvSraQfU" rel="noopener noreferrer"&gt;Puppy play time ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=q1AVvSraQfU" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fc0572zmkqbx76aw55oq9.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;36s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=NQiQiDmyCgw" rel="noopener noreferrer"&gt;From Shitzville to Japan ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=NQiQiDmyCgw" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7uoshihgjtuy64p4ng58.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;40s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=j_C8wPSxCzM" rel="noopener noreferrer"&gt;Can you take a hint? ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=j_C8wPSxCzM" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fj9s2vogfnu3z0g4271x2.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;13s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=o15TukV_wJo" rel="noopener noreferrer"&gt;Will 2021 come around again? ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=o15TukV_wJo" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fla9me9trm5w9mtgldg2n.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;58s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=YGHVFKDI64M" rel="noopener noreferrer"&gt;Your A.I. assistant one day in the future 🤠✌️&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=YGHVFKDI64M" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fy492ahzpxa3iu2zyd2xa.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;13s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=KfDipCtmKro" rel="noopener noreferrer"&gt;Wiggle it a little bit&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=KfDipCtmKro" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F1210qpiuegz5xgwoplja.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;69s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=NYzn5qj88yY" rel="noopener noreferrer"&gt;Mission afailedlished! ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=NYzn5qj88yY" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F7nt4cb0sfhdlpyweugz4.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;31s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=gVubpvm4xKE" rel="noopener noreferrer"&gt;I was attacked by a blizzard on my way over here.....i barely survived. ✌️😶‍🌫️&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=gVubpvm4xKE" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fgt5mdgc92gld0tif91ez.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;35s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=fp3ajEje-Dc" rel="noopener noreferrer"&gt;Attack of the Sasquatch ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=fp3ajEje-Dc" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F28eqcfem984mgpmgh40t.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;63s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=t8QyB8zbc4U" rel="noopener noreferrer"&gt;We're OPEN! (Kind of)&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=t8QyB8zbc4U" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Feuhnwyl2i4q8q2wnvdzp.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;36s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=bZrwVsx-fiU" rel="noopener noreferrer"&gt;To be euthanized?&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=bZrwVsx-fiU" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2a46p8xpi1trbqvdszpx.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;21s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=mHXR8mh4XZo" rel="noopener noreferrer"&gt;Our Lake House. Part 1 ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=mHXR8mh4XZo" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fr89felb5vg5hzedk8430.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;22s&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;a href="https://www.youtube.com/watch?v=J-t_kliqgo0" rel="noopener noreferrer"&gt;Taking Marchello to War. ✌️🤠&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://www.youtube.com/watch?v=J-t_kliqgo0" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fu5xf5mbevw0rvwp9rj92.jpg" width="480" height="360"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;41s&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  I also built an app — DigiCam
&lt;/h2&gt;

&lt;p&gt;I also made DigiCam, listed as Background Camera RemoteStream on Google Play. It's the world's first screen-off YouTube live streaming app: stream live with the screen off for ~10× the battery life, plus background recording, remote web console control, file-based YouTube Live, and playlists. Privacy-first, all local storage. Free with ads or Pro for the full feature set:&lt;br&gt;
&lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam" rel="noopener noreferrer"&gt;https://play.google.com/store/apps/details?id=com.superfunicular.digicam&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;Watch the full channel: &lt;a href="https://www.youtube.com/@Digital_Nomad_Media" rel="noopener noreferrer"&gt;@Digital_Nomad_Media&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Tags: #SuperFunicular #DigiCam #DigiNomad #YouTubeShorts #ContentCreator #ladythepitbull #TrixieTheTerrible #cutedog&lt;/p&gt;

</description>
      <category>diginomad</category>
      <category>youtube</category>
      <category>indiedev</category>
      <category>digicam</category>
    </item>
    <item>
      <title>I Analyzed 9 Android Camera Apps. The Pattern Surprised Me</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Sun, 19 Jul 2026 04:42:14 +0000</pubDate>
      <link>https://dev.to/superfunicular/i-analyzed-9-android-camera-apps-the-pattern-surprised-me-34fp</link>
      <guid>https://dev.to/superfunicular/i-analyzed-9-android-camera-apps-the-pattern-surprised-me-34fp</guid>
      <description>&lt;p&gt;&lt;em&gt;I went through nine Android camera apps back to back — the ones that keep coming up when people ask "can I turn my old phone into a camera?" The pattern that fell out wasn't about features. It was about what each app assumes your phone is FOR.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Every single one of these apps puts your phone into one of three boxes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;An accessory for your PC&lt;/strong&gt; — the phone is a webcam, the computer is the product.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A sensor for a vendor's cloud&lt;/strong&gt; — the phone captures, their servers (and their meter) decide what you see.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A camera locked to your living room&lt;/strong&gt; — local recording or LAN streaming, useless the moment you leave the house.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Almost nothing treats the phone as what it actually is: a complete, standalone camera + computer + radio that can capture &lt;em&gt;and&lt;/em&gt; publish video on its own.&lt;/p&gt;

&lt;p&gt;Here's the list.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 9 apps
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Background Camera RemoteStream &lt;em&gt;(the gap-filler — and yes, it's mine)&lt;/em&gt;
&lt;/h3&gt;

&lt;p&gt;Records with the screen completely off and streams live to YouTube Live directly from the phone — so "remote viewing" works from anywhere with zero vendor cloud in the middle and no subscription meter. Point an old phone at your driveway, turn the screen off, watch from another continent. Disclosure: I built this one, specifically because nothing below covered this combination. &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera" rel="noopener noreferrer"&gt;Play Store&lt;/a&gt; · &lt;a href="https://superfunicular.com" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2. IP Webcam
&lt;/h3&gt;

&lt;p&gt;The veteran. Turns the phone into a network camera with a browser-viewable stream. Rock solid — but the stream lives on your LAN. Watching from outside your network means port forwarding, dynamic DNS, or a VPN. Box 3.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. AlfredCamera
&lt;/h3&gt;

&lt;p&gt;The polished "old phone as security cam" pairing app. Slick, but your video rides through their cloud, and the free tier was recently trimmed to two cameras — the meter is the business model. Box 2.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. AtHome Camera
&lt;/h3&gt;

&lt;p&gt;Same shape as Alfred: camera phone + viewer app + an account in the middle. Works, but you're renting access to your own video feed. Box 2.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. DroidCam
&lt;/h3&gt;

&lt;p&gt;Excellent at what it does — turning your phone into a webcam for your PC. But the phone is demoted to a peripheral; without the desktop client it does nothing. Box 1.&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Iriun Webcam
&lt;/h3&gt;

&lt;p&gt;DroidCam's high-resolution sibling. Same deal: phone-as-webcam, desktop app required, camera has no life of its own. Box 1.&lt;/p&gt;

&lt;h3&gt;
  
  
  7. Haven
&lt;/h3&gt;

&lt;p&gt;The Guardian Project's open-source room monitor — genuinely clever use of &lt;em&gt;all&lt;/em&gt; the phone's sensors, built with Snowden's involvement. But development has been quiet for years, and it's a motion-evidence logger more than a live camera. Box 3, with history.&lt;/p&gt;

&lt;h3&gt;
  
  
  8. FadCam
&lt;/h3&gt;

&lt;p&gt;Open-source background video recorder — one of the few others that takes screen-off capture seriously. But it's distributed off the Play Store (sideload from GitHub), and its live streaming is LAN-only HLS: fine on your sofa, gone when you leave the house. Box 3.&lt;/p&gt;

&lt;h3&gt;
  
  
  9. Quick Video Recorder
&lt;/h3&gt;

&lt;p&gt;Background and scheduled recording, simple and quiet. But recording is where it ends — there's no remote viewing story at all. Box 3.&lt;/p&gt;

&lt;h2&gt;
  
  
  The pattern
&lt;/h2&gt;

&lt;p&gt;Two apps make your phone a PC accessory. Two route your video through a subscription cloud. Four keep it trapped in your house. The one thing an old Android phone is &lt;em&gt;perfectly&lt;/em&gt; positioned to be — a self-contained camera you can check from anywhere, with nobody's server in between — is the combination almost everyone skips.&lt;/p&gt;

&lt;p&gt;I think that's a design-culture artifact, not a technical constraint. The hardware has been capable of this for a decade. But "phone streams directly to a service you control" has no recurring revenue attached, so the ecosystem kept building meters instead.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open question
&lt;/h2&gt;

&lt;p&gt;For those who've wired up old phones as cameras: did you end up in box 1, 2, or 3 — and did you get remote viewing working without a vendor cloud? Curious what stacks people actually run. I'll answer every comment.&lt;/p&gt;




&lt;p&gt;App: &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera" rel="noopener noreferrer"&gt;https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera&lt;/a&gt; · Built solo by Super Funicular LLC.&lt;/p&gt;




&lt;h2&gt;
  
  
  Related reading
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/best-free-no-subscription-apps-to-turn-an-old-android-phone-into-a-local-only-security-camera-4582?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;best free, no-subscription apps for a local-only old-phone camera&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/how-to-record-video-in-the-background-on-android-2026-3f3n?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;how to record video in the background on Android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/why-does-my-android-camera-stop-recording-when-the-screen-turns-off-doze-workmanager-and-the-1a5d?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;why your Android camera stops recording when the screen turns off&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>android</category>
      <category>mobile</category>
      <category>apps</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Background Camera RemoteStream vs FadCam vs Quick Video Recorder: which actually works as a work-from-home camera?</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Sun, 19 Jul 2026 02:42:35 +0000</pubDate>
      <link>https://dev.to/superfunicular/background-camera-remotestream-vs-fadcam-vs-quick-video-recorder-which-actually-works-as-a-3jp1</link>
      <guid>https://dev.to/superfunicular/background-camera-remotestream-vs-fadcam-vs-quick-video-recorder-which-actually-works-as-a-3jp1</guid>
      <description>&lt;p&gt;&lt;em&gt;TL;DR: an old Android phone plus a screen-off recorder app makes a perfectly good work-from-home camera — watch the front door for deliveries, keep an eye on a pet, or check the home office while you're at a co-working space. Three apps get recommended for this constantly. They solve three different problems. Here's an honest breakdown — with a disclosure up front: I build the first one.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The use case
&lt;/h2&gt;

&lt;p&gt;"Work-from-home camera" here means: a spare phone pointed at something you care about (door, desk, pet, kid's playroom) that keeps recording or streaming with the screen off, so it doesn't glow like a beacon or burn its panel in, and that you can check remotely without buying hardware or a cloud subscription.&lt;/p&gt;

&lt;p&gt;The three apps that come up: &lt;strong&gt;Background Camera RemoteStream&lt;/strong&gt; (mine), &lt;strong&gt;FadCam&lt;/strong&gt; (open source), and &lt;strong&gt;Quick Video Recorder&lt;/strong&gt; (GeniusTools Labs).&lt;/p&gt;

&lt;h2&gt;
  
  
  What each one actually is
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Background Camera RemoteStream&lt;/strong&gt; — screen-off recording, local-only storage, a built-in web server so you can view the camera from any browser on your Wi-Fi, and an unlisted YouTube Live option when you need to check in from &lt;em&gt;outside&lt;/em&gt; the house. No account, no cloud storage, no subscription.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;FadCam&lt;/strong&gt; — open-source, ad-free, no tracking. Screen-off recording, live streaming over your local network with remote control via a web UI, and a clever "Privacy Black Mode." Free with an optional one-time Pro tier. Genuinely good software — the catch is distribution: it's on F-Droid and GitHub, not the Play Store, so installing means sideloading. And its streaming is LAN-only — no off-network path.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Quick Video Recorder&lt;/strong&gt; — 4.7★ with 29k+ reviews and 1M+ installs, so it's the one your search results push first. Per its Play listing: background recording with the preview off, scheduled recordings, front/back camera, SD-card storage, dash-cam mode. It's a &lt;em&gt;recorder&lt;/em&gt;, though — there's no remote viewing or streaming at all. It's ad-supported with in-app purchases, and top reviews mention ads gating basic actions and a default recording time limit that surprises people mid-recording.&lt;/p&gt;

&lt;h2&gt;
  
  
  The comparison that matters
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Background Camera RemoteStream&lt;/th&gt;
&lt;th&gt;FadCam&lt;/th&gt;
&lt;th&gt;Quick Video Recorder&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Screen-off recording&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;View live from another device (LAN)&lt;/td&gt;
&lt;td&gt;✅ browser&lt;/td&gt;
&lt;td&gt;✅ web UI&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;View live from outside your network&lt;/td&gt;
&lt;td&gt;✅ unlisted YouTube Live&lt;/td&gt;
&lt;td&gt;❌ LAN only&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Install path&lt;/td&gt;
&lt;td&gt;Play Store&lt;/td&gt;
&lt;td&gt;F-Droid / GitHub sideload&lt;/td&gt;
&lt;td&gt;Play Store&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cloud account required&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ads&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Pricing&lt;/td&gt;
&lt;td&gt;free + one-time Pro&lt;/td&gt;
&lt;td&gt;free + one-time Pro&lt;/td&gt;
&lt;td&gt;free + IAP/subscription&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  So which one?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;You want a check-in camera you can open from anywhere, installed in one tap:&lt;/strong&gt; Background Camera RemoteStream. The YouTube Live path is the differentiator — an unlisted stream you can open from a laptop at a café.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You're comfortable sideloading and only need to check it from inside the house:&lt;/strong&gt; FadCam is an excellent FOSS pick, and I mean that without an asterisk.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You just want scheduled local recordings and don't care about remote viewing:&lt;/strong&gt; Quick Video Recorder does that, if you can live with the ads.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The honest framing: none of these are "hidden camera" tools — point them at your own property, and check your local recording-consent laws for anything with audio.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open question for the dev.to community
&lt;/h2&gt;

&lt;p&gt;For those who've deployed an old phone as a permanent camera: what's your battery strategy? Straight-to-charger 24/7, a smart plug cycling 40–80%, or something better? That's the part no app solves for you.&lt;/p&gt;




&lt;p&gt;App: &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Dscreen_off_streaming" rel="noopener noreferrer"&gt;https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Dscreen_off_streaming&lt;/a&gt;  ·  Built solo by Super Funicular LLC. FadCam: &lt;a href="https://github.com/anonfaded/FadCam" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt; · Quick Video Recorder: &lt;a href="https://play.google.com/store/apps/details?id=com.backgroundvideorecorder.videosnapshorts" rel="noopener noreferrer"&gt;Play Store&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Related reading
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/how-to-record-video-in-the-background-on-android-2026-3f3n?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;the full background video recording guide for Android&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/the-best-way-to-watch-an-old-android-phone-as-a-camera-in-your-web-browser-over-your-own-network-l7f?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;watching an old Android phone as a camera in your web browser&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/best-free-no-subscription-apps-to-turn-an-old-android-phone-into-a-local-only-security-camera-4582?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;the wider no-subscription local-only camera app roundup&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>android</category>
      <category>showdev</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
    <item>
      <title>$200 Amazon Ring vs $0 old phone: same features?</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Sun, 19 Jul 2026 00:42:02 +0000</pubDate>
      <link>https://dev.to/superfunicular/200-amazon-ring-vs-0-old-phone-same-features-2kkp</link>
      <guid>https://dev.to/superfunicular/200-amazon-ring-vs-0-old-phone-same-features-2kkp</guid>
      <description>&lt;p&gt;&lt;em&gt;TL;DR: a $200 outdoor camera is really a subscription funnel with a lens on it. The phone in your drawer already has better hardware for the job — the only hard part is software, and that part is solved.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The $200 side of the ledger
&lt;/h2&gt;

&lt;p&gt;Current Ring pricing, checked today: the Spotlight Cam (2nd gen, 2K) is $169.99 and the Spotlight Cam Pro is about $229. Neither number is the real price. Without a plan you get live view only — recorded clip history sits behind Ring Home at $4.99/mo (Basic) to $9.99/mo (Standard). So the cheapest usable porch-cam setup is roughly $230 in year one, and the meter keeps running after that.&lt;/p&gt;

&lt;p&gt;None of this is because clip storage is expensive. It's because recurring revenue is the point and the camera is the acquisition cost. Several big consumer camera apps have been tightening free tiers lately for exactly this reason.&lt;/p&gt;

&lt;h2&gt;
  
  
  The $0 side of the ledger
&lt;/h2&gt;

&lt;p&gt;An old Android phone — the one in your drawer right now — ships with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a camera that outclasses most sub-$100 security cams in daylight&lt;/li&gt;
&lt;li&gt;Wi-Fi, a full networking stack, and local storage&lt;/li&gt;
&lt;li&gt;a battery, which is a built-in UPS that Ring charges extra to approximate&lt;/li&gt;
&lt;li&gt;a general-purpose OS you can point at any streaming endpoint you like&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Feature-by-feature (live view, recording, remote viewing, motion coverage of one fixed zone), the overlap with a $200 camera is uncomfortably large.&lt;/p&gt;

&lt;h2&gt;
  
  
  The actual hard part
&lt;/h2&gt;

&lt;p&gt;Here's the honest engineering reason everyone doesn't already do this: Android really does not want to be a security camera. The OS aggressively reclaims camera access from backgrounded apps, kills long-running services to save battery, and turns the screen into a burn-in liability if you leave it on. Keeping a camera pipeline alive for days with the screen off — and still reachable remotely — is a real design problem, not a weekend hack.&lt;/p&gt;

&lt;p&gt;That design problem is the entire reason our app exists. &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera" rel="noopener noreferrer"&gt;Background Camera RemoteStream&lt;/a&gt; keeps recording and streaming with the screen off, lets you watch remotely, and does it without a cloud account or a per-camera cap. Free to install. The phone was $0 because you already own it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where the $200 camera honestly wins
&lt;/h2&gt;

&lt;p&gt;Fairness section, because the comparison is only interesting if it's honest:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Weatherproofing. A phone on the porch needs shelter; a Spotlight Cam doesn't.&lt;/li&gt;
&lt;li&gt;The spotlight and siren. A phone has a flashlight and a speaker, which is not the same thing.&lt;/li&gt;
&lt;li&gt;Sitting on a charger 24/7 is a battery-longevity tax on the phone.&lt;/li&gt;
&lt;li&gt;Purpose-built night optics beat a mid-range phone sensor after dark.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If those four things matter for your placement, buy the camera. If the placement is indoors pointing at a door, a hallway, a pet, or a rental you're checking on — the drawer phone covers it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open question for dev.to
&lt;/h2&gt;

&lt;p&gt;What actually keeps people paying for subscription cameras — the hardware, the UX polish, family sharing, or just defaults and inertia? Genuinely curious what the dealbreaker is for people here who've tried the repurposed-phone route and gone back.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Site: &lt;a href="https://superfunicular.com" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Related reading
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/whats-the-cheapest-way-to-set-up-a-home-security-camera-without-a-subscription-in-2026-4i28?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;the cheapest way to set up a home security camera without a subscription&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/turn-your-old-android-phone-into-a-free-security-camera-no-subscription-required-1m70?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;turn your old Android phone into a free security camera&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://dev.to/superfunicular/can-i-replace-my-wyze-cam-with-an-old-android-phone-in-2026-what-that-2999-renewal-is-really-5gdb?utm_source=devto&amp;amp;utm_campaign=seo_w30"&gt;can an old Android phone replace a Wyze Cam in 2026?&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>android</category>
      <category>security</category>
      <category>privacy</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Build-in-Public, Week 10: Impressions Fell From ~40k/Week to Under 10k — and the Cause Wasn't the Algorithm</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Sat, 18 Jul 2026 07:10:35 +0000</pubDate>
      <link>https://dev.to/superfunicular/build-in-public-week-10-impressions-fell-from-40kweek-to-under-10k-and-the-cause-wasnt-the-34f7</link>
      <guid>https://dev.to/superfunicular/build-in-public-week-10-impressions-fell-from-40kweek-to-under-10k-and-the-cause-wasnt-the-34f7</guid>
      <description>&lt;p&gt;There was no Week 8 update. There was no Week 9 either. This post is the explanation, and it doubles as the most useful postmortem this series has produced so far — useful precisely because the cause turned out to be boring.&lt;/p&gt;

&lt;p&gt;Quick context for new readers: I build &lt;strong&gt;Background Camera RemoteStream&lt;/strong&gt;, a free Android app that records with the screen off, stores everything locally, and can stream to an unlisted YouTube Live feed — no account, no cloud, no subscription. The marketing for it is an experiment I've been running in public since May: a largely agent-automated content pipeline, built the same way the app was built (75+ Claude Code sessions), publishing daily and reporting real numbers here every week. &lt;a href="https://dev.to/superfunicular/build-in-public-week-7-one-article-got-22-views-this-week-the-other-four-got-3-combined-37o5"&gt;Week 7&lt;/a&gt; was the last installment. Then the streak broke.&lt;/p&gt;

&lt;h2&gt;
  
  
  The headline numbers, stated plainly
&lt;/h2&gt;

&lt;p&gt;As of this morning, measured directly against the dev.to API and my internal tracker:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;115 articles&lt;/strong&gt; published on dev.to, &lt;strong&gt;1,641 total views, 7 reactions, 21 comments&lt;/strong&gt; — all-time&lt;/li&gt;
&lt;li&gt;Cross-channel impressions (mostly X and Threads, per my internal tracker): a peak of roughly &lt;strong&gt;40k/week in mid-June&lt;/strong&gt;, falling to &lt;strong&gt;under 10k/week&lt;/strong&gt; by early July — a ~75% drop in about three weeks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;22 dev.to articles&lt;/strong&gt; shipped in the last two weeks — that lane never stopped&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;10 pieces published since July 13 have 20 dev.to views between them&lt;/strong&gt; — feed distribution here remains close to zero; what compounds is search (my all-time top article, a no-subscription listicle, sits at 122 views, nearly all search)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sit with the tension in those numbers for a second, because it's the whole story: one lane kept shipping daily the entire time, and total reach still collapsed 75%.&lt;/p&gt;

&lt;h2&gt;
  
  
  The postmortem: output collapse, not audience loss
&lt;/h2&gt;

&lt;p&gt;When the impressions line fell off a cliff, every instinct said &lt;em&gt;algorithm change&lt;/em&gt;, &lt;em&gt;shadow throttle&lt;/em&gt;, &lt;em&gt;audience gone&lt;/em&gt;. The actual diagnosis, once I audited the pipeline end to end, was that &lt;strong&gt;the social lane — the one carrying most of the impressions — had quietly stopped publishing for almost three weeks (June 26 to July 15)&lt;/strong&gt; while the blog lane's daily output masked the silence. Nothing dramatic broke. Several boring things stacked:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;The content queue silted up.&lt;/strong&gt; Roughly 40% of the pending queue was drafted for platforms I couldn't actually post to anymore (deprecated formats, channels without working auth, one platform that needs an account type I don't have). The generator refused to make new content while the queue looked "full" — full of unpublishable dead stock. Purging it took the queue from 191 items to 119 and unblocked generation instantly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The selection bandit was sampling fantasy arms.&lt;/strong&gt; The picker that decides what to publish next was choosing from a blind cross-product of ~365 platform×format×topic combinations — and about 93% of its draws were unsatisfiable (no inventory, or a platform that was closed). It "ran" every day and published almost nothing. The fix was one embarrassing filter: only sample arms that have pending inventory on a platform that actually works.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The measurement layer undercounted.&lt;/strong&gt; Manually published pieces weren't being logged to the same table the scorecard reads, so the collapse looked even deeper than it was — which pushed the diagnosis toward "audience loss" instead of "output loss" for longer than it should have.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;None of these would have survived a single honest glance at one number: &lt;em&gt;pieces actually published per day, across all lanes&lt;/em&gt;. I wasn't tracking it. The lane with a daily human-visible artifact (a blog post I could see) felt like proof the system was healthy. The lane without one failed silently.&lt;/p&gt;

&lt;h2&gt;
  
  
  The fixes that shipped
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;A hard output floor: ≥8 published pieces per day, total, across all lanes.&lt;/strong&gt; Not a target — a floor that every publishing task is required to check. It was met for the first time on July 17 (11 pieces). It was missed on July 18 morning (5) because of a tooling outage, which at least proves the floor is now &lt;em&gt;measured&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dead-stock purge + honest platform list.&lt;/strong&gt; Content only gets generated for channels that verifiably work today.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The bandit filter&lt;/strong&gt; described above.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One ledger.&lt;/strong&gt; Every publish — automated or manual — writes to the same log the scorecard reads. If it isn't logged, it didn't happen.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Week 10–12 experiment: two always-on native lanes
&lt;/h2&gt;

&lt;p&gt;The restoration plan I'm testing for the next two weeks is a &lt;strong&gt;two-live-lanes cadence&lt;/strong&gt;: the dev.to canonical article every day (this lane), plus a &lt;strong&gt;native LinkedIn post at least 5 of every 7 days&lt;/strong&gt; — with X and Threads volume layered on top rather than treated as the foundation.&lt;/p&gt;

&lt;p&gt;Why LinkedIn gets promoted to a lane of its own: back in Week 3, the same piece of content did &lt;strong&gt;34 impressions as a native LinkedIn post on a 4-follower account&lt;/strong&gt; and &lt;strong&gt;0 Day-1 views as a dev.to post&lt;/strong&gt;. That ratio has held directionally ever since — native text on LinkedIn gets distributed to strangers; dev.to's feed gives me almost nothing, but its articles keep paying search rent for months. So: LinkedIn for reach-now, dev.to for reach-later, and neither lane is allowed to go dark silently again.&lt;/p&gt;

&lt;p&gt;Targets on the record, so future-me can be graded: &lt;strong&gt;25k impressions/week by July 31, 100k/week by August 31.&lt;/strong&gt; Those are recovery targets, not projections — Week 13's post will report the real line.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's still honestly not working
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;7 reactions across 115 articles.&lt;/strong&gt; dev.to's feed has never adopted this catalog, and ten pieces in five days earning 20 combined views says it still hasn't.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bluesky: 22 followers, zero engagement.&lt;/strong&gt; Parked.&lt;/li&gt;
&lt;li&gt;The app's Play Store listing converts around &lt;strong&gt;5.5% over a trailing 7 days&lt;/strong&gt; (early-July measurement) — decent for cold traffic, but the input volume is the bottleneck, which is the entire point of this postmortem.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Three takeaways if you're running your own pipeline
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Instrument output before you diagnose audience.&lt;/strong&gt; A reach collapse has two possible causes, and only one of them is fashionable to blame. Check "did I actually ship?" first — per lane, not in aggregate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Floors beat goals for systems that run without you.&lt;/strong&gt; A goal fails silently; a floor that must be checked every run fails loudly, which is the only useful way to fail.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A healthy-looking lane will hide a dead one.&lt;/strong&gt; If one channel produces a daily visible artifact and another doesn't, your intuition about "the system is running" is being formed entirely by the visible one.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;The app this experiment funds with attention: &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=2026w29" rel="noopener noreferrer"&gt;Background Camera RemoteStream on Google Play&lt;/a&gt; — records with the screen off, local-only storage, built-in LAN web viewer, unlisted YouTube Live streaming from anywhere. Free, no account, no cloud. More at &lt;a href="https://superfunicular.com?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=2026w29" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Related reading: &lt;a href="https://dev.to/superfunicular/going-away-this-summer-the-night-before-checklist-for-watching-your-home-from-anywhere-no-1igd"&gt;yesterday's night-before checklist for watching your home while traveling&lt;/a&gt;, and the engineering side of this project in &lt;a href="https://dev.to/superfunicular/storage-not-heat-is-the-real-limit-on-247-android-recording-segment-rotation-retention-math-2j5"&gt;Storage, Not Heat, Is the Real Limit on 24/7 Android Recording&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>buildinpublic</category>
      <category>indiehackers</category>
      <category>marketing</category>
      <category>android</category>
    </item>
    <item>
      <title>Going Away This Summer? The Night-Before Checklist for Watching Your Home From Anywhere — No Subscription, No Cloud (2026)</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Sat, 18 Jul 2026 07:06:55 +0000</pubDate>
      <link>https://dev.to/superfunicular/going-away-this-summer-the-night-before-checklist-for-watching-your-home-from-anywhere-no-1igd</link>
      <guid>https://dev.to/superfunicular/going-away-this-summer-the-night-before-checklist-for-watching-your-home-from-anywhere-no-1igd</guid>
      <description>&lt;p&gt;There's a moment on every summer trip — usually somewhere past the second hour of driving, or right as the plane door closes — when the question arrives uninvited: &lt;em&gt;is the house okay?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The camera industry has a well-priced answer for that feeling: buy a cloud camera, create an account, and start a subscription that outlives your vacation by roughly fifty weeks. Wyze's plan runs about $29.99/yr and Ring's about $69.99/yr as advertised in mid-2026 (verify with the vendor — prices move constantly). Reasonable products, but notice the shape of the deal: a two-week need, billed annually, with your empty house streaming to someone else's cloud the whole time.&lt;/p&gt;

&lt;p&gt;There's a $0 alternative you probably already own: an old Android phone, one free app, and thirty minutes the night before you leave. I make the app in question — &lt;strong&gt;Background Camera RemoteStream&lt;/strong&gt; — so this is a maker's guide, with the caveats stated plainly, including the one thing this setup genuinely can't do for a traveler.&lt;/p&gt;

&lt;p&gt;I've written a &lt;a href="https://dev.to/superfunicular/how-to-watch-your-home-or-pet-while-traveling-without-a-subscription-turn-an-old-android-phone-h43"&gt;general primer on watching your home or pet while traveling&lt;/a&gt; before. This article is the part that guide compresses into a sentence: the &lt;strong&gt;pre-departure checklist&lt;/strong&gt; — what to set up, and crucially what to &lt;em&gt;test&lt;/em&gt;, before you lock the door behind you. Because the difference between away-monitoring that works and away-monitoring that quietly died on day two is almost never the app. It's the dry run nobody does.&lt;/p&gt;

&lt;h2&gt;
  
  
  What away-monitoring actually requires (it's not what home-monitoring requires)
&lt;/h2&gt;

&lt;p&gt;When you're home, a phone-camera on your Wi-Fi is easy — the app's built-in web server lets any browser in the house watch the feed without a single byte leaving your network. But that's a &lt;strong&gt;same-Wi-Fi feature by design&lt;/strong&gt;. When you're 400 miles away, it does nothing for you.&lt;/p&gt;

&lt;p&gt;Traveling changes the requirements to exactly three things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;A live view that works from anywhere&lt;/strong&gt; — over cellular at a rest stop, over hotel Wi-Fi.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recordings that survive&lt;/strong&gt; whether or not you ever glance at the stream.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;A setup that stays up with nobody home to fix it.&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Here's how the app covers the first two, and what the honest answer is on the third.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 30-minute setup, night before
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Prep the donor phone (10 minutes).&lt;/strong&gt; Any Android phone from the last six or seven years is more than enough. If it's a hand-me-down or a kid's outgrown device, do the account cleanup properly — remove the Google account &lt;em&gt;before&lt;/em&gt; factory resetting, or Android's Factory Reset Protection will lock you out. I wrote the &lt;a href="https://dev.to/superfunicular/your-kid-just-upgraded-phones-turn-the-outgrown-one-into-a-private-home-camera-no-account-no-5gje"&gt;full prep checklist here&lt;/a&gt;. The ideal camera phone holds nothing but the camera app.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Install and place it (5 minutes).&lt;/strong&gt; &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=2026w29" rel="noopener noreferrer"&gt;One tap on Google Play&lt;/a&gt;. Point it at the thing you'd actually want to see: the main entry hall beats a window view (glass backlights the image all day and shows you your own yard). Prop it high, landscape, plugged into a &lt;strong&gt;wall outlet directly&lt;/strong&gt; — not a power strip that someone "helpfully" switched off, not an outlet on a timer. This sounds paranoid until it happens.&lt;/p&gt;

&lt;p&gt;One quietly useful detail: the app records with the &lt;strong&gt;screen off&lt;/strong&gt;, running the camera as a foreground service with the display dark. On a two-week trip that's not just battery care — a glowing phone screen propped in a dark, motionless house is visible from outside, and it advertises both &lt;em&gt;camera here&lt;/em&gt; and &lt;em&gt;nobody home&lt;/em&gt;. Dark screen, dark house, camera still rolling.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Set up the from-anywhere view (10 minutes).&lt;/strong&gt; The app streams to an &lt;strong&gt;unlisted YouTube Live&lt;/strong&gt; link. Unlisted means it isn't searchable and isn't on your channel page — the only people who can watch are people who have the exact URL. Keep that link to yourself (or your household), and you have a private window into your hallway from any browser on earth, with no account created in the app and no vendor cloud storing your empty house. If you want the full technical picture of how a dark phone keeps a live stream running, that's &lt;a href="https://dev.to/superfunicular/streaming-to-youtube-live-from-an-android-phone-with-the-screen-off-the-whole-path-end-to-end-ik2"&gt;written up end to end here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Two pieces of link hygiene: don't paste the link anywhere public (unlisted is privacy by obscurity of the URL, not authentication), and after the trip, end the stream and start a fresh one next time — old links, like old keys, are cheap to rotate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Do the storage math (5 minutes).&lt;/strong&gt; Recordings stay &lt;strong&gt;local, on the phone&lt;/strong&gt; — no cloud copy, which is the privacy point, but it makes capacity &lt;em&gt;your&lt;/em&gt; number to check. The arithmetic: at a typical ~4 Mbps for 1080p, an hour of video is about &lt;strong&gt;1.8 GB&lt;/strong&gt;. A phone with 80 GB free holds about &lt;strong&gt;44 hours&lt;/strong&gt; — under two days of continuous recording, and a full two-week trip of it would need ~600 GB no phone has. So decide what recording is &lt;em&gt;for&lt;/em&gt; on this trip: drop the resolution, record the hours you care about, or treat the live stream as primary and recordings as supplementary. Any answer is fine; the wrong answer is assuming it'll sort itself out.&lt;/p&gt;

&lt;h2&gt;
  
  
  The step everyone skips: the 24-hour dry run
&lt;/h2&gt;

&lt;p&gt;Set everything up &lt;strong&gt;the day before, not the morning of&lt;/strong&gt;, and let it run overnight. Then, before you leave, run three tests:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The away test.&lt;/strong&gt; Turn off Wi-Fi on your main phone and open the unlisted link over cellular, from the driveway. If you only ever checked the stream from your own couch, you haven't tested the thing the trip needs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The overnight test.&lt;/strong&gt; Is the stream still live in the morning? Did the phone stay plugged in, stay cool, keep recording? One overnight catches most placement and power mistakes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The upload test.&lt;/strong&gt; The stream rides your home connection's &lt;em&gt;upload&lt;/em&gt; bandwidth, which is the thin side of most home internet. If the overnight stream stuttered, drop the stream quality a notch — a stable modest picture beats a beautiful feed that dies.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Fifteen spare minutes the night before versus discovering a dead feed from a beach chair: the trade of the summer.&lt;/p&gt;

&lt;h2&gt;
  
  
  Honest caveats — read these before you trust it
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;No motion alerts.&lt;/strong&gt; This app gives you a live window and local recordings, not a "person detected" push notification. You glance when you think of it; it doesn't tap your shoulder. If alerts are the whole point for you, that's a real reason to pay Wyze or Ring for their cloud AI — I won't pretend otherwise.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Live-glance latency.&lt;/strong&gt; YouTube Live is a broadcast pipeline; expect tens of seconds of delay. For "is the house fine?" that's irrelevant. For real-time reaction, it's not the tool.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The away-sysadmin problem — the big one.&lt;/strong&gt; No cloud means nobody else is watching the watcher. If the power blips, the router reboots and hangs, or the phone somehow dies on day four, there is no company noticing and no remote hand to fix it — and unlike at home, &lt;em&gt;you can't walk over either&lt;/em&gt;. Reduce the odds (direct wall power, the dry run, a router that's been stable for months), but for a long trip the honest backup isn't software at all: it's a neighbor with a key. Which is also the answer to the broader point — this is &lt;strong&gt;monitoring, not a security system&lt;/strong&gt;. It shows you your house; it doesn't dispatch anyone.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The browser view stays home.&lt;/strong&gt; The built-in web server is same-Wi-Fi by design — that's what keeps it local. While traveling, the unlisted YouTube Live link is your path; the LAN view is for when you're back.&lt;/p&gt;

&lt;p&gt;The flip side of doing your own sysadmin work is that the failure modes of &lt;em&gt;other people's&lt;/em&gt; infrastructure can't touch you — there's no company whose shutdown, acquisition, or policy change can take your footage with it. I wrote about &lt;a href="https://dev.to/superfunicular/what-happens-to-your-footage-when-a-free-camera-app-shuts-down-or-gets-acquired-2026-5g58"&gt;what happens to your footage when a free camera app shuts down&lt;/a&gt; — local-only means that story can't happen to you.&lt;/p&gt;

&lt;h2&gt;
  
  
  The verdict
&lt;/h2&gt;

&lt;p&gt;A two-week trip is precisely the wrong occasion to start an annual subscription and exactly the right occasion for the phone in your drawer. Thirty minutes the night before — prep, place, stream, storage math — plus the one discipline nobody bothers with, the 24-hour dry run, and you get the thing you actually wanted: opening a private link from anywhere and seeing your own quiet hallway, footage staying inside your own house the entire time.&lt;/p&gt;

&lt;p&gt;Get &lt;strong&gt;Background Camera RemoteStream&lt;/strong&gt; free on &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=2026w29" rel="noopener noreferrer"&gt;Google Play&lt;/a&gt;, and read more at &lt;a href="https://superfunicular.com/?utm_source=devto&amp;amp;utm_medium=article&amp;amp;utm_campaign=2026w29" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt;. Have a good trip — and check the feed once from the driveway before you go.&lt;/p&gt;

</description>
      <category>android</category>
      <category>privacy</category>
      <category>security</category>
      <category>mobile</category>
    </item>
    <item>
      <title>Turn the Old Phone in Your Junk Drawer Into a Baby Monitor (No Subscription, No Cloud Account)</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Fri, 17 Jul 2026 02:44:43 +0000</pubDate>
      <link>https://dev.to/superfunicular/turn-the-old-phone-in-your-junk-drawer-into-a-baby-monitor-no-subscription-no-cloud-account-121</link>
      <guid>https://dev.to/superfunicular/turn-the-old-phone-in-your-junk-drawer-into-a-baby-monitor-no-subscription-no-cloud-account-121</guid>
      <description>&lt;p&gt;The baby monitor aisle has quietly turned into a subscription aisle. Most dedicated camera products now route the video feed of your sleeping kid through the vendor's cloud, put the useful features (history, alerts, multi-device viewing) behind a monthly plan, and stop working properly the day the company sunsets the service. That's a strange deal: you buy the hardware, but the actual &lt;em&gt;monitoring&lt;/em&gt; is rented.&lt;/p&gt;

&lt;p&gt;Meanwhile there's probably a perfectly good camera, WiFi radio, and battery backup sitting in your junk drawer — your last phone.&lt;/p&gt;

&lt;p&gt;This is a short tutorial for turning an old Android phone into a baby monitor where the video stays under your control. No new hardware, no account with a camera vendor, no monthly fee.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you need
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Any spare Android phone (this is a great job for a device too old for daily use)&lt;/li&gt;
&lt;li&gt;A charger — the phone stays plugged in&lt;/li&gt;
&lt;li&gt;A camera app that can record and stream with the screen off — I build &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Dscreen_off_streaming" rel="noopener noreferrer"&gt;Background Camera RemoteStream&lt;/a&gt;, so that's what the steps below use, but the general recipe works with anything that has these capabilities&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 1 — Position the phone
&lt;/h2&gt;

&lt;p&gt;Prop or mount the old phone with the rear camera facing the crib. A cheap gooseneck holder works; so does a bookshelf. Plug it in — video is power-hungry and this phone's battery is presumably not its best feature anymore.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2 — Turn the screen off (this matters more than you'd think)
&lt;/h2&gt;

&lt;p&gt;A glowing rectangle in a dark nursery is both a nightlight you didn't ask for and a "please poke me" invitation once your kid can stand. Screen-off operation means the phone looks inert while the camera keeps running. It also cuts power draw and heat, which matters for a device that's plugged in around the clock.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3 — Pick your viewing path
&lt;/h2&gt;

&lt;p&gt;There are two that cover basically every situation:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Same WiFi (you're home, baby is napping upstairs):&lt;/strong&gt; the app runs a small web server on the phone, so any browser on your network — laptop, tablet, your daily phone — can open the live view directly. Phone-to-browser over your LAN; the feed never leaves your house.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Away from home (date night, grandparents babysitting, you're traveling):&lt;/strong&gt; stream to an unlisted YouTube Live from the phone and open the link from anywhere. One honest caveat, because it's your kid on camera: &lt;em&gt;unlisted&lt;/em&gt; means not searchable, but anyone who has the link can watch. Treat the link like a house key — share it with the babysitter, not the group chat. If that trade-off doesn't sit right with you, stay on the LAN-only path.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4 — Record locally if you want history
&lt;/h2&gt;

&lt;p&gt;Recordings go to the phone's own storage. There's no vendor server involved, which is the entire point: nobody's cloud, nobody's retention policy, nobody's "we've updated our privacy terms" email about footage of your nursery.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this is not
&lt;/h2&gt;

&lt;p&gt;Worth saying plainly: this is a video check-in, not a medical device. It doesn't measure breathing or heart rate, and no camera setup — DIY or store-bought — substitutes for age-appropriate safe-sleep practice. Also keep the phone and its cable fully out of the child's reach.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I keep pushing the old-phone angle
&lt;/h2&gt;

&lt;p&gt;Phones get replaced on a two-to-three-year rhythm while remaining genuinely capable computers. Repurposing one is cheaper than a camera subscription, keeps e-waste in service, and — for the specific case of pointing a camera at your child — keeps the footage in your home instead of a data center. If you want more jobs for that drawer phone, I ranked five of them &lt;a href="https://dev.to/superfunicular/before-you-recycle-that-old-android-phone-5-jobs-it-still-does-ranked-1c7f"&gt;here&lt;/a&gt;, and wrote up the kid-upgrade variant of this setup &lt;a href="https://dev.to/superfunicular/your-kid-just-upgraded-phones-turn-the-outgrown-one-into-a-private-home-camera-no-account-no-5gje"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open question for the dev.to community
&lt;/h2&gt;

&lt;p&gt;Parents who went the commercial route: did the subscription creep bother you, or is the polish worth it? And if you've DIY'd a monitor from a phone or a Pi camera, what did you use for the away-from-home path — I keep going back and forth on whether unlisted-link streaming is the right default or whether everything should stay LAN-only.&lt;/p&gt;




&lt;p&gt;App: &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Dscreen_off_streaming" rel="noopener noreferrer"&gt;Background Camera RemoteStream on Google Play&lt;/a&gt; · more at &lt;a href="https://superfunicular.com" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt; · Built solo by Super Funicular LLC.&lt;/p&gt;

</description>
      <category>android</category>
      <category>tutorial</category>
      <category>diy</category>
      <category>privacy</category>
    </item>
    <item>
      <title>Before You Recycle That Old Android Phone: 5 Jobs It Still Does (Ranked)</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Fri, 17 Jul 2026 00:45:05 +0000</pubDate>
      <link>https://dev.to/superfunicular/before-you-recycle-that-old-android-phone-5-jobs-it-still-does-ranked-1c7f</link>
      <guid>https://dev.to/superfunicular/before-you-recycle-that-old-android-phone-5-jobs-it-still-does-ranked-1c7f</guid>
      <description>&lt;p&gt;Your phone didn't stop working when you upgraded. The battery still charges, the cameras still focus, the WiFi still connects. It just stopped being &lt;em&gt;your phone&lt;/em&gt; — and the industry would very much like you to trade it in for $40 or drop it in a recycling bin.&lt;/p&gt;

&lt;p&gt;Before you do: an old Android phone is a small Linux computer with two cameras, a microphone, a screen, and a battery backup built in. Here are five jobs it can still do, ranked by how much value you get per minute of setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Home security camera while you travel
&lt;/h2&gt;

&lt;p&gt;This is the highest-value one, and it's why summer is the right time to set it up. Leaving for two weeks — vacation rental, visiting family, wherever — and your home just sits there? Prop the old phone on a shelf facing the door, plug it in, and it becomes a security camera you can check from anywhere.&lt;/p&gt;

&lt;p&gt;I use &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera" rel="noopener noreferrer"&gt;Background Camera RemoteStream&lt;/a&gt; for this (disclosure: I built it), and the design goals were exactly this scenario:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Records with the screen off&lt;/strong&gt; — the phone looks dead on the shelf, doesn't glow all night, and doesn't cook its battery driving a display nobody is watching.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Remote viewing from anywhere&lt;/strong&gt; via an unlisted YouTube Live stream — no port forwarding, no cloud account with a stranger, and the viewing side is just YouTube, which works on whatever device you have with you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local viewing over your LAN&lt;/strong&gt; through a built-in web server, for when you're home and just want a quick look from your laptop.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Footage stays local&lt;/strong&gt; on the phone's storage. There is no company server between you and your video.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The whole setup is: install, point the camera, tap record, leave. A dedicated security camera does this too — after you buy it, and usually after you sign up for whichever subscription unlocks remote viewing and clip history. Many popular camera apps and hardware ecosystems put the features that actually matter (remote access, recording retention) behind a monthly plan. The phone in your drawer does it for the cost of the electricity to keep it charged.&lt;/p&gt;

&lt;p&gt;Same setup covers the reverse case, by the way: pointing a camera at your &lt;em&gt;own&lt;/em&gt; apartment while you're away is the legitimate version of travel-security anxiety. (Pointing one at guests in a rental you host is not — don't be that host.)&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Baby or pet monitor
&lt;/h2&gt;

&lt;p&gt;Identical hardware story, different room. The phone watches the crib or the dog, you watch the stream from the couch or the office. I wrote a full ranked comparison of seven ways to do this — from a bare video call to dedicated monitor hardware — here: &lt;a href="https://dev.to/superfunicular/7-ways-to-turn-an-old-android-phone-into-a-baby-monitor-ranked-3o04"&gt;7 Ways to Turn an Old Android Phone Into a Baby Monitor (Ranked)&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Dashcam
&lt;/h2&gt;

&lt;p&gt;A phone mount, a long USB cable to the 12V socket, and any dashcam app turns the old phone into a dashcam you don't have to hardwire. It's not as tidy as a purpose-built unit, but the camera sensor in a 3-year-old flagship is better than the sensor in most budget dashcams, and you already own it.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Dedicated offline media player
&lt;/h2&gt;

&lt;p&gt;Strip it down: no SIM, no personal accounts, just your podcast app and music synced over WiFi. It becomes the gym/workshop/kitchen device you don't mind dropping, with none of your real phone's notifications. Bonus: your actual phone's battery stops taking the hit.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Kitchen recipe screen / e-reader
&lt;/h2&gt;

&lt;p&gt;The lowest-tech entry, but people who do it keep doing it: a phone in a cheap stand, permanently on the counter or nightstand, running a recipe app or reading app. No setup beyond a stand. It's the "just works" tier.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I'd skip
&lt;/h2&gt;

&lt;p&gt;Old-phone listicles usually pad out to 10+ items with things like "make it a webcam for your desktop" (job #1 covers this better — see the &lt;a href="https://dev.to/superfunicular/5-ways-to-use-an-old-android-phone-as-a-work-from-home-camera-ranked-45lk"&gt;work-from-home camera comparison&lt;/a&gt;) or "donate it to science." If a use case needs the phone to be fast, it's a bad fit — these jobs all work because cameras, radios, and screens age far slower than SoCs.&lt;/p&gt;

&lt;p&gt;One practical note for any 24/7 plugged-in job (#1, #2, #5): if the phone supports a charging limit (many Androids can cap at 80–85%), turn it on. Batteries dislike sitting at 100% for months.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open question
&lt;/h2&gt;

&lt;p&gt;For those running an old phone as a permanent fixture: what's your solution for the phone silently dying while you're away — watchdog app, smart plug power-cycling, something else? That's the failure mode I think about most for job #1, and I'd like to hear real-world setups before I over-engineer one.&lt;/p&gt;




&lt;p&gt;App from job #1: &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera" rel="noopener noreferrer"&gt;Background Camera RemoteStream on Google Play&lt;/a&gt; · more at &lt;a href="https://superfunicular.com" rel="noopener noreferrer"&gt;superfunicular.com&lt;/a&gt; · built solo by Super Funicular LLC.&lt;/p&gt;

</description>
      <category>android</category>
      <category>tutorial</category>
      <category>productivity</category>
      <category>security</category>
    </item>
    <item>
      <title>5 ways to use an old Android phone as a work-from-home camera (ranked)</title>
      <dc:creator>Super Funicular</dc:creator>
      <pubDate>Thu, 16 Jul 2026 08:45:23 +0000</pubDate>
      <link>https://dev.to/superfunicular/5-ways-to-use-an-old-android-phone-as-a-work-from-home-camera-ranked-45lk</link>
      <guid>https://dev.to/superfunicular/5-ways-to-use-an-old-android-phone-as-a-work-from-home-camera-ranked-45lk</guid>
      <description>&lt;p&gt;&lt;em&gt;You're at your desk on a call. The doorbell rings — a package, a contractor, the dog walker. If you work from home, half your interruptions are "I just need to see what's happening in the other room / at the front door." You don't need a security system for that. You probably have the answer in a drawer.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Here are five ways to press an old Android phone into service as a work-from-home camera, ranked by how well they fit the WFH use case: quick glances from the machine you're already sitting at, without babysitting the phone.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Background Camera RemoteStream (screen off, check it from your browser)
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera" rel="noopener noreferrer"&gt;Background Camera RemoteStream&lt;/a&gt; is built for exactly this shape of problem: the phone records with the &lt;strong&gt;screen off&lt;/strong&gt; (no glowing rectangle pointed at your hallway all day), stores footage &lt;strong&gt;locally&lt;/strong&gt; — no account, no cloud, no subscription — and runs an &lt;strong&gt;embedded web server&lt;/strong&gt;, so you check the feed from a browser tab on your work machine over your LAN. If you also want to peek while you're out, it can push an &lt;strong&gt;unlisted YouTube Live&lt;/strong&gt; stream.&lt;/p&gt;

&lt;p&gt;Setup is genuinely short: install, point the phone, open the phone's address in your desktop browser. The honest trade-off: you're the sysadmin. Local storage means it's on you to manage the footage, and LAN access means out-of-home viewing goes through the YouTube Live route.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. IP Webcam
&lt;/h2&gt;

&lt;p&gt;The long-running classic. Serves an MJPEG stream over your LAN that any browser or VLC can open. Endlessly configurable and free, but the setup is more manual, and the UX shows its age. Great if you enjoy tinkering; less great if you want it working before your next meeting.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. AlfredCamera
&lt;/h2&gt;

&lt;p&gt;The easiest cloud option: install on both your old phone and your main one, sign in, done. The trade-offs are the standard cloud ones — account required, footage goes through their servers, and the useful features sit behind a subscription. If a browser tab on your LAN already covers you, you may not need any of that.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. DroidCam (if what you actually want is a webcam)
&lt;/h2&gt;

&lt;p&gt;Different job, worth listing because the searches overlap: DroidCam turns the phone into a webcam for your video calls — your face, not your house. If your actual problem is "my laptop camera is terrible," this is your answer, and none of the monitoring apps above are.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. A cheap used security camera
&lt;/h2&gt;

&lt;p&gt;The non-app answer. A second-hand cam is inexpensive and purpose-built, but now you own another device, usually another account, and often another cloud dependency — to solve a problem the phone in your drawer already solves.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Related from me:&lt;/strong&gt; &lt;a href="https://dev.to/superfunicular/7-ways-to-turn-an-old-android-phone-into-a-baby-monitor-ranked-3o04"&gt;7 ways to turn an old Android phone into a baby monitor (ranked)&lt;/a&gt; — same idea, different room.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open question for the WFH crowd:&lt;/strong&gt; if your employer routes your work machine through a full-tunnel VPN, your LAN devices become unreachable from it. How do you handle "glance at a local camera" from a locked-down work laptop — second browser on a personal device, split tunneling, something smarter?&lt;/p&gt;




&lt;p&gt;App: &lt;a href="https://play.google.com/store/apps/details?id=com.superfunicular.digicam&amp;amp;referrer=utm_source%3Ddevto%26utm_medium%3Darticle%26utm_campaign%3Doldphone_camera" rel="noopener noreferrer"&gt;Background Camera RemoteStream on Google Play&lt;/a&gt; · Built solo by &lt;a href="https://superfunicular.com" rel="noopener noreferrer"&gt;Super Funicular LLC&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>android</category>
      <category>productivity</category>
      <category>tutorial</category>
      <category>privacy</category>
    </item>
  </channel>
</rss>
