See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #!/bin/sh | |
| echo "Fetching 5.4.8 MFIL" | |
| BASE_URL="http://dist.blizzard.com.edgesuite.net" | |
| if [ ! -f "wow-18414-447E3E618F731CCBF4F7D2C4E56C5644.mfil" ]; then | |
| curl -L# "${BASE_URL}/wow-pod-retail/NA/15890.direct/wow-18414-447E3E618F731CCBF4F7D2C4E56C5644.mfil" -o "wow-18414-447E3E618F731CCBF4F7D2C4E56C5644.mfil" | |
| fi | |
| echo "Creating game folder 5.4.8" | |
| mkdir -p 5.4.8 |
| //Program that outputs all PS2 scancodes via serial | |
| #define BUFFER_SIZE 45 | |
| static volatile uint8_t buffer[BUFFER_SIZE]; | |
| static volatile uint8_t head, tail; | |
| #define DATA_PIN 10 | |
| #define IRQ_PIN 3 | |
| // The ISR for the external interrupt |
| # Poker II Firmware disassembly help tool. | |
| original = IO.read("./Poker II original firmware.bin") | |
| extracted = "" | |
| original.each_byte{|b| | |
| m = (((b & 0x0f) << 4) | ((b & 0xf0) >> 4)) ^ 0xff | |
| extracted << m.chr | |
| } | |
| puts extracted |