Skip to content

Instantly share code, notes, and snippets.

View tynrare's full-sized avatar
🏠
Working from home

tynrare tynrare

🏠
Working from home
View GitHub Profile
@tynrare
tynrare / sacheatsheet-v1.md
Last active January 6, 2025 11:03
SA-cheatsheet

ANOSEONGLASS

ANOSEONGLASS<br>MUNASEF<br>TAKEACHILLPILL*

*Adrenaline effects *:


HESOYAM

@tynrare
tynrare / index.md
Last active December 29, 2024 17:39
tynr.art: gist.github.com
<canvas id="level_canvas_d0" width="64" height="64"></canvas>

<script>
console.log("tynr.art: level_canvas_d0");
const canvas = document.querySelector("#level_canvas_d0") ?? null;
const ctx = canvas.getContext("2d");
ctx.fillStyle = "#FF0000";
ctx.fillRect(0, 0, 4, 4);
@tynrare
tynrare / index.md
Last active April 11, 2024 01:29
log-tim_dim-220615
@tynrare
tynrare / ClassTemplate.js
Created January 18, 2022 12:41
Most generic javascript ES6 class file template
/**
* This file provides basic structure for any JS class in my projects
* Don't forget to use doxygen comments https://jsdoc.app/
* This file linted with strict eslint rules https://eslint.org/
* Use prettier to format your files https://prettier.io/
*
* @file ClassTemplate.js
* @author tynrare
* @version 1
* @module Templates
@tynrare
tynrare / init.vim
Created October 9, 2021 23:33
dust-init.vim (neovim rc)
" color schemes
if (has("termguicolors"))
set termguicolors
endif
syntax enable
" colorscheme evening
colorscheme tender
let g:airline_theme='tender'
@tynrare
tynrare / .vimrc
Last active October 9, 2021 23:32
dust-vimrc-0
set nocompatible " be iMproved, required
filetype on " required
syntax on
set encoding=utf-8
let g:airline_powerline_fonts = 1
let g:vim_markdown_folding_disabled = 1
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<!-- # Body -->
<body
style="-moz-user-select: none; -webkit-user-select: none; -ms-user-select:none; user-select:none;-o-user-select:none;"
<!DOCTYPE html>
<html>
<head>
</head>
<!-- # Body -->
<body>
<div class="dust-center-0">
@tynrare
tynrare / links.md
Last active January 5, 2024 07:16
stream-dump
@tynrare
tynrare / general.md
Last active August 27, 2020 15:46
Snippets

Launch python live server

$ python -m http.server