Adding content, first pass at first part
parent
6fa1144ed9
commit
f4d8fb6b33
@ -1,11 +1,12 @@
|
|||||||
<div class="slide slide-{{id}}">
|
<div class="slide slide-{{id}}">
|
||||||
<div class="copy"></div>
|
<div class="copy"></div>
|
||||||
{{#code}}
|
{{#code}}
|
||||||
|
<section class="code-layout">
|
||||||
<pre><code class="language-javascript"></code></pre>
|
<pre><code class="language-javascript"></code></pre>
|
||||||
<button class="request" data-env="phantomjs-1.9.8">phantomjs-1.9.8</button>
|
<button class="request" data-env="phantomjs-1.9.8">PhantomJS v1.9.8</button>
|
||||||
<button class="request" data-env="phantomjs-2.0.0">phantomjs-2.0.0</button>
|
<button class="request" data-env="phantomjs-2.0.0">PhantomJS v2.0.0</button>
|
||||||
<button class="request" data-env="node">node</button>
|
<button class="request" data-env="node">Node v0.10.36</button>
|
||||||
<pre><code class="stdout"></code></pre>
|
<button class="request" data-env="clear">Code</button>
|
||||||
<pre><code class="stderr"></code></pre>
|
</section>
|
||||||
{{/code}}
|
{{/code}}
|
||||||
</div>
|
</div>
|
||||||
|
Binary file not shown.
After Width: | Height: | Size: 109 KiB |
@ -0,0 +1,10 @@
|
|||||||
|
var webpage = require('webpage');
|
||||||
|
var page = webpage.create();
|
||||||
|
|
||||||
|
page.viewportSize = {width: 1280, height: 720};
|
||||||
|
|
||||||
|
page.open('http://phantomjs.org', function() {
|
||||||
|
page.render('phantomjs.png');
|
||||||
|
console.log('created phantomjs.png');
|
||||||
|
phantom.exit();
|
||||||
|
});
|
@ -0,0 +1,7 @@
|
|||||||
|
# About Me
|
||||||
|
|
||||||
|
- Hi, I'm Buddy ☺
|
||||||
|
- Not affiliated with PhantomJS in any way
|
||||||
|
- Principal Software Engineer at Convertro/AOL (we're hiring)
|
||||||
|
- Full Stack engineer (JavaScript, Go, Python, etc)
|
||||||
|
- Like motorcycles, math, science and obnoxious 80's punk
|
@ -0,0 +1,3 @@
|
|||||||
|
# Developer Definition:
|
||||||
|
|
||||||
|
## PhantomJS is a **JavaScript runtime** that gives access to native **Qt/WebKit** objects.
|
@ -0,0 +1,3 @@
|
|||||||
|
# Simple Definition:
|
||||||
|
|
||||||
|
## Headless Web Browser
|
@ -0,0 +1 @@
|
|||||||
|
# JavaScript Runtime
|
@ -0,0 +1 @@
|
|||||||
|
# PhantomJS
|
@ -0,0 +1,3 @@
|
|||||||
|
# PhantomJS
|
||||||
|
|
||||||
|
![PhantomJS webpage screenshot](/static/images/phantomjs.png "PhantomJS")
|
@ -1,3 +1,7 @@
|
|||||||
# PhantomJS Under the Hood
|
# PhantomJS Under the Hood
|
||||||
|
|
||||||
- Buddy Sandidge
|
## Buddy Sandidge
|
||||||
|
|
||||||
|
- [github.com/xbudex/phantom-talk](https://github.com/xbudex/phantom-talk)
|
||||||
|
|
||||||
|
- buddy.sandidge@gmail.com
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
{
|
{
|
||||||
"copy": "title",
|
"copy": "title"
|
||||||
"code": "prototypes"
|
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"copy": "define"
|
"copy": "about"
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"copy": "screen-shot"
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"copy": "only-title",
|
||||||
|
"code": "phantom-webpage-screenshot"
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"copy": "define-developer"
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"copy": "js-runtime",
|
||||||
|
"code": "prototypes"
|
||||||
|
}
|
Loading…
Reference in New Issue