JochenAdministrator
(KiX Supporter)
2017-11-19 06:01 PM
Kixgolf - 99 Bottles Of Beer - Private Round

=================================
The Challenge - 99 Bottles of Beer
=================================


Almost everyone knows the all-time evergreen song for long hikes "99 Bottles Of Beer On The Wall".
This challenge is all about generating readable lyrics for different amounts of bottles.
As we are civilised people we don't want to just print out Numbers but instead use the cardinal numbers as written in english (Hope I get those right \:\) )

Examples (Common grammar rules as upper case words at start of sentences and singular/plural apply)
One two three four five
Eleven twelve thirteen fourteen fifteen
Twenty-one twenty-two twenty-three and so on

As this little song of course has to continue when we run out of beer someone needs to go and get some more.
More about this event in section Inputs and Outputs

So crack open a cold one and get to work. I promise you will soon forget the meaning of the word bottle for a while

*-->A download is available at http://www.kixtart.org/forums/ubbthreads.php?ubb=download&Number=371

================
Inputs and Outputs
================


Input
String of amount of bottles of beer

Example Input
89

Output
String of the correct line of song lyrics

Example Output
Eighty-nine bottles of beer on the wall, eighty-nine bottles of beer. Take one down and pass it around, eighty-eight bottles of beer on the wall.

Special input case 1
Output
One bottle of beer on the wall, one bottle of beer. Take one down and pass it around, no more bottles of beer on the wall.

Special input case 0
Output
No more bottles of beer on the wall, no more bottles of beer. Go to the store and buy some more, ninety-nine bottles of beer on the wall.

================================================================
Notes
================================================================

- The scoring engine has added code to help diagnose which cases are failing. To see test case results:
 Code:
   kix32 kixgolf_drc $verbose=1 ;shows failing results
   kix32 kixgolf_drc $verbose=2 ;shows all results

- The scoring engine expects your (primary) function to be named a().


=======
Scoring
=======


The solution must pass all tests in order for it's KiXgolf Score to be considered.

When posting KiXtart Golf Scores, please include the KIXGOLF_*.TXT file that is created in the script directory. It contains some basic information about the computer that the script is run on and the resulting scores.

============
Test program
============


Test cases are provided to help screen entries and to provide the Golf Score.
Any script that passes the test cases can be submitted. If you are surprised that your solution passed the test cases, please submit it anyway! That will help me identify bugs in the test program.

================================================================
KiXtart GOLF - How To Play
================================================================


Most importantly, anybody can play, no age restrictions, no penalties, no handicap!

The object in "real" golf is to hit the ball in the hole in the fewest strokes. The object in KiXtart Golf is to get from input (tee) to target (hole) in the fewest keystrokes.

Example: How many positive elements are in array $a?

Array $a could be of structure $a=[1, 2 ,-3, 4, -5, -7, 8, 9]

One approach:
 Code:
for $b=0 to ubound($a)
  if $a[$b]>0
    $c=$c+1
  endif
next

for a score of 45.

Another solution is:
 Code:
DO
  $b=$b+1
  if $a[$b]>0
    $c=$c+1
  endif
UNTIL $b>(UBOUND($a)+1)

for a score of 53.

Better approach: Code sample 1

================================================================
KiXtart GOLF - The Rules
================================================================


1) The goal of KiXtart Golf is to score the lowest strokes.
2) Strokes are all characters in a piece of code except whitespace characters, unless the whitespace character is necessary for the line of code to work. Therefore, carriage returns and line feeds do not count or spaces in between the '=' sign when assigning variables, e.g. '$a = $b' scores 5.
3) Code can be constructed any way you like, as long as it does not generate syntax or other errors when running the script in KiXtart.
4) The final solution MUST pass all test scripts that are part of the KiXtart golf challenge.
7) During the private coding phase, no code is allowed to be posted. Violations result in disqualification of said player.
8) During the public coding phase, code should be posted, reused, and borrowed from other players.
9) The test script contains the official KiXgolf scoring engine
10) Only the person posting a particular score will be recognized for the score, unless the KiXtart Golf Challenge organizer or another delegate posts code on behalf of a player
11) KiXtart Golf (a.k.a KiXgolf) codes must be written inside the KiXgolf UDF collection tags, ';!' and ';!;!'
12) Parameter names of the UDF's can be changed and additional optional parameters can be added.
13) Additional helper UDFs and code can be written as long as they reside inside the ';!' and ';!;!' tags.
14) The use of '$' as a variable is allowed.
15) The UDF layout is up to coder.
16) The UDF is expected to finish in a reasonable time, that is, on modern computers inside 1 hour timeframe.
17) You can submit scores as often as you want.
18) If you reach leading score, you are obligated to post your score immediately so others can try to compete with you.
19) The UDF may only use the KiXtart/KiXforms commands/functions/macros, no other code fragments are allowed.
20) Calls to COM components that are part of a standard default Windows installation are allowed.
21) The use of the KiXforms DLL is also permitted as the KiXforms DLL can now be considered an integral part of KiXtart scripting.
22) Calls to other executables, as long as they are part of a standard default Windows installation are allowed.
23) The UDF should be self-contained (except for any I/O mentioned in the challenge). In particular, you may not do things like fetching extra data from a remote site or file.
24) You may assume ASCII as character set.
25) You may use block comments as the KiXgolf Scoring Engine now supports block comments.
26) You are allowed to only use publicly available versions of KiXtart and KiXforms, private builds or alpha builds are NOT allowed.
27) Your submitted score must include the result print of the KiXgolf test-engine.
28) The SETOPTION() parameters in the KiXgolf script may not be modified and will govern the script behavior. SETOPTION() parameters may change depending on the particular needs of the KiXgolf challenge.
29) Tokenizing the UDF, script, or portions thereof is not allowed.
30) If something is not explicitly denied by the rules, it's allowed.
31) If Confusion arises, arranger of the KiXgolf round has the final say.
32) Additional test cases can be added at any time during the KiXgolf round. The code is expected to pass based on the rules. The test cases may not include tests for all rules and exceptions. Test cases that are added during the public round will not alter the results of the private round.


================================================================
KiXtart GOLF - The Duration of the Competition
================================================================


1) Private coding phase: 2017-11-19 to 2017-11-26 (Official Count down clock will determine end time)

2) Public coding phase: 2017-11-26 to 2017-12-03

3) Final results: 2017-12-03


JochenAdministrator
(KiX Supporter)
2017-11-19 06:03 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

*ended

JochenAdministrator
(KiX Supporter)
2017-11-19 06:28 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

*bump*

AllenAdministrator
(KiX Supporter)
2017-11-20 04:28 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Nothing here to see but a working code... Given time I might be able to do much better.

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/19 22:22:43.306
Processing End   = 2017/11/19 22:22:43.368
Duration         = 0000/00/00 00:00:00.062
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 1640


JochenAdministrator
(KiX Supporter)
2017-11-20 09:02 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Hey, early tee off.
Well, it's something

I expect you to shave more than half of them strokes though!


ShaneEP
(MM club member)
2017-11-20 11:10 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Probably still some golfing to do. But happy with the start.
 Code:

KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 7 Enterprise Edition
CPU              = Intel Pentium III Xeon
Speed            = 2594 MHz
Memory           = 8192 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/20 16:08:00.332
Processing End   = 2017/11/20 16:08:00.348
Duration         = 0000/00/00 00:00:00.015
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 781

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2017-11-21 10:20 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Near my score (didn't golf too much) so there's plenty room for improvement.
Your turn Allen \:\)


ShaneEP
(MM club member)
2017-11-21 04:39 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Getting warmer...
 Code:

KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 7 Enterprise Edition
CPU              = Intel Pentium III Xeon
Speed            = 2594 MHz
Memory           = 8192 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/21 09:38:49.716
Processing End   = 2017/11/21 09:38:49.736
Duration         = 0000/00/00 00:00:00.019
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 757

Thank you for participating in KiXtart Golf!


ShaneEP
(MM club member)
2017-11-21 04:41 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Doh. Missed a simple one...
 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 7 Enterprise Edition
CPU              = Intel Pentium III Xeon
Speed            = 2594 MHz
Memory           = 8192 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/21 09:40:31.260
Processing End   = 2017/11/21 09:40:31.270
Duration         = 0000/00/00 00:00:00.009
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 749

Thank you for participating in KiXtart Golf!


ShaneEP
(MM club member)
2017-11-21 04:49 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 7 Enterprise Edition
CPU              = Intel Pentium III Xeon
Speed            = 2594 MHz
Memory           = 8192 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/21 09:49:14.513
Processing End   = 2017/11/21 09:49:14.523
Duration         = 0000/00/00 00:00:00.010
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 731

Thank you for participating in KiXtart Golf!


ShaneEP
(MM club member)
2017-11-21 07:58 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

I think I'm about at my limits...Seems like there should be more though. Just can't see it right now.

 Code:
KiXtart Version  = 4.67
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 7 Enterprise Edition
CPU              = Intel Pentium III Xeon
Speed            = 2594 MHz
Memory           = 8192 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/21 12:58:24.778
Processing End   = 2017/11/21 12:58:24.795
Duration         = 0000/00/00 00:00:00.016
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 728

Thank you for participating in KiXtart Golf!


ShaneEP
(MM club member)
2017-11-21 09:29 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Found some more...Good thing work is slow around the holiday.

 Code:
KiXtart Version  = 4.67
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 7 Enterprise Edition
CPU              = Intel Pentium III Xeon
Speed            = 2594 MHz
Memory           = 8192 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/21 14:28:37.129
Processing End   = 2017/11/21 14:28:37.148
Duration         = 0000/00/00 00:00:00.019
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 663

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2017-11-21 09:46 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Comeon man... show me up by a 1000

ShaneEP
(MM club member)
2017-11-21 10:01 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

I know you have the skill Allen. You just need to take some time to apply yourself. The lady will forgive you eventually. lol

ShaneEP
(MM club member)
2017-11-22 05:50 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Getting pretty tough now...But I know someone (Allen) will see something really obvious once public round starts.
 Code:
KiXtart Version  = 4.67
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 7 Enterprise Edition
CPU              = Intel Pentium III Xeon
Speed            = 2594 MHz
Memory           = 8192 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/22 10:48:58.220
Processing End   = 2017/11/22 10:48:58.242
Duration         = 0000/00/00 00:00:00.021
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 660

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2017-11-22 06:00 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Well well well.

50 strokes below my testing code (done in between two other tasks @work) seems to be good to play on with 4 days left.
Not that there is much competition here \:\(

Allen?


AllenAdministrator
(KiX Supporter)
2017-11-22 07:22 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

If there will be any further developments from me it will be tomorrow, Thanksgiving day.

AllenAdministrator
(KiX Supporter)
2017-11-23 08:42 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

All I have time for right now.

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/23 14:40:46.912
Processing End   = 2017/11/23 14:40:46.953
Duration         = 0000/00/00 00:00:00.041
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 818


AllenAdministrator
(KiX Supporter)
2017-11-23 09:16 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Oh gawd... Now I'm golfin and my honey is

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/23 15:11:12.247
Processing End   = 2017/11/23 15:11:12.302
Duration         = 0000/00/00 00:00:00.055
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 702


AllenAdministrator
(KiX Supporter)
2017-11-23 09:18 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Missed an easy one...

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/23 15:17:20.208
Processing End   = 2017/11/23 15:17:20.258
Duration         = 0000/00/00 00:00:00.050
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 700


AllenAdministrator
(KiX Supporter)
2017-11-23 09:21 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/23 15:19:42.657
Processing End   = 2017/11/23 15:19:42.702
Duration         = 0000/00/00 00:00:00.044
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 690


AllenAdministrator
(KiX Supporter)
2017-11-23 09:50 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Done for now.... seriously

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/23 15:48:54.145
Processing End   = 2017/11/23 15:48:54.192
Duration         = 0000/00/00 00:00:00.047
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 616


JochenAdministrator
(KiX Supporter)
2017-11-23 10:32 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

that‘s more than a 1000 stroke improvement.
Impressive!


AllenAdministrator
(KiX Supporter)
2017-11-23 10:34 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Really its only 200. That first code was just taking what was available on the korg and making something work.

AllenAdministrator
(KiX Supporter)
2017-11-24 01:47 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

OMG that song is stuck in my damn head. I might need 99 beers to get it out.

AllenAdministrator
(KiX Supporter)
2017-11-24 01:53 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

BTW Shane, I ran into the iif evaluating problem too. \:\)

JochenAdministrator
(KiX Supporter)
2017-11-24 09:09 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Originally Posted By: Allen
OMG that song is stuck in my damn head. I might need 99 beers to get it out.


hehe. Promised you bottles in the bottles description bottles bottles bottles

BEER!



JochenAdministrator
(KiX Supporter)
2017-11-24 09:13 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

New page in thread asks for scoretable.. so here goes:

 Code:
Allen    616
Shane    660


both below my 713 testing code which I wrote in about 45 minutes.

So, all others who may read this: Join the competition, this time it's really 'easy'


Glenn BarnasAdministrator
(KiX Supporter)
2017-11-24 04:53 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = AMD FX(tm)-8350 Eight-Core Processor
Speed            = 3991 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 10:47:39.316
Processing End   = 2017/11/24 10:47:39.326
Duration         = 0000/00/00 00:00:00.010
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 787

Thank you for participating in KiXtart Golf!
for my first round.

Seeing some odd behavior, though. When I write my UDF in an external script, it runs flawlessly. I copy the UDF and paste it into the golf wrapper, it fails unless I convert the $ var to an int, and when I pass it to a sub-func, I need to convert it again. It's only a dozen strokes, but I can't explain why.

Now to start optimizing...

Glenn


Glenn BarnasAdministrator
(KiX Supporter)
2017-11-24 06:10 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = AMD FX(tm)-8350 Eight-Core Processor
Speed            = 3991 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 12:09:19.303
Processing End   = 2017/11/24 12:09:19.312
Duration         = 0000/00/00 00:00:00.008
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 608

Thank you for participating in KiXtart Golf!
Done for now..


AllenAdministrator
(KiX Supporter)
2017-11-24 06:39 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 12:39:06.658
Processing End   = 2017/11/24 12:39:06.671
Duration         = 0000/00/00 00:00:00.012
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 605


AllenAdministrator
(KiX Supporter)
2017-11-24 06:43 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Ah! Welcome Glenn! Don't mind me, I'm on my n-1 beer right now.

AllenAdministrator
(KiX Supporter)
2017-11-24 07:25 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

In your external script the var is a number, but when the number comes in from the ini it is a string. The engine has been like this for ages.

JochenAdministrator
(KiX Supporter)
2017-11-24 07:28 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round


 Code:
Glenn    606
Allen    616
Shane    660


Cheers \:\)


Glenn BarnasAdministrator
(KiX Supporter)
2017-11-24 07:31 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = AMD FX(tm)-8350 Eight-Core Processor
Speed            = 3991 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 13:17:25.142
Processing End   = 2017/11/24 13:17:25.152
Duration         = 0000/00/00 00:00:00.010
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 602

Thank you for participating in KiXtart Golf!

Sorry I missed the other tourneys, but just too much going on at work.


AllenAdministrator
(KiX Supporter)
2017-11-24 07:31 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Missed one J. \:\)

Edit... missed 2


AllenAdministrator
(KiX Supporter)
2017-11-24 07:34 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Ha... well that scoreboard didnt last long.

JochenAdministrator
(KiX Supporter)
2017-11-24 07:45 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Now we‘re playing golf 🏌️
Feels good to revive the traditions.

Don‘t know if I manage to get the next one ready before next weeks weekend, but it‘s alteady layed out in my mind


AllenAdministrator
(KiX Supporter)
2017-11-24 08:35 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 14:35:10.362
Processing End   = 2017/11/24 14:35:10.378
Duration         = 0000/00/00 00:00:00.015
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 598


Glenn BarnasAdministrator
(KiX Supporter)
2017-11-24 10:44 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = AMD FX(tm)-8350 Eight-Core Processor
Speed            = 3991 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 16:43:20.202
Processing End   = 2017/11/24 16:43:20.210
Duration         = 0000/00/00 00:00:00.008
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 598

Thank you for participating in KiXtart Golf!
Damn, shouldn't have taken a nap!


AllenAdministrator
(KiX Supporter)
2017-11-24 11:00 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 16:59:28.275
Processing End   = 2017/11/24 16:59:28.290
Duration         = 0000/00/00 00:00:00.014
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 595


AllenAdministrator
(KiX Supporter)
2017-11-25 01:22 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/24 19:21:38.425
Processing End   = 2017/11/24 19:21:38.425
Duration         = 0000/00/00 00:00:00.000
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 590


ShaneEP
(MM club member)
2017-11-25 07:01 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Damn! Now im curious to see your codes. I thought 660 was pushing it. Knew you had it in you Allen!

AllenAdministrator
(KiX Supporter)
2017-11-25 07:41 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Well the good news is, you still have a day or so to get rid of some more, since you know there is more to get. \:\)

Glenn BarnasAdministrator
(KiX Supporter)
2017-11-25 02:00 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = AMD FX(tm)-8350 Eight-Core Processor
Speed            = 3991 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/25 07:59:00.781
Processing End   = 2017/11/25 07:59:00.791
Duration         = 0000/00/00 00:00:00.010
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 580

Thank you for participating in KiXtart Golf!
Amazing what a holiday concert and a good night's sleep can do! \:D


Glenn BarnasAdministrator
(KiX Supporter)
2017-11-25 04:23 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = AMD FX(tm)-8350 Eight-Core Processor
Speed            = 3991 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/25 10:22:24.726
Processing End   = 2017/11/25 10:22:24.726
Duration         = 0000/00/00 00:00:00.000
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 572

Thank you for participating in KiXtart Golf!
Gotta work off breakfast! \:D


AllenAdministrator
(KiX Supporter)
2017-11-25 04:30 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/25 10:29:23.295
Processing End   = 2017/11/25 10:29:23.310
Duration         = 0000/00/00 00:00:00.014
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 587


Glenn BarnasAdministrator
(KiX Supporter)
2017-11-25 05:09 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 571
Getting harder to find things to trim now. Have to go write some "real" code for a while.


AllenAdministrator
(KiX Supporter)
2017-11-25 05:29 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/25 11:28:29.229
Processing End   = 2017/11/25 11:28:29.229
Duration         = 0000/00/00 00:00:00.000
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 576


AllenAdministrator
(KiX Supporter)
2017-11-26 05:06 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/25 23:05:30.729
Processing End   = 2017/11/25 23:05:30.745
Duration         = 0000/00/00 00:00:00.015
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 563


AllenAdministrator
(KiX Supporter)
2017-11-26 06:21 AM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

Just did a bunch of work to gain 10 strokes. Grumble grumble grumble.

JochenAdministrator
(KiX Supporter)
2017-11-26 12:39 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round


 Code:
Allen    563
Glenn    571
Shane    660   *crickets


Good job everybody. Looking forward seeing those codes


Glenn BarnasAdministrator
(KiX Supporter)
2017-11-26 03:26 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.kix
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = AMD FX(tm)-8350 Eight-Core Processor
Speed            = 3991 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/26 09:05:54.291
Processing End   = 2017/11/26 09:05:54.300
Duration         = 0000/00/00 00:00:00.008
# Tests Run      = 21
# Tests Passed   = 21
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 568

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2017-11-26 05:00 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

This is my last score. We have guests coming over and then a quick chore. I'll post my code later this afternoon.

 Code:
KiXtart Version  = 4.66
KiXGolf Script   = kixgolf_bob.KIX
Scoring Engine   = 3.3
OS               = Windows 10 Pro
CPU              = Intel Pentium III Xeon
Speed            = 3392 MHz
Memory           = 16384 MB

Tournament       = 99 Bottles of Beer
Processing Start = 2017/11/26 10:57:52.583
Processing End   = 2017/11/26 10:57:52.645
Duration         = 0000/00/00 00:00:00.061
# Tests Run      = 22
# Tests Passed   = 22
# Tests Failed   = 0
Result           = Passed
KiXGolf Score    = 559


JochenAdministrator
(KiX Supporter)
2017-11-26 06:01 PM
Re: Kixgolf - 99 Bottles Of Beer - Private Round

 Code:
Allen    559
Glenn    568
Shane    660


Good job, please post your codes here: http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=212979#Post212979