|
#Worldle #431 1/6 (100%)
π©π©π©π©π©π
https://worldle.teuteuf.fr
Made for bad wordle
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
I use it more and more and for me it is much more efficient then to google for a specific (programming) question.
The strange thing is:
I feel something pressed to say 'thank you' after I got a usefull answer.
So I'm asking myself: Do you will really say thanks to a machine,?
In my mind I solved it, that I say 'thanks' to the builders of ChatGTP.

|
|
|
|
|
I don't thank it but I let it know when it's correct so it learns the right things. Approach it like a child in that regard and give positive reinforcement. Also, it is probably best to give it negative reinforcement when it is wrong so that is not propagated either.
"They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"
|
|
|
|
|
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
|
|
|
|
|
At the moment, yes it is static. I assume that will change with time.
|
|
|
|
|
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"
|
|
|
|
|
After reading this I tried it and it explained to me what I was confused about so that I could understand.
|
|
|
|
|
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
|
|
|
|
|
I worked a little bit in Flutter and liked it. A bit of a hassle to learn Dart as yet another programming language, but it's really not that difficult. App performance feels good. I like the widget structure and available components. Dev speed + compiling is great.
Downside: you still have to build (parts of) the UI twice, for iOS and Android.
|
|
|
|
|
Any Flutter-related issues getting your app past App Store review?
Paul Sanders.
If I had more time, I would have written a shorter letter - Blaise Pascal.
Some of my best work is in the undo buffer.
|
|
|
|
|
I am about to submit an app to Apple Store. It is a flutter app that was approved by Google and maybe tomorrow or later I will know how picky Apple is.
The only thing I did was change the DateTimePicker to the Cupertino version, mainly because I don't want to upset my future users.
As a whole, the main problems I had adjusting to iOS was the configuration on XCode, which wasn't that bad, but as I said, I have never touched an Apple product before then it took some time find things around.
For this project (sort of an online radio) I tried some tools, like Uno Platform, MAUI. ionic, etc and by the time I tested none of them could deal with audio properly - there is a good chance it was my stupidity and ignorance on such platforms, but flutter was the one that provided all I needed.
I will share my struggles with Apple Store once I have any info.
|
|
|
|
|
I wasn't responsible for publishing the apps(s), but I haven't heard back. So, Nope.
I can only assume everything went right .
OTOH, if something was wrong, I sure *would* have heard back.
|
|
|
|
|
There is no absolute answer for everyone.
My choice was Xamarin, and now itβs latest version, MAUI (which is not new, just a major next version of Xamarin renamed for marketing purposes).
The main benefit for me is being able to use a language (C#) and a framework (.NET 7) that is portable across OSs, same as used in the cloud/server apps that a mobile app will likely use, and is open-source and been around 20+ years.
If you design correctly, some C# libraries you write are also usable with MAUI.
Blazor for use making apps outside of web apps is promising, but IMHO, needs another year or so to catch up to MAUI.
My preference today is MAUI for native mobile apps and Blazor for web apps. All use C# and .NET 7.
|
|
|
|
|
So you're doing some MAUI work now?
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.
|
|
|
|
|
I created my first app using Android Studio. When it came time to support iOS I chose MAUI. I thought that my experience using Visual Studio and operating in Windows would help. So far, I find MAUI very frustrating to try to accomplish more than toy projects. I have been using it for 3 months now, and still have not recreated the Android app. I still don't know what it will take to publish to Apple Play and Play Store.
For me the promise of MAUI has not delivered. I have played a bit with Xcode and may give up on MAUI for Xcode.
If you are only supporting a small number of apps then maybe Android Studio /Xcode is the way to go. Has anyone successfully deployed MAUI for both Android and iOS?
|
|
|
|
|
None of the above I'm sorry to say.
I would make all future applications using pure HTML5 backed either by Typescript, C#/WASM/Blazor, or pure JavaScript. Then distribute it across platforms as a PWA or a Blazor hybrid app. You're then dependent on no one company's whims and shortcomings.
5 years ago I would've been horrified by this suggestion but I'm a convert now. Microsoft has proven itself completely inept at native frontend and without web support MAUI can't be taken seriously anyway. Google Flutter is interesting but requires Dart which makes porting existing apps impossible and limits the available open source ecosystem severely.
Other options -
Uno is too slow on the web.
Avalonia is a maybe but last I checked has no web support.
Here's the bottom line. No one has a strong commercial interest in making a true write-once-run-everywhere ecosystem. For anyone who has it - like Microsoft with Office or Google with GSuite - it's a competitive advantage and they're not gonna give it away. Whatever they do give away will be made by a different team than their commercial products and be inferior and watered down.
If you want something done right you have to do it yourself.
|
|
|
|
|
Xamarin is behind the curve.
Slack, and vs code, are both packaged/written in Electron. No need to look any further.
"If we don't change direction, we'll end up where we're going"
|
|
|
|
|
I looked into using Xamarin for a mobile app, but if storyboarding is required (something I desired), I would still need a Mac and Xedit for it. SO, I thought, what's the point? and coded the app native for Android in Kotlin and iPhone in Swift. I am guessing that .Net MAUI has the same problem.
|
|
|
|
|
I picked flutter and used it for several months now. I think it's pretty cool since it has pretty much freed me from gradle's dependency hell. I no longer need to add entries in gradle every time I want to use some library. Now I simply pick a required flutter plugin.
|
|
|
|