• Re: smallest wired keyboard?

    From Ahem A Rivet's Shot@3:770/3 to Andy Burnelli on Friday, April 22, 2022 08:32:40
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On Thu, 21 Apr 2022 22:08:06 +0100
    Andy Burnelli <spam@nospam.com> wrote:

    If you can do something in, oh, say, Swift, that can't be done in Assembly Language, then tell us what that is, nospam.

    I don't know Swift - but one thing that can be done in high level languages that cannot be done in assembler is create large, portable, maintainable pieces of software, even OS kernels are mostly too large and complex to be written in assembler and have been for decades.

    --
    Steve O'Hara-Smith
    Odds and Ends at http://www.sohara.org/

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From The Natural Philosopher@3:770/3 to Ahem A Rivet's Shot on Friday, April 22, 2022 12:20:55
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 22/04/2022 08:32, Ahem A Rivet's Shot wrote:
    On Thu, 21 Apr 2022 22:08:06 +0100
    Andy Burnelli <spam@nospam.com> wrote:

    If you can do something in, oh, say, Swift, that can't be done in Assembly >> Language, then tell us what that is, nospam.

    I don't know Swift - but one thing that can be done in high level languages that cannot be done in assembler is create large, portable, maintainable pieces of software, even OS kernels are mostly too large and complex to be written in assembler and have been for decades.

    Well yes and no.
    You would be surprised at how many "#ifdef X86" a linux kernel probably
    has. And how many compiler optimisations may need to be tweaked to port software between different targets.

    Not to mention issues with stack depths allowed, or whether a processor
    even has a stack...
    Lets say high level languages help in writing portable software.



    --
    "An intellectual is a person knowledgeable in one field who speaks out
    only in others...”

    Tom Wolfe

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Friday, April 22, 2022 07:56:49
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3sh38$rh3$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    Whether it's Fortran or Assembly Language or Java or Cotlin or whatever,
    they all do the same things with a different syntax.

    kotlin, and no.





    If you can do something in, oh, say, Swift, that can't be done in Assembly Language, then tell us what that is, nospam.

    comments such as that confirms what everyone already knew, that you
    know absolutely nothing about software development and writing apps,
    mobile or desktop.

    Tell us one thing Swift can do that an Assembly Language program can't do. Name just one.

    both you and your broken scripts are boring.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Friday, April 22, 2022 07:56:52
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3tmec$g9c$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    They even ridiculed the concept of writing in hex, where, if anyone has _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for
    storing data, and unlike regular proms, can be erased and rewritten if
    there are any changes.

    you're not fooling anyone.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Ahem A Rivet's Shot@3:770/3 to nospam on Friday, April 22, 2022 13:42:10
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On Fri, 22 Apr 2022 07:56:52 -0400
    nospam <nospam@nospam.invalid> wrote:

    In article <t3tmec$g9c$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    They even ridiculed the concept of writing in hex, where, if anyone has _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for

    I hate to disillusion you but when I was putting my code into
    eproms the device we used to do so was called an "Eprom Programmer" so programming an eprom is pretty reasonable terminology that wasn't uncommon
    in those circles circa 1980. Personally I usually talked about burning or blowing an eprom.

    Furthermore I have written code in assembler, hand assembled it and typed the resulting hex directly into an eprom programmer because I hadn't
    yet written the assembler (well actually tables for the table driven assembler/disassembler I'd written) for that processor and needed the eprom
    for testing. I have also patched eproms with directly typed hex without bothering to assemble the corrected source for a couple of bytes change.
    It's been a *long* time since I've done any of those things.

    --
    Steve O'Hara-Smith
    Odds and Ends at http://www.sohara.org/

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Ahem A Rivet's Shot@3:770/3 to The Natural Philosopher on Friday, April 22, 2022 13:32:27
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On Fri, 22 Apr 2022 12:20:55 +0100
    The Natural Philosopher <tnp@invalid.invalid> wrote:

    On 22/04/2022 08:32, Ahem A Rivet's Shot wrote:
    On Thu, 21 Apr 2022 22:08:06 +0100
    Andy Burnelli <spam@nospam.com> wrote:

    If you can do something in, oh, say, Swift, that can't be done in
    Assembly Language, then tell us what that is, nospam.

    I don't know Swift - but one thing that can be done in high
    level languages that cannot be done in assembler is create large,
    portable, maintainable pieces of software, even OS kernels are mostly
    too large and complex to be written in assembler and have been for
    decades.

    Well yes and no.
    You would be surprised at how many "#ifdef X86" a linux kernel probably
    has. And how many compiler optimisations may need to be tweaked to port software between different targets.

    Oh there's assembler in kernels it's just writing the whole thing
    in assembler that has become infeasible - for portability and maintenance reasons. Modern kernel design goes to great lengths to minimise and isolate hardware dependencies.

    --
    Steve O'Hara-Smith
    Odds and Ends at http://www.sohara.org/

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to Rivet's Shot on Friday, April 22, 2022 10:03:38
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <20220422134210.38f9ee33f9ab34571cf511df@eircom.net>, Ahem A
    Rivet's Shot <steveo@eircom.net> wrote:

    They even ridiculed the concept of writing in hex, where, if anyone has _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for

    I hate to disillusion you but when I was putting my code into
    eproms the device we used to do so was called an "Eprom Programmer" so programming an eprom is pretty reasonable terminology that wasn't uncommon
    in those circles circa 1980.

    it's not 1980 anymore, and he's using the term to mean writing
    software, not writing to an eprom.

    but even if he is using it to mean writing to an eprom, it would be
    *less* relevant, since anyone can press a few buttons to do it.

    Personally I usually talked about burning or
    blowing an eprom.

    as did everyone who actually did it, including myself.


    Furthermore I have written code in assembler, hand assembled it and
    typed the resulting hex directly into an eprom programmer because I hadn't yet written the assembler (well actually tables for the table driven assembler/disassembler I'd written) for that processor and needed the eprom for testing. I have also patched eproms with directly typed hex without bothering to assemble the corrected source for a couple of bytes change.

    changing a couple of bytes is not anywhere close to 'coding in hex'.

    It's been a *long* time since I've done any of those things.

    exactly the point.

    some people did that 40 years ago, including myself.

    almost nobody does that now, nor do they program in assembly.

    with very rare exception, compilers can do a *much* better job at
    writing assembly than humans can, particularly with modern processors.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to alister.ware@ntlworld.com on Friday, April 22, 2022 10:03:39
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3ubt4$1dch$1@gioia.aioe.org>, alister
    <alister.ware@ntlworld.com> wrote:

    In article <t3tmec$g9c$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:
    They even ridiculed the concept of writing in hex, where, if anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for storing data, and unlike regular proms, can be erased and rewritten if there are any changes.

    you're not fooling anyone.

    Proms & Eproms are programmed, that is what the 'p' Stands for
    you do it with an (e)prom programmer.

    that's true, except that 'arlen' is babbling about programming in
    assembly versus high level languages, not burning a prom.

    the data to program (or 'Burn' as it was commonly called) could either be uploaded to the programmer via a serial cable or manualy entered via a hex keypad. Many earlier experimenters assembled their code by hand & used
    this approach.

    they did do that long ago, as did i. certainly not now.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From alister@3:770/3 to nospam on Friday, April 22, 2022 13:51:32
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On Fri, 22 Apr 2022 07:56:52 -0400, nospam wrote:

    In article <t3tmec$g9c$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    They even ridiculed the concept of writing in hex, where, if anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for storing data, and unlike regular proms, can be erased and rewritten if
    there are any changes.

    you're not fooling anyone.

    Proms & Eproms are programmed, that is what the 'p' Stands for
    you do it with an (e)prom programmer.
    the data to program (or 'Burn' as it was commonly called) could either be uploaded to the programmer via a serial cable or manualy entered via a hex keypad. Many earlier experimenters assembled their code by hand & used
    this approach.




    --
    Must be over 21.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Lew Pitcher@3:770/3 to alister on Friday, April 22, 2022 14:07:18
    On Fri, 22 Apr 2022 13:51:32 +0000, alister wrote:

    On Fri, 22 Apr 2022 07:56:52 -0400, nospam wrote:

    In article <t3tmec$g9c$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    They even ridiculed the concept of writing in hex, where, if anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for
    storing data, and unlike regular proms, can be erased and rewritten if
    there are any changes.

    you're not fooling anyone.

    Proms & Eproms are programmed, that is what the 'p' Stands for
    you do it with an (e)prom programmer.

    PROM Programmable Read Only Memory
    "programmed" by writing data to it one memory address at a time,
    often at a higher voltage than the chip would be "read" at. Could
    not be erased, so writing was a one-shot deal.

    EPROM Erasable Programmable Read Only Memory
    PROM that could be erased, usually by exposing it to an UV lightsource
    for an extended period of time. Often had a limited number of
    erase cycles, but cheaper than PROM.

    EEPROM Electrically Erasable Programmable Read Only Memory
    PROM that could be erased by asserting a high voltage to the chip.
    The advantage over EPROMs was that you could include the erase
    circuitry into the design of the "read" platform, making it more
    convenient to reprogram on demand.


    the data to program (or 'Burn' as it was commonly called) could either be uploaded to the programmer via a serial cable or manualy entered via a hex keypad. Many earlier experimenters assembled their code by hand & used
    this approach.

    My EPROM burner was an S100 card, and I used a separate UV box to erase with. Thankfully, both are long gone, now, replaced by ubiquitous flash memory.

    --
    Lew Pitcher
    "In Skills, We Trust"

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to scharf.steven@geemail.com on Friday, April 22, 2022 11:01:51
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3ue02$h6h$1@dont-email.me>, sms
    <scharf.steven@geemail.com> wrote:

    There were PROMs, EPROMs (erasable with UV lights) and EEPROMs,
    (electrically erasable PROMS). You programmed all of them.

    context matters.

    arlen was babbling about programming in assembly versus high level
    languages.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From sms@3:770/3 to Ahem A Rivet's Shot on Friday, April 22, 2022 07:27:14
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 4/22/2022 5:42 AM, Ahem A Rivet's Shot wrote:
    On Fri, 22 Apr 2022 07:56:52 -0400
    nospam <nospam@nospam.invalid> wrote:

    In article <t3tmec$g9c$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    They even ridiculed the concept of writing in hex, where, if anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for

    I hate to disillusion you but when I was putting my code into
    eproms the device we used to do so was called an "Eprom Programmer" so programming an eprom is pretty reasonable terminology that wasn't uncommon
    in those circles circa 1980. Personally I usually talked about burning or blowing an eprom.

    nospam is wrong of course™.

    PROM stands for "Programmable Read Only Memory." The whole purpose of a
    PROM is that it's programmable!

    There were PROMs, EPROMs (erasable with UV lights) and EEPROMs,
    (electrically erasable PROMS). You programmed all of them.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From scott@alfter.diespammersdie.us@3:770/3 to nospam on Friday, April 22, 2022 16:03:35
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In comp.sys.raspberry-pi nospam <nospam@nospam.invalid> wrote:
    one does not 'code in hex'

    O RLY? Try telling that to Steve Wozniak, who didn't have access to an assembler when he created the Apple I's firmware. He "hand-assembled" the
    code on paper, and I suspect that all but the smallest part of it would've
    been punched in as a string of hex codes.

    Tell us, what does this bit of code do?

    0300- A2 00 BD 0E 03 F0 06 20
    0308- ED FD E8 D0 F5 60 C8 C5
    0310- CC CC CF A0 D7 CF D2 CC
    0318- C4 8D 00

    (I'll cop to having used the mini-assembler to create this, but if you
    change the dashes in the listing above to colons, you could key in this hex dump and run it...on the right hardware. :) )

    and eproms are not programmed. they are for storing data

    ...and the process by which data is stored in an EPROM is called what? The device that does it is called what?

    https://www.amazon.com/s?k=eprom+programmer

    Your pedantry wouldn't be so annoying if it weren't so blatantly incorrect.

    --
    _/_
    / v \ Scott Alfter (remove the obvious to send mail)
    (IIGS( https://alfter.us/ Top-posting!
    \_^_/ >What's the most annoying thing on Usenet?

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to scott@alfter.diespammersdie.us on Friday, April 22, 2022 12:28:18
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <rlA8K.624027$LN2.18909@fx13.iad>,
    <scott@alfter.diespammersdie.us> wrote:

    one does not 'code in hex'

    O RLY? Try telling that to Steve Wozniak, who didn't have access to an assembler when he created the Apple I's firmware.

    that was 50 years ago.

    nobody does that now. clearer??


    and eproms are not programmed. they are for storing data

    ...and the process by which data is stored in an EPROM is called what? The device that does it is called what?

    context matters.

    'arlen' was babbling about writing programs.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to Ahem A Rivet's Shot on Friday, April 22, 2022 19:09:28
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Ahem A Rivet's Shot wrote:

    I don't know Swift - but one thing that can be done in high level languages that cannot be done in assembler is create large, portable, maintainable pieces of software, even OS kernels are mostly too large and complex to be written in assembler and have been for decades.

    Yes. Of course. It's also "readable" and "easier to learn" and a whole bunch
    of other things which are why very few people code using assembly languages.

    However, my point to nospam is still valid that all these languages are designed to do essentially the same things, each using different syntax.

    I learned my first computer languages in the sixties, and while the syntax
    has changed over time, fundamental concepts have not - which was my point.

    Which is why learning new syntax bores me. But I'm sure that excites others. And that's OK.

    It's nospam, not me, who was disagreeing with those basic principles.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to Ahem A Rivet's Shot on Friday, April 22, 2022 19:52:33
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Ahem A Rivet's Shot wrote:

    They even ridiculed the concept of writing in hex, where, if anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for

    I hate to disillusion you but when I was putting my code into
    eproms the device we used to do so was called an "Eprom Programmer" so programming an eprom is pretty reasonable terminology that wasn't uncommon
    in those circles circa 1980. Personally I usually talked about burning or blowing an eprom.

    Furthermore I have written code in assembler, hand assembled it and typed the resulting hex directly into an eprom programmer because I hadn't yet written the assembler (well actually tables for the table driven assembler/disassembler I'd written) for that processor and needed the eprom for testing. I have also patched eproms with directly typed hex without bothering to assemble the corrected source for a couple of bytes change.
    It's been a *long* time since I've done any of those things.

    I just went into the basement to search for my old 68701 MPU wire-wrapped board, but I haven't found it - although here are some of my "parts" bins.
    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had

    Resistors, diodes, caps, xtors, bridges, 7400 TTL ICs, fuses, pots, etc.

    To Ahem A Rivet's astute observations and recollection of his experience, if
    I can find my old hand-twisted wire-wrapped 68701 circuits from the 80s,
    I'll post a picture since my credibility is my greatest asset.

    As I recall, I would read the SAMS guides (from Radio Shack?) for the
    Motorola 68701, which has an onboard EEPROM, and then I'd write the code by hand, generally resorting to hex (as you did) simply because of _how_ it's programmed into the 68701.

    I'd pop the 40-pin MPU out of the ZIF socket of the wire-wrapped board and
    then I'd place it into the EEPROM programmer which would burn it in.

    You had to eventually feed it the hex code so you learned that a LDA (load accumulator A) was a certain hex code and _that_ is what you wrote your programs in (since you had to do the translation to hex anyway).

    It appears this nospam, who, let's be clear, has a low IQ and no education, doesn't realize that's how it was done with EEPROMS in the olden days.

    Again, if I can find the old board I wire wrapped, I'll snap a photo.
    BTW, did you also have a set of well-stocked parts bins like I do?
    --
    Usenet is where kind-hearted people daily gather to voluntarily help others. Usenet is where friendly people daily gather to discuss topics of interest.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Alan@3:770/3 to Andy Burnelli on Friday, April 22, 2022 11:56:08
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-22 11:52 a.m., Andy Burnelli wrote:
    Ahem A Rivet's Shot wrote:

    They even ridiculed the concept of writing in hex, where, if anyone has >>>> _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for

        I hate to disillusion you but when I was putting my code into
    eproms the device we used to do so was called an "Eprom Programmer" so
    programming an eprom is pretty reasonable terminology that wasn't
    uncommon
    in those circles circa 1980. Personally I usually talked about burning or
    blowing an eprom.

        Furthermore I have written code in assembler, hand assembled it and >> typed the resulting hex directly into an eprom programmer because I
    hadn't
    yet written the assembler (well actually tables for the table driven
    assembler/disassembler I'd written) for that processor and needed the
    eprom
    for testing. I have also patched eproms with directly typed hex without
    bothering to assemble the corrected source for a couple of bytes change.
    It's been a *long* time since I've done any of those things.

    I just went into the basement to search for my old 68701 MPU wire-wrapped board, but I haven't found it - although here are some of my "parts" bins. <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had

    Resistors, diodes, caps, xtors, bridges, 7400 TTL ICs, fuses, pots, etc.

    Oh, my!


    To Ahem A Rivet's astute observations and recollection of his
    experience, if
    I can find my old hand-twisted wire-wrapped 68701 circuits from the 80s,
    I'll post a picture since my credibility is my greatest asset.

    Then you, sir...

    ...are broke.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Friday, April 22, 2022 15:04:26
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3uth2$1361$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:

    Again, if I can find the old board I wire wrapped, I'll snap a photo.

    be sure to pose it with some textbooks.

    BTW, did you also have a set of well-stocked parts bins like I do?

    not anymore, although i might still have the wire wrap gun. that was a
    cool device.

    now i have a bunch of raspberry pis, various hats and a bunch of micro
    sd cards.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 22, 2022 20:16:29
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    it's not 1980 anymore, and he's using the term to mean writing
    software, not writing to an eprom.

    It's clear that it's you, nospam, who has never designed microcontroller boards, where in the 80's, that's what I did, and I used these parts then:
    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had

    Some _books_ I used to learn about design of microcontrollers are thus.
    <https://i.postimg.cc/s2SGzC8H/books07.jpg> Biomedical instrument design

    The fact you have both a low IQ & lack of any education is apparent, nospam.

    but even if he is using it to mean writing to an eprom, it would be
    *less* relevant, since anyone can press a few buttons to do it.

    I don't think you have the adult comprehensive skills to realize that we're talking about the early days of microcontrollers, nospam.

    You did _everything_ by hand in those days, including hex coding.

    Personally I usually talked about burning or
    blowing an eprom.

    as did everyone who actually did it, including myself.

    I doubt it based on the fact you don't know a thing about coding in hex.

    Furthermore I have written code in assembler, hand assembled it and
    typed the resulting hex directly into an eprom programmer because I hadn't >> yet written the assembler (well actually tables for the table driven
    assembler/disassembler I'd written) for that processor and needed the eprom >> for testing. I have also patched eproms with directly typed hex without
    bothering to assemble the corrected source for a couple of bytes change.

    changing a couple of bytes is not anywhere close to 'coding in hex'.

    You're an idiot, nospam.

    In those days, you wrote the _entire_ program in hex.

    a. You _designed_ the "motherboard" (although we didn't call it that)
    b. You populated it with ZIF sockets or wire-wrapped components
    c. And you programmed the EEPROM yourself to test the code

    We didn't use "assemblers" in those days (although later masm, dasm, wasm,
    and chasm were used when we finally had a PC to play with years later).

    It's how it was done.
    That you don't know this is an indication of your lack of education.

    It's been a *long* time since I've done any of those things.

    exactly the point.

    In those days, we cut open a commodore 64 white plastic cartridge (as I
    recall) and programmed it also, where I have that somewhere in my garage.

    You, nospam, have _never_ done _any_ of this (it's easy to tell).
    Your lack of education is readily apparently to all.

    some people did that 40 years ago, including myself.

    You did not. You don't know the first thing about it, nospam.
    You're a poser.

    almost nobody does that now, nor do they program in assembly.

    While that's true, it doesn't mean it wasn't done that way long ago.
    That you never did it is obvious to all, nospam.

    with very rare exception, compilers can do a *much* better job at
    writing assembly than humans can, particularly with modern processors.

    One of my best friends made zillions in the early days of Google, writing compilers, and he claims that his compiled results are more efficient than
    hand coding - where the guy is a genius (unlike you, nospam), so it may very well be the case.

    He even gave me, gratis, this rasperry pi & all the necessary transducers!
    <https://i.postimg.cc/CKFCmNWC/pi01.jpg> Raspberry Pi and associated parts
    <https://i.postimg.cc/zfbhdcxg/pi02.jpg> Pi and associated transducers

    Maybe I'll ask this newsgroup, in a separate thread, for advice on using it.
    --
    Usenet is where kind-hearted people daily gather to voluntarily help others.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 22, 2022 20:18:06
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    There were PROMs, EPROMs (erasable with UV lights) and EEPROMs,
    (electrically erasable PROMS). You programmed all of them.

    context matters.

    arlen was babbling about programming in assembly versus high level
    languages.

    Only to you ill-educated ignorant iKooks is "assembly" and "hex" babble.
    <https://i.postimg.cc/CKFCmNWC/pi01.jpg>

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 22, 2022 21:14:10
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    Again, if I can find the old board I wire wrapped, I'll snap a photo.

    be sure to pose it with some textbooks.

    The fact you completely lack education is why you deprecate textbooks.
    You always brazenly fabricate everything you claim.

    BTW, did you also have a set of well-stocked parts bins like I do?

    not anymore, although i might still have the wire wrap gun. that was a
    cool device.

    I doubt you have one nospam since you brazenly fabricate everything.
    Let's see a picture of that wire-wrap gun, nospam, next to your iPhone.

    Since my credibility is an asset, here's my _hand_ wire-wrap tool.
    <https://i.postimg.cc/6QkQrDBb/parts03.jpg>

    And yes, you know that's my iPad since it's asking me to log in again:
    <https://i.postimg.cc/zDMxn7hb/parts02.jpg>

    BTW, you deprecated my vacuum-tube experience, but do you have _any_ idea
    what that I/F injection tool is used for nospam?

    I didn't think so.
    You _fabricated_ everything you claimed, nospam.

    Every word from you is a brazen fabrication which you _never_ back up.

    now i have a bunch of raspberry pis, various hats and a bunch of micro
    sd cards.

    I don't believe a word you say nospam because you fabricate everything.

    BTW, here's _my_ rasperry pi and the transducers to go along with it.
    <https://i.postimg.cc/zfbhdcxg/pi02.jpg> Pi and associated transducers

    And to prove it's mine, here's a shot of it next to my iPad.
    <https://i.postimg.cc/CKFCmNWC/pi01.jpg> Raspberry Pi and associated parts

    The difference between you and me is I don't fabricate my education.
    You do.

    Let's see a _single_ shot of your proof nospam.
    Show us just one!

    Show us your wire-wrapping gun next to your iPhone nospam.
    Back up your brazen fabrications of imaginary experience for once.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From sms@3:770/3 to Charlie Gibbs on Friday, April 22, 2022 12:58:01
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 4/22/2022 12:23 PM, Charlie Gibbs wrote:

    <snip>

    It's a basic marketing principle, pushed by marketroids (and adopted as
    an article of faith by J. Random Luser) since long before Apple existed:

    "If we don't have it, you don't need it."

    Or "we used to have it but we got rid of it and even if you used it you
    really don't need it anymore and it was an act of courage for us to take
    it away." See <https://www.google.com/search?q=courage+3.5mm>.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Charlie Gibbs@3:770/3 to Andy Burnelli on Friday, April 22, 2022 19:23:26
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-21, Andy Burnelli <spam@nospam.com> wrote:

    sms wrote:

    Lewis is wrong of course.

    The folks on the c.s.r.p group may not be familiar with the iKooks, where
    all the iKooks have the _same_ response in _any_ topic that purports to mention the lack of basic functionality of their beloved product line.

    In this case, it's FM radio - where they claim that it exists in another form, and that nobody wants it anyway, and that most phones don't have it, etc., all of which are always wrong since most phones _do_ have it.

    Just not iPhones.

    It's a basic marketing principle, pushed by marketroids (and adopted as
    an article of faith by J. Random Luser) since long before Apple existed:

    "If we don't have it, you don't need it."

    --
    /~\ Charlie Gibbs | Microsoft is a dictatorship.
    \ / <cgibbs@kltpzyxm.invalid> | Apple is a cult.
    X I'm really at ac.dekanfrus | Linux is anarchy.
    / \ if you read it the right way. | Pick your poison.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Jolly Roger@3:770/3 to nospam on Friday, April 22, 2022 19:58:45
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-22, nospam <nospam@nospam.invalid> wrote:
    In article <t3uth2$1361$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:

    Again, if I can find the old board I wire wrapped, I'll snap a photo.

    be sure to pose it with some textbooks.

    BTW, did you also have a set of well-stocked parts bins like I do?

    not anymore, although i might still have the wire wrap gun. that was a
    cool device.

    now i have a bunch of raspberry pis, various hats and a bunch of micro
    sd cards.

    ...but no old, crufty books? No sale!

    --
    E-mail sent to this address may be devoured by my ravenous SPAM filter.
    I often ignore posts from Google. Use a real news client instead.

    JR

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Alan@3:770/3 to Andy Burnelli on Friday, April 22, 2022 13:19:03
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-22 1:14 p.m., Andy Burnelli wrote:
    nospam wrote:

    Again, if I can find the old board I wire wrapped, I'll snap a photo.

    be sure to pose it with some textbooks.

    The fact you completely lack education is why you deprecate textbooks.

    Not at all.

    What we all see is that pictures of textbooks prove nothing about
    education in a subject.

    BTW, did you also have a set of well-stocked parts bins like I do?

    not anymore, although i might still have the wire wrap gun. that was a
    cool device.

    I doubt you have one nospam since you brazenly fabricate everything.
    Let's see a picture of that wire-wrap gun, nospam, next to your iPhone.

    You mean the way your pictures are always posed next to your phone...

    ...right?


    Since my credibility is an asset, here's my _hand_ wire-wrap tool. <https://i.postimg.cc/6QkQrDBb/parts03.jpg>

    But it's not next to your phone...


    And yes, you know that's my iPad since it's asking me to log in again: <https://i.postimg.cc/zDMxn7hb/parts02.jpg>

    Which you don't have to do if you don't wish to.


    BTW, you deprecated my vacuum-tube experience, but do you have _any_ idea what that I/F injection tool is used for nospam?

    I didn't think so.
    You _fabricated_ everything you claimed, nospam.

    Every word from you is a brazen fabrication which you _never_ back up.

    now i have a bunch of raspberry pis, various hats and a bunch of micro
    sd cards.

    I don't believe a word you say nospam because you fabricate everything.

    BTW, here's _my_ rasperry pi and the transducers to go along with it. <https://i.postimg.cc/zfbhdcxg/pi02.jpg> Pi and associated transducers

    And to prove it's mine, here's a shot of it next to my iPad. <https://i.postimg.cc/CKFCmNWC/pi01.jpg> Raspberry Pi and associated parts

    The difference between you and me is I don't fabricate my education.

    You certainly don't prove it...

    You do.

    Let's see a _single_ shot of your proof nospam.
    Show us just one!

    Right after you.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to Jolly Roger on Friday, April 22, 2022 21:20:42
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Jolly Roger wrote:

    now i have a bunch of raspberry pis, various hats and a bunch of micro
    sd cards.

    ...but no old, crufty books? No sale!

    None of the iKooks has _any_ education; so they deprecate the vast knowledge gleaned by having higher degrees in the very stuff they fabricate they know.

    And yet... never once do the iKooks _ever_ back up any of their claims.
    They just pretend.

    At least I back up my claims - and yet - they never do. Because they can't.

    <https://i.postimg.cc/CKFCmNWC/pi01.jpg> Raspberry Pi and associated parts
    <https://i.postimg.cc/zfbhdcxg/pi02.jpg> Pi and associated transducers
    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had
    <https://i.postimg.cc/zDMxn7hb/parts02.jpg> EPROM & wire-wrap tool
    <https://i.postimg.cc/6QkQrDBb/parts03.jpg> 7400 TTL ICs & testing tools

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Hank Rogers@3:770/3 to Jolly Roger on Friday, April 22, 2022 15:19:31
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Jolly Roger wrote:
    On 2022-04-22, nospam <nospam@nospam.invalid> wrote:
    In article <t3uth2$1361$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:

    Again, if I can find the old board I wire wrapped, I'll snap a photo.

    be sure to pose it with some textbooks.

    BTW, did you also have a set of well-stocked parts bins like I do?

    not anymore, although i might still have the wire wrap gun. that was a
    cool device.

    now i have a bunch of raspberry pis, various hats and a bunch of micro
    sd cards.

    ...but no old, crufty books? No sale!


    Ahahahahaha. That's a definite requirement for all intelligent,
    highly educated adults on this group.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to Andy Burnelli on Friday, April 22, 2022 21:30:32
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Andy Burnelli wrote:

    I remember an EPROM programmer box, about the size of a dictionary in those days which was, whitish, cream colored, as I recall, with a really nice ZIF socket and a spring-loaded lever and a keypad (as I recall) as you noted.

    Actually, it was blue! I'm slowly remembering it. The Commodore 64 cartridge was the whitish cream color (with vents, as I recall).

    It was a long time ago...

    But the basics are what we learned by designing our own microcontroller
    boards. These are the basics that the iKooks _pretend_ they know (but
    don't).

    An obvious fact that they never did it is that everyone who has done it
    knows you wrote in hex and programmed the EEPROM in hex; yet they don't.

    They even ridiculed what was, in effect, what everyone did in those days. That's how you know they completely lack the education they pretend to have.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 22, 2022 21:34:46
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    the data to program (or 'Burn' as it was commonly called) could either be
    uploaded to the programmer via a serial cable or manualy entered via a hex >> keypad. Many earlier experimenters assembled their code by hand & used
    this approach.

    they did do that long ago, as did i. certainly not now.

    You've never done anything of the sort nospam.

    All you iKooks fabricate everything.

    None of you owns any respect for your own credibility.

    It's how I know you are ignorant and ill educated.

    You don't even care that nothing you claim is true.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to alister on Friday, April 22, 2022 21:27:49
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    alister wrote:

    They even ridiculed the concept of writing in hex, where, if anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex coding.

    one does not 'code in hex' and eproms are not programmed. they are for
    storing data, and unlike regular proms, can be erased and rewritten if
    there are any changes.

    you're not fooling anyone.

    Proms & Eproms are programmed, that is what the 'p' Stands for
    you do it with an (e)prom programmer.
    the data to program (or 'Burn' as it was commonly called) could either be uploaded to the programmer via a serial cable or manualy entered via a hex keypad. Many earlier experimenters assembled their code by hand & used
    this approach.

    A nice change from the Apple newsgroups is that the pi people don't fall for the brazen fabrications that the iKooks claim, where the iKooks' self-esteem
    is in the toilet (rightly so), so they have to _fabricate_ imaginary
    education (which all of them sorely lack).

    I remember an EPROM programmer box, about the size of a dictionary in those days which was, whitish, cream colored, as I recall, with a really nice ZIF socket and a spring-loaded lever and a keypad (as I recall) as you noted.

    I wrote in hex.
    I thought in hex.
    I programmed in hex.

    Those who have done it _understand_ what I say, and here are just some of
    the tools and parts I used back in the 80's to do that (I went into the basement to dig these out but I didn't find my commodore 64 with the hole
    cut in the plastic where we programmed it to use the TI speech synthesizer
    and IR transducers that were all the rage in those days at Radio Shack.

    The point of these ad hoc photos is merely to back up my claims (which, the adults on this ng will note that the iKooks never back up their claims).
    <https://i.postimg.cc/CKFCmNWC/pi01.jpg> Raspberry Pi and associated parts
    <https://i.postimg.cc/zfbhdcxg/pi02.jpg> Pi and associated transducers
    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had
    <https://i.postimg.cc/zDMxn7hb/parts02.jpg> EPROM & wire-wrap tool
    <https://i.postimg.cc/6QkQrDBb/parts03.jpg> 7400 TTL ICs & testing tools

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Hank Rogers@3:770/3 to Andy Burnelli on Friday, April 22, 2022 15:38:13
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Andy Burnelli wrote:
    Ahem A Rivet's Shot wrote:

    They even ridiculed the concept of writing in hex, where, if
    anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex
    coding.

    one does not 'code in hex' and eproms are not programmed. they
    are for

    I hate to disillusion you but when I was putting my code into
    eproms the device we used to do so was called an "Eprom
    Programmer" so
    programming an eprom is pretty reasonable terminology that wasn't
    uncommon
    in those circles circa 1980. Personally I usually talked about
    burning or
    blowing an eprom.

    Furthermore I have written code in assembler, hand assembled
    it and
    typed the resulting hex directly into an eprom programmer because
    I hadn't
    yet written the assembler (well actually tables for the table driven
    assembler/disassembler I'd written) for that processor and needed
    the eprom
    for testing. I have also patched eproms with directly typed hex
    without
    bothering to assemble the corrected source for a couple of bytes
    change.
    It's been a *long* time since I've done any of those things.

    I just went into the basement to search for my old 68701 MPU
    wire-wrapped
    board, but I haven't found it - although here are some of my
    "parts" bins.
    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had

    Resistors, diodes, caps, xtors, bridges, 7400 TTL ICs, fuses, pots,
    etc.

    To Ahem A Rivet's astute observations and recollection of his
    experience, if
    I can find my old hand-twisted wire-wrapped 68701 circuits from the
    80s,
    I'll post a picture since my credibility is my greatest asset.

    As I recall, I would read the SAMS guides (from Radio Shack?) for the Motorola 68701, which has an onboard EEPROM, and then I'd write the
    code by
    hand, generally resorting to hex (as you did) simply because of
    _how_ it's
    programmed into the 68701.

    I'd pop the 40-pin MPU out of the ZIF socket of the wire-wrapped
    board and
    then I'd place it into the EEPROM programmer which would burn it in.
    You had to eventually feed it the hex code so you learned that a
    LDA (load
    accumulator A) was a certain hex code and _that_ is what you wrote
    your
    programs in (since you had to do the translation to hex anyway).

    It appears this nospam, who, let's be clear, has a low IQ and no
    education,
    doesn't realize that's how it was done with EEPROMS in the olden days.

    Again, if I can find the old board I wire wrapped, I'll snap a photo.
    BTW, did you also have a set of well-stocked parts bins like I do?


    Msn, nobody has such fine parts bins. Most folks probably don't
    have *ANY* 7400 series TTL. Only us OLD guys.

    YOU ROCK!

    PS: That pic would be even better if you propped a few vacuum tube
    data books next to your part bins. I recommend the GE tube manual.
    Books really do show how adult you are.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Friday, April 22, 2022 17:18:08
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3v2a3$15nl$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:

    BTW, did you also have a set of well-stocked parts bins like I do?

    not anymore, although i might still have the wire wrap gun. that was a
    cool device.

    I doubt you have one nospam since you brazenly fabricate everything.
    Let's see a picture of that wire-wrap gun, nospam, next to your iPhone.

    i definitely have one. it's in a box somewhere in storage and i'm not
    going to bother digging it out for a troll.

    Since my credibility is an asset, here's my _hand_ wire-wrap tool.
    <https://i.postimg.cc/6QkQrDBb/parts03.jpg>

    i had one of those too.

    eventually, i got a wire wrap gun, which was a lot more fun.

    BTW, you deprecated my vacuum-tube experience, but do you have _any_ idea what that I/F injection tool is used for nospam?

    yes.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Hank Rogers@3:770/3 to Alan on Friday, April 22, 2022 15:41:14
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Alan wrote:
    On 2022-04-22 11:52 a.m., Andy Burnelli wrote:
    Ahem A Rivet's Shot wrote:

    They even ridiculed the concept of writing in hex, where, if
    anyone has
    _ever_ programmed EPROMs like I have, you get good at rote hex
    coding.

    one does not 'code in hex' and eproms are not programmed. they
    are for

        I hate to disillusion you but when I was putting my code
    into
    eproms the device we used to do so was called an "Eprom
    Programmer" so
    programming an eprom is pretty reasonable terminology that
    wasn't uncommon
    in those circles circa 1980. Personally I usually talked about
    burning or
    blowing an eprom.

        Furthermore I have written code in assembler, hand
    assembled it and
    typed the resulting hex directly into an eprom programmer
    because I hadn't
    yet written the assembler (well actually tables for the table
    driven
    assembler/disassembler I'd written) for that processor and
    needed the eprom
    for testing. I have also patched eproms with directly typed hex
    without
    bothering to assemble the corrected source for a couple of bytes
    change.
    It's been a *long* time since I've done any of those things.

    I just went into the basement to search for my old 68701 MPU
    wire-wrapped
    board, but I haven't found it - although here are some of my
    "parts" bins.
    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had

    Resistors, diodes, caps, xtors, bridges, 7400 TTL ICs, fuses,
    pots, etc.

    Oh, my!


    To Ahem A Rivet's astute observations and recollection of his
    experience, if
    I can find my old hand-twisted wire-wrapped 68701 circuits from
    the 80s,
    I'll post a picture since my credibility is my greatest asset.

    Then you, sir...

    ...are broke.

    It's worse than that. He can't find his ass with both hands, much
    less a half century old wire wrap board.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Friday, April 22, 2022 17:18:10
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3uutv$1n5g$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    It's clear that it's you, nospam, who has never designed microcontroller boards, where in the 80's, that's what I did, and I used these parts then:

    oh yes i did, as well as ttl/cmos before microcontrollers were common.

    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had

    no, not everyone.

    Some _books_ I used to learn about design of microcontrollers are thus.
    <https://i.postimg.cc/s2SGzC8H/books07.jpg> Biomedical instrument design

    biomedical instrument design is the best way to learn about hex coding
    and microprocessors.

    in fact, medical certification requires the firmware to be written
    entirely in hex.

    You did _everything_ by hand in those days, including hex coding.

    yep, i sure did, even feeding paper tape or punched cards into the
    reader and sometimes toggling in instructions on a front panel.

    except that was a long time ago and no longer relevant.




    Furthermore I have written code in assembler, hand assembled it and
    typed the resulting hex directly into an eprom programmer because I hadn't >> yet written the assembler (well actually tables for the table driven
    assembler/disassembler I'd written) for that processor and needed the eprom
    for testing. I have also patched eproms with directly typed hex without >> bothering to assemble the corrected source for a couple of bytes change.

    changing a couple of bytes is not anywhere close to 'coding in hex'.

    You're an idiot, nospam.

    In those days, you wrote the _entire_ program in hex.

    no, you wrote it in assembly and then converted it to hex, sometimes by
    hand.

    things are different now.



    with very rare exception, compilers can do a *much* better job at
    writing assembly than humans can, particularly with modern processors.

    One of my best friends made zillions in the early days of Google, writing compilers, and he claims that his compiled results are more efficient than hand coding - where the guy is a genius (unlike you, nospam), so it may very well be the case.

    it is the case.

    with very rare exception, compilers will produce better optimized code
    than what humans can do, especially on modern processors, for reasons
    well beyond your level of understanding.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 22, 2022 22:34:33
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    i definitely have one. it's in a box somewhere in storage and i'm not
    going to bother digging it out for a troll.

    Notice how you _never_ come up with _anything_ that you claim you have.
    You're a bullshitter nospam.
    You have no respect for your utter lack of credibility.

    You don't even have the charger you claim nearly everyone has.

    Since my credibility is an asset, here's my _hand_ wire-wrap tool.
    <https://i.postimg.cc/6QkQrDBb/parts03.jpg>

    i had one of those too.
    eventually, i got a wire wrap gun, which was a lot more fun.

    Bullshit. You've never wire wrapped a microprocessor circuit in your life. You're nothing but a bullshitter nospam.

    All you iKooks fabricate everything.
    None of you owns any respect for your own credibility.

    BTW, you deprecated my vacuum-tube experience, but do you have _any_ idea
    what that I/F injection tool is used for nospam?

    yes.

    The fact you feel the need to bullshit is how I know you are ignorant.
    You don't even care that nothing you claim is true

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 22, 2022 22:44:03
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    It's clear that it's you, nospam, who has never designed microcontroller
    boards, where in the 80's, that's what I did, and I used these parts then:

    oh yes i did, as well as ttl/cmos before microcontrollers were common.

    Bullshit.
    All you iKooks fabricate everything.
    None of you owns any respect for your own credibility.

    <https://i.postimg.cc/j2pJbkpw/parts01.jpg> Parts bins everyone had

    no, not everyone.

    What I would do is design a circuit and then hunt around for the right cap
    or resistor or transistor, and, if I had it, then great. If not, I would
    change the circuit since going to radio shack was always a hit or miss.

    You, on the other hand, have _never_ designed a circuit in your entire life. All you do, nospam, is bullshit.

    You have absolutely no respect for yourself or for your lack of credibility.

    Some _books_ I used to learn about design of microcontrollers are thus.
    <https://i.postimg.cc/s2SGzC8H/books07.jpg> Biomedical instrument design

    biomedical instrument design is the best way to learn about hex coding
    and microprocessors.

    The fact you say that in the way you did, given the time that I got that
    degree shows that you completely lack any and all education, nospam.

    HINT: It's what medical instruments were made with in those days, idiot.

    in fact, medical certification requires the firmware to be written
    entirely in hex.

    Again, you have no knowledge of what an educational institution does.
    Every statement from you shows that you completely lack any education.

    You ridiculed hex coding simply because it sounded funny to you, just as
    Chris ridiculed the "vehicle" term which is common in immunology.

    None of you iKooks has _any_ education to speak of.
    And your substandard IQ shows up in every childish comment you make.

    You did _everything_ by hand in those days, including hex coding.

    yep, i sure did, even feeding paper tape or punched cards into the
    reader and sometimes toggling in instructions on a front panel.

    Unlike you, nospam, I did use punched tape and punched cards and also unlike you, I toggled the boot address at the bottom of the PDP 11, which, I'm sure you're completely unaware, many research institutes used as their computers.

    Every statement from you shows your entire demeanor is a childish person.
    Every statement from you is utter bullshit.

    You lack IQ. You lack education. And your self esteem is in the toilet. (Rightly so.)

    Everything you do, stems from the confluence of those three basic traits.

    except that was a long time ago and no longer relevant.

    It's better to be a has been than a never was.


    You're an idiot, nospam.
    In those days, you wrote the _entire_ program in hex.

    no, you wrote it in assembly and then converted it to hex, sometimes by
    hand.

    You are an idiot.
    I said I wrote it in hex and that means I did.

    You ridiculed that because you're ignorant that people did it that way.
    You are always proving to be ignorant of everything, nospam.

    things are different now.

    The fundamentals are the same now as they ever were.
    You don't realize that because you're ignorant of them.

    The fact you ridiculed basic hex coding is an indicator of that observation.

    with very rare exception, compilers will produce better optimized code
    than what humans can do, especially on modern processors, for reasons
    well beyond your level of understanding.

    I think it's interesting that your IQ is ~80 and yet you don't realize that. It's exactly why you are _desperate_ to bullshit us constantly nospam.

    Your self esteem (rightly so) is in the toilet.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Friday, April 22, 2022 18:04:27
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3v7ik$15es$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    What I would do is design a circuit and then hunt around for the right cap
    or resistor or transistor, and, if I had it, then great. If not, I would change the circuit since going to radio shack was always a hit or miss.

    radio shack charged ridiculous prices for parts.

    it was only useful if you needed something *now*.

    otherwise, mail order.

    You, on the other hand, have _never_ designed a circuit in your entire life.

    oh yes i have. many of them, but that was several lifetimes ago.



    Unlike you, nospam, I did use punched tape and punched cards and also unlike you, I toggled the boot address at the bottom of the PDP 11, which, I'm sure you're completely unaware, many research institutes used as their computers.

    actually, i used a pdp-8, which was *octal*.

    the hex coding came later.

    and since this is crossposted to r-pi, to keep it on topic, right next
    to me is an rpi with pidp on it.

    <https://github.com/tangentsoft/pidp8i>

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Alan@3:770/3 to Andy Burnelli on Friday, April 22, 2022 16:00:18
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-22 3:42 p.m., Andy Burnelli wrote:
    nospam wrote:

    What I would do is design a circuit and then hunt around for the
    right cap
    or resistor or transistor, and, if I had it, then great. If not, I would >>> change the circuit since going to radio shack was always a hit or miss.

    radio shack charged ridiculous prices for parts.

    We bought the Kodak sensors to make parking alarms way back then.
    The price seemed reasonable at the time.

    Same with the speech synthesizer ICs that we bought from Radio Shack.
    I think I got all my SAMs books there too (although I don't recall).

    it was only useful if you needed something *now*.

    My parts bin still has some of those Radio Shack parts. <https://i.postimg.cc/D0mcbKNS/parts04.jpg> Radio Shack spare parts

    Nicely illustrating how ridiculous Radio Shack's prices were.

    Your "ERZC14DK201U" varistor is still available today...

    ...for $1.00...

    ...for a package of 2.

    You paid $1.59 for one what must be conservatively estimated as at least
    30 years ago. Checking the CPI for inflation from 1992 until now, you
    paid more than 6 times as much as you should have.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 22, 2022 23:42:31
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    What I would do is design a circuit and then hunt around for the right cap >> or resistor or transistor, and, if I had it, then great. If not, I would
    change the circuit since going to radio shack was always a hit or miss.

    radio shack charged ridiculous prices for parts.

    We bought the Kodak sensors to make parking alarms way back then.
    The price seemed reasonable at the time.

    Same with the speech synthesizer ICs that we bought from Radio Shack.
    I think I got all my SAMs books there too (although I don't recall).

    it was only useful if you needed something *now*.

    My parts bin still has some of those Radio Shack parts.
    <https://i.postimg.cc/D0mcbKNS/parts04.jpg> Radio Shack spare parts


    otherwise, mail order.

    I don't remember ever doing mail order for basic TTL ICs, but maybe.
    I'd buy the Forest Mims' series and make circuits like with the 555 timer.

    You, on the other hand, have _never_ designed a circuit in your entire life.

    oh yes i have. many of them, but that was several lifetimes ago.

    You've never told the truth in your life so why would I believe you now?

    Unlike you, nospam, I did use punched tape and punched cards and also unlike >> you, I toggled the boot address at the bottom of the PDP 11, which, I'm sure >> you're completely unaware, many research institutes used as their computers.

    actually, i used a pdp-8, which was *octal*.

    Bullshit that you even know what Dec made at that time w/o looking it up.

    the hex coding came later.

    And yet you denied the very existence of hex coding just yesterday.

    and since this is crossposted to r-pi, to keep it on topic, right next
    to me is an rpi with pidp on it.

    <https://github.com/tangentsoft/pidp8i>

    The difference between you and a normal adult like me is you bullshit.

    At least I own a raspi (although it was given to me for free long ago).
    <https://i.postimg.cc/CKFCmNWC/pi01.jpg> Raspberry Pi and associated parts
    <https://i.postimg.cc/zfbhdcxg/pi02.jpg> Pi and associated transducers

    Nothing from you is believable because your credibility is shit, nospam.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Jolly Roger@3:770/3 to Andy Burnelli on Saturday, April 23, 2022 01:25:04
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-22, Andy Burnelli <spam@nospam.com> wrote:
    Jolly Roger wrote:

    now i have a bunch of raspberry pis, various hats and a bunch of
    micro sd cards.

    ...but no old, crufty books? No sale!

    None of the iKooks has _any_ education

    Got em.

    Triggered.

    --
    E-mail sent to this address may be devoured by my ravenous SPAM filter.
    I often ignore posts from Google. Use a real news client instead.

    JR

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to Alan on Saturday, April 23, 2022 16:24:15
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3vc25$17i$1@dont-email.me>, Alan <nuh-uh@nope.com> wrote:


    My parts bin still has some of those Radio Shack parts. <https://i.postimg.cc/D0mcbKNS/parts04.jpg> Radio Shack spare parts

    Nicely illustrating how ridiculous Radio Shack's prices were.

    Your "ERZC14DK201U" varistor is still available today...

    ...for $1.00...

    ...for a package of 2.

    You paid $1.59 for one what must be conservatively estimated as at least
    30 years ago. Checking the CPI for inflation from 1992 until now, you
    paid more than 6 times as much as you should have.

    the 1970s is a more likely estimate.

    using 1975 for the middle of the decade, $1.59 then would be $8.50 now.

    a bigger question is why does he have 50 year old parts in unopened
    packaging?

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Saturday, April 23, 2022 16:24:14
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t3vb08$9jj$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    My parts bin still has some of those Radio Shack parts.
    <https://i.postimg.cc/D0mcbKNS/parts04.jpg> Radio Shack spare parts

    those look like they're from the 1970s. why are they still unopened?

    otherwise, mail order.

    I don't remember ever doing mail order for basic TTL ICs, but maybe.

    i did.

    the back pages of popular electronics, radio electronics and similar
    magazines had numerous ads, including polypaks, james, olson,
    lafayette, plus heathkit for entire kits.

    <https://live.staticflickr.com/4009/4455981283_26760272eb_k.jpg> <https://live.staticflickr.com/2778/4455979995_b11b12c8c6_k.jpg>

    I'd buy the Forest Mims' series and make circuits like with the 555 timer.

    the 555 was an incredibly useful chip.



    You've never told the truth in your life so why would I believe you now?

    why would anyone believe someone who changes his nym more often than
    his underwear?




    At least I own a raspi (although it was given to me for free long ago).

    only one? i have a bag full of them. they're cheap.

    unfortunately, they're very backordered, with estimates that it will
    resolve sometime in 2023, causing the prices on ebay to be ridiculously
    high.

    fortunately, i have a bunch which should last through the drought.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Hank Rogers@3:770/3 to nospam on Saturday, April 23, 2022 16:53:46
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:
    In article <t3vb08$9jj$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    My parts bin still has some of those Radio Shack parts.
    <https://i.postimg.cc/D0mcbKNS/parts04.jpg> Radio Shack spare parts

    those look like they're from the 1970s. why are they still unopened?

    otherwise, mail order.

    I don't remember ever doing mail order for basic TTL ICs, but maybe.

    i did.

    the back pages of popular electronics, radio electronics and similar magazines had numerous ads, including polypaks, james, olson,
    lafayette, plus heathkit for entire kits.

    <https://live.staticflickr.com/4009/4455981283_26760272eb_k.jpg> <https://live.staticflickr.com/2778/4455979995_b11b12c8c6_k.jpg>

    I'd buy the Forest Mims' series and make circuits like with the 555 timer.

    the 555 was an incredibly useful chip.



    You've never told the truth in your life so why would I believe you now?

    why would anyone believe someone who changes his nym more often than
    his underwear?




    At least I own a raspi (although it was given to me for free long ago).

    only one? i have a bag full of them. they're cheap.

    unfortunately, they're very backordered, with estimates that it will
    resolve sometime in 2023, causing the prices on ebay to be ridiculously
    high.

    fortunately, i have a bunch which should last through the drought.


    Trying to compete with burnelli is setting a pretty low bar for
    yourself.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Hank Rogers@3:770/3 to nospam on Saturday, April 23, 2022 16:55:52
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:
    In article <t3vc25$17i$1@dont-email.me>, Alan <nuh-uh@nope.com> wrote:


    My parts bin still has some of those Radio Shack parts.
    <https://i.postimg.cc/D0mcbKNS/parts04.jpg> Radio Shack spare parts

    Nicely illustrating how ridiculous Radio Shack's prices were.

    Your "ERZC14DK201U" varistor is still available today...

    ...for $1.00...

    ...for a package of 2.

    You paid $1.59 for one what must be conservatively estimated as at least
    30 years ago. Checking the CPI for inflation from 1992 until now, you
    paid more than 6 times as much as you should have.

    the 1970s is a more likely estimate.

    using 1975 for the middle of the decade, $1.59 then would be $8.50 now.

    a bigger question is why does he have 50 year old parts in unopened packaging?



    Simple. He never figured out how to use them.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From meff@3:770/3 to Richard Falken on Sunday, April 24, 2022 01:44:24
    On 2022-04-19, Richard Falken <nospam.Richard.Falken@f1.n770.z10261.fidonet.org> wrote:
    Therefore I am a bit defensive with this subject.

    I'd love to see statistics about this FWIW if you're based in the
    US. I'm helping out a few friends working for a local government
    trialing out telecoms regulations. Data caps this low are indeed
    terrible, and rural service is often the one where providers try to
    cut corners the most (understandably because rural areas have low
    population density and generally low incomes from the potential
    subscriber base.) Rural users are often treated the worst due to the
    economics and a lack of awareness for rural users to be able to
    complain in the necessary places. But generally, according to the
    surveys my friends have run, internet isn't _this_ bad. Data caps are
    higher (high enough to consume some Youtube) and speeds are, well,
    okay but not good.

    But I'd love to see numbers. A lot of this digital veganism on the net
    is equity handwringing used to conveniently justify the handwringer's
    favorite old technology; it's not, verifiable fact that can be used to
    justify regulation.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From meff@3:770/3 to Richard Falken on Sunday, April 24, 2022 01:28:21
    On 2022-04-20, Richard Falken <nospam.Richard.Falken@f1.n770.z10336.fidonet.org> wrote:
    A 2 GB data cap used to listen to 192 kbps MP3s maxes out at about ~
    1400 minutes or 23.3 hrs. As most podcasts, news programs, and radio streams are streamed at 128 kbps or lower (often 64 kbps for
    podcasts), you're looking at 34h 43min of content / month. For _video_
    a 2 GB data cap is pretty rough, but for audio data really not so.


    Even if people used their data plan solely for streaming (which they don't) a 35 h quota will burn down quite quickly if you listen to music for 4 to 6 hours
    per day.

    I'm hard-pressed to find a person who spend 4-6 hrs a day listening to
    music on a 2 GB data cap. This feels to me like a bit of a unicorn. I
    have lots of family in India, and you can buy data plans with 2 GB /
    day there. There's probably some country out there where this is true,
    and I hope their governments allow some sort of unmetered IP streaming
    to help out, but I don't know.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Sunday, April 24, 2022 05:31:38
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    My parts bin still has some of those Radio Shack parts.
    <https://i.postimg.cc/D0mcbKNS/parts04.jpg> Radio Shack spare parts

    those look like they're from the 1970s. why are they still unopened?

    I'm not sure if there is a specific reason they're unopened, as one is a MOV which, I'm sure you'll remember, we all used to put across our power lines
    back in the day to shunt spikes.

    The other is an LED digit, as I recall (I'm not looking at the photos at the moment as it doesn't really matter since I have boxes of these spare parts), which, as you will also recall if you ever built circuits, we used to
    indicate the displays on the myriad electronics projects we built back then.

    As I said, I have parts all over since we would design circuits to work, and then we'd see what we had by way of parts in stock, and if we needed to
    change the design to fit the part, that's what we'd do.

    It's what everyone did in those days... as far as I know.

    otherwise, mail order.

    I don't remember ever doing mail order for basic TTL ICs, but maybe.

    i did.

    the back pages of popular electronics, radio electronics and similar magazines had numerous ads, including polypaks, james, olson,
    lafayette, plus heathkit for entire kits.

    <https://live.staticflickr.com/4009/4455981283_26760272eb_k.jpg> <https://live.staticflickr.com/2778/4455979995_b11b12c8c6_k.jpg>

    Actually, now I remember... digikey was a biggie, as I recall. I used to get the TTL IC's in long plastic packages, stuffed with decoders and muxes, and,
    of course, everyone's favorite other than a 7400 nand gates, the 555 timer.


    I'd buy the Forest Mims' series and make circuits like with the 555 timer.

    the 555 was an incredibly useful chip.

    Yup. I had a book from Forest Mims, as I recall, which was written on "graph paper" that he wrote out a score of useful circuits using that 555 timer.


    You've never told the truth in your life so why would I believe you now?

    why would anyone believe someone who changes his nym more often than
    his underwear?

    Hehhehheh... again, that comment shows instantly that you lack even the most basic of adult comprehensive skills given I've said why the wrapping paper
    is just to prevent people from seeing what the package is inside for people
    who aren't the rightful recipient of that valuable package in the body.

    That you can't comprehend something that simple is a clear indicator of not only your lack of even the most basic of an IQ, but your lack of education.

    It's always the same with people like you who are truly despicable people.

    You _hate_ you lack intelligence & education of others; so you make idiotic claims like that one which shows more about you than it does about us.

    At least I own a raspi (although it was given to me for free long ago).

    only one? i have a bag full of them. they're cheap.

    Bullshit.

    unfortunately, they're very backordered, with estimates that it will
    resolve sometime in 2023, causing the prices on ebay to be ridiculously
    high.

    fortunately, i have a bunch which should last through the drought.

    Bullshit.

    Nonetheless, I've been working on improving Android mirroring onto Windows
    but some day I might take a look at that free raspi and see what it can do.
    <https://i.postimg.cc/N0G1TXcZ/scrcpy01.jpg> Mirror Android on any PC
    <https://i.postimg.cc/tTmdgKTB/scrcpy02.jpg> An efficient program setup
    <https://i.postimg.cc/Vvrq0K0m/scrcpy03.jpg> The efficient setup explained
    <https://i.postimg.cc/Y00vx4yp/scrcpy04.jpg> Extraneous cmd window (&)
    <https://i.postimg.cc/wvsbcNBz/scrcpy05.jpg> Drag APK from Windows
    <https://i.postimg.cc/Sx1hgWmY/scrcpy06.jpg> Press two hardware buttons
    <https://i.postimg.cc/hjkVFyqJ/scrcpy07.jpg> Android mnt as drive letter
    <https://i.postimg.cc/nV6K0Cfn/scrcpy08.jpg> CMD test of showwin.bat
    <https://i.postimg.cc/66Gn2t2g/scrcpy09.jpg> REG test of showwin.bat
    <https://i.postimg.cc/htMdWG6z/scrcpy10.jpg> The console came up :(
    <https://i.postimg.cc/7LWJhWxq/scrcpy11.jpg> Shortcut test of showwin.lnk
    <https://i.postimg.cc/yYKNnHxD/scrcpy12.jpg> REG test of showwin.lnk
    <https://i.postimg.cc/CxXH6N2r/scrcpy13.jpg> No scrcpy console window!
    <https://i.postimg.cc/XqZsmVFM/scrcpy14.jpg> AppPath & shortcut TARGET
    <https://i.postimg.cc/g2yNftw0/scrcpy15.jpg> Trick to pin batch shortcut
    <https://i.postimg.cc/5NrK7jtg/scrcpy16.jpg> powershell hide-console trick
    <https://i.postimg.cc/bvRXdbxg/scrcpy17.jpg> AutoIT & IFFT & Automate
    <https://i.postimg.cc/Y93b1z0n/scrcpy18.jpg> APKs at FOSS Google Play Store
    --
    Usenet is where kind-hearted people daily gather to voluntarily help others.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Richard Falken@1:135/115 to meff on Sunday, April 24, 2022 08:39:56
    Re: Re: smallest wired keyboard?
    By: meff to Richard Falken on Sun Apr 24 2022 01:28 am

    I'm hard-pressed to find a person who spend 4-6 hrs a day listening to
    music on a 2 GB data cap. This feels to me like a bit of a unicorn. I

    They don't, because attempting such is bonkers. That is the point I am making.

    For example, I used to work at a store with no wired Internet in which the only connectivity was a 2GB capped cell plan. 2GB is plenty for day-to day store work (sending and receiving emails, updating catalogues, you get the idea) but you certaingly could not stream music and work and expect the plan to last the whole month.

    Which is the reason why I bought a radio.


    --
    gopher://gopher.richardfalken.com/1/richardfalken
    --- SBBSecho 3.20-Linux
    * Origin: Palantir * palantirbbs.ddns.net * Pensacola, FL * (1:135/115)
  • From Charlie Gibbs@3:770/3 to meff on Monday, April 25, 2022 00:46:19
    On 2022-04-24, meff <email@example.com> wrote:

    On 2022-04-19, Richard Falken <nospam.Richard.Falken@f1.n770.z10261.fidonet.org> wrote:

    Therefore I am a bit defensive with this subject.

    I'd love to see statistics about this FWIW if you're based in the
    US. I'm helping out a few friends working for a local government
    trialing out telecoms regulations. Data caps this low are indeed
    terrible, and rural service is often the one where providers try to
    cut corners the most (understandably because rural areas have low
    population density and generally low incomes from the potential
    subscriber base.) Rural users are often treated the worst due to the economics and a lack of awareness for rural users to be able to
    complain in the necessary places. But generally, according to the
    surveys my friends have run, internet isn't _this_ bad. Data caps are
    higher (high enough to consume some Youtube) and speeds are, well,
    okay but not good.

    The Canadian government is obsessed with bringing high-speed internet
    to the frozen north. Currently there are 50 communities which don't
    even have potable water, but hey, you gotta have priorities...

    --
    /~\ Charlie Gibbs | Microsoft is a dictatorship.
    \ / <cgibbs@kltpzyxm.invalid> | Apple is a cult.
    X I'm really at ac.dekanfrus | Linux is anarchy.
    / \ if you read it the right way. | Pick your poison.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Monday, April 25, 2022 08:51:02
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t42jqr$1nn$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:


    Nonetheless, I've been working on improving Android mirroring onto Windows but some day I might take a look at that free raspi and see what it can do.

    given that you can't even get android sample code to work, you are
    going to have all sorts of problems getting a raspberry pi to do much
    of anything.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From nospam@3:770/3 to spam@nospam.com on Monday, April 25, 2022 13:46:56
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In article <t46lvq$gdv$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:

    What's interesting is I published well over a dozen tested Android apps.

    so which apps on the google play store are yours?

    and how do you reconcile that claim with the fact you could not get
    android sample code to work?

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Monday, April 25, 2022 18:32:59
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    Nonetheless, I've been working on improving Android mirroring onto Windows >> but some day I might take a look at that free raspi and see what it can do.

    given that you can't even get android sample code to work, you are
    going to have all sorts of problems getting a raspberry pi to do much
    of anything.

    Bullshit.
    *You never wrote a _single_ line of code in your entire life.*

    What's interesting is I published well over a dozen tested Android apps.
    You published exactly _zero_, nospam.

    I wrote this tutorial expressly so that _others_ can cut-and-paste examples.
    *Tutorial with over a dozen tested Android apps with all SRC & steps given*
    <https://groups.google.com/g/comp.mobile.android/c/aW64zYeBtF0/m/DK2hrO7tAQAJ>

    That's because I'm everything you're not nospam, given you're a low-IQ no-education bullshitter who has _never_ written a line of code in his life.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Monday, April 25, 2022 19:08:08
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    and how do you reconcile that claim with the fact you could not get
    android sample code to work?

    Bullshit.

    a. I tested the code myself before publishing it
    b. I published the src code with all the steps necessary
    c. Others tested that src & steps and said it worked for them too

    *Tutorial with over a dozen tested Android apps with all SRC & steps given*
    <https://groups.google.com/g/comp.mobile.android/c/aW64zYeBtF0/m/DK2hrO7tAQAJ>

    You, on the other hand, have _never_ written a line of code in your life.
    You have never published any tutorial (while I can't count how many I've donated to the Usenet newsgroups - there are hundreds that I've written).

    You haven't written even one.
    All you _can_ do, nospam, is bullshit.

    HINT: *We're still waiting for just one of your "many ways" to mirror iOS*
    *onto Windows using FOSS tools* (which I'm clearly using for Android).

    <https://i.postimg.cc/9FJMKYch/scrcpy21.jpg> Windows Drive: === Android
    <https://i.postimg.cc/Y9jbTtcN/scrcpy20.jpg> Start /b as a CMD works! :)
    <https://i.postimg.cc/3R6nTz7s/scrcpy19.jpg> Start /b TARGET fails :(
    <https://i.postimg.cc/Y93b1z0n/scrcpy18.jpg> Free Automation APKs
    <https://i.postimg.cc/bvRXdbxg/scrcpy17.jpg> AutoIT & IFFT & Automate
    <https://i.postimg.cc/5NrK7jtg/scrcpy16.jpg> powershell hide-console trick
    <https://i.postimg.cc/g2yNftw0/scrcpy15.jpg> Trick to pin batch shortcut
    <https://i.postimg.cc/XqZsmVFM/scrcpy14.jpg> AppPath & shortcut TARGET
    <https://i.postimg.cc/CxXH6N2r/scrcpy13.jpg> No scrcpy console window!
    <https://i.postimg.cc/yYKNnHxD/scrcpy12.jpg> REG test of showwin.lnk
    <https://i.postimg.cc/7LWJhWxq/scrcpy11.jpg> Shortcut test of showwin.lnk
    <https://i.postimg.cc/fyWw2nXh/scrcpy10.jpg> The console came up :(
    <https://i.postimg.cc/66Gn2t2g/scrcpy09.jpg> REG test of showwin.bat
    <https://i.postimg.cc/nV6K0Cfn/scrcpy08.jpg> CMD test of showwin.bat
    <https://i.postimg.cc/hjkVFyqJ/scrcpy07.jpg> Android mnt as drive letter
    <https://i.postimg.cc/Sx1hgWmY/scrcpy06.jpg> Press two hardware buttons
    <https://i.postimg.cc/wvsbcNBz/scrcpy05.jpg> Drag APK from Windows
    <https://i.postimg.cc/Y00vx4yp/scrcpy04.jpg> Extraneous cmd window (&)
    <https://i.postimg.cc/Vvrq0K0m/scrcpy03.jpg> The efficient setup explained
    <https://i.postimg.cc/tTmdgKTB/scrcpy02.jpg> An efficient program setup
    <https://i.postimg.cc/N0G1TXcZ/scrcpy01.jpg> Mirror Android on any PC

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Lewis@3:770/3 to nospam on Monday, April 25, 2022 20:31:19
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    In message <250420221346567367%nospam@nospam.invalid> nospam <nospam@nospam.invalid> wrote:
    In article <t46lvq$gdv$1@gioia.aioe.org>, Andy Burnelli
    <spam@nospam.com> wrote:

    What's interesting is I published well over a dozen tested Android apps.

    so which apps on the google play store are yours?

    I look forward to Dipshit Arlen never ever answering this, because
    dipshit Arlen is way too much of a dipshit to actually have apps. That's
    saying something, since any 7yo with half a brain can get an app
    published.

    "I wrote an app" is about as impressive as "I managed to wipe my ass all
    by myself."

    ARLEN DISCLAIMER:
    Please, every time you're going to reply to him imagine that little
    chubby he gets and think again. Do you really want to be responsible for
    the only sexual stimulation that obese naked troglodyte gets in his
    life? Please, think of that image first.

    --
    The way I see it, the longer I put it off, the better it'll end up
    being. Heck, school doesn't start for another 43 minutes.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to Lewis on Tuesday, April 26, 2022 00:54:01
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my ass all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be bullshitters. Neither Lewis nor nospam has _ever_ written even a _single_ line of code.

    The fact remains this one thread adds more value in terms of writing apps on Android than they have ever contributed to Usenet in their whole lives.

    *Tutorial with over a dozen tested Android apps with all SRC & steps given* <https://groups.google.com/g/comp.mobile.android/c/aW64zYeBtF0/m/DK2hrO7tAQAJ>

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Alan@3:770/3 to Andy Burnelli on Monday, April 25, 2022 17:28:14
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my ass all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be
    bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line of code.

    Something which you cannot know is a fact, and moreover, you know you
    cannot know it to be fact.

    So stating it AS fact makes you a liar.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From The Natural Philosopher@3:770/3 to Alan on Tuesday, April 26, 2022 10:20:58
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 26/04/2022 01:28, Alan wrote:
    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my ass all >>> by myself."

    The _adults_ will notice how Lewis & nospam always prove to be
    bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line of code.

    Something which you cannot know is a fact, and moreover, you know you
    cannot know it to be fact.

    So stating it AS fact makes you a liar.


    In that case all scientists are liars.


    --
    It’s easier to fool people than to convince them that they have been fooled. Mark Twain

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Alan@3:770/3 to The Natural Philosopher on Tuesday, April 26, 2022 07:28:51
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-26 2:20 a.m., The Natural Philosopher wrote:
    On 26/04/2022 01:28, Alan wrote:
    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my ass
    all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be
    bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line of
    code.

    Something which you cannot know is a fact, and moreover, you know you
    cannot know it to be fact.

    So stating it AS fact makes you a liar.


    In that case all scientists are liars.



    Nope. So wrong.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From The Natural Philosopher@3:770/3 to Alan on Tuesday, April 26, 2022 17:05:12
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 26/04/2022 15:28, Alan wrote:
    On 2022-04-26 2:20 a.m., The Natural Philosopher wrote:
    On 26/04/2022 01:28, Alan wrote:
    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my
    ass all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be
    bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line of
    code.

    Something which you cannot know is a fact, and moreover, you know you
    cannot know it to be fact.

    So stating it AS fact makes you a liar.


    In that case all scientists are liars.



    Nope. So wrong.

    Yep. which makes you a liar.

    All scientists operate on the basis of theories that cannot be proven to
    be correct.



    --
    “Puritanism: The haunting fear that someone, somewhere, may be happy.”

    H.L. Mencken, A Mencken Chrestomathy

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Alan@3:770/3 to The Natural Philosopher on Tuesday, April 26, 2022 09:49:33
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-26 9:05 a.m., The Natural Philosopher wrote:
    On 26/04/2022 15:28, Alan wrote:
    On 2022-04-26 2:20 a.m., The Natural Philosopher wrote:
    On 26/04/2022 01:28, Alan wrote:
    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my
    ass all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be
    bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line of
    code.

    Something which you cannot know is a fact, and moreover, you know
    you cannot know it to be fact.

    So stating it AS fact makes you a liar.


    In that case all scientists are liars.



    Nope. So wrong.

    Yep. which makes you a liar.

    All scientists operate on the basis of theories that cannot be proven to
    be correct.

    But they don't state that those theories are fact.

    In fact, they explicitly understand that those theories are simply the
    most useful thing they have.

    Amazingly, you are even more ignorant than you first appeared to be.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From The Natural Philosopher@3:770/3 to Alan on Wednesday, April 27, 2022 10:43:28
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 26/04/2022 17:49, Alan wrote:
    On 2022-04-26 9:05 a.m., The Natural Philosopher wrote:
    On 26/04/2022 15:28, Alan wrote:
    On 2022-04-26 2:20 a.m., The Natural Philosopher wrote:
    On 26/04/2022 01:28, Alan wrote:
    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my >>>>>>> ass all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be
    bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line
    of code.

    Something which you cannot know is a fact, and moreover, you know
    you cannot know it to be fact.

    So stating it AS fact makes you a liar.


    In that case all scientists are liars.



    Nope. So wrong.

    Yep. which makes you a liar.

    All scientists operate on the basis of theories that cannot be proven
    to be correct.

    But they don't state that those theories are fact.

    Oh yes they do.


    In fact, they explicitly understand that those theories are simply the
    most useful thing they have.

    I see you haven't spent time listening to scientists on the media.
    Especially 'climate scientists'


    Amazingly, you are even more ignorant than you first appeared to be.

    Amazingly, you are even more ignorant than you first appeared to be.

    --
    If you tell a lie big enough and keep repeating it, people will
    eventually come to believe it. The lie can be maintained only for such
    time as the State can shield the people from the political, economic
    and/or military consequences of the lie. It thus becomes vitally
    important for the State to use all of its powers to repress dissent, for
    the truth is the mortal enemy of the lie, and thus by extension, the
    truth is the greatest enemy of the State.

    Joseph Goebbels

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Alan@3:770/3 to The Natural Philosopher on Wednesday, April 27, 2022 11:04:04
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 2022-04-27 2:43 a.m., The Natural Philosopher wrote:
    On 26/04/2022 17:49, Alan wrote:
    On 2022-04-26 9:05 a.m., The Natural Philosopher wrote:
    On 26/04/2022 15:28, Alan wrote:
    On 2022-04-26 2:20 a.m., The Natural Philosopher wrote:
    On 26/04/2022 01:28, Alan wrote:
    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe my >>>>>>>> ass all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be
    bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line >>>>>>> of code.

    Something which you cannot know is a fact, and moreover, you know
    you cannot know it to be fact.

    So stating it AS fact makes you a liar.


    In that case all scientists are liars.



    Nope. So wrong.

    Yep. which makes you a liar.

    All scientists operate on the basis of theories that cannot be proven
    to be correct.

    But they don't state that those theories are fact.

    Oh yes they do.

    Nope.



    In fact, they explicitly understand that those theories are simply the
    most useful thing they have.

    I see you haven't spent time listening to scientists on the media.
    Especially 'climate scientists'


    Give an example.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From The Natural Philosopher@3:770/3 to Alan on Thursday, April 28, 2022 16:18:42
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    On 27/04/2022 19:04, Alan wrote:
    On 2022-04-27 2:43 a.m., The Natural Philosopher wrote:
    On 26/04/2022 17:49, Alan wrote:
    On 2022-04-26 9:05 a.m., The Natural Philosopher wrote:
    On 26/04/2022 15:28, Alan wrote:
    On 2022-04-26 2:20 a.m., The Natural Philosopher wrote:
    On 26/04/2022 01:28, Alan wrote:
    On 2022-04-25 4:54 p.m., Andy Burnelli wrote:
    Lewis wrote:

    "I wrote an app" is about as impressive as "I managed to wipe >>>>>>>>> my ass all
    by myself."

    The _adults_ will notice how Lewis & nospam always prove to be >>>>>>>> bullshitters.
    Neither Lewis nor nospam has _ever_ written even a _single_ line >>>>>>>> of code.

    Something which you cannot know is a fact, and moreover, you know >>>>>>> you cannot know it to be fact.

    So stating it AS fact makes you a liar.


    In that case all scientists are liars.



    Nope. So wrong.

    Yep. which makes you a liar.

    All scientists operate on the basis of theories that cannot be
    proven to be correct.

    But they don't state that those theories are fact.

    Oh yes they do.

    Nope.



    In fact, they explicitly understand that those theories are simply
    the most useful thing they have.

    I see you haven't spent time listening to scientists on the media.
    Especially 'climate scientists'


    Give an example.

    "Professor Brian Cox explores mankind's place in the universe. He looks
    at how we came to understand that we are not at the centre of the universe." https://www.bbc.co.uk/programmes/p0276q28

    And yet, since there is no centre, we are at the centre of the universe
    *we can see*.

    Brian Cox appears not to understand eaither relativity or Quantum theory.

    Name me one supporter of the hypothesis of catastrophic Mann made
    climate change that says that their hypothesis is anything but fact.


    Only the bleeding edge of psychicists understand that a model that
    explains how things happen and predicts then reliably, is not a fact. It
    is a model that reliably predicts how things happen.

    The rest call it 'scientific fact''

    In the case of Mann made climate change it has failed to make a single
    reliable climate prediction, *ever*.


    --
    "And if the blind lead the blind, both shall fall into the ditch".

    Gospel of St. Mathew 15:14

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to The Natural Philosopher on Thursday, April 28, 2022 17:42:11
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    The Natural Philosopher wrote:

    And yet, since there is no centre, we are at the centre of the universe
    *we can see*.

    Aren't we at the center in terms of our outwardly expanding light cone?

    Who knew that studying conic sections in school would have direct
    implications for how to mathematically slice Einstein-Minkowski spacetime!

    Brian Cox appears not to understand eaither relativity or Quantum theory.

    I prefer the mass "informers" to the mass "entertainers"of the proletariat
    such as Brian Cox is, as are a host of others who cater physics to the hoi polloi, where it takes them (Neil deGrasse Tyson, Arvin Ash, Brian Greene,
    Neil Turok, Matt O'Dowd, Michio Kaku, et.al) an hour to tell you what
    Sabine Hossenfelder or Edward Current can explain in just a few minutes.

    You can't knock the detailed physics lectures of Walter Lewin, Richard
    Feynman, et. al, but they're aimed at physics students and not to the
    general public.

    By far, the absolute best, IMHO, people at accurately teaching we commoners
    are & Nick Lucid & Destin Sandlin.

    Don't even get me started on trying to lean anything on Khan Academy.
    But if I have to pick _one_ who is the best at physics, it's ScienceClic.

    Name me one supporter of the hypothesis of catastrophic Mann made
    climate change that says that their hypothesis is anything but fact.

    There's no way to discuss a political football such as climate change
    rhetoric is, but just as Apple always happens to give a different excuse
    for always wanting to do the same thing, the politicians do the same.

    Out here, where PG&E fires rage in the mountains, our governor has publicly said he has no patience for intellectuals who don't innately feel purely emotionally so that the PG&E-caused fires are caused, instead, by their desperate need to create an entirely new taxation system.

    Only the bleeding edge of psychicists understand that a model that
    explains how things happen and predicts then reliably, is not a fact. It
    is a model that reliably predicts how things happen.

    Sabine Hossenfelder is good (much better than Derek Muller or Henry for example), in getting down to the details, but Alessandro Roussel is the
    best of the best (of the best!), IMvHO.

    The rest call it 'scientific fact''

    The facts don't really matter when there is a political agenda,
    particularly when _everything_ is blamed on their desperate need to create
    an entirely new huge global taxation system.

    In the case of Mann made climate change it has failed to make a single reliable climate prediction, *ever*.

    Just like with Apple's arguments about why they constantly remove
    functionality on the smartphone...

    I can reliably predict years in advance that the proponents of the climate change argument will always strive to argue two things in every case:
    1. They will promote fear in as many ways as they can, and,
    2. The _end result_ will _always_ be they want a new huge taxation system.

    Just watch.
    --
    Usenet is where well-educated intelligent friendly people daily gather to discuss topics of interest and to help learn from each other every day.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Thursday, April 28, 2022 18:07:56
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    nospam wrote:

    your apple id has been disabled, likely because of multiple failed
    login attempts because you chose to use a disposable email address and
    a password you have long since forgotten, something which you bragged
    about doing 'for security'.

    Every defense you make for Apple is more evidence you own a very low IQ.

    You brazenly fabricate excuses for why Apple does what Apple does.
    I told you _many_ times that the email/login/password is correct.

    If you _L@@K_ at the screenshots I provided, you'll easily see _why_ Apple disabled the account (which I already told you many times what that is).

    /Look!/
    .... _look again_ at the screenshots ....
    .... *look at the _obvious_ facts nospam* ....

    If you didn't have a low IQ, you'd _easily_ see _instantly_ why Apple
    disabled the account even when the _correct_ login & password are provided.

    Once you figure out why, then you have to ask yourself why Apple cares so
    much to track every move you make by your IP address, nospam.

    Ask yourself why _that_ is the case.

    HINT: I have _plenty_ of iOS devices, each of which do the same thing, as I
    was _testing_ what Apple would do if you didn't allow them to track you.
    <https://i.postimg.cc/LXzB3Lc0/appleid01.jpg> Apple _forces_ a log in!
    <https://i.postimg.cc/g008YhxP/appleid02.jpg> Apple _forces_ a lock out!
    <https://i.postimg.cc/q75t7MSk/appleid03.jpg> Apple _disables_ your acct!
    <https://i.postimg.cc/8zSvshQf/appleid04.jpg> Apple _locks_ you out!
    <https://i.postimg.cc/SKGfmgnK/appleid05.jpg> Apple won't let you back in!

    <https://i.postimg.cc/ZR5mZ287/appleid07.jpg> Apple fails App Store test
    <https://i.postimg.cc/TwN6P0QR/appleid08.jpg> Only Apple requires a login
    <https://i.postimg.cc/8k3GQyj4/appleid09.jpg> Apple tracks your activity
    <https://i.postimg.cc/hhFNJ5mq/appleid010.jpg> Apps become non functional
    <https://i.postimg.cc/nrFHSvby/appleid11.jpg> Apple _forces_ extra logins!
    <https://i.postimg.cc/Y9kkj19v/appleid12.jpg> Apple tracking server login
    --
    Usenet is where friendly people daily gather to discuss topics of interest. Except iKooks whose sole purpose is defending Apple products to the death.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to All on Thursday, April 28, 2022 18:42:39
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    But if you were expecting a DIY repair to be a way of saving money, then you might be a little disappointed. Apple's pricing for some of the most common replacement parts is very similar to what it'll charge you to do the repairs at an Apple Store, even when you're the one delicately taking your phone apart to swap out a broken part.


    Apple: You can't repair a phone.
    Customer: Why not?

    Apple: Real Policy: Because I won't make any money if you do.
    Apple: Oh wait. Strike that. Public Policy: Because it's too dangerous.
    Apple: Yeah. Whew. Too dangerous. You could blow yourself up or something.

    Congress: Maybe we will enact Right to Repair laws?
    Apple: Public Policy: It's too dangerous.
    *Apple's Favorite Anti-Right-to-Repair Argument Is Bullshit*
    <https://gizmodo.com/apples-favorite-anti-right-to-repair-argument-is-bullsh-1837185304>

    Congress: Bullshit. OK, then we will enact Right to Repair laws.
    Apple: OK. I give up (hehhehheh). You can repair your iPhone now.

    Apple: But I'll just _raise_ the prices to fuck the customer anyway.
    *Oh Great, Apple's Raised the Repair Costs for the iPhone 12*
    <https://gizmodo.com/oh-great-apples-raised-the-repair-costs-for-the-iphone-1845411681>

    Consumer: But it costs _more_ to repair now than ever before!
    Apple: Heh heh heh... Apple is clever. The Apple customer is who is stupid.

    *Here's What's Inside Apple's Hefty DIY iPhone Repair Kit Rentals*
    <https://gizmodo.com/apple-self-service-repair-tool-kit-rentals-are-massive-1848848298>
    --
    You can't make those ungodly profit margins off of an intelligent customer.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to Lewis on Thursday, April 28, 2022 18:20:32
    XPost: comp.mobile.android, misc.phone.mobile.iphone

    Lewis wrote:

    You might want to look for a "tear-down" of these cables, before you go spouting off nonsense about something you clearly do not understand.

    What I love is when these low-IQ iKooks actually say the truth without even realizing that they inherently know why Apple requires clusterfuck cables.

    There's a lot more to a lightning cable, USB cable, thunderbolt cable,
    etc. That "a bunch of wires and two connectors".

    Apple's sole goal _requiring_ those Lightning clusterfuckcables is exactly
    the complexity that Lewis inherently realizes is their only reason de etre.
    --
    Usenet is where educated people daily gather to discuss topics of interest. Except iKooks whose sole purpose is defending Apple products to the death.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Stewart Russell@3:770/3 to Eli the Bearded on Friday, April 29, 2022 05:11:34
    On Wednesday, April 13, 2022 at 7:11:23 p.m. UTC-4, Eli the Bearded wrote:

    Anyone know of such a thing at a not-too-outrageous price?

    How's your soldering skills? This is USB and very very small:

    Parula from Ampersand on Tindie — https://www.tindie.com/products/ampersand/parula/

    Is it the sort of thing I'd want to type on for more than a couple of seconds? No. But small it definitely is.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Andy Burnelli@3:770/3 to nospam on Friday, April 29, 2022 21:33:11
    XPost: comp.mobile.android

    nospam wrote:

    How is it you're so consistently an idiot about everything?

    it is rather impressive, isn't it?

    The iKooks can't ever formulate a sensible argument on ANY topic.

    Why do you respond to Alan Baker?
    His IQ (at about 4) is half of yours, where even that is not saying much.

    Every time you respond to him (or to "Hank" or "Rod", et. al), then I have
    to see their crap which is always them trying to prove they're smarter than
    a brick.

    AAA batteries are always physically smaller than AA batteries and
    devices that are designed to take AAA batteries will pretty much NEVER
    accept an AA battery.

    don't confuse the poor child.

    The iKooks can't ever formulate a sensible argument on ANY topic.

    It's not me who is confused.
    You iKooks always fail in the basic "adult logic" compartment.
    The AAA batteries are about half the size and about the same price as AA.

    he might think 'n' batteries are bigger yet.

    The iKooks can't ever formulate a sensible argument on ANY topic.
    For me, it's a better deal to buy devices that take AA instead of AAA.

    2. AAA cost about the same as AA which means they cost twice as much.
    (another way to look at it is they last half as long)

    Wow. Wrong again!

    indeed.

    The iKooks can't ever formulate a sensible argument on ANY topic.

    It's unusual to find small consumer devices which can't be designed for AA.
    If you've never looked, you won't realize how accurate that statement is.

    I'm not saying they can't make a smaller AAA device than an AA device.

    I'm saying almost everything AAA you'd want to buy exists at about the same size in AA - where then it's a better deal overall to use the AA batteries.


    3. Eliminating one battery size reduces the amount of storage in my
    battery drawer of Costco sizes of D, C, AA, and 9V batteries.

    And if you have devices that need AAA batteries?

    nothing a good lathe can't fix.

    The iKooks can't ever formulate a sensible argument on ANY topic.

    My point is that I strategically purchase parts that have the best bang for
    the buck in terms of batteries, where I shun AAA in favor of AA, just as I
    shun non-rechargeables in favor of rechargeables, and just like I shun C
    cells in favor of D cells.

    BTW, I used to work on defibrillators, where you'd be shocked at how fantastically HEAVY a GE NiCad C cell truly was in those days.

    The difference in weight, in those days, between a GE NiCad C cell and a RadioShack NiCad D cell (which was just a C-cell inside a D-casing) was
    like the difference in weight between a bowling ball and a feather.

    The point being that the capacity is what matters most; not the size.

    In summary, when I buy small'ish devices, such as headlamps or small flashlights, I ignore the AAA offerings and only buy the AA offerings.

    That has advantages and almost no disadvantages in my practical experience. That you disagree is fine - but you need a sensible argument and yet, you
    have none to supply.

    Why?
    I don't know why.

    I suspect you don't own an adult brain, nospam.
    --
    The iKooks can't ever formulate a sensible argument on ANY topic.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Ahem A Rivet's Shot@3:770/3 to Andy Burnelli on Saturday, April 30, 2022 06:36:19
    XPost: comp.mobile.android

    On Fri, 29 Apr 2022 21:33:11 +0100
    Andy Burnelli <spam@nospam.com> wrote:

    Why oh why did you drop the crosspost to the iphone group ?

    nospam wrote:

    I had that filtered!

    The iKooks can't ever formulate a sensible argument on ANY topic.

    That term is not clever it is inflammatory and arguably it
    may be considered "hate speech" - it would be better for all if you were to stop engaging with them, it encourages them and irritates everyone else.

    I've said my piece, after all you may be software for all I know.

    --
    Steve O'Hara-Smith
    Odds and Ends at http://www.sohara.org/

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)