This file contains 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
# Simple plugin for hashing assets in Jekyll and adding a fragment of the | |
# hash to the file's path as a query string. | |
# | |
# Example: | |
# | |
# <link rel="stylesheet" href="/{% bust css/main.css %}"> | |
# | |
# Outputs: | |
# | |
# <link rel="stylesheet" href="/css/main.css?5bbb9e1"> |
This file contains 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
// | |
// slotmap.h | |
// | |
// A slot map type, based on Sean Barrett's stretchy_buffer, except with a fixed-size freelist, to | |
// reuse slots. So basically, the layout looks like this: | |
// | |
// | freelist (alloc * u32) | alloc | len | freelist_len | ... actual items ... | | |
// | |
// You can't 'push' on to the slot map. Everything is kept unordered. | |
// (So you'll need to used linked-list strategies or an external list to order this.) |
This file contains 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
machine api.github.com | |
login your-username | |
password your-40-char-token |
This file contains 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
REBOL [ | |
Title: "Red/System AVR8 code emitter" | |
Author: "Nenad Rakocevic" | |
File: %AVR8.r | |
Rights: "Copyright (C) 2011 Nenad Rakocevic. All rights reserved." | |
License: "BSD-3 - https://github.com/dockimbel/Red/blob/master/BSD-3-License.txt" | |
] | |
make target-class [ | |
target: 'AVR-8 |