Last active
August 5, 2024 00:25
-
-
Save evdokimovm/f529c0f773e02f99abf0c0353fd7d231 to your computer and use it in GitHub Desktop.
chess puzzles from The Password Game with answers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Chess Puzzles from The Password Game with Solutions</title> | |
</head> | |
<body> | |
<style> | |
#container { | |
display: flex; | |
flex-direction: column; | |
width: 90%; | |
margin: 0 auto; | |
} | |
.puzzle { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
} | |
.solution_wrapper { | |
display: flex; | |
flex-direction: row; | |
gap: 10px; | |
margin-bottom: 10px; | |
} | |
.spoiler { | |
cursor: pointer; | |
background-color: black; | |
} | |
.reveal { | |
cursor: auto; | |
background-color: inherit; | |
} | |
h1 { | |
margin: 0; | |
} | |
img { | |
max-width: 50%; | |
margin-bottom: 50px; | |
} | |
div#container > div.puzzle:last-child > img { | |
margin-bottom: 0; | |
} | |
</style> | |
<div id="container"></div> | |
<script> | |
var solutions = ['Nf6+', 'Qd5+', 'Qb8+', 'Qd8+', 'Qxg6+', 'Qxd7+', 'Qxf8+', 'Qd7+', | |
'Qg6+', 'Qxh6+', 'Qg4+', 'Qxh6+', 'Qg6+', 'Rg1+', 'Qxh5+', 'Ne7', | |
'Qc3+', 'Qf5+', 'Bf6+', 'Qc8+', 'Re8+', 'Rc1+', 'Bf4+', 'Ne6+', | |
'Qf8+', 'Bf5+', 'Qxc6+', 'Qxb8+', 'Qxd6+', 'Rd8+', 'Nd3+', 'Rxb6+', | |
'Qxf7+', 'Nf6+', 'Qe7+', 'Rg8+', 'Qxf7+', 'Be3+', 'Nh4+', 'Qxe6+', | |
'Qf8+', 'Qf6+', 'Nb5+', 'Qxh7+', 'Qxb7+', 'Qg1+', 'Bh6+', 'Rxf6+', | |
'Qxh6+', 'h5+', 'Nxd7+', 'Rxh2+', 'Bb5+', 'Rg8+', 'Qh8+', 'Bh5+', | |
'Qh7+', 'Qxh7+', 'Ne5+', 'Qxg7+', 'Rh8+', 'Rxh6+', 'Qxe8+', 'Rxe8+', | |
'Qxh6+', 'Qxh7+', 'Kh6', 'Be1+', 'Rxg7+', 'Qxg7+', 'Rg7', 'Bd6+', | |
'Ng6+', 'Qh3+', 'Rg1+', 'Qg1+', 'Rh8+', 'Rf6', 'Re7+', 'Qh6+', | |
'Qxh7+', 'Rf6+', 'Qf7+', 'Bb6+', 'Rxg6+', 'Qh8+', 'Rxh3+', 'Rxh7+', | |
'Nf5+', 'Rxf7+', 'Rf7+', 'f5+', 'Rh8+', 'Qxf2+', 'Qxf8+', 'Re8+', | |
'Rxf6+', 'Qh3+', 'Nf3', 'Qxe6+', 'Rg8+', 'Qe8+', 'Rxf5+', 'Qxh2+', | |
'Rxf8+', 'Rxg6+', 'Bf2+', 'Qxc3+', 'Nd4+', 'Qxh3+', 'Nf4+', 'Qg2+', | |
'Qxh7+', 'Qh2+', 'Qh1+', 'Qxh3+', 'Rxg7+', 'Qd8+', 'Rd8+', 'Rd8+', | |
'Nd5+', 'Rc8+', 'g5+', 'Rh4+', 'Ng6+', 'Qxe6+', 'Bf7+', 'Ne7+', | |
'Nh8+', 'Rxf1+', 'Bxg6+', 'Nxf7+', 'Re5+', 'Rf8+', 'Rxe6+', 'Rxh7+', | |
'Nxb7+', 'Qg8+', 'Qxh6+', 'Ra1+', 'Rh8+', 'Bg6+', 'Qd8+', 'Qh5+', | |
'Qxg6+', 'Qxa3+', 'Bg6+', 'Nf4+', 'Qxc3+', 'Ne6+', 'Nxf7+', 'Rxd8+', | |
'Ng3+', 'Re8+', 'Bxf3+', 'Rh2+', 'Re8+', 'Bh6', 'Qb5+', 'Qh6+', | |
'Rxh7+', 'Rxf7+', 'Rxf8+', 'Rh6', 'Bf5+', 'Rxh6+', 'Qe6+', 'Rxa7+', | |
'Rg2+', 'Qg4+', 'Qh1+', 'g4+', 'Qc6+', 'Rg8+', 'Bf6+', 'Qc6', | |
'f2+', 'Ne2+', 'Rh6+', 'Rc1+', 'Ne4+', 'Ng4', 'Rf7+', 'Qd8+', | |
'Rxh6+', 'Qg7+', 'Be5+', 'Rxh6+', 'Re4+', 'Nf7+', 'Rxh6+', 'Rf1+', 'Rg8+' | |
] | |
for (var i = 0; i < 193; i++) { | |
var puzzle_wrapper = document.createElement("div") | |
puzzle_wrapper.className = "puzzle" | |
var caption = document.createElement("h1") | |
caption.textContent = "Chess Puzzle #" + i | |
var solution_wrapper = document.createElement("div") | |
solution_wrapper.className = "solution_wrapper" | |
var inner_html = `<h1>Solution: </h1><h1 class="spoiler" data-solution="${solutions[i]}">reveal</h1>` | |
solution_wrapper.innerHTML = inner_html | |
var puzzle = document.createElement("img") | |
puzzle.src = "https://neal.fun/password-game/chess/puzzle" + i + ".svg" | |
puzzle_wrapper.appendChild(caption) | |
puzzle_wrapper.appendChild(solution_wrapper) | |
puzzle_wrapper.appendChild(puzzle) | |
document.getElementById("container").appendChild(puzzle_wrapper) | |
} | |
document.querySelectorAll(".spoiler").forEach(element => { | |
element.addEventListener("click", function(e) { | |
this.className = "reveal" | |
this.innerText = this.dataset.solution | |
}) | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment