Skip to content

Instantly share code, notes, and snippets.

View syntax-punk's full-sized avatar
👀
noticing things

David syntax-punk

👀
noticing things
View GitHub Profile
@syntax-punk
syntax-punk / README.md
Created January 8, 2024 14:04 — forked from kunting1229/README.md
Basic Snake HTML Game

Basic Snake HTML Game

Snake is a fun game to make as it doesn't require a lot of code (less than 100 lines with all comments removed). This is a basic implementation of the snake game, but it's missing a few things intentionally and they're left as further exploration for the reader.

Further Exploration

@syntax-punk
syntax-punk / core-set.sql
Created November 11, 2018 17:07 — forked from backpackerhh/core-set.sql
SQL - Movie-Rating Query Exercises
-- 1. Find the titles of all movies directed by Steven Spielberg.
SELECT title
FROM Movie
WHERE director = 'Steven Spielberg';
-- 2. Find all years that have a movie that received a rating of 4 or 5, and sort them in increasing order.
SELECT DISTINCT year