Library

Video Player is loading.
 
Current Time 0:00
Duration 7:05
Loaded: 0%
 
x1.00


Back

Games & Quizzes

Training Mode - Typing
Fill the gaps to the Lyric - Best method
Training Mode - Picking
Pick the correct word to fill in the gap
Fill In The Blank
Find the missing words in a sentence Requires 5 vocabulary annotations
Vocabulary Match
Match the words to the definitions Requires 10 vocabulary annotations

You may need to watch a part of the video to unlock quizzes

Don't forget to Sign In to save your points

Challenge Accomplished

PERFECT HITS +NaN
HITS +NaN
LONGEST STREAK +NaN
TOTAL +
- //

We couldn't find definitions for the word you were looking for.
Or maybe the current language is not supported

  • 00:05

    Here is a copy of 1K Chess for the Sinclair ZX81.

  • 00:09

    Developed by Artic and released by Sinclair Research in 1982, it was one of the few playable

  • 00:15

    programs that would happily run on an un-expanded Sinclair ZX81.

  • 00:21

    This is because a standard ZX81 has only 1KB of RAM, which is a pathetic amount of memory

  • 00:28

    to run anything of substance.

  • 00:30

    To display a full screen alone would consume 793 bytes, however through creative genius,

  • 00:37

    David Horne, the programmer of this game, has managed to pack a playable version of

  • 00:42

    chess into just 672 bytes.

  • 00:44

    We're not talking a 2 player game here either, this is chess against the computer.

  • 00:50

    Yep, that 672 bytes also contains the code for an AI opponent, and for most of us, it

  • 00:56

    puts up a pretty good fight.

  • 00:59

    The program was also included in a 3 part series of Your Computer magazine, from December

  • 01:05

    1982 to February '83.

  • 01:08

    These listings were where many of us sourced games from in the 80s.

  • 01:13

    Here you can see the BASIC program listing, which consists of only 4 lines of basic, but

  • 01:18

    with two of those occupied by chunks of machine code, handily stored under a REM statement.

  • 01:24

    Here's the machine code listing, which looks even more daunting, and it kinda is, but it's

  • 01:29

    also a work of beauty, and an incredible exercise in what can be created in such a limited space.

  • 01:35

    So in one of my late night musings, I pondered whether this little program would be able

  • 01:41

    to beat a more modern game of chess.

  • 01:44

    Now of course, this isn't really the ZX81 vs. a modern computer, it's a 1KB 1982 chess

  • 01:51

    engine vs. a more capable chess engine.

  • 01:54

    We could get hugely bogged down in that notion alone, given there are so many chess engines

  • 01:59

    of differing abilities, but I wanted to keep things simple.

  • 02:03

    This isn't a scientific test by any means.

  • 02:06

    Windows, is a platform I use everyday, so why not pit Windows Chess against 1K chess?

  • 02:12

    Of course Windows 10 is devoid of games, even minesweeper, but Windows 7 came with a number,

  • 02:20

    including Chess Titans.. and thanks to ElDiabl0 from mydigitallife.net we can grab the Windows

  • 02:27

    7 game collection and run them on 10, with ease.

  • 02:31

    So, here we are.

  • 02:32

    On the left is Chess Titans, set at the standard difficulty level of 2 (pretty low).

  • 02:38

    On the right is 1K Chess, ready and willing to fight.

  • 02:43

    Given the limited space, 1K chess always opens with a White Queen Pawn move, or if you load

  • 02:48

    side B of the tape, a White King Pawn move.

  • 02:52

    This is side A, so we have our first move.

  • 02:54

    I can then translate this move onto the Chess Titans board and we're away.

  • 03:05

    On the face of it, things were looking pretty even, with both sides playing defensively.

  • 03:10

    But then the game had to stop, and not because someone won, but because of limitations in

  • 03:17

    1K chess.

  • 03:18

    Although Titans is programmed with all the chess rules, 1K doesn't allow for pawn promotion,

  • 03:24

    or castling.

  • 03:25

    Therefore this pairing isn't an ideal one.

  • 03:28

    I could keep playing games until I get one where Titans doesn't attempt to castle, but

  • 03:33

    I felt it was fairer (and easier) to find a game which allows you to disable these elements.

  • 03:39

    That game came in the form of an engine, known as StockFish.

  • 03:43

    It's an open source engine and it packs one hell of a punch.

  • 03:46

    I mean, it's the best chess engine out there, and can easily beat human opponents.

  • 03:53

    So as for our 1K chess, yeah, things are looking a little grim.

  • 04:00

    Here's game one running on the Arena front end, with Stockfish running as-is, out of

  • 04:06

    the box, playing as if it were a 5 minute tournament match.

  • 04:10

    You can see the Stockfish calculations down here, where-as 1K chess actually runs through

  • 04:15

    its possible moves on the board, mainly to conserve memory.

  • 04:19

    The program is broken into a number of elements.

  • 04:21

    We have an STR routine which scans the board and finds which squares are occupied and by

  • 04:27

    which colour, the Piece routine then creates pointers to possible moves and then the Move

  • 04:33

    & Pawn routines narrow that down into a legal list.

  • 04:36

    The Check routine scans for a possible check.

  • 04:39

    Finally the Score routine scores each move based on where it can take a piece, whether

  • 04:44

    the current position of a piece is under attack, whether the new position can be attacked,

  • 04:48

    then whether a check is possible and finally whether the original position is defended.

  • 04:54

    Scores for each move are compared and added to the scores for each chess piece, and the

  • 04:58

    highest scoring move is made.

  • 05:00

    It's a pretty basic formula which doesn't offer much room for planning ahead, and so

  • 05:05

    it doesn't take long for 1K chess to be on the backfoot, and out of the game.

  • 05:15

    Game two is with Stockfish set on a much lower skill level, and although things look promising

  • 05:19

    for 1K chess to start with, that ends when you realise that things weren't actually looking

  • 05:24

    promising to start with at all.

  • 05:39

    So 1K chess is no match for this new engine, but then of course it isn't.

  • 05:43

    Still, the fact that you can even play against a 1K chess program is still frankly phenomenal,

  • 05:48

    and that's really the main point of this video; To illuminate the incredulity of 1K chess

  • 05:55

    and show that even in the most dire of circumstances, and faced with enormous restrictions, amazing

  • 06:00

    things can occur.

  • 06:02

    Talking of amazing, in 2015, 1K chess was actually beaten by a PC Booter program; BootChess

  • 06:09

    to become the smallest AI chess program at just 487 bytes.

  • 06:14

    Now that would be a fairer match, and one I'll likely do on my extra channel in the

  • 06:20

    near future.

  • 06:22

    If you get a moment, I'd recommend booting up 1K chess and giving it a blast, or better

  • 06:27

    yet, type it out from the Your Computer listings.

  • 06:36

    Thanks for watching.

All

The example sentences of STOCKFISH in videos (3 in total of 4)

here adverb 's possessive ending game noun, singular or mass one cardinal number running verb, gerund or present participle on preposition or subordinating conjunction the determiner arena proper noun, singular front noun, singular or mass end noun, singular or mass , with preposition or subordinating conjunction stockfish proper noun, singular running noun, singular or mass as preposition or subordinating conjunction - is verb, 3rd person singular present , out preposition or subordinating conjunction of preposition or subordinating conjunction
stockfish adjective 10 cardinal number ends noun, plural up preposition or subordinating conjunction giving verb, gerund or present participle it personal pronoun you personal pronoun know verb, non-3rd person singular present a determiner nice adjective advantage noun, singular or mass for preposition or subordinating conjunction white adjective hair noun, singular or mass this determiner
feel verb, base form like preposition or subordinating conjunction stockfish adjective would modal play verb, base form like preposition or subordinating conjunction this determiner you personal pronoun know noun, singular or mass just adverb against preposition or subordinating conjunction the determiner bishop noun, singular or mass probably adverb yes interjection actually adverb it personal pronoun 's verb, 3rd person singular present

Definition and meaning of STOCKFISH

What does "stockfish mean?"

/ˈstäkˌfiSH/

noun
commercially valuable hake of coastal waters of southern Africa.
other
Fish cured by being split and air-dried without salt.