Skip to content

Instantly share code, notes, and snippets.

View SeaniaTwix's full-sized avatar
💭
Working

Seania Twix SeaniaTwix

💭
Working
View GitHub Profile
@DeflatedPickle
DeflatedPickle / MinecraftEnergyTypes.md
Last active May 30, 2024 17:44
A simple table for Minecraft energy types and a matrix for conversion rates.

Minecraft Energy Types


Energy Name Abbreviation Original Mod Version
Anima AM Anima-Mundi 1.11.2
Blutricity BE (NO) Redpower 1.6.4
Charge RP (NO)/Fz? Factorization 1.7.10
Crystal Flux CF Actually Additions 1.12
@LeoHeo
LeoHeo / tmux command basic.md
Last active January 17, 2024 12:22
기본적인 tmux 사용법

Tmux Command

mac 기준으로 Tmux 설치부터 기본적인 명령어를 알아가고자 한다.
Tutorial용으로 참고할만한 블로그는 아래와같다.
Tmux-Part1 Tmux-Part2

Install

@yonatanmn
yonatanmn / Trie.js
Created April 18, 2016 16:20
Trie for autocomplete in JS
function wordToLtrsArr(w){return w.split('')}
function tail(arr){return arr.slice(1)}
function goTo(o,wp){
if(!wp.length){return o}
var firstLetter = wp[0];
var point = o[firstLetter];
@neumino
neumino / gist:6554108
Created September 13, 2013 18:11
Filtering nested arrays with RethinkDB
r.table("test").filter( function(doc) {
return doc("adresses").contains(function(adress) {
return adress("city").eq("Paris")
})
})
/*
{
@Vesnica
Vesnica / xfl.erl
Created February 2, 2013 20:10
.xfl extractor (Liar Soft)
-module(xfl).
-author("Wisher").
-email("hustitecwisher@gmail.com").
-export([extract/1]).
% All bgm is ogg format, but have a 66 bytes fake wave header.(Liar...)
extract(File) ->
{ok, Bin} = file:read_file(File),