Re: Do Microsoft?s Copilot+ PCs Require Linux?

Liste des GroupesRevenir à ol advocacy 
Sujet : Re: Do Microsoft?s Copilot+ PCs Require Linux?
De : OFeem1987 (at) *nospam* teleworm.us (Chris Ahlstrom)
Groupes : comp.os.linux.advocacy
Date : 29. May 2024, 14:10:09
Autres entêtes
Organisation : None
Message-ID : <v375v1$14knj$2@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
User-Agent : slrn/1.0.3 (Linux)
rbowman wrote this copyrighted missive and expects royalties:

On Tue, 28 May 2024 14:36:37 -0400, Joel wrote:
>
I would use the features of CPP that are not OOP, but otherwise, regular
C is all one needs, aside from minor things only assembly can do
(largely OS core/device drivers).

I once tried, as an experiment, writing an audio player using straight
C and unions to do "inheritance".

Once was enough.

Sometimes C is enough, though. Or sometimes one is forced to use a C-only
library or wrap C++ code in 'extern "C"' interfaces.

Other than Esri stuff my C++ looks a lot like C but then so does
Stroustrup's in the edition I have. Esri's ArcObjects is COM based so they
make extensive use of smart pointers. It took me a while to get used to

COM... bleh.

IFeaturePtr pFeature;
IGeometryPtr pGeometry;
ICurvePtr pCurve;
....
pFeature->get_Shape(&pGeometry);
pCurve = pGeometry
>
The first one makes sense. There is a bunch of variant and BSTR mumbo-
jumbo that goes with COM but pFeature->get_Value(someField) works like you
would thing but there is no pFeature->get_Curve), only the magical
assignment instead of even pGeometry->get_Curve(&pCurve);
>
The docs weren't that great so it was often 'okay, I've got this, not how
the hell do I get that?'
>
The other problem with C++ for me was the awkward way it was hatched that
let Microsoft fill in the blanks so you have things like String and
string.

Yeah, Qt jumped into the breech with things like QString. I make sure that
the public interfaces use C++ standard types, and convert to stuff like QString
internally only where necessary... I have a little function named qt() for that.
It's only in the GUI, so the performance hit is insignificant.

--
Q: What's a light-year?
A: One-third less calories than a regular year.

Date Sujet#  Auteur
22 May 24 * Do Microsoft’s Copilot+ PCs Require Linux?846Lawrence D'Oliveiro
22 May 24 +* Re: Do Microsoft’s Copilot+ PCs Require Linux?15RonB
22 May 24 i+* Re: Do Microsoft’s Copilot+ PCs Require Linux?2Chris Ahlstrom
23 May 24 ii`- Re: Do Microsoft’s Copilot+ PCs Require Linux?1RonB
22 May 24 i+* Re: Do Microsoft’s Copilot+ PCs Require Linux?3Andrzej Matuch
22 May 24 ii`* Re: Do Microsoft’s Copilot+ PCs Require Linux?2Andrzej Matuch
22 May 24 ii `- Re: Do Microsoft’s Copilot+ PCs Require Linux?1Joel
22 May 24 i`* Re: Do Microsoft’s Copilot+ PCs Require Linux?9candycanearter07
22 May 24 i +* Re: Do Microsoft’s Copilot+ PCs Require Linux?2Diego Garcia
23 May 24 i i`- Re: Do Microsoft’s Copilot+ PCs Require Linux?1RonB
23 May 24 i +* Re: Do Microsoft’s Copilot+ PCs Require Linux?2Lawrence D'Oliveiro
23 May 24 i i`- Re: Do Microsoft’s Copilot+ PCs Require Linux?1Joel
23 May 24 i +* Thank you Microsoft.3Relf
23 May 24 i i`* Don't be a WUCI2DFS
23 May 24 i i `- Re: Don't be a WUCI1vallor
23 May 24 i `- Re: Do Microsoft’s Copilot+ PCs Require Linux?1RonB
22 May 24 +- Re: Do Microsoft’s Copilot+ PCs Require Linux?1Joel
22 May 24 +* Re: Do Microsoft’s Copilot+ PCs Require Linux?5rbowman
23 May 24 i`* Re: Do Microsoft’s Copilot+ PCs Require Linux?4Lawrence D'Oliveiro
23 May 24 i `* Re: Do Microsoft’s Copilot+ PCs Require Linux?3rbowman
23 May 24 i  `* Re: Do Microsoft’s Copilot+ PCs Require Linux?2Lawrence D'Oliveiro
23 May 24 i   `- Re: Do Microsoft’s Copilot+ PCs Require Linux?1rbowman
22 May 24 `* Re: Do Microsoft’sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)824Tyrone
22 May 24  +* Re: Do Microsoft’sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)2Diego Garcia
23 May 24  i`- Re: Do Microsoft’s Copilot+ PCs Require Linux?1Lawrence D'Oliveiro
22 May 24  +* Re: Do Microsoft’sCopilot+ PCs Require Linux?809DFS
22 May 24  i`* Re: Do Microsoft’sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)808Tyrone
23 May 24  i +* Re: Do Microsoft’sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)6Joel
23 May 24  i i`* Re: Do Microsoft’s Copilot+ PCs Require Linux?5Lawrence D'Oliveiro
24 May 24  i i `* Re: Do Microsoft’s Copilot+ PCs Require Linux?4Stéphane CARPENTIER
25 May 24  i i  `* Re: Do Microsoft’s Copilot+ PCs Require Linux?3Lawrence D'Oliveiro
25 May 24  i i   `* Re: Do Microsoft’s Copilot+ PCs Require Linux?2Joel
25 May 24  i i    `- Re: Do Microsoft’s Copilot+ PCs Require Linux?1Lawrence D'Oliveiro
23 May 24  i `* Re: Do Microsoft’sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)801Andrzej Matuch
23 May 24  i  +* Re: Do Microsoft’sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)750Tyrone
23 May 24  i  i+* Re: Do Microsoft?sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)611Joel
23 May 24  i  ii`* Re: Do Microsoft?sCopilot+ PCs Require Linux?610Tyrone
24 May 24  i  ii +* Re: Do Microsoft?sCopilot+ PCs Require Linux?589Andrzej Matuch
24 May 24  i  ii i`* Re: Do Microsoft?sCopilot+ PCs Require Linux?588RonB
24 May 24  i  ii i `* Re: Do Microsoft?sCopilot+ PCs Require Linux?587Andrzej Matuch
24 May 24  i  ii i  +* Re: Do Microsoft?sCopilot+ PCs Require Linux?9Lawrence D'Oliveiro
24 May 24  i  ii i  i`* Re: Do Microsoft?sCopilot+ PCs Require Linux?8Andrzej Matuch
24 May 24  i  ii i  i +* Re: Do Microsoft?sCopilot+ PCs Require Linux?2Joel
24 May 24  i  ii i  i i`- Re: Do Microsoft?sCopilot+ PCs Require Linux?1Chris Ahlstrom
25 May 24  i  ii i  i `* Re: Do Microsoft’s Copilot+ PCs Require Linux?5Lawrence D'Oliveiro
25 May 24  i  ii i  i  +* Re: Do Microsoft’s Copilot+ PCs Require Linux?3rbowman
25 May 24  i  ii i  i  i`* Re: Do Microsoft’s Copilot+ PCs Require Linux?2Lawrence D'Oliveiro
25 May 24  i  ii i  i  i `- Re: Do Microsoft’s Copilot+ PCs Require Linux?1rbowman
25 May 24  i  ii i  i  `- Re: Do Microsoft’s Copilot+ PCs Require Linux?1Andrzej Matuch
24 May 24  i  ii i  +* Re: Do Microsoft?sCopilot+ PCs Require Linux?570RonB
24 May 24  i  ii i  i`* Re: Do Microsoft?sCopilot+ PCs Require Linux?569Andrzej Matuch
24 May 24  i  ii i  i +* Re: Do Microsoft?sCopilot+ PCs Require Linux?70Chris Ahlstrom
24 May 24  i  ii i  i i+* Re: Do Microsoft?sCopilot+ PCs Require Linux?63Andrzej Matuch
24 May 24  i  ii i  i ii+* Re: Do Microsoft?sCopilot+ PCs Require Linux?10Chris Ahlstrom
24 May 24  i  ii i  i iii+* Re: Do Microsoft?sCopilot+ PCs Require Linux?8Andrzej Matuch
24 May 24  i  ii i  i iiii+* Re: Do Microsoft?sCopilot+ PCs Require Linux?2Chris Ahlstrom
24 May 24  i  ii i  i iiiii`- Re: Do Microsoft?sCopilot+ PCs Require Linux?1Andrzej Matuch
25 May 24  i  ii i  i iiii`* Re: Do Microsoft?sCopilot+ PCs Require Linux?5RonB
25 May 24  i  ii i  i iiii `* Re: Do Microsoft?sCopilot+ PCs Require Linux?4Andrzej Matuch
25 May 24  i  ii i  i iiii  `* Re: Do Microsoft?sCopilot+ PCs Require Linux?3RonB
26 May 24  i  ii i  i iiii   `* Re: Do Microsoft?sCopilot+ PCs Require Linux?2Andrzej Matuch
26 May 24  i  ii i  i iiii    `- Re: Do Microsoft?sCopilot+ PCs Require Linux?1RonB
24 May 24  i  ii i  i iii`- Re: Do Microsoft?sCopilot+ PCs Require Linux?1candycanearter07
24 May 24  i  ii i  i ii+* Re: Do Microsoft?sCopilot+ PCs Require Linux?5Stéphane CARPENTIER
24 May 24  i  ii i  i iii`* Re: Do Microsoft?sCopilot+ PCs Require Linux?4Andrzej Matuch
25 May 24  i  ii i  i iii +- Re: Do Microsoft?sCopilot+ PCs Require Linux?1rbowman
25 May 24  i  ii i  i iii +- Re: Do Microsoft?sCopilot+ PCs Require Linux?1Chris Ahlstrom
25 May 24  i  ii i  i iii `- Re: Do Microsoft?sCopilot+ PCs Require Linux?1Andrzej Matuch
24 May 24  i  ii i  i ii`* Re: Do Microsoft?sCopilot+ PCs Require Linux?47rbowman
24 May 24  i  ii i  i ii +* Re: Do Microsoft?sCopilot+ PCs Require Linux?40Joel
24 May 24  i  ii i  i ii i`* Re: Do Microsoft?sCopilot+ PCs Require Linux?39%
24 May 24  i  ii i  i ii i +* Re: Do Microsoft?sCopilot+ PCs Require Linux?37Joel
25 May 24  i  ii i  i ii i i`* Re: Do Microsoft?sCopilot+ PCs Require Linux?36rbowman
25 May 24  i  ii i  i ii i i `* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)35Lawrence D'Oliveiro
25 May 24  i  ii i  i ii i i  +* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)27rbowman
25 May 24  i  ii i  i ii i i  i+* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)23Lawrence D'Oliveiro
25 May 24  i  ii i  i ii i i  ii+* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)12RonB
25 May 24  i  ii i  i ii i i  iii`* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)11Andrzej Matuch
25 May 24  i  ii i  i ii i i  iii +* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)7RonB
25 May 24  i  ii i  i ii i i  iii i+* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)5rbowman
26 May 24  i  ii i  i ii i i  iii ii+- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1Lawrence D'Oliveiro
26 May 24  i  ii i  i ii i i  iii ii`* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)3Chris Ahlstrom
26 May 24  i  ii i  i ii i i  iii ii `* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)2rbowman
28 May 24  i  ii i  i ii i i  iii ii  `- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1Chris Ahlstrom
26 May 24  i  ii i  i ii i i  iii i`- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1Andrzej Matuch
25 May 24  i  ii i  i ii i i  iii `* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)3rbowman
26 May 24  i  ii i  i ii i i  iii  `* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)2Andrzej Matuch
26 May 24  i  ii i  i ii i i  iii   `- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1Chris Ahlstrom
25 May 24  i  ii i  i ii i i  ii+* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)6Farley Flud
25 May 24  i  ii i  i ii i i  iii`* Re: 🏳️‍🌈Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)🏳️‍🌈5=?UTF-8?B?8J+MiPCfkpDwn4y78J+MuvCfjLnwn4y78J+SkPCfjLfwn4y68J+MiA==?=Jen=?UTF-8?B?8J+MiPCfkpDwn4y78J+MuvCfjLnwn4y78J+SkPCfjLfwn4y68J+MiA==?= Dershmender 💐🌻🌺🌹🌻💐🌷🌺🐶笛🌈💐🌻🌺🌹🌻💐🌷🌺🌈
26 May 24  i  ii i  i ii i i  iii `* Re: 🏳️‍🌈Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)🏳️‍🌈4rbowman
26 May 24  i  ii i  i ii i i  iii  `* Re: ????Audiophilia (was Re: Do Microsoft?s Copilot+ PCs Require Linux?)????3rbowman
26 May 24  i  ii i  i ii i i  iii   `* Re: ????Audiophilia (was Re: Do Microsoft?s Copilot+ PCs Require Linux?)????2rbowman
26 May 24  i  ii i  i ii i i  iii    `- Re: 🏳️‍🌈????Audiophilia (was Re: Do Microsoft?s Copilot+ PCs Require Linux?)????🏳️‍🌈1=?UTF-8?B?8J+MiPCfkpDwn4y78J+MuvCfjLnwn4y78J+SkPCfjLfwn4y68J+MiA==?=Jen=?UTF-8?B?8J+MiPCfkpDwn4y78J+MuvCfjLnwn4y78J+SkPCfjLfwn4y68J+MiA==?= Dershmender 💐🌻🌺🌹🌻💐🌷🌺🐶笛🌈💐🌻🌺🌹🌻💐🌷🌺🌈
25 May 24  i  ii i  i ii i i  ii`* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)4rbowman
26 May 24  i  ii i  i ii i i  ii +* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)2Lawrence D'Oliveiro
26 May 24  i  ii i  i ii i i  ii i`- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1rbowman
26 May 24  i  ii i  i ii i i  ii `- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1Joel
25 May 24  i  ii i  i ii i i  i`* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)3RonB
25 May 24  i  ii i  i ii i i  i +- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1RonB
25 May 24  i  ii i  i ii i i  i `- Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)1RonB
25 May 24  i  ii i  i ii i i  +* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)5RonB
26 May 24  i  ii i  i ii i i  `* Re: Audiophilia (was Re: Do Microsoft’s Copilot+ PCs Require Linux?)2rbowman
25 May 24  i  ii i  i ii i `- Re: Do Microsoft’s Copilot+ PCs Require Linux?1Lawrence D'Oliveiro
24 May 24  i  ii i  i ii `* Re: Do Microsoft?sCopilot+ PCs Require Linux?6Andrzej Matuch
25 May 24  i  ii i  i i+- Re: Do Microsoft?sCopilot+ PCs Require Linux?1RonB
25 May 24  i  ii i  i i+- Re: Do Microsoft?sCopilot+ PCs Require Linux?1RonB
25 May 24  i  ii i  i i+* Re: Do Microsoft?sCopilot+ PCs Require Linux?2rbowman
25 May 24  i  ii i  i i`* Re: Do Microsoft?sCopilot+ PCs Require Linux?2rbowman
24 May 24  i  ii i  i +* Re: Do Microsoft?sCopilot+ PCs Require Linux?2rbowman
25 May 24  i  ii i  i `* Re: Do Microsoft?sCopilot+ PCs Require Linux?496RonB
24 May 24  i  ii i  `* Re: Do Microsoft?sCopilot+ PCs Require Linux?7Stéphane CARPENTIER
24 May 24  i  ii +- Re: Do Microsoft?sCopilot+ PCs Require Linux?1RonB
24 May 24  i  ii `* Re: Do Microsoft?sCopilot+ PCs Require Linux?19rbowman
25 May 24  i  i+* Re: Do MicrosoftsCopilot+ PCs Require Linux?133DFS
25 May 24  i  i`* Re: Do Microsoft’sCopilot+ PCs Require Linux? (was: Do Microsoft’sCopilot+ PCs Require Linux?)5Stéphane CARPENTIER
24 May 24  i  `* Re: Do Microsoft’s Copilot+ PCs Require Linux?50Lawrence D'Oliveiro
23 May 24  `* Re: Do Microsoft’s Copilot+ PCs Require Linux?12Lawrence D'Oliveiro

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal