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
pub fn main() !void { | |
var buffer: [100]u8 = undefined; | |
var fba = std.heap.FixedBufferAllocator.init(&buffer); | |
const allocator = fba.allocator(); | |
var seen: [26]bool = undefined; | |
var seenCount: u8 = 0; | |
var i: usize = 0; | |
while (i < seen.len) : (i += 1) { | |
seen[i] = false; |
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
export { urlWritebackPlugin } from "src/urlWritebackPlugin"; | |
export { jiraNotification } from "src/jiraNotification"; |
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
var img = new Image(); | |
img.src = 'img/assets/background.png'; | |
var int = setInterval(function() { | |
if (img.complete) { | |
clearInterval(int); | |
document.getElementById('content').setAttribute('style', 'background-image: url(' + img.src + '); opacity:1;'); | |
} | |
}, 50); |