All Projects → jokecamp → Jokecamp.com

jokecamp / Jokecamp.com

personal blog and website

Programming Languages

csharp
926 projects

Projects that are alternatives of or similar to Jokecamp.com

Paper
A gentle theme for Jekyll utilising material design.
Stars: ✭ 50 (-36.71%)
Mutual labels:  blog, jekyll
Einverne.github.io
personal blog,using jekyll-bootstrap,powered by github page
Stars: ✭ 55 (-30.38%)
Mutual labels:  blog, jekyll
Derrick
🙌 Derrick is a clean minimal and fast theme for a personal blog.
Stars: ✭ 51 (-35.44%)
Mutual labels:  blog, jekyll
Netlify Plugin Ghost Markdown
Returns Ghost content as markdown files for static site generators like Jekyll to consume.
Stars: ✭ 46 (-41.77%)
Mutual labels:  jekyll, markdown
Markdownmonster
An extensible Markdown Editor, Viewer and Weblog Publisher for Windows
Stars: ✭ 1,203 (+1422.78%)
Mutual labels:  blog, markdown
Typecho
A PHP Blogging Platform. Simple and Powerful.
Stars: ✭ 8,417 (+10554.43%)
Mutual labels:  blog, markdown
Zjiajun.github.io
My blog. Powered by Jekyll
Stars: ✭ 52 (-34.18%)
Mutual labels:  blog, jekyll
Leo Blog
My 🏡 on the ☁️
Stars: ✭ 27 (-65.82%)
Mutual labels:  blog, markdown
Yizibi.github.io
✍️科学尚未普及,这里是唯一能让我找到自己的人,人生这么短,需要做点什么,😝,如果你来了,就顺手给个 star ,欢迎Fork,谢谢!
Stars: ✭ 61 (-22.78%)
Mutual labels:  blog, markdown
Cv
A resume template written in Markdown,Yaml JSON auto generates github-pages website & PDF by Jekyll. 在线简历生成模板(超高兼容可导PDF)
Stars: ✭ 61 (-22.78%)
Mutual labels:  jekyll, markdown
Chalk
Chalk is a high quality, completely customizable, performant and 100% free Jekyll blog theme.
Stars: ✭ 987 (+1149.37%)
Mutual labels:  blog, jekyll
Znlbwo.github.io
Stars: ✭ 65 (-17.72%)
Mutual labels:  blog, jekyll
Jessesquires.com
Turing complete with a stack of 0xdeadbeef
Stars: ✭ 31 (-60.76%)
Mutual labels:  blog, jekyll
Buildtimes
✏️ Musings on building (and breaking) websites
Stars: ✭ 76 (-3.8%)
Mutual labels:  blog, jekyll
Blog
My blog created with React, Gatsby & Markdown
Stars: ✭ 29 (-63.29%)
Mutual labels:  blog, markdown
New website
a fork of https://jonbarron.info/ for use in jekyll builds with markdown page updates
Stars: ✭ 51 (-35.44%)
Mutual labels:  jekyll, markdown
Blog
Share
Stars: ✭ 13 (-83.54%)
Mutual labels:  blog, markdown
Android10.github.io
Jekyll project for blog: fernandocejas.com.
Stars: ✭ 15 (-81.01%)
Mutual labels:  blog, jekyll
Blog Generator
static blog generator for my blog at https://zupzup.org/
Stars: ✭ 57 (-27.85%)
Mutual labels:  blog, markdown
Microdust
My personal blog Microdust
Stars: ✭ 63 (-20.25%)
Mutual labels:  blog, jekyll

Joe Kampschmidt's (Joe's Code) Personal Website/Blog

Source code for https://www.jokecamp.com

The website is a static site built with Poole and Jekyll.

To test change to the project directory and run the following command

jekyll serve --watch

Then browse to http://localhost:4000/

Pull requests will be accepted for any typos or editing and your contribution will be credited.

Asset Pipeline

https://github.com/matthodan/jekyll-asset-pipeline/blob/master/README.md

  • gem install jekyll-asset-pipeline
  • gem install yui-compressor

Script to Compress static content

See https://members.nearlyfreespeech.net/wiki/HowTo/GzipStatic

Run on unix web server

#!/usr/local/bin/perl

# This script should be uploaded to the web server.

use warnings;
use strict;
use File::Find;
find (\&wanted, ("."));
sub wanted
{
 if (/(.*\.(?:html|htm|css|js)$)/i) {
     print "Compressing $File::Find::name\n";
     system ("gzip --keep --best --force $_");
 }
}

To Deploy

jekyll serve
git commit -m "
git push origin master
./deploy.sh
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].