Skip to content

Instantly share code, notes, and snippets.

View CodexLink's full-sized avatar
🏢
Busy on personal + on-site work.

Janrey Licas CodexLink

🏢
Busy on personal + on-site work.
View GitHub Profile
@jdah
jdah / .vimrc
Created June 14, 2021 11:54
jdh's NeoVim .vimrc
call plug#begin()
Plug 'drewtempelmeyer/palenight.vim'
Plug 'vim-airline/vim-airline'
Plug 'wlangstroth/vim-racket'
Plug 'sheerun/vim-polyglot'
Plug 'rust-lang/rust.vim'
Plug 'preservim/tagbar'
Plug 'universal-ctags/ctags'
Plug 'luochen1990/rainbow'
Plug 'vim-syntastic/syntastic'
this video was created earlier in january from a stupid idea and was driven by sheer determination
despite lacking programming skill. here's a decent description of how it was made (because i am
too lazy to write a github readme):
1. the video
i downloaded the pv off youtube and used ffmpeg to resize it down to 70x54 dimensions (for easy
math calculations, i used 27 firefox windows, 7 tabs each, so it divided nicely). i then used
ffmpeg (again) to splice the source video into 15-second segments to reduce desyncing and cpu load.
2. the frames
@Jack-Works
Jack-Works / 2018.js
Last active March 1, 2024 02:23
cRAzY eSnEXt (*all* proposals mixed in)
#! Aaaaaaaaaaa this is JS!!!
// https://github.com/tc39/proposal-hashbang
// This file is mixing all new syntaxes in the proposal in one file without considering syntax conflict or correct runtime semantics
// Enjoy!!!
// Created at Nov 23, 2018
for await(const x of (new A // https://github.com/tc39/proposal-pipeline-operator
|> do { // https://github.com/tc39/proposal-do-expressions
case(?) { // https://github.com/tc39/proposal-pattern-matching
when {val}: class {
@seunggabi
seunggabi / semantic-branch-names.md
Last active April 16, 2025 06:32
Semantic Branch Names

Semantic Branch Names

See how a minor change to your branch name style can make you a better programmer.

Format: <type>/#<issueNumber>-<alias>

Example

Zsh and Oh-My-Zsh on Ubuntu WSL

Bash on WSL is great.

But if you want a little extra from your terminal you can install zsh and oh-my-zsh pretty easily.

Prequisites

  • Ubuntu WSL

Install Zsh

PPT PC Sprint TAS Explanation (10 Tetris PC)

Current fastest TAS run (19.96 sec)

Hey everyone, thanks for watching the Sprint TAS! I'm mat1jaczyyy, and as we're smashing the limits of Puyo Puyo Tetris (PPT), it might not be entirely intuitive if these TAS runs are legit or not. How does one achieve all these Perfect Clears (PCs) so fast? How do you get the pieces you need? Why do the PCs instead of doing normal Tetrises? I'll try to explain as much as possible here so you can understand what happens in the video.

Introduction and goal

In Sprint, the goal is to clear 40 lines as fast as possible. PPT employs a lot of delays - line clear delay, piece entry delay (around 8 frames), etc. Most of the logic that goes into constructing the ideal Sprint is minimizing these delays to minimize time.

import sys
import requests
import json
from flask import Flask, request, Response
from flask_cors import CORS
from blockchain import Blockchain
app = Flask(__name__)
CORS(app)
@jpanahon
jpanahon / bot_example.py
Last active July 25, 2021 05:57 — forked from EvieePy/bot_example.py
A Cogs Example for the rewrite version of - discord.py
import discord
from discord.ext import commands
import sys, traceback
"""This is a multi file example showcasing many features of the command extension and the use of cogs.
These are examples only and are not intended to be used as a fully functioning bot. Rather they should give you a basic
understanding and platform for creating your own bot.
These examples make use of Python 3.6.2 and the rewrite version on the lib.
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active April 20, 2025 00:06
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default