-
How to extract data from game? https://wiki.factorio.com/Console#Write_all_enabled_recipes_to_file
-
What to extract? What is the API? https://lua-api.factorio.com/latest/LuaRecipe.html
-
First: scraper, saves file to
%AppData%\Factorio\script-output
(on Windows):
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @see: https://gist.github.com/Tymek/10282cfecebdc16c962baf98e0314a57 | |
*/ | |
const { | |
apply, | |
compose, | |
lt, | |
max, | |
min, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: alpine | |
cache: | |
paths: | |
- node_modules/ | |
before_script: | |
- DIST_DIR=$([ "$DIST_DIR" ] || echo "./dist") | |
stages: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run \ | |
-v $(pwd):$(pwd) \ | |
-w $(pwd) \ | |
-p 0.0.0.0:80:80 \ | |
-it --rm --name="python-http-server" python:3 python \ | |
-m http.server 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://stackoverflow.com/a/25042219 | |
git grep -l TODO \ | |
| xargs -n1 git blame -f -n -w \ | |
| grep "$(git config user.name)" \ | |
| grep TODO \ | |
| sed "s/.\{9\}//" \ | |
| sed "s/(.*)[[:space:]]*//" \ | |
| tee /dev/tty \ | |
| sed 's/\s.*$//' \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php | |
RUN apt-get update | |
# Install Composer | |
# @see https://getcomposer.org/doc/faqs/how-to-install-composer-programmatically.md | |
ARG COMPOSER_URL="https://raw.githubusercontent.com/composer/getcomposer.org/d3e09029468023aa4e9dcd165e9b6f43df0a9999/web/installer" | |
ARG COMPOSER_SIGNATURE="93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8" | |
RUN php -r "copy(getenv('COMPOSER_URL'), 'composer-setup.php'); \ | |
if (hash_file('sha384', 'composer-setup.php') === getenv('COMPOSER_SIGNATURE')) { \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
a = add | |
aa = add . | |
tree = log --all --decorate --date=relative --date-order --graph --pretty=format:'\t%C(auto)%h %C(cyan)%ad%C(auto)%d %s %C(green)[%cn]' | |
br = branch | |
co = checkout | |
s = stash | |
sh = stash | |
stash = stash pop | |
st = status |
NewerOlder