Competitions are fun! Here you will find the competitions that are currently running as well as the previous competitions that have happened.
Current competitions:
Travel Chess Set Giveaway on Youtube: Will run forever (please read the rules for this competition). Comment on THIS VIDEO to enter.
– – –
Mini Puzzle Box Giveaway on Youtube: Will run forever (please read the rules for this competition). Comment on THIS VIDEO to enter.
– – –
Future competitions:
More soon
– – –
Previous competitions (closed):
May 2017
Someone won a hand made leather wallet. Read about it here.
June 2016
What is this competition? With box and bonus pendant as prize. More information of the competition here. More about the prize draw soon.
January/February 2016

Notebook to win
Handmade Darth Vader notebook as prize for the competition in January/February. More information of the competition here and the prize draw here.
December 2015

What is this?
The first competition on this site! Guess what this is to win a pendant. Click here for more information about this competition.
November 2015
Zombi arm pendant competition was the second competition. Run in November on Facebook. The first to use a R-script to select a winner. A bit grim…
Click on the image for more information about this competition.
– – –
September 2015
The first competition and the first “What is this?” competition. I posted this as a question to people on Facebook and liked the responses and interaction so much that I thought competitions may be fun! The winner received small cat pendant made from one of the scrap pieces. Click here to see it.
– – –
– – – – – – – – – – – – – –
General Competition Rules.
Each competition has its own specific rules but the following rules apply to all competitions, unless otherwise stated (see rules below for YouTube giveaways):
- By entering any competition the the contestant agrees to abide by the rules stated here and any additional rules provided on the specific competition.
- Entry to the competitions is restricted to one entry per person please, and for multiple entries only the first answer per contestant will be valid.
- Automated entries, bulk entries or third party entries will be disqualified!
- Previous winners are not eligible for the next following competition.
- The winning item will be shipped using regular postage. The cost of shipping will be carried by Induku – unless stated otherwise. Induku is however not liable for any lost items due to shipping errors.
- Most competitions will be entered via comments on the specific competition page. Valid email addresses will be used as unique identifier and contact point and are thus required for entry. It will however not be displayed anywhere.
- No data or other information of the contestants will be shared or passed on to anyone.
- If the winner of the contest cannot be contacted, within 10 days, via the email provided, a second winner may be selected (this decision is under the discretion of Induku). Please ensure your email address is valid!
- All decisions by Induku are final.
- The script to select a random winner, if more than one person fulfill the winning criteria, is shown below. It is written to run in the R environment:
#Random draw script - written to be implemented in R
#--Name of competition--
#(added in alphabetical order using the names provided by them (if 2 names are the same a unique number will be provided to each))
contestants <- c("contestant_1","contestant_2",...,"contestant_n-1")
#the seed is the day of the current year on which the draw is held
#1 December 2015 = day 335
set.seed(335)
#--The Draw
winner <- sample(contestants, size=1, replace = FALSE, prob = NULL)
winner
– – –
– – – – – – – – – – – – – –
YouTube Lifetime Giveaway Competition Rules.
- By entering any competition the the contestant agrees to abide by the rules stated here and any additional rules provided on the specific competition.
- Only subscribers to my channel (youtube.com/user/robroy865) are eligible to receive the item.
- The first subscriber to comment gets the first item.
- After there are 10 new commenters I will draw a name at random (see below) and send the item to the winner.
- After there are 100 new commenters I will draw a name at random and send the item to the winner.
- I will repeat this every time the number of commenters increase by one order of magnitude (i.e. 1000, 10000, 100000 etc.). It is based on the number of unique commenters (not comments or subscribers that comment). I will continue to do this until the upper limit of possible commenters are reached, this video is not accessible due to any reason beyond my control or I die.
- Only a single comment from subscriber will be counted (i.e. multiple comments from the same individual do not count for the fold increase).
- Any individual that in won any previous draw interval, or directly preceding competition will not be eligible to win again.
- I will contact the winner through the YouTube message system (or ask the winning commenter to contact me via YouTube messages) and arrange details for delivery of package – the information will not be used for any other reason
- The winning item will be shipped using regular postage. The cost of shipping will be carried by Induku. Induku is however not liable for any lost items due to shipping errors.
- I will scrape the comments on a regular basis* and check the number of commenters. If there is more than the number required I will only use the commenters within the interval that were first to comment. I.e. if there are 12 commenters I will draw a winner from the first 10. (*Once the comments decrease and the number required before a following draw increase, I will only check the number of commenter once a week to once a month).
- Any comments/entries which don’t comply with the YouTube community guidelines will be disqualified (https://www.youtube.com/intl/en-GB/yt/about/policies/#community-guidelines).
- Note YouTube is not a sponsor of this contest and is not responsible for any and all liability related to this contest.
- No data or other information of the contestants will be shared or passed on to anyone.
- If the winner of the contest cannot be contacted, within 10 days, a second winner may be selected (this decision is under the discretion of Induku).
- All decisions by Induku are final.
- The script to select a random winner, is shown below. It is written to run in the R environment:
- The exact script used in each draw is available on request.
#Random draw script - written to be implemented in R
#--Name of Youtube competition--
#(added in alphabetical order using the usernames (if 2 names are the same a unique number will be provided to each))
contestants <- c("contestant_1","contestant_2",...,"contestant_n-1")
#The seed value will be the number of maximum valid contestants - i.e. 9, 98, 997 etc.
set.seed(9)
#--The Draw
winner <- sample(contestants, size=1, replace = FALSE, prob = NULL)
winner