Click here to Skip to main content
15,886,919 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Wordle 563 Pin
OriginalGriff2-Jan-23 17:49
mveOriginalGriff2-Jan-23 17:49 
GeneralRe: Wordle 563 Pin
Amarnath S2-Jan-23 19:28
professionalAmarnath S2-Jan-23 19:28 
GeneralRe: Wordle 563 - a 2 for me Pin
pkfox2-Jan-23 21:46
professionalpkfox2-Jan-23 21:46 
GeneralRe: Wordle 563 (4/6) Pin
musefan2-Jan-23 23:08
musefan2-Jan-23 23:08 
GeneralRe: Wordle 563 (4/6) Pin
jmaida3-Jan-23 10:35
jmaida3-Jan-23 10:35 
GeneralPeeling back the UI layers of Windows 11 Pin
Graeme_Grant2-Jan-23 11:57
mvaGraeme_Grant2-Jan-23 11:57 
GeneralRe: Peeling back the UI layers of Windows 11 Pin
honey the codewitch3-Jan-23 7:41
mvahoney the codewitch3-Jan-23 7:41 
GeneralHave you played with OpenAI's ChatGPT? Pin
Kornfeld Eliyahu Peter2-Jan-23 8:39
professionalKornfeld Eliyahu Peter2-Jan-23 8:39 
What kind of questions had you (or would) ask?
What is considered a good answer for you?

---
I decided to try and figure out how to write some C64 assembly code to make a beep sound (spoiler - I knew the answer beforehand)...
The result was frustrating and relaxing at the same time... Frustrating, because I wasted time (compared to some simple search) and did not get any answer.
Relaxing, because I realized that the judgment day is still far...

ME: I'm looking for a sample code for commodore 64 to beep
AI: Here is a sample program in Commodore 64 BASIC that will make a beep sound:
10 SOUND 0,10,1,8
20 FOR I=1 TO 1000:NEXT I
30 GOTO 10
[more explanations on how to actually run the code]
(this code has nothing to do with C64 - it is for C128 with a more advanced BASIC)
ME: do you have something similar in assembly?
AI: Here is a sample program in Commodore 64 assembly language that will make a beep sound:
*= $0801
.ORG $0801
SEI
LDX #$FF
STX $D020
STX $D021
LDA #$08
STA $DC0D
LDA #$1F
STA $DD0D
JSR $FFE2
loop:
JMP loop
.END
[with more explanations about the SID, and how FFE2 is there to play a sound]
(the code totally wrong as FFE2 is not valid kernal routine address)

It went on - I'm pointing out that the code is wrong (and why), AI apologize and offers the same code with a different routine address...
Including CHRIN, CHROUT, STOP and back to the original FFE2 (three times).
The truly fascinating thing is that the code is totally wrong, not just the wrong routine addresses, but the memory addresses used too, not even close to the solution...

I not really know what is the goal of this chat, but I would hide it if I was the creator...
"Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid." ― Albert Einstein

GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Randor 2-Jan-23 9:47
professional Randor 2-Jan-23 9:47 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
jschell2-Jan-23 13:32
jschell2-Jan-23 13:32 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Randor 2-Jan-23 13:48
professional Randor 2-Jan-23 13:48 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
MonkeyVaughan4-Jan-23 1:26
MonkeyVaughan4-Jan-23 1:26 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Randor 5-Jan-23 15:17
professional Randor 5-Jan-23 15:17 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Eddy Vluggen2-Jan-23 10:21
professionalEddy Vluggen2-Jan-23 10:21 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Slacker0072-Jan-23 11:38
professionalSlacker0072-Jan-23 11:38 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
raddevus2-Jan-23 12:13
mvaraddevus2-Jan-23 12:13 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
jmaida2-Jan-23 14:03
jmaida2-Jan-23 14:03 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Gerry Schmitz2-Jan-23 17:29
mveGerry Schmitz2-Jan-23 17:29 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
jmaida2-Jan-23 17:38
jmaida2-Jan-23 17:38 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Gerry Schmitz2-Jan-23 17:20
mveGerry Schmitz2-Jan-23 17:20 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
RainHat2-Jan-23 23:19
RainHat2-Jan-23 23:19 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
DerekT-P2-Jan-23 23:22
professionalDerekT-P2-Jan-23 23:22 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Nelek2-Jan-23 23:31
protectorNelek2-Jan-23 23:31 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Kornfeld Eliyahu Peter2-Jan-23 23:45
professionalKornfeld Eliyahu Peter2-Jan-23 23:45 
GeneralRe: Have you played with OpenAI's ChatGPT? Pin
Nelviticus3-Jan-23 22:08
Nelviticus3-Jan-23 22:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.