This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
obj-m += misc_example.o | |
KDIR := ~/kernel | |
PWD := $(shell pwd) | |
CROSS=arm-eabi- | |
all: | |
make -C $(KDIR) M=$(PWD) modules | |
NewerOlder