Skip to content

Commit

Permalink
json
Browse files Browse the repository at this point in the history
  • Loading branch information
Samay Shamdasani committed Jun 5, 2018
1 parent 24c2017 commit 3029f38
Show file tree
Hide file tree
Showing 36 changed files with 116 additions and 59 deletions.
2 changes: 1 addition & 1 deletion _site/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
7 changes: 4 additions & 3 deletions _site/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down Expand Up @@ -88,7 +88,7 @@ <h2 id="contribute-by-adding-your-projects--tutorials">Contribute by adding your

<h4 id="pull-request">Pull request</h4>
<ul>
<li>Fork this repository</li>
<li>Fork <a href="https://github.com/tryenlight/enlight">this repository</a></li>
<li>Put the tutorial text in a <code class="highlighter-rouge">.md</code> file in the <code class="highlighter-rouge">_posts</code> directory and the source code in a folder in the <code class="highlighter-rouge">demo</code> directory, We used <a href="https://jekyllrb.com/">jekyll</a> to build the site, So for test and debugging you should <a href="https://jekyllrb.com/docs/installation/">install jekyll</a> and serve it with <code class="highlighter-rouge">jekyll serve</code> command.</li>
<li>Submit a <a href="https://github.com/TryEnlight/tryenlight.github.io/pulls">pull request</a></li>
</ul>
Expand All @@ -105,7 +105,8 @@ <h3 id="who-runs-this-thing">Who runs this thing?</h3>
<p>Feel free to shoot me an <strong><a href="mailto:[email protected]">email</a></strong> if you have any suggestions, opportunities, or if you’d just like to talk! 😎</p>

<h3 id="contributors">Contributors</h3>
<p><a class="link white" href="https://ichauster.github.io/">Ivan Chau</a><br />
<p><a class="link white" href="mailto:[email protected]">Thomas Narramore</a><br />
<a class="link white" href="https://ichauster.github.io/">Ivan Chau</a><br />
<a class="link white" href="https://kabir.ml">Kabir Shah</a><br /></p>

</div>
Expand Down
2 changes: 1 addition & 1 deletion _site/clock.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/code-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/crypto.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
28 changes: 28 additions & 0 deletions _site/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"projects" : [
{
"title": "Snowglobe",
"description": "test",
"language": "three.js",
"imageURL": "https://enlight.nyc/img/snowglobe.gif",
"difficulty": "easy",
"url": "https://enlight.nyc/snowglobe-threejs"
},
{
"title": "Neural Network",
"description": "test",
"language": "python",
"imageURL": "https://enlight.nyc/img/nn.png",
"difficulty": "hard",
"url": "https://enlight.nyc/neural-network"
},
{
"title": "Real Time Chat App",
"description": "test",
"language": "node.js",
"imageURL": "https://enlight.nyc/img/nodejs-chat.gif",
"difficulty": "intermediate",
"url": "https://enlight.nyc/nodejs-chat"
}
]
}
2 changes: 1 addition & 1 deletion _site/demo/machine-learning/NeuralNetwork/NeuralNetwork.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def predict(self):
print "Output: \n" + str(self.forward(xPredicted));

NN = Neural_Network()
for i in xrange(100000): # trains the NN 100,000 times
for i in xrange(1000): # trains the NN 100,000 times
print " #" + str(i) + "\n"
print "Input (scaled): \n" + str(X)
print "Actual Output: \n" + str(y)
Expand Down
4 changes: 2 additions & 2 deletions _site/demo/machine-learning/NeuralNetwork/w1.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0.403662178801 -0.0712561066675 -0.500556148181
1.61842262011 -1.30644707145 -0.232301025936
1.888968495349414 -0.3629309730573738 0.26142057913786765
0.5326617437123259 1.036029449354493 -1.4026006738825019
6 changes: 3 additions & 3 deletions _site/demo/machine-learning/NeuralNetwork/w2.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
3.08095243606
-2.30340067162
0.660860099087
1.8576556681322145
0.6485741212951829
0.529103268776146
2 changes: 1 addition & 1 deletion _site/email/nn.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/ethereum-token.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/git.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/guess-number.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/hex-color-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/ml.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/neural-network.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/nodejs-chat.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/python.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
2 changes: 1 addition & 1 deletion _site/quote.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
30 changes: 15 additions & 15 deletions _site/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<url>
<loc>http://0.0.0.0:4000/snowglobe-threejs</loc>

<lastmod>2018-03-02T00:00:00-05:00</lastmod>
<lastmod>2018-03-02T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -13,7 +13,7 @@
<url>
<loc>http://0.0.0.0:4000/ethereum-token</loc>

<lastmod>2018-01-14T00:00:00-05:00</lastmod>
<lastmod>2018-01-14T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -22,7 +22,7 @@
<url>
<loc>http://0.0.0.0:4000/stock-market-prediction</loc>

<lastmod>2017-12-15T00:00:00-05:00</lastmod>
<lastmod>2017-12-15T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -31,7 +31,7 @@
<url>
<loc>http://0.0.0.0:4000/neural-network</loc>

<lastmod>2017-08-02T00:00:00-04:00</lastmod>
<lastmod>2017-08-02T00:00:00-07:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -40,7 +40,7 @@
<url>
<loc>http://0.0.0.0:4000/twitter-bot</loc>

<lastmod>2017-06-14T00:00:00-04:00</lastmod>
<lastmod>2017-06-14T00:00:00-07:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -49,7 +49,7 @@
<url>
<loc>http://0.0.0.0:4000/guess-number</loc>

<lastmod>2017-02-28T00:00:00-05:00</lastmod>
<lastmod>2017-02-28T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -58,7 +58,7 @@
<url>
<loc>http://0.0.0.0:4000/nodejs-chat</loc>

<lastmod>2017-02-12T00:00:00-05:00</lastmod>
<lastmod>2017-02-12T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -67,7 +67,7 @@
<url>
<loc>http://0.0.0.0:4000/web-paint</loc>

<lastmod>2016-12-26T00:00:00-05:00</lastmod>
<lastmod>2016-12-26T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -76,7 +76,7 @@
<url>
<loc>http://0.0.0.0:4000/weather</loc>

<lastmod>2016-12-26T00:00:00-05:00</lastmod>
<lastmod>2016-12-26T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -85,7 +85,7 @@
<url>
<loc>http://0.0.0.0:4000/code-editor</loc>

<lastmod>2016-12-26T00:00:00-05:00</lastmod>
<lastmod>2016-12-26T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -94,7 +94,7 @@
<url>
<loc>http://0.0.0.0:4000/hex-color-generator</loc>

<lastmod>2016-12-26T00:00:00-05:00</lastmod>
<lastmod>2016-12-26T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -103,7 +103,7 @@
<url>
<loc>http://0.0.0.0:4000/clock</loc>

<lastmod>2016-12-26T00:00:00-05:00</lastmod>
<lastmod>2016-12-26T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -112,7 +112,7 @@
<url>
<loc>http://0.0.0.0:4000/text-editor</loc>

<lastmod>2016-12-25T00:00:00-05:00</lastmod>
<lastmod>2016-12-25T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -121,7 +121,7 @@
<url>
<loc>http://0.0.0.0:4000/quote</loc>

<lastmod>2016-12-25T00:00:00-05:00</lastmod>
<lastmod>2016-12-25T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand All @@ -130,7 +130,7 @@
<url>
<loc>http://0.0.0.0:4000/to-do</loc>

<lastmod>2016-12-24T00:00:00-05:00</lastmod>
<lastmod>2016-12-24T00:00:00-08:00</lastmod>

<changefreq>weekly</changefreq>
<priority>1.0</priority>
Expand Down
8 changes: 4 additions & 4 deletions _site/snowglobe-threejs.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

<title>Build a Snowglobe with Three.js</title>
<link rel="canonical" href="https://enlight.nyc/snowglobe-threejs">
<meta name="description" content="Build a ERC20 token on top of the Ethereum blockchain.">
<meta name="description" content="Use Three.js to develop an interactive winter scene.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@tryenlight" />
<meta name="twitter:title" content="Build a Snowglobe with Three.js" />
<meta name="twitter:description" content="Build a ERC20 token on top of the Ethereum blockchain." />
<meta name="twitter:description" content="Use Three.js to develop an interactive winter scene." />
<meta name="twitter:image" content="https://enlight.nyc/img/snowglobe.gif" />
<meta property="og:title" content="Build a Snowglobe with Three.js">
<meta property="og:description" content="Build a ERC20 token on top of the Ethereum blockchain.">
<meta property="og:description" content="Use Three.js to develop an interactive winter scene.">
<meta property="og:url" content="http://0.0.0.0:4000/snowglobe-threejs">
<meta property="og:image" content="https://enlight.nyc/img/snowglobe.gif" />

Expand All @@ -23,7 +23,7 @@


<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.7.0/tachyons.min.css" />
<link href="/style.css?1520046645830141000" rel="stylesheet" />
<link href="/style.css?1528238029769674000" rel="stylesheet" />
<link href="/syntax.css" rel="stylesheet" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
Expand Down
Loading

0 comments on commit 3029f38

Please sign in to comment.