Skip to content

Commit b3f4729

Browse files
committed
couple new resources and working on next post
1 parent 401eddb commit b3f4729

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

content/pages/07-web-development/34-pelican.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,6 @@ server during the response.
7171
is a tutorial I wrote to use the Full Stack Python source code to create
7272
and deploy your first static site.
7373

74+
* [Moving blogs to Pelican](http://arunrocks.com/moving-blogs-to-pelican/)
75+
talks about one developer's transition from Jekyll to Pelican for his
76+
own sites.

content/pages/10-web-apis/14-twilio.markdown

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,13 @@ for fellow developers.
9696
[Easypost](https://www.easypost.com) to track packages sent through the
9797
Easypost service.
9898

99+
* This video titled
100+
"[We're No Strangers to VoIP: Building the National Rick Astley Hotline)](https://www.youtube.com/watch?v=LgKshQoGh64)"
101+
presents a hilarious hack that uses Python and
102+
[AWS Lambda](/aws-lambda.html) as a [serverless](/serverless.html)
103+
backend to power thousands of Rick Rolling calls in several countries
104+
with Twilio.
105+
99106

100107
#### Disclaimer
101108
I [currently work at Twilio](/about-author.html) as a

content/posts/170531-static-sites-pelican.markdown

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,42 @@ favorite [retro synthwave](https://www.youtube.com/watch?v=uYRZV8dV10w)
9595
artists as examples, but of course your site can contain whatever subjects
9696
that you want.
9797

98+
```bash
99+
(staticsite) $ pelican-quickstart
100+
```
101+
102+
```bash
103+
(staticsite) $ pelican-quickstart
104+
Welcome to pelican-quickstart v3.7.1.
105+
106+
This script will help you create a new Pelican-based website.
107+
108+
Please answer the following questions so this script can generate the files
109+
needed by Pelican.
110+
111+
112+
> Where do you want to create your new web site? [.]
113+
> What will be the title of this web site? RetroSynthwave
114+
> Who will be the author of this web site? Matt Makai
115+
> What will be the default language of this web site? [en]
116+
> Do you want to specify a URL prefix? e.g., http://example.com (Y/n) n
117+
> Do you want to enable article pagination? (Y/n) n
118+
> What is your time zone? [Europe/Paris] America/New_York
119+
> Do you want to generate a Fabfile/Makefile to automate generation and publishing? (Y/n)y
120+
> Do you want an auto-reload & simpleHTTP script to assist with theme and site development? (Y/n) y
121+
> Do you want to upload your website using FTP? (y/N) n
122+
> Do you want to upload your website using SSH? (y/N) n
123+
> Do you want to upload your website using Dropbox? (y/N) n
124+
> Do you want to upload your website using S3? (y/N) y
125+
> What is the name of your S3 bucket? [my_s3_bucket]
126+
> Do you want to upload your website using Rackspace Cloud Files? (y/N) n
127+
> Do you want to upload your website using GitHub Pages? (y/N) n
128+
Done. Your new project is available at /Users/matt/devel/py/retrosynth
129+
(staticsite) $
130+
```
131+
132+
133+
## Serve your site
98134

99135

100136
## What's next?

0 commit comments

Comments
 (0)