Skip to content

Instantly share code, notes, and snippets.

View rrmhearts's full-sized avatar

Ryan rrmhearts

View GitHub Profile
@rrmhearts
rrmhearts / flip_edges.txt
Created March 19, 2019 02:29
Flip last edges of Rubik's cube
Flip last two edges in place. Front-top edge and left-top edge.
For this example, an algorithm that is more simple to remember,
and can be altered for the other case (opposite edges), is this:
F' E F2 E2 F' U' F E2 F2 E' F and U.
Replace U and U' with U2 for the case of flipping two opposite edges on top face.
(E is the equatorial slice, viewed from face U)
@rrmhearts
rrmhearts / index.html
Created February 17, 2019 02:51
Loading Clock 2
<div class="loader">
<div class="inner one"></div>
<div class="inner two"></div>
<div class="time">
<div id="hour"></div>
<div id="minute"></div>
<div id="second"></div>
</div>
</div>
@rrmhearts
rrmhearts / Makefile
Last active October 9, 2019 14:46
Example Linux Misc Module
obj-m += misc_example.o
KDIR := ~/kernel
PWD := $(shell pwd)
CROSS=arm-eabi-
all:
make -C $(KDIR) M=$(PWD) modules