|
BillWoodruff wrote: what did you expect with such power usage in a small space ?
I expect my machine to behave like a new Lenovo Legion 7i 16" 4090. It does not. It lacks the thermal characteristics of one of those machines, despite my machine supposedly also being one.
Ergo, it's probably getting returned for repair.
BillWoodruff wrote: surely Lenovo, or reviews on the web, warned about this ?
Also, no their reviews don't warn that you might get a lemon.
There's smoke in my iris
But I painted a sunny day on the insides of my eyelids
So I'm ready now (What you ready for?)
I'm ready for life in this city
And my wings have grown almost enough to lift me
|
|
|
|
|
Hi, i did not mean to imply you had not done "due diligence" before the purchase.
Many years ago, i got burned several times because my compulsion/lust to have the latest ooh-shiny hardware led to my being an early adopter/customer ... and then ... when the warts and all were revealed ... lots of lost time.
Now, i am a cautious miser who will wait until a product has been on the market as long as it takes to see actual purchasers' reviews/ratings ... to spot potential lemons, or customer support problems..
cheers, bill
p.s. i still "get off" reading the hyped-up announcements of new wonders by the ooh-shiny- addicted flacks at popular review websites.
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
|
|
|
|
|
I'm usually that way as well, but to the point of strong preference rather than vow, in terms of using stuff that's been battletested.
This purchase didn't leave me a lot of options given what I wanted. I needed a machine that could do two things:
1. Sit on my desk and be my linux slave, running a bunch of grotty command line linux tools whose documentation is in chinese
2. Easily travel with me to my sister's house, wherein I can use it to game with her while I'm there - a longstanding request I will not deny my baby* sister, whom I adore.
* I have two younger sisters - this one is 14 years my junior and will consequently grow old and die with the moniker "baby sister" if I have any say in the matter.
There's smoke in my iris
But I painted a sunny day on the insides of my eyelids
So I'm ready now (What you ready for?)
I'm ready for life in this city
And my wings have grown almost enough to lift me
|
|
|
|
|
Send it back now before it's too late.
New laptops often fail.
Just buy a tower and build it yourself.
|
|
|
|
|
No. And I fixed it.
I already built a machine, and I don't like towers because hot mobos should not be mounted vertically.
There's smoke in my iris
But I painted a sunny day on the insides of my eyelids
So I'm ready now (What you ready for?)
I'm ready for life in this city
And my wings have grown almost enough to lift me
|
|
|
|
|
Hi, I try to register for a free account (in Win 10/Chrome) with Open-AI, and get turned down because it sees my Thailand mobile-phone (Android) number as "VOIP." Forget trying to get tech support for Open-AI.
I've played with Bard, in Bing, and find it. as is, useless.
Appreciate any hints/clues for how to try the supposed code gen and other functions in Chat-whatever.
thanks, Bill
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
|
|
|
|
|
BillWoodruff wrote: Forget trying to get tech support for Open-AI. You could always post your query to ChatGPT. 
|
|
|
|
|
Thanks, as stated, I was using a Windows 10 laptop to try and register. The site demanded a phone number. The Android phone is a bog standard unlocked phone with a SIM from one of the largest telecoms in Thailand/Asia.
I thought I was trying to register as a Chat-GPT user via Open-AI:
"ChatGPT is an artificial intelligence (AI) chatbot developed by OpenAI"
cheers, Bill
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
|
|
|
|
|
Richard MacCutchan wrote: You could always post your query to ChatGPT. Perhaps, Sir Richard, you jest ?
If I could use (post to ?) ChatGPT, I would not be struggling with how to see some kind of Chat thing do any of the things I read about ... like write some code, interact with me around some topic.
Bard, in Bing, is ... well, i'd call it a rather lame, so far, prototype.
as always your admirer , bill
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
|
|
|
|
|
Sorry, cruel I know, but I couldn't resist. ![Rose | [Rose]](https://codeproject.global.ssl.fastly.net/script/Forums/Images/rose.gif)
|
|
|
|
|
Richard MacCutchan wrote: I couldn't resist. Given how large a target i am: understandable
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
|
|
|
|
|
All done in the spirit of friendly fun, Bill.
|
|
|
|
|
It appears that OpenAI/ChatGPT is available in Thailand, officially. What countries is ChatGPT available & not available in? | WePC[^]
I would try using a laptop and or PC to set up an account and not your "VOIP" phone. I don't recall needing to provide a phone number to create the account, but I could be mistaken.
|
|
|
|
|
Thanks, as stated, I was using a Windows 10 laptop to try and register. The site demanded a phone number. The Android phone is a bog standard unlocked phone with a SIM from one of the largest telecoms in Thailand/Asia.
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
|
|
|
|
|
A recent post was about OP's code getting a crtisvalidheappointer error in a C code program. The code was using malloc/calloc and free , so it was a fair guess what was going wrong. One or two answers and comments were posted with the usual suggestions. The OP then posted the following:
Quote: thanks but I solved in this way:
if (pchTesto != NULL)
{
pchTesto = NULL;
delete pchTesto;
}
if (pchBuffOut != NULL)
{
pchBuffOut = NULL;
delete pchBuffOut;
}

|
|
|
|
|
Big whoopsie moment, I had a few of them, enugh that I made my own macro DDELETENULL(x) to avoid the same mistake.
#define DDELETENULL(x) if (x != NULL) {delete(x); x = NULL;}
I had a DFREENULL(x) which was identical but with free.
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
The shortest horror story: On Error Resume Next
|
|
|
|
|
My dear Watson, it's pretty sure DFREENULL(x) came before the DDELETENULL(x) and the if statement got carried away. In C++ you can delete NULL pointers without hearing a peep from the compiler.
Mircea
|
|
|
|
|
First, it was C++/98, mostly (VisualStudio 6, in 201x, ugh) and it would create issues.
Second, I do clean programming. If a pointer is NULL I don't delete it, despite what the compiler says. It's simply wrong.
Third, DDELETENULL came first because I needed it before I realized I also had some pointers to deallocate with free (mostly the ones allocated with _mm_malloc).
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
The shortest horror story: On Error Resume Next
|
|
|
|
|
I have a lot of counterproductive instincts, but ones that I do have that I really appreciate are the ones that carry me through doing pointer operations. It's second nature, and I don't screw it up nearly as much as I deserve to.
There's smoke in my iris
But I painted a sunny day on the insides of my eyelids
So I'm ready now (What you ready for?)
I'm ready for life in this city
And my wings have grown almost enough to lift me
|
|
|
|
|
|
wow. reminds me of the time when a coworker, who was a bit of a PITA - never listened to good advice, was convinced he had found a bug in the compiler. Having had this fantasy once or twice myself, I've learned that it is almost certainly not the compilier . Myself and one other took a look at his code and immediately found a buffer overrun. He insisted that it always worked correctly before and that could not be the issue.
but back to that code fragment -
Charlie Gilley
“They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759
Has never been more appropriate.
|
|
|
|
|
charlieg wrote: Having had this fantasy once or twice myself,
At one point I put a PostIt note on my monitor: "The stupid is on the other side of the screen"
Mircea
|
|
|
|
|
I usually refer to the acronym PICNIC.
Problem
In
Chair
Not
In
Computer
Kelly Herald
Software Developer
|
|
|
|
|
I knew it as PBKAC[^] but I like your acronym better
My formulation leaves a chance to sensitive souls to imagine that problem is behind the screen... as if
Mircea
|
|
|
|
|
In the embedded world sometimes we actually find bugs in the compiler, though they are easier to spot since the disassembly is much leaner.
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
The shortest horror story: On Error Resume Next
|
|
|
|