Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.mobile.android > #155104

Re: Storage media availability over time

From Maria Sophia <mariasophia@comprehension.com>
Newsgroups comp.mobile.android
Subject Re: Storage media availability over time
Date 2026-08-19 12:55 -0800
Organization BWH Usenet Archive (https://usenet.blueworldhosting.com)
Message-ID <1165583$2mig$1@nnrp.usenet.blueworldhosting.com> (permalink)
References (9 earlier) <11650e1.13d0.1@ID-201911.user.individual.net> <1164qep$o7$1@nnrp.usenet.blueworldhosting.com> <11654q2.5h0.1@ID-201911.user.individual.net> <11652ot$2eua$1@nnrp.usenet.blueworldhosting.com> <11653ga$2v6d3$1@dont-email.me>

Show all headers | View raw


AJL wrote:
> Did I get that sentence correct?

Depends on the plurality rules of whom you're speaking about, AJL... :)

BTW, I wouldn't normally bring up Frank's lousy grammar unless/until he 
tries to insult me since it's insulting that someone tries to insult me who 
can't comprehend even the most basic of grammatical rules, don't you think? 

Anyway, there are likely only two or three people on this newsgroup who can 
help me solve this problem below that I started working on further today.

 Newsgroups: comp.mobile.android,alt.comp.microsoft.windows,alt.comp.os.windows-10
 Subject: PSA: How to archive your EXACT homescreen(s) apps to Windows for perfect cross-platform backup/restore sans the net
 Date: Fri, 14 Aug 2026 09:57:21 -0800
 Message-ID: <115nktv$15du$1@nnrp.usenet.blueworldhosting.com>

Here's my current python script which needs tweaking, where the overall 
goal is to be able to archive APKs to the desktop in the exact same 
hierarchy as those app icon shortcuts are stored on our homescreen(s).

It's better for us to spend our energy improving that script than 
being desperate to insult each other (which is what Frank was doing).

  # -------------------------------------------------------------------
  # novasql.py 
  #  Parse nova.db binary SQL database using "python novasql.py"
  #   python novasql.py > result.txt
  # -------------------------------------------------------------------
  # The "favorites" table stores app shortcuts and folder containers.
  # -------------------------------------------------------------------
  # v1p2 20260819 Cleaned up the output a bit to make it more readable
  # v1p1 20260819 Try to map which app packages live inside each folder
  # v1p0 20260819 Spits out the nova.db into a human-readable text file
  # -------------------------------------------------------------------
  import sys
  import sqlite3
  
  sys.stdout.reconfigure(encoding="utf-8")
  
  conn = sqlite3.connect("nova.db")
  cursor = conn.cursor()
  
  print("=== NOVA LAUNCHER ARCHIVE: FOLDERS & APPS ===\n")
  
  # 1. Fetch folders (items where intent is null/None and have a title)
  cursor.execute(
      "SELECT _id, title FROM favorites WHERE intent IS NULL AND title IS NOT"
      " NULL;"
  )
  folders = cursor.fetchall()
  
  for folder_id, folder_name in folders:
    print(f"Folder: [ {folder_name} ] (ID: {folder_id})")
  
    # 2. Fetch apps inside this folder (where container matches the folder's _id)
    cursor.execute(
        "SELECT title, intent FROM favorites WHERE container = ?;", (folder_id,)
    )
    items = cursor.fetchall()
  
    if items:
      for app_title, intent in items:
        pkg = "Unknown"
        if intent and "component=" in intent:
          try:
            part = intent.split("component=")[1]
            pkg = part.split("/")[0]
          except IndexError:
            pkg = intent
        print(f"    - App: {app_title} ({pkg})")
    else:
      print("    - (Empty folder or layout reference)")
    print()
  
  # 3. List top-level apps not inside folders for completeness
  print("=== TOP-LEVEL / LOOSE HOME SCREEN APPS ===")
  cursor.execute(
      "SELECT title, intent FROM favorites WHERE container < 0 AND intent IS NOT"
      " NULL;"
  )
  for row in cursor.fetchall():
    app_title, intent = row
    pkg = "Unknown"
    if intent and "component=" in intent:
      try:
        part = intent.split("component=")[1]
        pkg = part.split("/")[0]
      except IndexError:
        pkg = intent
    print(f"- {app_title} ({pkg})")
  
  conn.close()
  # end of novasql.py

Back to comp.mobile.android | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

SD card vs. Esim?   Samsung vs. others?  micky <NONONOmisc07@fmguy.com> - 2026-08-06 21:29 -0400
  Re: SD card vs. Esim?   Samsung vs. others?  micky <NONONOmisc07@fmguy.com> - 2026-08-07 09:15 -0400
    Re: SD card vs. Esim?   Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-07 16:42 +0200
      Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-07 15:50 +0100
        Re: SD card vs. Esim? Samsung vs. others? Jörg Lorenz <hugybear@gmx.net> - 2026-08-07 17:30 +0200
          Re: SD card vs. Esim? Samsung vs. others? Jörg Lorenz <hugybear@gmx.net> - 2026-08-07 17:30 +0200
    Re: SD card vs. Esim? Samsung vs. others? Jörg Lorenz <hugybear@gmx.net> - 2026-08-07 17:27 +0200
      Re: SD card vs. Esim? Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-07 22:09 +0200
        Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-10 02:28 +0200
      Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-10 17:41 +0200
        Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-10 09:24 -0800
          Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-11 10:38 +0200
            Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-11 02:01 -0800
              Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-11 12:32 +0100
                Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-11 08:19 -0800
                Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-14 19:20 +0200
                Re: SD card vs. Esim? Samsung vs. others? Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-15 10:24 +0100
                Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-15 12:08 +0200
                Re: SD card vs. Esim? Samsung vs. others? Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-15 11:51 +0100
                Re: SD card vs. Esim? Samsung vs. others? Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-15 13:40 +0100
            Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-11 13:28 +0200
          Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-11 13:27 +0200
            Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-11 12:39 +0100
              Re: SD card vs. Esim? Samsung vs. others? The Real Bev <bashley101@gmail.com> - 2026-08-15 10:38 -0700
            Re: SD card vs. Esim? Samsung vs. others? Frank Slootweg <this@ddress.is.invalid> - 2026-08-11 13:58 +0000
              Re: SD card vs. Esim? Samsung vs. others? Frank Slootweg <this@ddress.is.invalid> - 2026-08-11 14:12 +0000
              Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-12 20:36 +0200
                Re: SD card vs. Esim? Samsung vs. others? AJL <noemail@none.com> - 2026-08-12 20:40 +0000
            Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-11 08:19 -0800
              Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-11 08:52 -0800
              Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-12 20:44 +0200
                Storage media availability over time (was: Re: SD card vs. Esim? Samsung vs. others?) Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-16 09:20 +0100
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-16 10:01 -0800
                Re: Storage media availability over time Arno Welzel <usenet@arnowelzel.de> - 2026-08-18 14:00 +0200
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-18 15:22 +0200
                Re: Storage media availability over time Frank Slootweg <this@ddress.is.invalid> - 2026-08-18 15:44 +0000
                Re: Storage media availability over time Andy Burns <usenet@andyburns.uk> - 2026-08-18 19:22 +0100
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-18 18:15 -0800
                Re: Storage media availability over time Andy Burns <usenet@andyburns.uk> - 2026-08-19 07:58 +0100
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-18 23:15 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-19 15:36 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 08:23 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-19 16:59 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 10:04 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 20:15 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 10:19 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 20:29 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 11:57 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 22:13 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 12:50 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-20 00:21 +0000
                Re: Storage media availability over time Arno Welzel <usenet@arnowelzel.de> - 2026-08-20 23:08 +0200
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 19:11 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 09:44 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 19:56 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 10:11 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 20:17 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 10:24 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 20:35 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 12:04 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-19 22:15 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 13:02 -0800
                Re: Storage media availability over time Jim Jackson <jj@franjam.org.uk> - 2026-08-20 17:26 +0000
                Re: Storage media availability over time Frank Slootweg <this@ddress.is.invalid> - 2026-08-19 17:33 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 09:51 -0800
                Re: Storage media availability over time Frank Slootweg <this@ddress.is.invalid> - 2026-08-19 18:48 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 12:13 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-19 20:25 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 12:55 -0800
                Re: Storage media availability over time "Carlos E. R." <robin_listas@es.invalid> - 2026-08-20 01:16 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 20:32 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-20 00:08 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 20:36 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-20 06:03 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-19 22:19 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-20 12:45 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-20 06:22 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-20 15:22 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-20 08:48 -0800
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-20 18:18 +0000
                Re: Storage media availability over time [Android Newsreader] Dave Royal <dave@dave123royal.com> - 2026-08-20 19:48 +0100
                Re: Storage media availability over time [Android Newsreader] AJL <noemail@none.com> - 2026-08-20 21:07 +0000
                Re: Storage media availability over time Frank Slootweg <this@ddress.is.invalid> - 2026-08-20 14:35 +0000
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-20 15:36 +0000
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-20 08:53 -0800
                Re: Storage media availability over time Old Macdonald <eieio@patch.corn> - 2026-08-19 17:37 -0700
                Re: Storage media availability over time Frank Slootweg <this@ddress.is.invalid> - 2026-08-20 14:39 +0000
                Re: Storage media availability over time knuttle <keith_nuttle@yahoo.com> - 2026-08-19 18:17 -0400
                Re: Storage media availability over time AJL <noemail@none.com> - 2026-08-19 23:45 +0000
                Re: Storage media availability over time Arno Welzel <usenet@arnowelzel.de> - 2026-08-20 23:06 +0200
                Re: Storage media availability over time Arno Welzel <usenet@arnowelzel.de> - 2026-08-20 23:04 +0200
                Re: Storage media availability over time Ch1ffr3punk <ch1ffr3punk@gmail.com> - 2026-08-20 21:09 +0000
                Re: Storage media availability over time Arno Welzel <usenet@arnowelzel.de> - 2026-08-20 23:01 +0200
                Re: Storage media availability over time Arno Welzel <usenet@arnowelzel.de> - 2026-08-18 13:29 +0200
                Re: Storage media availability over time Maria Sophia <mariasophia@comprehension.com> - 2026-08-18 08:47 -0800
            Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-14 19:28 +0200
        Re: SD card vs. Esim? Samsung vs. others? Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-15 10:22 +0100
          Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-15 08:50 -0800
    Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-10 02:27 +0200
      Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-10 08:34 -0800
      Re: SD card vs. Esim? Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 13:02 -0400
        Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-11 06:20 +0200
          Re: SD card vs. Esim? Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-11 14:37 +0200
            Re: SD card vs. Esim? Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-11 10:21 -0400
            Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-11 08:18 -0800
            Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-12 06:00 +0200
              Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-11 20:47 -0800
              Re: SD card vs. Esim? Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-12 17:03 +0200
                Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-12 20:41 +0200
                Re: SD card vs. Esim? Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-13 18:59 +0200
                Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-15 07:56 +0200
                Re: SD card vs. Esim? Samsung vs. others? Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-15 11:00 +0100
                Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-15 08:34 -0800
                Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-15 12:10 +0200
                Re: SD card vs. Esim? Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-15 19:33 +0200
                Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-16 06:23 +0200
                Re: SD card vs. Esim? Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-17 18:18 +0200
                Re: SD card vs. Esim? Samsung vs. others? Frank Slootweg <this@ddress.is.invalid> - 2026-08-17 17:41 +0000
                Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-18 05:24 +0200
                Re: SD card vs. Esim? Samsung vs. others? Frank Slootweg <this@ddress.is.invalid> - 2026-08-18 10:19 +0000
                Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-14 00:21 +0200
                Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-14 20:23 -0800
                Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-14 00:20 +0200
            Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-14 19:37 +0200
              Re: SD card vs. Esim? Samsung vs. others? "s|b" <me@privacy.invalid> - 2026-08-15 19:34 +0200
              Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-15 20:09 +0200
    Re: SD card vs. Esim?   Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-10 17:38 +0200
      Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 11:49 -0400
      Re: SD card vs. Esim? Samsung vs. others? Jörg Lorenz <hugybear@gmx.net> - 2026-08-10 18:04 +0200
        Re: SD card vs. Esim? Samsung vs. others? Steve Hayes <hayesstw@telkomsa.net> - 2026-08-11 06:33 +0200
          Re: SD card vs. Esim? Samsung vs. others? AJL <noemail@none.com> - 2026-08-11 05:54 +0000
            Re: SD card vs. Esim? Samsung vs. others? Jörg Lorenz <hugybear@gmx.net> - 2026-08-11 10:10 +0200
              Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-11 10:18 +0200
            Re: SD card vs. Esim? Samsung vs. others? Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-15 10:30 +0100
              Re: SD card vs. Esim? Samsung vs. others? AJL <noemail@none.com> - 2026-08-15 15:19 +0000
          Re: SD card vs. Esim? Samsung vs. others? Jörg Lorenz <hugybear@gmx.net> - 2026-08-11 10:01 +0200
          Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-11 10:11 +0200
            Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-11 10:34 +0200
  Re: SD card vs. Esim?   Samsung vs. others? Siard <saylor259@mailbox.org> - 2026-08-07 16:57 +0200
    Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-10 02:32 +0200
      Re: SD card vs. Esim? Samsung vs. others? Siard <saylor259@mailbox.org> - 2026-08-10 09:25 +0200
        Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-10 08:47 +0100
    Re: SD card vs. Esim?   Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-10 09:40 -0800
  Re: SD card vs. Esim? Samsung vs. others? "Carlos E.R." <robin_listas@es.invalid> - 2026-08-07 19:15 +0200
    Re: SD card vs. Esim? Samsung vs. others? Jörg Lorenz <hugybear@gmx.net> - 2026-08-07 22:34 +0200
    Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-10 08:28 -0800
      Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-11 10:42 +0200
    Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-10 17:40 +0100
      Re: SD card vs. Esim? Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-10 09:28 -0800
  Re: SD card vs. Esim?   Samsung vs. others? Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-08 11:43 +0100
    Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-08 20:57 -0400
      Re: SD card vs. Esim?   Samsung vs. others? Frank Slootweg <this@ddress.is.invalid> - 2026-08-09 14:33 +0000
        Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-09 14:28 -0400
          Re: SD card vs. Esim?   Samsung vs. others? Maria Sophia <mariasophia@comprehension.com> - 2026-08-10 08:32 -0800
        Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-09 18:34 -0400
          Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 02:20 -0400
            Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-10 07:31 +0100
            Re: SD card vs. Esim?   Samsung vs. others? Dave Royal <dave@dave123royal.com> - 2026-08-10 08:59 +0100
              Re: SD card vs. Esim?   Samsung vs. others? Philippe <p.naudin+nntp@free.fr> - 2026-08-10 11:06 +0200
                Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-10 10:33 +0100
              Re: SD card vs. Esim?   Samsung vs. others? Dave Royal <dave@dave123royal.com> - 2026-08-10 10:51 +0100
            Re: SD card vs. Esim? Samsung vs. others? Arno Welzel <usenet@arnowelzel.de> - 2026-08-10 10:25 +0200
              Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-10 09:43 +0100
                Re: SD card vs. Esim? Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 10:34 -0400
                Re: SD card vs. Esim? Samsung vs. others? "Carlos E. R." <robin_listas@es.invalid> - 2026-08-11 10:24 +0200
            Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 09:42 -0400
    Re: SD card vs. Esim? Samsung vs. others? Andy Burns <usenet@andyburns.uk> - 2026-08-09 09:49 +0100
      Re: SD card vs. Esim? Samsung vs. others? "Carlos E.R." <robin_listas@es.invalid> - 2026-08-09 15:21 +0200
      Re: SD card vs. Esim? Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-09 14:21 -0400
        Re: SD card vs. Esim? Samsung vs. others? "Carlos E.R." <robin_listas@es.invalid> - 2026-08-09 22:31 +0200
          Re: SD card vs. Esim? Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-09 19:33 -0400
            Re: SD card vs. Esim? Samsung vs. others? "Carlos E.R." <robin_listas@es.invalid> - 2026-08-10 02:48 +0200
              Re: SD card vs. Esim? Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 02:25 -0400
  Re: SD card vs. Esim?   Samsung vs. others? Frank Slootweg <this@ddress.is.invalid> - 2026-08-09 14:43 +0000
    Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 13:21 -0400
      Re: SD card vs. Esim?   Samsung vs. others? AJL <noemail@none.com> - 2026-08-10 18:01 +0000
        Re: SD card vs. Esim?   Samsung vs. others? micky <NONONOmisc07@fmguy.com> - 2026-08-10 14:55 -0400
          Re: SD card vs. Esim?   Samsung vs. others? AJL <noemail@none.com> - 2026-08-10 19:19 +0000
            [OT] non-Unix fingers (was: Re: SD card vs. Esim?   Samsung vs. others?) Nuno Silva <nunojsilva@invalid.invalid> - 2026-08-11 01:00 +0100
          Re: SD card vs. Esim? Samsung vs. others? Java Jive <java@evij.com.invalid> - 2026-08-11 21:02 +0100

csiph-web