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
<!-- content to be placed inside <body>…</body> --> | |
<div id="wrapper"> | |
<div id="box1"></div> | |
<div id="box2"></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
#!/bin/bash | |
KUMA_ROOT=/path/to/kuma | |
pushd . | |
# https://www.youtube.com/watch?v=ckIMuvumYrg | |
vagrant halt | |
find . -name "*.pyc" -exec rm -rf {} \; &&\ | |
rm -rf puppet/cache &&\ |
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
// Basic Neural Network Subroutines (BNNS) | |
#ifndef __BNNS_HEADER__ | |
#define __BNNS_HEADER__ | |
#include <stddef.h> | |
#include <stdint.h> | |
#ifdef __cplusplus | |
extern "C" { |