Skip to content

Instantly share code, notes, and snippets.

View Vic-ST's full-sized avatar
🔌
☎️

Steven Vic-ST

🔌
☎️
View GitHub Profile
@Vic-ST
Vic-ST / Battleships.py
Last active August 24, 2017 14:32
A battleship game
from random import randint
board = []
board2 = []
for x in range(11):
board.append(["O"] * 11)
for x in range(11):
board2.append(["V"] * 11)
@blueboxes
blueboxes / JS13KGamesResources.md
Last active August 13, 2018 06:53
This is a list of useful links, resources and tutorials for creating an JS13K Games entry. The items are in no particular order. Please feel free to suggest additions or edits to the list.
@asabaylus
asabaylus / gist:3071099
Created July 8, 2012 14:12
Github Markdown Heading Anchors

Anchors in Markdown

To create an anchor to a heading in github flavored markdown. Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading) so your link should look like so:

[create an anchor](#anchors-in-markdown)

@rogerallen
rogerallen / us_state_abbrev.py
Last active April 19, 2024 14:04
A Python Dictionary to translate US States to Two letter codes
# United States of America Python Dictionary to translate States,
# Districts & Territories to Two-Letter codes and vice versa.
#
# Canonical URL: https://gist.github.com/rogerallen/1583593
#
# Dedicated to the public domain. To the extent possible under law,
# Roger Allen has waived all copyright and related or neighboring
# rights to this code. Data originally from Wikipedia at the url:
# https://en.wikipedia.org/wiki/ISO_3166-2:US
#