|
i concluded ChatGPT is not very intelligent as it was unable to answer a simple question i.e. "if you are walking down an alley with a canoe over your head how many pancakes does it take to cover a dog house?" i held its hand and lead it to the correct answer and it still did not see it . whilst asking it to consider its own responses i.e. reflection it blew a fuse i.e. message in red "something went wrong" .
it may be informative to know in what manner you utilized ChatGPT in your software development . Dave's Garage has a video re/ same 10X Your Code with ChatGPT: How to Use it Effectively - YouTube[^] . i hope to do so but am yet unsure how .
-Best
|
|
|
|
|
The problem - IMHO - is that ChatGPT has a static knowledge base. It does not learn from conversations, but only from the data-feed from the back... A Google search will find info from yesterday - try and ask ChatGPT about TypeScript 5 for instance...
But for the 'Thank you' part - I always talk to machines
"If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." ― Gerald Weinberg
|
|
|
|
|
See it this way... it improves your changes when they eventually take over the world.
"Let's not kill humanoid XK334837823, he said 'thank you', let's just enslave him"
|
|
|
|
|
This is my code, i am using XAMARIN FORM.
I can conect to the API using GET, the API is running, but when i try to do a POST to call the postTransacciones, i got the following error: NetWork Subsystem is down.
<pre>
var data = new[]
{
new KeyValuePair<string, string>("fechaGasto", Fecha),
new KeyValuePair<string, string>("tipogasto", TipoGastoData),
new KeyValuePair<string, string>("RNC", txtRNCSuplidor.ToString()),
new KeyValuePair<string, string>("NCF",txNCF.ToString()),
new KeyValuePair<string, string>("URL", sUrl),
new KeyValuePair<string, string>("Monto",txtMonto.ToString()),
new KeyValuePair<string, string>("TipoTransaccion",TipoTransaccion),
new KeyValuePair<string, string>("email", EmailUser),
};
#if DEBUG
HttpClientHandler insecureHandler = DependencyService.Get<IHttpClientHandlerService>().GetInsecureHandler();
HttpClient client = new HttpClient(insecureHandler);
#else
HttpClient client = new HttpClient();
#endif
string url = "https://localhost:7254/api/GetData/postTransacciones";
var json =JsonConvert.SerializeObject(data);
client.BaseAddress = new Uri(url);
var stringContent = new StringContent(json, Encoding.UTF8,"application/json");
try
{
HttpResponseMessage response = await client.PostAsync(url, stringContent);
Thanks in advanced.
|
|
|
|
|
Sort of like: "the power is off".
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
Wrong forum. Read the message at the top and click the link that says "Got a programming question?".
|
|
|
|
|
Check the port number of the "Access Point" and see if it's different from "7254".
|
|
|
|
|
For anyone is doing any Universal Cross-Platform Apps...
I'm considering either .Net MAUI or Flutter and I'd like to get some insight into these two before I make a decision.
Thanks
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.
|
|
|
|
|
If I were 20 years younger I would probably go for QT for multiplatform stuff. It is a platform I know works at least for windows AND mac desktop. It also promises android.
Flutter, MAUI and the like, could be useful for somebody starting up from scratch, with the correct age and energy. However I am not convinced how truly "multiplatform" they really are. There are so many design differences between the desktop and a phone that I doubt if a single unmodified code base can target both. What kind of percent will be needed for platform specific fixes? I wonder if anybody could enlighten us
|
|
|
|
|
This message has been flagged as potential spam and is awaiting moderation
|
|
|
|
|
This is from the CodeProject insider. Probably most interesting for those that are old enough to be even close to remembering some of this
Building a DOS ChatGPT client in 2023 - YKM's Corner on the Web[^]
Now I didn't actually consider the software in the article much of a challenge. I can see the lack of threads as a bit of problem but back then Windows 3.1 ran on an event loop so one just needs to be careful about blocking for too long.
But what really amazed me was that there was a network card that would work.
Also kind of amusing at the end though where the author asks ChatGPT to write the code for this project and it says it can't. Guess it won't be replacing programmers yet.
|
|
|
|
|
jschell wrote: But what really amazed me was that there was a network card that would work.
Doom was a DOS game, and worked over LANs. It should come as no surprise that some NICs worked under DOS.
|
|
|
|
|
I used to run a 10baseT 3com NIC in a dos machine back in the day. 486DX2/66 IIRC.
To err is human. Fortune favors the monsters.
|
|
|
|
|
It's Bacon, Lettuce, and Tomato.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I knew someone would have made the roll pun. I just knew it.
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
|
|
|
|
|
den2k88 wrote: I knew someone would have made the roll pun. I just knew it. It was not a question of "IF", more a question of "when"
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Argh! It's way over there under the sink!
|
|
|
|
|
I was thinking more along the lines of a Danish.
|
|
|
|
|
|
Kolaches are a Czech tradition here in TX. They are buns stuffed with just about everything, fruit, meat, vegetables so a BLT in a bun is not far fetched.
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
From tomorrow on I'll be system architect (together with a colleague), trying to bring order into the chaos of non existant processes and a lot of different solutions for similar problems in our division, and on the same time trying to reduce complexity, make everything a bit more robust and less "manual" while bringing us into the future.
Whish me luck
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Best of luck!
"In testa che avete, Signor di Ceprano?"
-- Rigoletto
|
|
|
|
|
Thanks Carlo
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Don't try and do everything all at once. One bite at a time.
Pick some low-hanging fruit to start to
- get some quick successes and impress the higher ups
- test and fine tune YOUR processes
Involve the people that will be using your solutions.
If you can steer them to the 'correct' solution and make them think it was their idea, you will get buy-in a lot faster.
"Mistakes are prevented by Experience. Experience is gained by making mistakes."
|
|
|
|
|
Chris is reading, you know?
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
|
|
|
|