All Projects → go-compression → Go Compression.github.io

go-compression / Go Compression.github.io

Licence: mit
The Hitchhiker's Guide to Compression

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Go Compression.github.io

Virgilio
Virgilio is developed and maintained by these awesome people. You can email us virgilio.datascience (at) gmail.com or join the Discord chat.
Stars: ✭ 13,200 (+12352.83%)
Mutual labels:  hacktoberfest, learning, guide
Digital video introduction
A hands-on introduction to video technology: image, video, codec (av1, vp9, h265) and more (ffmpeg encoding).
Stars: ✭ 12,184 (+11394.34%)
Mutual labels:  learning, guide, compression
Docs
The source for https://www.gobuffalo.io
Stars: ✭ 105 (-0.94%)
Mutual labels:  hacktoberfest, documentation
Mac Setup
Installing Development environment on macOS
Stars: ✭ 6,510 (+6041.51%)
Mutual labels:  hacktoberfest, guide
Bonita Doc
This repository contains the sources of the Bonita documentation site. It uses Markdown to create the documentation content.
Stars: ✭ 31 (-70.75%)
Mutual labels:  hacktoberfest, documentation
Py2rs
A quick reference guide for the Pythonista in the process of becoming a Rustacean
Stars: ✭ 690 (+550.94%)
Mutual labels:  learning, guide
Pure Bash Bible
📖 A collection of pure bash alternatives to external processes.
Stars: ✭ 28,109 (+26417.92%)
Mutual labels:  learning, guide
Tldr
📚 Collaborative cheatsheets for console commands
Stars: ✭ 36,408 (+34247.17%)
Mutual labels:  hacktoberfest, documentation
Pdoc
🐍 ➡️ 📜 Auto-generate API documentation for Python projects
Stars: ✭ 604 (+469.81%)
Mutual labels:  hacktoberfest, documentation
Docs
Documentation for Tasmota (https://github.com/arendst/Tasmota)
Stars: ✭ 55 (-48.11%)
Mutual labels:  hacktoberfest, documentation
Settingsguide
More extensive explanations of Cura slicing settings.
Stars: ✭ 55 (-48.11%)
Mutual labels:  hacktoberfest, documentation
Rust In Ten Slides
Short presentations about Rust syntax + concepts
Stars: ✭ 66 (-37.74%)
Mutual labels:  documentation, learning
Contribute To Open Source
Learn the GitHub workflow by contributing code in a fun simulation project
Stars: ✭ 684 (+545.28%)
Mutual labels:  hacktoberfest, learning
Docs
CakePHP CookBook
Stars: ✭ 653 (+516.04%)
Mutual labels:  hacktoberfest, documentation
Nvim Lua Guide
A guide to using Lua in Neovim
Stars: ✭ 750 (+607.55%)
Mutual labels:  documentation, guide
About Swiftui
Gathering all info published, both by Apple and by others, about new framework SwiftUI.
Stars: ✭ 5,954 (+5516.98%)
Mutual labels:  hacktoberfest, learning
Apispec
A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification)..
Stars: ✭ 831 (+683.96%)
Mutual labels:  hacktoberfest, documentation
Core
D Language online tour (https://tour.dlang.org/) and online editor (https://run.dlang.io/)
Stars: ✭ 89 (-16.04%)
Mutual labels:  learning, guide
Docusaurus
Easy to maintain open source documentation websites.
Stars: ✭ 29,053 (+27308.49%)
Mutual labels:  hacktoberfest, documentation
Website
The train engine powering the Coding Train website
Stars: ✭ 5,313 (+4912.26%)
Mutual labels:  hacktoberfest, learning

The Hitchhiker's Guide to Compression

Build Status

This repo contains the source Jekyll files for The Hitchhiker's Guide to Compression on GitHub Pages.

Building Locally

If you decide to contribute it may be a good idea (depending on the scope of your contribution) to build the website locally so you can build and test your changes live. This project uses Jekyll to build the static website for GitHub Pages, along with the theme, "just-the-docs".

To run the site locally or build the files, you'll need to first install Ruby.

Once installed, go ahead and install Ruby Bundler so you can install the dependencies.

$ sudo gem install bundler

Now you'll want to install the local dependencies, Bundler makes this simple (make sure you're in the project root):

$ bundle install

Now you should be able to serve the site locally with jekyll serve.

$ bundle exec jekyll serve --config _config-dev.yml
Server address: http://127.0.0.1:4000
Server running... press ctrl-c to stop.

Running Locally

To make development just a bit easier, you can also use the wonderful browser-sync NPM package which allows you to make a modification to any file, and see the change quickly without refreshing. This makes the development process easier as you don't have to constantly alt-tab between windows and hit the refresh button to see your change. However, this process is completely optional as it requires a few hundred MBs in node_modules alone and requires an installation of Node so using jekyll serve is more than enough if you don't want to worry about Node.

This project uses gulp to handle the browser reloads and proxying of jekyll for browser-sync. To get started, first make sure you have Node installed. Once node and npm are installed on your path, install the dependencies with npm install. You'll also want to install gulp globally so you can use it from your PATH.

$ npm install
$ sudo npm install -g gulp

Now, it's as simple as running gulp

$ gulp
[Browsersync] Access URLs:
-------------------------------------
       Local: http://localhost:3000
    External: http://172.21.61.88:3000
-------------------------------------
          UI: http://localhost:3001
 UI External: http://localhost:3001
-------------------------------------

You can now navigate to localhost:3000 and any changes you make to the site should now be shown live!

The Tale of Two _config.yml's

You may wonder why you use the _config-dev.yml to run it locally instead of just the _config.yml, and the answer is that GitHub Pages doesn't like complicated build processes.

The _config-dev.yml is what's used to build the site locally and by Travis CI, once built Travis will upload the compiled files to the gh-pages branch. Once pushed, GitHub Pages will use the _travis.yml file to serve the compiled site from the docs/ folder. This means that you can use any Jekyll build process you want, and GitHub Pages will serve the compiled version.

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].