Page 4109 of 4240 [ 67829 posts ]  Go to page Previous  1 ... 4106, 4107, 4108, 4109, 4110, 4111, 4112 ... 4240  Next

DuckHairback
Veteran
Veteran

User avatar

Joined: 27 Jan 2021
Age: 45
Gender: Male
Posts: 4,705
Location: Durotriges Territory

28 Jun 2023, 10:51 am

Can I make you something to eat?

Have you played snooker? If yes, how did it go?


_________________
The world is a big place where things happen almost every day.


IsabellaLinton
Veteran
Veteran

User avatar

Joined: 1 Nov 2017
Gender: Female
Posts: 72,422
Location: Chez Quis

28 Jun 2023, 10:58 am

Yes. My parents had a professional pool table (snooker, billiards?) in our house. I used to make forts under it but also played the games many times. My guy friend in high school did too. We did other things under that table. As an adult I used to shoot pool with one of my boyfriends in a pub. Actually, two of my boyfriends. Not at the same time, mind you.

lol

same question


_________________
I never give you my number, I only give you my situation.
Beatles


tripleU
Tufted Titmouse
Tufted Titmouse

Joined: 27 Jun 2023
Age: 15
Gender: Male
Posts: 30
Location: Pakistan

30 Jun 2023, 9:03 am

IsabellaLinton wrote:
Yes. My parents had a professional pool table (snooker, billiards?) in our house. I used to make forts under it but also played the games many times. My guy friend in high school did too. We did other things under that table. As an adult I used to shoot pool with one of my boyfriends in a pub. Actually, two of my boyfriends. Not at the same time, mind you.

lol

same question

Never

Have you ever written clean code? Show it



Recidivist
Veteran
Veteran

User avatar

Joined: 4 Jan 2023
Gender: Male
Posts: 3,851
Location: He/him/his

30 Jun 2023, 9:08 am

Code:
 Of course I have, this code is very very clean lol


Same question.


_________________
Another man's freedom fighter, one man's terrorist is - Yoda (probably)


Fnord
Veteran
Veteran

Joined: 6 May 2008
Gender: Male
Posts: 60,939
Location:      

01 Jul 2023, 5:59 am

Yes, I write 'clean' code.

Code:
RANDOMIZE TIMER
CLS

UPP$ = ""

GOSUB Roll3D2H
Att1 = Roll
UPP$ = UPP$ + Roll$

GOSUB Roll3D2H
Att2 = Roll
UPP$ = UPP$ + Roll$

GOSUB Roll3D2H
Att3 = Roll
UPP$ = UPP$ + Roll$

GOSUB Roll3D2H
Att4 = Roll
UPP$ = UPP$ + Roll$

GOSUB Roll3D2H
Att5 = Roll
UPP$ = UPP$ + Roll$

GOSUB Roll3D2H
Att6 = Roll
UPP$ = UPP$ + Roll$

LFR = Att1 + Att2 + Att3
Full = CINT((LFR * 3) / 3)
Stun = CINT((LFR * 2) / 3)
Coma = CINT((LFR * 1) / 3)
Dead = CINT((LFR * 0) / 3)

Smax = (Att4 + Att5)

PRINT "Universal Personality Profile (UPP): "; UPP$;
IF (Att6 = 10) THEN PRINT " (Squire)";
IF (Att6 = 11) THEN PRINT " (Knight)";
IF (Att6 = 12) THEN PRINT " (Baron)";
IF (Att6 = 13) THEN PRINT " (Marquis)";
IF (Att6 = 14) THEN PRINT " (Count)";
IF (Att6 = 15) THEN PRINT " (Duke)";
PRINT
PRINT
PRINT "Life Force Rating (LFR) / Full:"; Full; "/ "; "Stunned:"; Stun; "/ "; "Comatose:"; Coma; "/ "; "Dead:"; Dead
PRINT
PRINT "Maximum Skill Points:"; Smax
PRINT

GOSUB Roll1D
Prof = Roll
IF (Prof = 1) THEN Prof$ = "Navy"
IF (Prof = 2) THEN Prof$ = "Army"
IF (Prof = 3) THEN Prof$ = "Marines"
IF (Prof = 4) THEN Prof$ = "Scout"
IF (Prof = 5) THEN Prof$ = "Merchant"
IF (Prof = 6) THEN Prof$ = "Other"

PRINT "Drafted as "; Prof$

END

Roll1D:
Roll = 1 + INT(6 * RND)
RETURN

Roll2D:
Roll = 2 + INT(6 * RND) + INT(6 * RND)
IF (Roll < 10) THEN Roll$ = CHR$(Roll + 48)
IF (Roll > 9) THEN Roll$ = CHR$(Roll + 55)
RETURN

Roll3D2H:
Die1 = 1 + INT(6 * RND)
Die2 = 1 + INT(6 * RND)
Die3 = 1 + INT(6 * RND)

PRINT Die1; Die2; Die3,

IF (Die1 <= Die2) AND (Die1 <= Die3) THEN Die1 = 0
IF (Die2 <= Die1) AND (Die2 <= Die3) THEN Die2 = 0
IF (Die3 <= Die1) AND (Die3 <= Die2) THEN Die3 = 0

PRINT Die1; Die2; Die3
PRINT

Roll = (Die1 + Die2 + Die3)
IF (Roll < 10) THEN Roll$ = CHR$(Roll + 48)
IF (Roll > 9) THEN Roll$ = CHR$(Roll + 55)
RETURN



Fnord
Veteran
Veteran

Joined: 6 May 2008
Gender: Male
Posts: 60,939
Location:      

02 Jul 2023, 3:00 am

Oops!

:oops:

Forgot to type, "Same Question"!



IsabellaLinton
Veteran
Veteran

User avatar

Joined: 1 Nov 2017
Gender: Female
Posts: 72,422
Location: Chez Quis

02 Jul 2023, 12:06 pm

I think I have. In school in 1983 I took a class called "Computers" when they were just starting to be used. We had to mark flowchart commands onto paper cards and feed them into a massive computer to make it do commands. On the cards we filled in boxes using pencil. The results came out of the computer printer on that old-school paper that was corrugated and attached together in a long pile.

In Uni I did advanced Calculus and Philosophy of Mathematics using Cartesian Tree algorithms to instruct computers.

It's not exactly "code" like you're describing, but it did work.


same q


_________________
I never give you my number, I only give you my situation.
Beatles


DuckHairback
Veteran
Veteran

User avatar

Joined: 27 Jan 2021
Age: 45
Gender: Male
Posts: 4,705
Location: Durotriges Territory

02 Jul 2023, 3:08 pm

In code, as in everything else, I am messy. I like to use obscure words and portmanteaus as variable names to amuse myself. I doubt anything I've ever coded would be called 'clean'. I don't code much though.

Have you ever slept on a train? Where were you going?


_________________
The world is a big place where things happen almost every day.


IsabellaLinton
Veteran
Veteran

User avatar

Joined: 1 Nov 2017
Gender: Female
Posts: 72,422
Location: Chez Quis

02 Jul 2023, 3:15 pm

I've fallen asleep on trains going to and from Uni, but I haven't had a sleeper cot.


Have you ever been locked out of your own home?


_________________
I never give you my number, I only give you my situation.
Beatles


Fnord
Veteran
Veteran

Joined: 6 May 2008
Gender: Male
Posts: 60,939
Location:      

03 Jul 2023, 3:02 am

Yes, I have been locked out of my home; but learned some skills to get back in, including that one time after my ex kicked me out and changed the locks.

(I had to retrieve a package of 20 liberty-head silver dollars I had stashed under the furnace.)


Have you ever picked a lock?



DuckHairback
Veteran
Veteran

User avatar

Joined: 27 Jan 2021
Age: 45
Gender: Male
Posts: 4,705
Location: Durotriges Territory

03 Jul 2023, 3:21 am

Yes. My partner bought me a set of lock picking tools which included a transparent padlock and barrel style door lock and I learned to pick them. I had to put it to use this year when I wanted access to a garage in my garden that had always been locked.

Have you ever caught a fish?


_________________
The world is a big place where things happen almost every day.


IsabellaLinton
Veteran
Veteran

User avatar

Joined: 1 Nov 2017
Gender: Female
Posts: 72,422
Location: Chez Quis

03 Jul 2023, 8:01 am

Many times: bass, pickerel, catfish, pike, musky,trout.

Have you ever had cancer?


_________________
I never give you my number, I only give you my situation.
Beatles


Winters Gate
Veteran
Veteran

Joined: 20 Apr 2023
Gender: Female
Posts: 713
Location: Scenic over there

03 Jul 2023, 9:12 am

i have not. though many people ive known have had it. so its something thats been part of my life anyway.

have you ever written a story?



IsabellaLinton
Veteran
Veteran

User avatar

Joined: 1 Nov 2017
Gender: Female
Posts: 72,422
Location: Chez Quis

03 Jul 2023, 9:13 am

Several.
I just finished writing a book last year.


Have you ever done macrame?


_________________
I never give you my number, I only give you my situation.
Beatles


jennyishere
Veteran
Veteran

User avatar

Joined: 9 Jan 2009
Age: 63
Gender: Female
Posts: 9,717
Location: Australia

04 Jul 2023, 3:10 am

Yes, I did quite a lot of it when I was a young teenager. It was a very popular craft in the 1970s. I mainly used to make pot plants hangers as gifts. They looked rather like this:

Image


Do you enjoy baking bread?



TenMinutes
Veteran
Veteran

User avatar

Joined: 7 Feb 2021
Gender: Female
Posts: 2,002

04 Jul 2023, 9:27 am

I enjoy baking sweet breads, which are probably easier that yeasty breads. I make up ingredients and experiment.

Same Q