-
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
[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 |
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
# 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
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
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
/** | |
* @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
#!/usr/bin/env node | |
const fs = require('fs') | |
const isWin = process.platform === "win32"; | |
const findCmd = isWin ? 'dir /s *store.js' : 'find src -name "*store.js"' | |
const exec = require('child_process').exec | |
const findStores = () => new Promise((resolve, reject) => { | |
exec( |
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
source /etc/network/interfaces.d/* | |
auto lo | |
iface lo inet loopback | |
allow-hotplug ens4 | |
iface ens4 inet dhcp | |
# "Failover" | |
auto ens3:0 |
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
Attaching to fusionauth_fusionauth_1, fusionauth_db_1, fusionauth_search_1 | |
fusionauth_1 | mkdir: cannot create directory '/usr/local/fusionauth/fusionauth-app/apache-tomcat/../../logs': Permission denied | |
fusionauth_1 | 22-Jul-2019 19:29:14.550 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin [SetPropertiesRule]{Server} Setting property 'port' to '${fusionauth.management.port}' did not find a matching property. | |
fusionauth_1 | 22-Jul-2019 19:29:15.444 WARNING [main] org.apache.catalina.startup.SetAllPropertiesRule.begin [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'port' to '${fusionauth.http.port}' did not find a matching property. | |
fusionauth_1 | 22-Jul-2019 19:29:15.451 WARNING [main] org.apache.catalina.startup.SetAllPropertiesRule.begin [SetAllPropertiesRule]{Server/Service/Connector} Setting property 'redirectPort' to '${fusionauth.https.port}' did not find a matching property. | |
fusionauth_1 | 22-Jul-2019 19:29:15.846 WARNING [main] org.apache.catalina.startup |
OlderNewer