Skip to content

Instantly share code, notes, and snippets.

@ziqew
ziqew / custom_game_engines_small_study.md
Created April 25, 2020 00:50 — forked from raysan5/custom_game_engines_small_study.md
A small state-of-the-art study on custom engines

CUSTOM GAME ENGINES: A Small Study

a_plague_tale

A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a relatively small studio. I know there are some companies using custom engines but it's very difficult to find a detailed market study with that kind of information curated and updated. So this article.

Nowadays lots of companies choose engines like Unreal or Unity for their games (or that's what lot of people think) becaus

@ziqew
ziqew / ocata-template.rst
Created December 18, 2019 05:57
ocata-template.rst

Example Spec - The title of your blueprint

@ziqew
ziqew / design_spec_template.md
Created December 18, 2019 05:49
design_spec_template
  • Feature Name: (fill me in with a unique ident, my_awesome_feature)
  • Start Date: (fill me in with today's date, YYYY-MM-DD)
  • RFC PR: (leave this empty)
  • Stan Issue: (leave this empty)

Summary

One paragraph explanation of the feature.

version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.4.3
environment:
- http.host=0.0.0.0
- transport.host=0.0.0.0
- transport.tcp.port=9300
@ziqew
ziqew / rfc-template.md
Created April 5, 2019 14:37 — forked from michaelcurry/rfc-template.md
RFC Template [Markdown]

RFC Template

Feature Name: (fill me in with a unique identity, myawesomefeature)

Type: (feature, enhancement)

Start Date: (fill me in with today's date, YYYY-MM-DD)

Author: (your names)

@ziqew
ziqew / pandoc.css
Created February 10, 2019 12:36 — forked from killercup/pandoc.css
Add this to your Pandoc HTML documents using `--css pandoc.css` to make them look more awesome. (Tested with Markdown and LaTeX.)
/*
* I add this to html files generated with pandoc.
*/
html {
font-size: 100%;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
@ziqew
ziqew / slides.md
Created February 10, 2019 09:51 — forked from aaronwolen/slides.md
Pandoc template to generate reveal.js slideshows.

% Title % Name % Date

My first slide

List

@ziqew
ziqew / vi_tmux
Created September 5, 2018 01:22
vi_tmux
## tmux
命令 ctrl + b
水平分割 %,垂直分割 ",方向键做左右移动
## vi
@ziqew
ziqew / introrx.md
Created September 4, 2018 06:57 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@ziqew
ziqew / gist:41c7f44d555c4668a4da8ee3ffac9d46
Created August 27, 2018 07:09
resize vagrant disk images
"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" clonehd "ubuntu-xenial-16.04-cloudimg.vmdk" "cloned.vdi" --format vdi
"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" modifyhd "cloned.vdi" --resize 25000
"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" clonehd "cloned.vdi" "ubuntu-xenial-16.04-cloudimg.vmdk" --format vmdk
"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" showvminfo java-dev_default_1525865852676_33540 | grep "Storage"
vagrant plugin install vagrant-disksize