Sealeopard
(KiX Master)
2007-11-10 02:43 AM
KiXgolf - Printer Queue

=============
The Challenge: Printer Queue
=============


The only printer in the computer science students' union is experiencing an extremely heavy workload. Sometimes there are a hundred jobs in the printer queue and you may have to wait for hours to get a single page of output.

Because some jobs are more important than others, the Hacker General has invented and implemented a simple priority system for the print job queue. Now, each job is assigned a priority between 1 and 9 (with 9 being the highest priority, and 1 being the lowest), and the printer operates as follows.
  • The first job J in queue is taken from the queue.
  • If there is some job in the queue with a higher priority than job J, then move J to the end of the queue without printing it.
  • Otherwise, print job J (and do not put it back in the queue).

In this way, all those important muffin recipes that the Hacker General is printing get printed very quickly. Of course, those annoying term papers that others are printing may have to wait for quite some time to get printed, but that's life.

Your problem with the new policy is that it has become quite tricky to determine when your print job will actually be completed. You decide to write a program to figure this out. The program will be given the current queue (as a list of priorities) as well as the position of your job in the queue, and must then calculate how long it will take until your job is printed, assuming that no additional jobs will be added to the queue. To simplify matters, we assume that printing a job always takes exactly one minute, and that adding and removing jobs from the queue is instantaneous.

This, if the queue look like "1 2 3 4" and your job is in postion 2, then it'll take 2 minutes until your job is printed.

In case of the queue being "1 1 9 1 1 1" and your job in position 0 (the first slot), it'll then take 5 minutes as your job and the job after you move all the way back in the queue in order to make room for the higher-priority job in slot 2.

A download is available at http://s91376351.onlinehome.us/kixtart/kixgolf_pq.zip

=============
Inputs & Outputs
=============


Input: One string with n space-separated integers (1<= n <= 100) in the range 1 to 9, giving the priorities of the jobs in the queue. The first integer gives the priority of the first job, the second integer the priority of the second job, and so on. One integer (0<= m <= n-1) denoting the position of your job in the queue.

Output: A single integer; the number of minutes until your job is completely printed, assuming that no additional print jobs will arrive.

=======
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 ';!;!' and must be eclosed by the FUNCTION commands
12) Parameter names of the UDF's can be changed and additional optional parameters can be added.
13) Additional helper UDFs 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 during the private round by submitting a proposal for a new test case to the BBS. The proposed test case becomes official once it has been added to the existing test cases and the KiXgolf package has been reposted for download. If new test cases are added within 12 hours of private round end the private round will extend by an additional 24 hours. The public round will then start one day later and also end one day later. Not additional test cases will be added during the public round.


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


1) Private coding phase: From date/time of posting the tournament challenge to November 14, 6pm EST (BBS+6 time)

2) Public coding phase: From November 14, 6pm EST (BBS+6 time) to November 18, 6pm EST (BBS+6 time)

3) Final results: November 19, 11pm EST (BBS+6 time)

You will need the complete package from http://s91376351.onlinehome.us/kixtart/kixgolf_pq.zip.


Sealeopard
(KiX Master)
2007-11-10 04:34 AM
Re: KiXgolf - Printer Queue

Please see the following relevant bug report: 4.60 bug: Function

AllenAdministrator
(KiX Supporter)
2007-11-10 05:08 AM
Re: KiXgolf - Printer Queue

I believe there is a bug in the scoring engine...

this
if $iOutput=$iResult and vartype($iOutput)=3
should be
if $iOutput=$sResult and vartype($sResult)=3


ShawnAdministrator
(KiX Supporter)
2007-11-10 05:43 AM
Re: KiXgolf - Printer Queue

k well, based on the fixed engine, looks like im first on the leader board:

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Release Candidate 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/09 23:34:53.738
Processing End = 2007/11/09 23:34:59.987
Duration = 0
KiXGolf Score = 275

Thank you for participating in KiXtart Golf!


ShawnAdministrator
(KiX Supporter)
2007-11-10 06:00 AM
Re: KiXgolf - Printer Queue

KiXGolf Score = 231

AllenAdministrator
(KiX Supporter)
2007-11-10 08:26 AM
Re: KiXgolf - Printer Queue

GAH! So Close! Gotta go to bed... try to play tomorrow evening.

 Quote:

Your solution failed 4 of 100 tests.


AllenAdministrator
(KiX Supporter)
2007-11-10 08:31 AM
Re: KiXgolf - Printer Queue

Last minute brain fart... \:\) Now I can sleep peacefully. I will clean up this ugly beast tomorrow.


Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 02:28:14.993
Processing End = 2007/11/10 02:28:16.452
Duration = 0000/00/00 00:00:01.458
KiXGolf Score = 503

Thank you for participating in KiXtart Golf!


Sealeopard
(KiX Master)
2007-11-10 02:00 PM
Re: KiXgolf - Printer Queue

I've posted an updated scoring script to correct the typos in the results validation line. I've also changed the two variable names in the KiXgolf UDF due to the potential bug of having a parameter with the same name as the function name. You're free to adjust the parameter variable names to your liking.

And congrats to Shawn for posting the first score, darn good opening shot \:\)


AllenAdministrator
(KiX Supporter)
2007-11-10 04:21 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 10:19:13.592
Processing End = 2007/11/10 10:19:14.559
Duration = 0000/00/00 00:00:00.967
KiXGolf Score = 409

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-11-10 04:42 PM
Re: KiXgolf - Printer Queue

There is no printer \:D

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 16:38:50.531
Processing End = 2007/11/10 16:38:56.197
Duration = 0000/00/00 00:00:05.665
KiXGolf Score = 218

Thank you for participating in KiXtart Golf!


Nice to see you back on the green, Shawn!


DrillSergeant
(MM club member)
2007-11-10 04:49 PM
Re: KiXgolf - Printer Queue

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 16:48:13.059
Processing End = 2007/11/10 16:48:18.584
Duration = 0000/00/00 00:00:05.525
KiXGolf Score = 191

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-10 04:50 PM
Re: KiXgolf - Printer Queue

Show off!

ShawnAdministrator
(KiX Supporter)
2007-11-10 05:00 PM
Re: KiXgolf - Printer Queue

KiXGolf Score = 191

DrillSergeant
(MM club member)
2007-11-10 05:04 PM
Re: KiXgolf - Printer Queue

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 17:02:17.964
Processing End = 2007/11/10 17:02:23.457
Duration = 0000/00/00 00:00:05.493
KiXGolf Score = 179

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-11-10 05:20 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 17:17:59.338
Processing End = 2007/11/10 17:18:04.413
Duration = 0000/00/00 00:00:05.074
KiXGolf Score = 166


DrillSergeant
(MM club member)
2007-11-10 06:27 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 18:26:19.711
Processing End = 2007/11/10 18:26:25.810
Duration = 0000/00/00 00:00:06.099
KiXGolf Score = 161


Benny69
(MM club member)
2007-11-10 07:52 PM
Re: KiXgolf - Printer Queue

A page out of Rogers handbook:

There is no printer,...

Your solution failed 100 of 100 tests.

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 12:49:19.929
Processing End = 2007/11/10 12:49:20.197
Duration = 0000/00/00 00:00:00.268
KiXGolf Score = 27

Thank you for participating in KiXtart Golf!
Press any key to continue...

Ha! Made you look


Mart
(KiX Supporter)
2007-11-10 10:29 PM
Re: KiXgolf - Printer Queue

Damn Sarg! Your code must be on steroids or something.
Looks like you are leading the pack with a 130 on Shawn and almost 250 on Allen. Benny doesn't even count. Anyone can make a 27 script failing all tests ;\)


Gargoyle
(MM club member)
2007-11-10 10:37 PM
Re: KiXgolf - Printer Queue

My opening score

I know it is not there yet, but just wanted to get a post in for participation points \:\)

Your solution failed 56 of 100 tests.

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 14:33:41.578
Processing End = 2007/11/10 14:33:42.250
Duration = 0000/00/00 00:00:00.671
KiXGolf Score = 135

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-11-10 10:37 PM
Re: KiXgolf - Printer Queue

I'm only a measly 30 ahead of shawn, Mart. He posted a 191 right after mine \:\)

besides, I'm sure that Jooel will come around soon and leave us all in his dust again


AllenAdministrator
(KiX Supporter)
2007-11-11 02:36 AM
Re: KiXgolf - Printer Queue

alrighty... done with football game.... now to shave a few hundred strokes... no problem.

AllenAdministrator
(KiX Supporter)
2007-11-11 02:59 AM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 20:57:06.836
Processing End = 2007/11/10 20:57:07.760
Duration = 0000/00/00 00:00:00.923
KiXGolf Score = 395

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-11 03:04 AM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 21:03:43.211
Processing End = 2007/11/10 21:03:44.116
Duration = 0000/00/00 00:00:00.904
KiXGolf Score = 376

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-11 03:21 AM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 21:12:47.485
Processing End = 2007/11/10 21:12:48.374
Duration = 0000/00/00 00:00:00.888
KiXGolf Score = 321

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-11 03:37 AM
Re: KiXgolf - Printer Queue

well there's a hundred... wonder if the next hundred will go as quickly.

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 21:36:20.261
Processing End = 2007/11/10 21:36:20.636
Duration = 0000/00/00 00:00:00.375
KiXGolf Score = 296

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-11 03:59 AM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 21:57:53.023
Processing End = 2007/11/10 21:57:53.397
Duration = 0000/00/00 00:00:00.373
KiXGolf Score = 283

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-11 04:17 AM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 22:15:54.831
Processing End = 2007/11/10 22:15:55.174
Duration = 0000/00/00 00:00:00.342
KiXGolf Score = 210

Thank you for participating in KiXtart Golf!


Sealeopard
(KiX Master)
2007-11-11 04:29 AM
Re: KiXgolf - Printer Queue

Jeez, what happened in that last improvement? Did you realize that there's no printer? \:\)

AllenAdministrator
(KiX Supporter)
2007-11-11 05:54 AM
Re: KiXgolf - Printer Queue

Shawn... knocking on your door...

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/10 23:53:30.728
Processing End = 2007/11/10 23:53:31.115
Duration = 0000/00/00 00:00:00.387
KiXGolf Score = 192

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-11-11 09:23 AM
Re: KiXgolf - Printer Queue

Nice catch-up, Allen!

JochenAdministrator
(KiX Supporter)
2007-11-11 10:50 AM
Re: KiXgolf - Printer Queue

Good morning ...

Y'are up and running eh? K, downloaded the package and start to have a look ... whoa below 200 ? My god \:o


JochenAdministrator
(KiX Supporter)
2007-11-11 11:03 AM
Re: KiXgolf - Printer Queue

K, this seems fairly simple ... when is the deadline ?

We celebrated the 9th birthday of Jan (my only son) yesterday, and today we might just have a family afernoon; cold outside, so we may just start to build that Revell kit of a Boeing 747 scale 1:380 \:\)


DrillSergeant
(MM club member)
2007-11-11 11:12 AM
Re: KiXgolf - Printer Queue

Welcome to the green, Jochen!

Deadline is wednesday midnight (for us Europeans) unless someone pulls a new test-case out of their hat. ;\)


ShawnAdministrator
(KiX Supporter)
2007-11-11 06:26 PM
Re: KiXgolf - Printer Queue

Still some ways to go but ...

KiXGolf Score = 182


AllenAdministrator
(KiX Supporter)
2007-11-11 07:25 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/11 13:23:42.340
Processing End = 2007/11/11 13:23:43.105
Duration = 0000/00/00 00:00:00.765
KiXGolf Score = 184

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-11-11 07:54 PM
Re: KiXgolf - Printer Queue

first promising code


Your solution failed 81 of 100 tests.

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 19:48:20.562
Processing End   = 2007/11/11 19:48:23.375
Duration         = 0000/00/00 00:00:02.812
KiXGolf Score    = 216

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-11 08:02 PM
Re: KiXgolf - Printer Queue

hmm, I can fail 81 of 100 tests even with a score of 211 ... groovy

JochenAdministrator
(KiX Supporter)
2007-11-11 08:19 PM
Re: KiXgolf - Printer Queue

And we have a tee off !!!


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 20:17:06.621
Processing End   = 2007/11/11 20:17:09.793
Duration         = 0000/00/00 00:00:03.172
KiXGolf Score    = 210

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-11 08:29 PM
Re: KiXgolf - Printer Queue


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 20:28:37.246
Processing End   = 2007/11/11 20:28:40.371
Duration         = 0000/00/00 00:00:03.125
KiXGolf Score    = 208

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-11 08:50 PM
Re: KiXgolf - Printer Queue



Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 20:49:01.949
Processing End   = 2007/11/11 20:49:05.059
Duration         = 0000/00/00 00:00:03.110
KiXGolf Score    = 206

Thank you for participating in KiXtart Golf!



Gargoyle
(MM club member)
2007-11-11 09:10 PM
Re: KiXgolf - Printer Queue

Best I can get is failed 56 of 100, I don't have any hair left to pull out and need to walk away for awhile and see if my mush of a brain can figure out how to track my position in the que.. UGH

DrillSergeant
(MM club member)
2007-11-11 09:14 PM
Re: KiXgolf - Printer Queue

Current standings:

Sarge 161
Shawn 182
Allen 184
Jochen 206


Gargoyle has posted a non-working score 135, and Benny has posted a non-working score of 27.


JochenAdministrator
(KiX Supporter)
2007-11-11 09:18 PM
Re: KiXgolf - Printer Queue


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 21:16:39.059
Processing End   = 2007/11/11 21:16:42.184
Duration         = 0000/00/00 00:00:03.125
KiXGolf Score    = 204

Thank you for participating in KiXtart Golf!



DrillSergeant
(MM club member)
2007-11-11 10:25 PM
Re: KiXgolf - Printer Queue



Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/11 22:20:18.210
Processing End = 2007/11/11 22:20:26.759
Duration = 0000/00/00 00:00:08.548
KiXGolf Score = 159

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-11-11 10:41 PM
Re: KiXgolf - Printer Queue



Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 22:38:46.434
Processing End   = 2007/11/11 22:38:49.621
Duration         = 0000/00/00 00:00:03.187
KiXGolf Score    = 199

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-11 10:48 PM
Re: KiXgolf - Printer Queue



Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 22:47:18.934
Processing End   = 2007/11/11 22:47:22.106
Duration         = 0000/00/00 00:00:03.172
KiXGolf Score    = 197

Thank you for participating in KiXtart Golf!




JochenAdministrator
(KiX Supporter)
2007-11-11 11:11 PM
Re: KiXgolf - Printer Queue


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 23:10:13.809
Processing End   = 2007/11/11 23:10:16.777
Duration         = 0000/00/00 00:00:02.968
KiXGolf Score    = 196

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-11 11:31 PM
Re: KiXgolf - Printer Queue

OMFG! GOTO!!!1!!


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 23:30:17.699
Processing End   = 2007/11/11 23:30:19.543
Duration         = 0000/00/00 00:00:01.844
KiXGolf Score    = 191

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-11 11:37 PM
Re: KiXgolf - Printer Queue

and...

Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/11 23:36:25.527
Processing End   = 2007/11/11 23:36:27.324
Duration         = 0000/00/00 00:00:01.796
KiXGolf Score    = 186

Thank you for participating in KiXtart Golf!



Benny69
(MM club member)
2007-11-11 11:46 PM
Re: KiXgolf - Printer Queue

Dang! You guys are killing me!

Benny69
(MM club member)
2007-11-12 01:07 AM
Re: KiXgolf - Printer Queue

ok, got to get on the course:

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/11 18:04:16.451
Processing End = 2007/11/11 18:04:17.297
Duration = 0000/00/00 00:00:00.845
KiXGolf Score = 225

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-11-12 01:55 AM
Re: KiXgolf - Printer Queue

Look Out Jochen! Fat Guy coming thru!

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/11 18:53:28.222
Processing End = 2007/11/11 18:53:29.049
Duration = 0000/00/00 00:00:00.827
KiXGolf Score = 206

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-11-12 02:08 AM
Re: KiXgolf - Printer Queue

I think Roger is right, there is no Printer, its a Theoretical Particle

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/11 19:06:01.395
Processing End = 2007/11/11 19:06:02.218
Duration = 0000/00/00 00:00:00.822
KiXGolf Score = 187

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-11-12 02:12 AM
Re: KiXgolf - Printer Queue

Dang! I am Red HOT!

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/11 19:10:22.161
Processing End = 2007/11/11 19:10:22.987
Duration = 0000/00/00 00:00:00.826
KiXGolf Score = 173

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-11-12 03:04 AM
Re: KiXgolf - Printer Queue

Like a Firecracker, I fissile at first and then, BANG! I’m Done.
That’s what my x said anyway.

Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/11 20:01:32.876
Processing End = 2007/11/11 20:01:33.672
Duration = 0000/00/00 00:00:00.796
KiXGolf Score = 166

Thank you for participating in KiXtart Golf!
Press any key to continue...


AllenAdministrator
(KiX Supporter)
2007-11-12 03:50 AM
Re: KiXgolf - Printer Queue

 Quote:

Like a Firecracker, I fissile at first and then, BANG! I’m Done.
That’s what my x said anyway.


I resemble that remark.


JochenAdministrator
(KiX Supporter)
2007-11-12 08:50 AM
Re: KiXgolf - Printer Queue

Wow Dale,

nice acceleration... 166 will be hard to beat \:o


DrillSergeant
(MM club member)
2007-11-12 09:05 AM
Re: KiXgolf - Printer Queue

Damn Dale, nice sprint! \:o

I'm getting worried... I can't imagine that my 7 point lead will be enough to keep you behind me. I'll see if I can come up with another shorter approach today.


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 10:53 AM
Re: KiXgolf - Printer Queue

hmm...
this is silly comment but anyway...

what is the $b and $c arguments in the udf?
I think I've stated this previously, but imo, they should be documented without forcing ppl to guess.


DrillSergeant
(MM club member)
2007-11-12 10:56 AM
Re: KiXgolf - Printer Queue

$b is the queue and $c is the position of 'your' document in the queue.

Nice to have you on-board and good luck, Jooel!


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 11:52 AM
Re: KiXgolf - Printer Queue

drill, I know, but I had to look into the test code in order to find out.
that's not right.

anyhow, here is my first entry.


Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 12:49:30.671
Processing End = 2007/11/12 12:49:33.828
Duration = 0000/00/00 00:00:03.156
KiXGolf Score = 233



LonkeroAdministrator
(KiX Master Guru)
2007-11-12 11:55 AM
Re: KiXgolf - Printer Queue

and here second.

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 12:54:36.234
Processing End = 2007/11/12 12:54:39.296
Duration = 0000/00/00 00:00:03.062
KiXGolf Score = 219


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 12:00 PM
Re: KiXgolf - Printer Queue

one more and now getting back to work.

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 12:59:38.640
Processing End = 2007/11/12 12:59:41.609
Duration = 0000/00/00 00:00:02.968
KiXGolf Score = 201


DrillSergeant
(MM club member)
2007-11-12 12:29 PM
Re: KiXgolf - Printer Queue

Current standings, I think it's going to be an exiting week \:\)


Sarge 159
Benny69 166
Shawn 182
Allen 184
Jochen 186
Jooel 201


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 01:55 PM
Re: KiXgolf - Printer Queue

hmm...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 14:54:45.158
Processing End = 2007/11/12 14:54:46.315
Duration = 0000/00/00 00:00:01.156
KiXGolf Score = 182


Benny69
(MM club member)
2007-11-12 01:55 PM
Re: KiXgolf - Printer Queue

Beep! Beep! coming thru!

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 06:55:19.830
Processing End = 2007/11/12 06:55:20.236
Duration = 0000/00/00 00:00:00.405
KiXGolf Score = 159

Thank you for participating in KiXtart Golf!
Press any key to continue...


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 01:59 PM
Re: KiXgolf - Printer Queue

make that 180.

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 14:57:42.135
Processing End = 2007/11/12 14:57:43.276
Duration = 0000/00/00 00:00:01.140
KiXGolf Score = 180


JochenAdministrator
(KiX Supporter)
2007-11-12 02:02 PM
Re: KiXgolf - Printer Queue

Uh baby, shake me YEAH!


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/12 14:00:55.375
Processing End   = 2007/11/12 14:00:58.562
Duration         = 0000/00/00 00:00:03.186
KiXGolf Score    = 181

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-12 02:07 PM
Re: KiXgolf - Printer Queue

Oh yeah, note this as 179


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/12 14:03:59.656
Processing End   = 2007/11/12 14:04:02.968
Duration         = 0000/00/00 00:00:03.311
KiXGolf Score    = 179

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-12 02:12 PM
Re: KiXgolf - Printer Queue

and...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/12 14:11:08.125
Processing End   = 2007/11/12 14:11:11.187
Duration         = 0000/00/00 00:00:03.061
KiXGolf Score    = 178

Thank you for participating in KiXtart Golf!



Benny69
(MM club member)
2007-11-12 02:13 PM
Re: KiXgolf - Printer Queue

LOOK OUT ROGER! We are gonna get run over!

DrillSergeant
(MM club member)
2007-11-12 02:30 PM
Re: KiXgolf - Printer Queue



JochenAdministrator
(KiX Supporter)
2007-11-12 02:31 PM
Re: KiXgolf - Printer Queue

10-4 ... you guys (hopefully) gonna eat my dust \:D

JochenAdministrator
(KiX Supporter)
2007-11-12 02:32 PM
Re: KiXgolf - Printer Queue

oh btw ... LOL

Benny69
(MM club member)
2007-11-12 03:00 PM
Re: KiXgolf - Printer Queue

Hey! how did you get a picture of me in a golf cart? lol

LonkeroAdministrator
(KiX Master Guru)
2007-11-12 03:28 PM
Re: KiXgolf - Printer Queue

hmm...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 16:27:48.470
Processing End = 2007/11/12 16:27:49.612
Duration = 0000/00/00 00:00:01.141
KiXGolf Score = 177


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 03:30 PM
Re: KiXgolf - Printer Queue

make that...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 16:29:50.978
Processing End = 2007/11/12 16:29:52.182
Duration = 0000/00/00 00:00:01.203
KiXGolf Score = 175


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 03:32 PM
Re: KiXgolf - Printer Queue

hmm...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 16:31:49.612
Processing End = 2007/11/12 16:31:50.785
Duration = 0000/00/00 00:00:01.173
KiXGolf Score = 172


JochenAdministrator
(KiX Supporter)
2007-11-12 03:38 PM
Re: KiXgolf - Printer Queue

wtf?

According to the picture you sit in my cart whilst I am driving ... how dare you pass me


DrillSergeant
(MM club member)
2007-11-12 03:53 PM
Re: KiXgolf - Printer Queue

*Crawls out from under the cart and limps away...



Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 15:50:58.837
Processing End = 2007/11/12 15:51:52.734
Duration = 0000/00/00 00:00:53.896
KiXGolf Score = 157

Thank you for participating in KiXtart Golf!


btw, check that duration! ;\)


DrillSergeant
(MM club member)
2007-11-12 04:00 PM
Re: KiXgolf - Printer Queue



Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 15:58:20.432
Processing End = 2007/11/12 16:00:06.374
Duration = 0000/00/00 00:01:45.942
KiXGolf Score = 156

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-11-12 04:03 PM
Re: KiXgolf - Printer Queue

The driver of the chasing cart takes back his seat


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/12 16:01:36.437
Processing End   = 2007/11/12 16:01:39.125
Duration         = 0000/00/00 00:00:02.688
KiXGolf Score    = 171

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-12 04:05 PM
Re: KiXgolf - Printer Queue

 Originally Posted By: DrillSergeant
btw, check that duration!



It takes ages ... but still it is passing all tests \:o


DrillSergeant
(MM club member)
2007-11-12 05:02 PM
Re: KiXgolf - Printer Queue




Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 16:59:38.861
Processing End = 2007/11/12 17:01:16.071
Duration = 0000/00/00 00:01:37.210
KiXGolf Score = 152

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-11-12 05:51 PM
Re: KiXgolf - Printer Queue

Current score table anyone?
Seems to be a lucky escape from under the cart for you sarge \:\)


JochenAdministrator
(KiX Supporter)
2007-11-12 06:14 PM
Re: KiXgolf - Printer Queue

k, the first 6 places are damn close together

Sarge  152
Benny  159
Jochen 171
Jooel  172
Shawn  182
Allen  184



DrillSergeant
(MM club member)
2007-11-12 06:27 PM
Re: KiXgolf - Printer Queue

 Originally Posted By: Jochen
Seems to be a lucky escape from under the cart for you sarge \:\)


Nah, that bump on the head was just what I needed \:D





JochenAdministrator
(KiX Supporter)
2007-11-12 06:30 PM
Re: KiXgolf - Printer Queue

posted as UBBCode using pre tags ;\)

But ... I got the message, I'll hold my mouth shut from now on


DrillSergeant
(MM club member)
2007-11-12 06:32 PM
Re: KiXgolf - Printer Queue



Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 18:25:14.998
Processing End = 2007/11/12 18:26:02.458
Duration = 0000/00/00 00:00:47.459
KiXGolf Score = 147

Thank you for participating in KiXtart Golf!


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 10:50 PM
Re: KiXgolf - Printer Queue

I like the third place just fine...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 23:49:12.044
Processing End = 2007/11/12 23:49:13.125
Duration = 0000/00/00 00:00:01.081
KiXGolf Score = 168


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 10:53 PM
Re: KiXgolf - Printer Queue

I'm gettin' there...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 23:52:15.967
Processing End = 2007/11/12 23:52:17.016
Duration = 0000/00/00 00:00:01.048
KiXGolf Score = 163


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 10:59 PM
Re: KiXgolf - Printer Queue

huh... wicked.

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 23:58:04.598
Processing End = 2007/11/12 23:58:05.605
Duration = 0000/00/00 00:00:01.006
KiXGolf Score = 161


LonkeroAdministrator
(KiX Master Guru)
2007-11-12 11:32 PM
Re: KiXgolf - Printer Queue

YEAH!

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 00:30:30.651
Processing End = 2007/11/13 00:30:31.742
Duration = 0000/00/00 00:00:01.090
KiXGolf Score = 158


AllenAdministrator
(KiX Supporter)
2007-11-12 11:44 PM
Re: KiXgolf - Printer Queue

Sarge  147
Jooel  158
Benny  159
Jochen 171
Shawn  182
Allen  184


Benny69
(MM club member)
2007-11-13 12:02 AM
Re: KiXgolf - Printer Queue

How the heck did that happen? I turn my back for the day to get some work done and I am left sitting in the pitts.

AllenAdministrator
(KiX Supporter)
2007-11-13 12:49 AM
Re: KiXgolf - Printer Queue

Excuse me.... I WAS in the pitts... ;\)

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/12 18:48:40.734
Processing End = 2007/11/12 18:48:41.536
Duration = 0000/00/00 00:00:00.801
KiXGolf Score = 178

Thank you for participating in KiXtart Golf!


Sealeopard
(KiX Master)
2007-11-13 03:48 AM
Re: KiXgolf - Printer Queue

Jooel: Point taken on the lack of documentation for the input variables.

LonkeroAdministrator
(KiX Master Guru)
2007-11-13 04:53 AM
Re: KiXgolf - Printer Queue

great. thanks.

LonkeroAdministrator
(KiX Master Guru)
2007-11-13 05:02 AM
Re: KiXgolf - Printer Queue

hmm...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 06:01:02.132
Processing End = 2007/11/13 06:01:02.836
Duration = 0000/00/00 00:00:00.703
KiXGolf Score = 151


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 05:04 AM
Re: KiXgolf - Printer Queue

WOOOOOOOOOOOOT!

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 06:03:44.553
Processing End = 2007/11/13 06:03:45.225
Duration = 0000/00/00 00:00:00.671
KiXGolf Score = 148


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 05:10 AM
Re: KiXgolf - Printer Queue

k, think that's all I can get squeezed before really waking up.

AllenAdministrator
(KiX Supporter)
2007-11-13 07:21 AM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 01:20:50.249
Processing End = 2007/11/13 01:20:51.060
Duration = 0000/00/00 00:00:00.811
KiXGolf Score = 177

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-13 07:24 AM
Re: KiXgolf - Printer Queue

Sarge  147
Jooel  148
Benny  159
Jochen 171
Allen  177
Shawn  182


JochenAdministrator
(KiX Supporter)
2007-11-13 08:11 AM
Re: KiXgolf - Printer Queue

Crap,

getting in 4th place overnight \:\(
K, I'll just try the solution (different approach) I dreamed of this night
Will see if this leads to long runtimes and shorter code ;\)


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 09:14 AM
Re: KiXgolf - Printer Queue

k, finally there.

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 10:13:22.942
Processing End = 2007/11/13 10:13:23.379
Duration = 0000/00/00 00:00:00.436
KiXGolf Score = 146


DrillSergeant
(MM club member)
2007-11-13 09:16 AM
Re: KiXgolf - Printer Queue

Jooel, you bastard!

Ok... no worries... there's still time:

http://www.timeanddate.com/counters/fullscreen.html?mode=a&year=2007&month=11&day=14&hour=6pm&p0=179


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 09:49 AM
Re: KiXgolf - Printer Queue

hmm...


JochenAdministrator
(KiX Supporter)
2007-11-13 10:03 AM
Re: KiXgolf - Printer Queue

Bah, enough time to reinvent the toaster!
It should be possible to beat that score...


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 10:40 AM
Re: KiXgolf - Printer Queue

well, my code is so wicked, I can't come up with anything. so guess I will have some time of the case.

LonkeroAdministrator
(KiX Master Guru)
2007-11-13 11:30 AM
Re: KiXgolf - Printer Queue

well, well...

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 12:29:26.524
Processing End = 2007/11/13 12:29:26.930
Duration = 0000/00/00 00:00:00.406
KiXGolf Score = 144


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 11:32 AM
Re: KiXgolf - Printer Queue

so, updating the standings:

Jooel 144
Sarge 147
Benny 159
Jochen 171
Allen 177
Shawn 182


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 11:34 AM
Re: KiXgolf - Printer Queue

btw, my code should work with priorities way higher than 9 or the usual 100.

another observation...
sarge, your code runs under minute! \:\)


DrillSergeant
(MM club member)
2007-11-13 12:07 PM
Re: KiXgolf - Printer Queue

well, well, well... points AND speed \:D \:D \:D



Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 12:05:26.488
Processing End = 2007/11/13 12:05:33.177
Duration = 0000/00/00 00:00:06.689
KiXGolf Score = 142

Thank you for participating in KiXtart Golf!


Benny69
(MM club member)
2007-11-13 01:50 PM
Re: KiXgolf - Printer Queue

you guys stink! ;\)

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 06:49:13.008
Processing End = 2007/11/13 06:49:13.414
Duration = 0000/00/00 00:00:00.405
KiXGolf Score = 151

Thank you for participating in KiXtart Golf!
Press any key to continue...


Benny69
(MM club member)
2007-11-13 02:20 PM
Re: KiXgolf - Printer Queue

Be vewee quite, I am hunting bunny wabbits.

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 07:15:58.585
Processing End = 2007/11/13 07:15:58.975
Duration = 0000/00/00 00:00:00.389
KiXGolf Score = 148

Thank you for participating in KiXtart Golf!
Press any key to continue...


DrillSergeant
(MM club member)
2007-11-13 02:24 PM
Re: KiXgolf - Printer Queue

What's up, doc?



LonkeroAdministrator
(KiX Master Guru)
2007-11-13 04:13 PM
Re: KiXgolf - Printer Queue

not good.
I'm totally stuck.


AllenAdministrator
(KiX Supporter)
2007-11-13 04:25 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 10:24:39.650
Processing End = 2007/11/13 10:24:40.430
Duration = 0000/00/00 00:00:00.779
KiXGolf Score = 174

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-13 04:30 PM
Re: KiXgolf - Printer Queue

AND...

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 10:30:11.618
Processing End = 2007/11/13 10:30:12.429
Duration = 0000/00/00 00:00:00.810
KiXGolf Score = 171

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-11-13 04:36 PM
Re: KiXgolf - Printer Queue

Current standing:


Sarge 142
Jooel 144
Benny69 148
Jochen 171
Allen 171
Shawn 182


AllenAdministrator
(KiX Supporter)
2007-11-13 04:42 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 10:41:03.963
Processing End = 2007/11/13 10:41:04.758
Duration = 0000/00/00 00:00:00.794
KiXGolf Score = 166

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-11-13 04:43 PM
Re: KiXgolf - Printer Queue

Nice one Allen, now you're making Benny nervous and you made Jochen cry \:\)

AllenAdministrator
(KiX Supporter)
2007-11-13 04:44 PM
Re: KiXgolf - Printer Queue

more...

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 10:43:23.922
Processing End = 2007/11/13 10:43:24.717
Duration = 0000/00/00 00:00:00.794
KiXGolf Score = 163

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-11-13 04:48 PM
Re: KiXgolf - Printer Queue

In the mean time I have Sarge's runtime (5.843 secs) but still a score 4 strokes higher than my best... but I have another day to get in 1st position ;\)

Oh, and I don't cry ... I am not an EMO


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 09:19 PM
Re: KiXgolf - Printer Queue

yehaa!


Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 22:17:40.503
Processing End = 2007/11/13 22:17:41.001
Duration = 0000/00/00 00:00:00.498
KiXGolf Score = 140


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 09:38 PM
Re: KiXgolf - Printer Queue

wicked... :p

Your solution passed all tests

KiXtart
KiXtart Version = 4.60 Beta 1
KiXGolf Script = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 22:37:57.215
Processing End = 2007/11/13 22:37:57.717
Duration = 0000/00/00 00:00:00.502
KiXGolf Score = 138


LonkeroAdministrator
(KiX Master Guru)
2007-11-13 09:41 PM
Re: KiXgolf - Printer Queue

so, pulling the list back together:

  1. Jooel 138
  2. Sarge 142
  3. Benny 148
  4. Allen 163
  5. Jochen 171
  6. Shawn 182




JochenAdministrator
(KiX Supporter)
2007-11-13 10:38 PM
Re: KiXgolf - Printer Queue

Hmmmm ... 1 day and one hour left, I am on 5th Place and have no clue how to get rid of my 177 score soon

DrillSergeant
(MM club member)
2007-11-13 11:09 PM
Re: KiXgolf - Printer Queue

Nice one, Jooel!

hmmm... 24 hours to shave > 4 points and I've got a busy IRL day tomorrow...

I'm not going down without a fight, but I think I'm going to have to settle for the current score and hope to see midnight tomorrow as #2


JochenAdministrator
(KiX Supporter)
2007-11-13 11:17 PM
Re: KiXgolf - Printer Queue

slooooooowly decreeeaaasing my scoooore


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/13 23:15:51.453
Processing End   = 2007/11/13 23:15:54.203
Duration         = 0000/00/00 00:00:02.750
KiXGolf Score    = 169

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-13 11:28 PM
Re: KiXgolf - Printer Queue



Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/13 23:26:32.578
Processing End   = 2007/11/13 23:26:35.343
Duration         = 0000/00/00 00:00:02.764
KiXGolf Score    = 167

Thank you for participating in KiXtart Golf!



LonkeroAdministrator
(KiX Master Guru)
2007-11-13 11:33 PM
Re: KiXgolf - Printer Queue

drill, >2?
why not >4 so you would get the lead? ;\)

and jochen, nice to see you are not totally dead in the see.


DrillSergeant
(MM club member)
2007-11-13 11:40 PM
Re: KiXgolf - Printer Queue

 Originally Posted By: Lonkero
drill, >2?
why not >4 so you would get the lead? ;\)


I read your post optimistic, I changed my previous post ;\)


JochenAdministrator
(KiX Supporter)
2007-11-13 11:51 PM
Re: KiXgolf - Printer Queue

only 1 more left for Allen ...


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/13 23:50:45.968
Processing End   = 2007/11/13 23:50:47.578
Duration         = 0000/00/00 00:00:01.610
KiXGolf Score    = 164

Thank you for participating in KiXtart Golf!



JochenAdministrator
(KiX Supporter)
2007-11-13 11:56 PM
Re: KiXgolf - Printer Queue

and equal to Allen, come on, take a seat in my cart ;\)


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/13 23:55:06.812
Processing End   = 2007/11/13 23:55:08.421
Duration         = 0000/00/00 00:00:01.608
KiXGolf Score    = 163

Thank you for participating in KiXtart Golf!



AllenAdministrator
(KiX Supporter)
2007-11-13 11:58 PM
Re: KiXgolf - Printer Queue

Damn son... slow down! ;\)

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/13 17:57:36.655
Processing End = 2007/11/13 17:57:37.458
Duration = 0000/00/00 00:00:00.802
KiXGolf Score = 161

Thank you for participating in KiXtart Golf!


JochenAdministrator
(KiX Supporter)
2007-11-13 11:58 PM
Re: KiXgolf - Printer Queue

whoops ;\)


Your solution passed all tests

KiXtart
KiXtart Version  = 4.53
KiXGolf Script   = kixgolf_pq.kix

KiXGolf Scoring Engine
Scoring Engine   = 3.3

KiXtart Golf Score
Tournament       = Printer Queue
Processing Start = 2007/11/13 23:58:01.500
Processing End   = 2007/11/13 23:58:04.281
Duration         = 0000/00/00 00:00:02.781
KiXGolf Score    = 161

Thank you for participating in KiXtart Golf!



AllenAdministrator
(KiX Supporter)
2007-11-14 12:04 AM
Re: KiXgolf - Printer Queue

Jochen, is it possible we have the same code?

JochenAdministrator
(KiX Supporter)
2007-11-14 12:10 AM
Re: KiXgolf - Printer Queue

most definitly not ... look at the runtimes

LonkeroAdministrator
(KiX Master Guru)
2007-11-14 12:18 AM
Re: KiXgolf - Printer Queue

well, that doesn't tell that much.
1s for the other and 2s for the other.
that can be explained simply by slower machine for the second one \:\)


JochenAdministrator
(KiX Supporter)
2007-11-14 12:23 AM
Re: KiXgolf - Printer Queue

my rig is quite fast ...

Benny69
(MM club member)
2007-11-14 05:54 AM
Re: KiXgolf - Printer Queue

Allen, I think that your code and mine is similar. So you could knock off a few more.

AllenAdministrator
(KiX Supporter)
2007-11-14 05:58 AM
Re: KiXgolf - Printer Queue

My eyes have officially crossed. I see things I might be able to change, but every time I do, I get no where.

Looking forward to seeing yours, especially if they are similar.


Benny69
(MM club member)
2007-11-14 06:01 AM
Re: KiXgolf - Printer Queue

I bet Jochen's is crazy! 11th dimension stuff, check out those run times.

LonkeroAdministrator
(KiX Master Guru)
2007-11-14 09:30 AM
Re: KiXgolf - Printer Queue

dunno...
we have 100 tests, so if it's just a bit slower on the longer ones it easily counts for seconds.
and that extra time can be easily accomplished with weird conversions like:
int(int(2)+int(3))

instead of the usual:
2+3


DrillSergeant
(MM club member)
2007-11-14 10:05 AM
Re: KiXgolf - Printer Queue

pffft... these ones took a while... I wonder if I can find 2 more...


Your solution passed all tests

KiXtart
KiXtart Version = 4.60
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/14 10:03:07.504
Processing End = 2007/11/14 10:03:13.883
Duration = 0000/00/00 00:00:06.379
KiXGolf Score = 139

Thank you for participating in KiXtart Golf!


LonkeroAdministrator
(KiX Master Guru)
2007-11-14 10:07 AM
Re: KiXgolf - Printer Queue

damn, you were supposed to be busy!

NTDOCAdministrator
(KiX Master)
2007-11-14 10:09 AM
Re: KiXgolf - Printer Queue

What happened to Shawn? He opened and then left.

LonkeroAdministrator
(KiX Master Guru)
2007-11-14 11:59 AM
Re: KiXgolf - Printer Queue

was wondering the same. have seen him lurking a lot though

JochenAdministrator
(KiX Supporter)
2007-11-14 01:43 PM
Re: KiXgolf - Printer Queue

Gawd ... this ... bleeding code ... won't get any .... SHORTER !!!

ShawnAdministrator
(KiX Supporter)
2007-11-14 02:48 PM
Re: KiXgolf - Printer Queue

I'm still lurkin but haven't had much time since Sunday. Well, at least I got on the board this time - got my code down to 171 or so. But just cheering you guys on until the public round.

JochenAdministrator
(KiX Supporter)
2007-11-14 02:54 PM
Re: KiXgolf - Printer Queue

Whoa Shawn,

post the results from that run with 171 ... maybe there is a Gargoyle only waiting to post that 170 score to leave you behind ;\)


LonkeroAdministrator
(KiX Master Guru)
2007-11-14 03:42 PM
Re: KiXgolf - Printer Queue

with 8 hours to go, here's the current standings.
if top5 gets ranking points, only Shawn will be left out of that carneval :P

  1. Jooel 138
  2. Sarge 139
  3. Benny 148
  4. Allen 161
  5. Jochen 161
  6. Shawn 182



Mart
(KiX Supporter)
2007-11-14 03:47 PM
Re: KiXgolf - Printer Queue

 Originally Posted By: Shawn
I'm still lurkin but haven't had much time since Sunday. Well, at least I got on the board this time - got my code down to 171 or so. But just cheering you guys on until the public round.


Why not post the results? You'll still be sixth but with a better score compared to the 182 you have listed now.


ShawnAdministrator
(KiX Supporter)
2007-11-14 03:51 PM
Re: KiXgolf - Printer Queue

k, still got 8 hours or whatever ... hopefully improve ...

KiXGolf Score = 171


AllenAdministrator
(KiX Supporter)
2007-11-14 04:03 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/14 10:02:30.463
Processing End = 2007/11/14 10:02:31.257
Duration = 0000/00/00 00:00:00.793
KiXGolf Score = 158

Thank you for participating in KiXtart Golf!


DrillSergeant
(MM club member)
2007-11-14 04:10 PM
Re: KiXgolf - Printer Queue

I hope that I will stay 2nd place because I don't think I'm going to try any more.

I got myself an early christmas present, and I'm going to play with that all evening \:\)


Mart
(KiX Supporter)
2007-11-14 04:20 PM
Re: KiXgolf - Printer Queue

Sarg, dude! \:o
You got one of these sweet gadgets. I've been looking at this but decided to get the Nokia 6300 instead. A great phone but now I want E-mail and stuff on my phone! I want it, I want it, I want it! Regrets, regrets! Oh man I think I’ll never get over this one


LonkeroAdministrator
(KiX Master Guru)
2007-11-14 04:20 PM
Re: KiXgolf - Printer Queue

nice.

LonkeroAdministrator
(KiX Master Guru)
2007-11-14 04:23 PM
Re: KiXgolf - Printer Queue

mart, 6300? why oh why? the e-series phones are way cheap nowadays, so there is no excuse to buy anything else. imo.

Mart
(KiX Supporter)
2007-11-14 04:35 PM
Re: KiXgolf - Printer Queue

Yeah I know, but the only one widely available here at the time I needed to extend my subscription was the E65 and that one is damn ugly and felt fragile. I could also get the N73 but we have a number of them at work and they have all broken down more then once in the past 5 months. Nobody wants that.

The 6300 has a stainless cover and blue lights. Stainless combined with the blue lights and the (expected) durability of the phone convinced me to get it. That’s the pain with all electric devices, once you get one the next day they are old and the next model is released.

Crying myself to sleep every night


DrillSergeant
(MM club member)
2007-11-14 04:36 PM
Re: KiXgolf - Printer Queue

 Originally Posted By: Mart
I've been looking at this but decided to get the Nokia 6300 instead.


I've looked at nokia's too, but my ubernerdy collegues convinced me to get this one ;\)

I got it with a two-year subscription, so I hope it won't be antique after 1.5 years...


LonkeroAdministrator
(KiX Master Guru)
2007-11-14 04:40 PM
Re: KiXgolf - Printer Queue

lol. I would most likely break it before that.
my last smartphone was iPaq and it lasted for 2 weeks \:\)


DrillSergeant
(MM club member)
2007-11-14 04:50 PM
Re: KiXgolf - Printer Queue

 Originally Posted By: Lonkero
lol. I would most likely break it before that.
my last smartphone was iPaq and it lasted for 2 weeks \:\)


That's why I've also insured it for 6 euro per month. It's a bit much, but if it gets broken (in any way) I get a new one. Without subscription it costs about 650 Euro...


LonkeroAdministrator
(KiX Master Guru)
2007-11-14 05:25 PM
Re: KiXgolf - Printer Queue

6e is not much, all things considered...
if you get with new phone every 3-6 months, I think it's money well spent ;\)


Benny69
(MM club member)
2007-11-14 07:46 PM
Re: KiXgolf - Printer Queue

I think you guys have too much money if you are buying that stuff, and work should pay for any thing you need to do your job. ;\)

Mart
(KiX Supporter)
2007-11-14 08:10 PM
Re: KiXgolf - Printer Queue

Didn't buy it. They had a selection of phones to choose from when I renewed my subscription. All free. This stuff is expensive indeed. Way to expensive imho.

LonkeroAdministrator
(KiX Master Guru)
2007-11-14 08:32 PM
Re: KiXgolf - Printer Queue

nah. everything costs nowadays!
when I was still in jyväskylä, I could buy milk with 2-4 cents/litre.
now it's 1-1,55e/litre!

and that's only 3 years ago!


LonkeroAdministrator
(KiX Master Guru)
2007-11-14 09:13 PM
Re: KiXgolf - Printer Queue

whilst waiting for someone to post, I decided to watch some christmas gift pointers for the children:
http://www.tomsgames.com/us/site/flash_videos/more_crysis_jackassery.html


ShawnAdministrator
(KiX Supporter)
2007-11-14 09:24 PM
Re: KiXgolf - Printer Queue

Need to hit that 161 to be in contention eh.

LonkeroAdministrator
(KiX Master Guru)
2007-11-14 09:32 PM
Re: KiXgolf - Printer Queue

my interpretion is, that you would need to get down to 160 as you would be still sixth with 161 cause you would be the last one to join that group.

but, Jens might give you extra point out of pity anyways. ;\)


DrillSergeant
(MM club member)
2007-11-14 09:54 PM
Re: KiXgolf - Printer Queue

hmmm, this site is not really nice to windows mobile PDA's. \:D

LonkeroAdministrator
(KiX Master Guru)
2007-11-14 10:30 PM
Re: KiXgolf - Printer Queue

heh.
I've viewed it with my 6680 and I bet the experience with your htc is waaaaay better.


Gargoyle
(MM club member)
2007-11-14 11:35 PM
Re: KiXgolf - Printer Queue

I gave up, I could sort all day long, but never could keep track of my own job.

Speaking of jobs, it is all I can do right now to find time visit the site much less play, tried to knock it out in the first weekend, as I knew with our data center redesign (moving everything all new cabling etc...) coming up this weekend, that was going to be it for me....


AllenAdministrator
(KiX Supporter)
2007-11-14 11:38 PM
Re: KiXgolf - Printer Queue

Your solution passed all tests

KiXtart
KiXtart Version = 4.53
KiXGolf Script = kixgolf_pq.KIX

KiXGolf Scoring Engine
Scoring Engine = 3.3

KiXtart Golf Score
Tournament = Printer Queue
Processing Start = 2007/11/14 17:36:59.583
Processing End = 2007/11/14 17:37:00.378
Duration = 0000/00/00 00:00:00.794
KiXGolf Score = 155

Thank you for participating in KiXtart Golf!


AllenAdministrator
(KiX Supporter)
2007-11-15 12:03 AM
Re: KiXgolf - Printer Queue

Hey... that clock is ticking up now... I guess that means it's over.

Good fun.


LonkeroAdministrator
(KiX Master Guru)
2007-11-15 12:18 AM
Re: KiXgolf - Printer Queue

yep. if the given time was the same we have been staring, time is up.
thus final order would look like:

  1. Jooel 138
  2. Sarge 139
  3. Benny 148
  4. Allen 155
  5. Jochen 161
  6. Shawn 171



This thread is now closed.
Continue competition and discussion in the public round thread:
http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=182662