Here's an overview of my Factorio ship designs which can be built inexpensively.
See also the Design topics section below.
These ships are designed for use within the first four planets.
- The Hornet (the cheapest useful ship)
Here's an overview of my Factorio ship designs which can be built inexpensively.
See also the Design topics section below.
These ships are designed for use within the first four planets.
| #pragma once | |
| namespace YourNamespace | |
| { | |
| struct Routine | |
| { | |
| // Current "waiting time" before we run the next block | |
| float wait_for = 0; | |
| // Used during `rt_for`, which repeats the given block for X time |
| Qwerty | |
| ,-----------------------------------------------------------------------------------. | |
| | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp | | |
| |------+------+------+------+------+------+------+------+------+------+------+------| | |
| | Tab | Q | W | E | R | T | Y | U | I | O | P | Del | | |
| |------+------+------+------+------+-------------+------+------+------+------+------| | |
| | Esc | A | S | D | F | G | H | J | K | L | ; | " | | |
| |------+------+------+------+------+------|------+------+------+------+------+------| | |
| | Shift| Z | X | C | V | B | N | M | , | . | / |Enter | | |
| |------+------+------+------+------+------+------+------+------+------+------+------| |
| /* NOTICE: THIS WAS MADE BACK IN 2017, OF COURSE IT'S NOT GOING TO WORK WELL NOW THAT TWITTER'S FUCKED THINGS UP */ | |
| @namespace url(http://www.w3.org/1999/xhtml); | |
| @-moz-document domain("twitter.com") { | |
| [data-component-context="suggest_recap"], | |
| [data-component-context="suggest_who_to_follow"], | |
| [data-component-context="suggest_activity"], | |
| [data-component-context="suggest_activity_tweet"], | |
| [data-component-context="suggest_recycled_tweet_inline"], | |
| [data-component-context="suggest_recycled_tweet"]{ |
| CREATE TABLE public.languages ( | |
| id serial NOT NULL, | |
| code varchar(2) NOT NULL, | |
| "language" varchar(30), | |
| /* Keys */ | |
| CONSTRAINT languages_pkey | |
| PRIMARY KEY (id) | |
| ) WITH ( | |
| OIDS = FALSE | |
| ); |
This configuration is not maintained anymore. You should think twice before using it, Breaking change and security issue will likely eventually happens as any abandonned project.
| # | |
| # CORS header support | |
| # | |
| # One way to use this is by placing it into a file called "cors_support" | |
| # under your Nginx configuration directory and placing the following | |
| # statement inside your **location** block(s): | |
| # | |
| # include cors_support; | |
| # | |
| # As of Nginx 1.7.5, add_header supports an "always" parameter which |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| ############################################################################### | |
| # The MIT License | |
| # | |
| # Copyright 2012-2014 Jakub Jirutka <[email protected]>. | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |