Skip to content

Instantly share code, notes, and snippets.

View elifnurkarakoc's full-sized avatar
👩‍💻

Elif Nur Karakoç elifnurkarakoc

👩‍💻
View GitHub Profile
@meseven
meseven / vscode-settings.json
Created September 19, 2021 12:02
vscode settings
{
"workbench.iconTheme": "material-icon-theme",
"explorer.confirmDragAndDrop": false,
"terminal.integrated.fontSize": 18,
"prettier.printWidth": 100,
"prettier.trailingComma": "all",
"editor.tabCompletion": "on",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
@gaearon
gaearon / minesweeper.html
Last active December 24, 2024 13:16
minesweeper (incomplete/simplfied). stream: https://www.youtube.com/watch?v=CL01_m50TYY
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div id="canvas"></div>
<button id="restart">Restart</button>
<script src="minesweeper.js"></script>
<style>
* {