XaiJu
Jay Versluis

Jay Versluis

patreon


Jay Versluis posts

Created in April 2018

It's been a very productive month for me, more so than I had expected. I must admit that before I started compiling lists of what I've been doing with my time I had the subtle feeling of "slacking off" too much. Looks like that's not the case after all :-)

In keeping with the Japanese Kaizen movement, I'll try to write future lists during the month rather than retrospectively. I'll be so much quicker and won't take half a day trying to remember where I put what. Without further ado, here's wha...

View Post

Generating Lottery Numbers on the C64

In this video I'll demonstrate how to draw random lottery numbers on a Commodore 64. The secret sauce here is not only the RND function to generate random numbers, but also two loops inside each other that prevent the same number from coming up more than once.

Here's the lottery generator code:

10 x=rnd(-ti)
20 for i=1 to 6
30 rn=int(rnd(1)*49)+1
40 for j=1 to i
50 if n(j)=rn then 30
60 next j
70 n(i)=rn
80 next i
100 print
110 for i=1 to 6
120 print n(i); View Post

Created in March 2018

Here's what I've been writing and recording during the month of March:


Articles and Websites

3k Subscriber Special (outtake) and Plans for 2018

I can barely believe it myself, but I seem to have surpassed 3000 subscribers. I was going to upload a THANK YOU video on YouTube for public consumption, but I decided this version was a bit too long. However, it explains in some detail where I am in my life right now and the current active projects, and how I would like to proceed with them.

I'll also talk about my direction in 2018 and which projects I intent to focus  on. 

Enjoy!

View Post