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
Date | Open | High | Low | Close | Volume | Adj Close | |
---|---|---|---|---|---|---|---|
2013-11-07 | 37.96 | 38.01 | 37.43 | 37.50 | 60437400 | 37.50 | |
2013-11-06 | 37.24 | 38.22 | 37.06 | 38.18 | 88615100 | 38.18 | |
2013-11-05 | 35.79 | 36.71 | 35.77 | 36.64 | 51646300 | 36.64 | |
2013-11-04 | 35.59 | 35.98 | 35.55 | 35.94 | 28060700 | 35.94 | |
2013-11-01 | 35.67 | 35.69 | 35.39 | 35.53 | 40264600 | 35.53 | |
2013-10-31 | 35.66 | 35.69 | 35.34 | 35.41 | 41682300 | 35.41 | |
2013-10-30 | 35.53 | 35.79 | 35.43 | 35.54 | 36997700 | 35.54 | |
2013-10-29 | 35.63 | 35.72 | 35.26 | 35.52 | 31702200 | 35.52 | |
2013-10-28 | 35.61 | 35.73 | 35.27 | 35.57 | 38383600 | 35.57 |
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
/******************************************************************************* | |
* Description: | |
* | |
* Gulp file to push changes to remote servers (eg: staging/production) | |
* | |
* Usage: | |
* | |
* gulp deploy --target | |
* | |
* Examples: |
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
<head> | |
<script src='https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.10.3/babel.min.js'></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.5/d3.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.9/topojson.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.2.0/zepto.js"></script> | |
<style> | |
body { | |
width: 100%; |
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 id="graph"> | |
</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
<div id="chart"> | |
<div id="tooltip" class="tooltip"> | |
<span id="Date"> | |
</span> | |
<span id="Temp"> | |
</span> | |
<span id="Variance"> |
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 id="chart"> | |
<div id="tooltip" class="tooltip"> | |
<span id="AthleteInfo1"> | |
</span> | |
<span id="AthleteInfo2"> | |
</span> |
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
(ns chunked-line-seq | |
(:require [clojure.java.io :as io])) | |
(defn chunked-line-seq [file-name & {:keys [chunck-size] :or {chunck-size 1000}}] | |
(let [rd (io/reader (io/input-stream (io/file file-name))) | |
eof&? (atom false) | |
chunck-lines (fn [ ] | |
(seq (loop [lines (transient [] ) counter 0] | |
(if-let [line (.readLine rd)] |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <dlfcn.h> | |
#include "lua.h" | |
#include "lualib.h" | |
#include "lauxlib.h" | |
//We declare a function pointer for the function to import (int myfunction(int) ) |
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
=begin overview | |
This is the grammar for Clojure in Perl 6 rules. | |
=end overview | |
grammar PClojure::Grammar is HLL::Grammar; | |
token TOP {^ <form>* $} |
OlderNewer