Skip to content

Commit

Permalink
Reverted Wintersmith on ajtulloch.github.com
Browse files Browse the repository at this point in the history
Summary:

Test Plan: n/a

Reviewers:

CC:
  • Loading branch information
ajtulloch committed Nov 17, 2013
1 parent e5924c8 commit d532b4c
Show file tree
Hide file tree
Showing 95 changed files with 12,060 additions and 2,117 deletions.
3 changes: 1 addition & 2 deletions .gitignore
@@ -1,2 +1 @@
build/
node_modules/
_site
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions Makefile

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
137 changes: 0 additions & 137 deletions README.md

This file was deleted.

19 changes: 19 additions & 0 deletions Rakefile
@@ -0,0 +1,19 @@
task :build do
begin
require "fileutils"
FileUtils.rm_r "_site"
Dir.chdir("PDFs") do
Dir["*.pdf"].each do |file|
begin
FileUtils.mv file, file.delete(" ")
rescue Exception => e
end

end
end
system("jekyll --server &")
system("open", "http://localhost:4000")

end

end
4 changes: 4 additions & 0 deletions _config.yml
@@ -0,0 +1,4 @@
# Jekyll
permalink: /:year/:title/
exclude: ["Rakefile", "README.md"]
name: Andrew Tulloch
15 changes: 15 additions & 0 deletions _includes/mathjax.html
@@ -0,0 +1,15 @@
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js", "AMSmath.js"],
jax: ["input/TeX", "output/HTML-CSS"],
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\[","\]"] ],
processEscapes: true
},
});
</script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>

31 changes: 31 additions & 0 deletions _includes/scripts.html
@@ -0,0 +1,31 @@
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="/js/d3.v2.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27754379-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="/js/d3_logo.js"></script>

<script type="text/javascript">
(function(d,c){var a,b,g,e;a=d.createElement("script");a.type="text/javascript";
a.async=!0;a.src=("https:"===d.location.protocol?"https:":"http:")+
'//mixpanel.com/site_media/js/api/mixpanel.2.js';b=d.getElementsByTagName("script")[0];
b.parentNode.insertBefore(a,b);c._i=[];c.init=function(a,d,f){var b=c;
"undefined"!==typeof f?b=c[f]=[]:f="mixpanel";g=['disable','track','track_links',
'track_forms','register','register_once','unregister','identify','name_tag','set_config'];
for(e=0;e<g.length;e++)(function(a){b[a]=function(){b.push([a].concat(
Array.prototype.slice.call(arguments,0)))}})(g[e]);c._i.push([a,d,f])};window.mixpanel=c}
)(document,[]);
mixpanel.init("71aa93d0eb5d802f519ed1d98fcdbd91");
</script>
<script type="text/javascript" src="/js/mixpanel_test.js"></script>

<script type="text/javascript" src="http://use.typekit.com/lzh4sim.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
5 changes: 5 additions & 0 deletions _includes/styles.html
@@ -0,0 +1,5 @@
<link rel="stylesheet" href="/css/reset.css" type="text/css">
<link rel="stylesheet" href="/css/text.css" type="text/css">
<link rel="stylesheet" href="/css/960_12_col.css" type="text/css">
<link rel="stylesheet" href="/css/site.css" type="text/css">
<link rel="stylesheet" href="/css/syntax.css" type="text/css">
43 changes: 43 additions & 0 deletions _layouts/default.html
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>{{ site.name }}{% if page.title %} | {{ page.title }}{% endif %}</title>

{% include styles.html %}
{% include scripts.html %}
{% if page.mathjax %}
{% include mathjax.html %}
{% endif %}

</head>

<body>
<div class="container_12">
<div class="grid_10">
<h1><a href="/">Andrew Tulloch</a></h1>
<hr>
</div>
</div>

<div class="container_12">
<div class="sidebar grid_3">
<div id="d3-logo">
</div>
<ul class="nav">
<li><a href="/">Home</a></li>
<li><a href="/contact/">Contact</a></li>
<li><a href="/PDFs/AndrewTullochCV.pdf">CV</a></li>
<li><a href="/projects/LaTeX2Markdown/">LaTeX2Markdown</a></li>
</ul>
</ul>
<p>I'm Andrew Tulloch. I'm an engineer at Facebook.</p>
<p>I'm available on <a href="https://github.com/ajtulloch">GitHub</a>, <a href="http://www.linkedin.com/profile/view?id=159181862&amp;locale=en_US&amp;trk=tab_pro">LinkedIn</a>, <a href="https://twitter.com/#!/ajtulloch">Twitter</a>, and <a href="http://www.facebook.com/andrew.tulloch">Facebook</a>.</p>
</div>

<div class="main grid_7">
{{ content }}
</div>
</div>
</body>
</html>
24 changes: 24 additions & 0 deletions _layouts/post.html
@@ -0,0 +1,24 @@
---
layout: default
---

<h2 class="title"><a href="{{ page.url }}">{{ page.title }}</a></h2>
<div class="date">{{ page.date | date: "%B %e, %Y" }}</div>
{{ content }}
<hr>
<h2 id="comment-title">Comments</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'ajtulloch'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>

<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</hr>
50 changes: 50 additions & 0 deletions _layouts/project.html
@@ -0,0 +1,50 @@
<DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>{{ site.name }}{% if page.title %} | {{ page.title }}{% endif %}</title>

{% include styles.html %}
{% include scripts.html %}
{% if page.mathjax %}
{% include mathjax.html %}
{% endif %}

</head>

<body>
<div class="container_12">
<div class="grid_10">
<h1><a href="/">Andrew Tulloch</a></h1>
<hr>
</div>
</div>

<div class="container_12">
<div class="main grid_10">

<h2 class="title"><a href="{{ page.url }}">{{ page.title }}</a></h2>

{{ content }}

<hr>
<h2 id="comment-title">Comments</h2>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'ajtulloch'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>

<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</hr>
</div>
</div>
</body>
</html>
9 changes: 9 additions & 0 deletions _posts/2011-08-03-first-post.mdown
@@ -0,0 +1,9 @@
---

title: Welcome
layout: post
categories: code meta

---

Welcome! This site uses [Jekyll](http://jekyllrb.com) as a static site generator, and is hosted on [GitHub](http://www.github.com). It uses the [960.gs](http://960.gs) grid framework.

0 comments on commit d532b4c

Please sign in to comment.