Skip to content

Instantly share code, notes, and snippets.

View annapoulakos's full-sized avatar

Anna Poulakos annapoulakos

  • Thoughtworks
  • Wisconsin Rapids, WI
View GitHub Profile
@annapoulakos
annapoulakos / rules.md
Created April 4, 2023 14:29
Anna's Rules of Software Development

Anna's Rules of Software Development

  1. If it is difficult to understand and difficult to ship, you've done something wrong.
  2. If it isn't automated, you aren't done developing it.
  3. If your security model is overly complex and full of obfuscations, you will lose your best developers.
  4. A "10x" developer drives their team and organization to better outcomes through coaching and mentoring.
@annapoulakos
annapoulakos / db.yml
Created June 19, 2020 03:00
[Satisfactory] Information
version: '0.1'
machines:
smelter:
name: Smelter
size: 6x9x9
recipes:
- input:
iron-ore: 30
output:
@annapoulakos
annapoulakos / module-details.md
Last active January 12, 2019 23:06
Protolife Data
@annapoulakos
annapoulakos / qol-mods.md
Last active December 3, 2018 03:45
Cities: Skylines

Here's my QOL mod list I cannot live without (in order from best to worst):

  1. Move It! Lets you move any item in the game, as well as adjust heights and curvature of networks.
  2. Traffic Manager: President Edition A godsend of intersection and network tooling.
  3. Precision Engineering Allows you to get more detailed info when placing roads. Also allows you to set specific angles for your roads.
  4. Network Extensions 2 Gives you a bunch of new roads, plus lets you configure the driving AI.
  5. Info View Button Enabled Always shows the info view panel (which doesn't unlock until like 18k population)
  6. Fine Road Tool Lets you place roads with automatic ground inclines, or tunnels, or bridges, or raised. It's pretty stellar.x
  7. Loading Screen Mod This one caches loaded resources so you don't have to reload them when going back to the main menu
  8. Total Autobudget Automatically adjusts your budget. Gives warnings when you go overbudget so you can build additional services.
@annapoulakos
annapoulakos / fixing.md
Last active July 12, 2018 18:21
[MTG] Cube card lists

Signets

  • Boros Signet
  • Selesnya Signet
  • Simic Signet
  • Rakdos Signet
  • Gruul Signet
  • Orzhov Signet
  • Izzet Signet
  • Golgari Signet
  • Azorius Signet
const ModuleName = 'ModuleParent.InterceptorModule';
const ModuleDeps = [];
var InterceptorModule = angular.module(ModuleName, ModuleDeps);
InterceptorModule.factory('myInterceptor', ['$q', function ($q) {
var interceptor = {
request: function (config) {
console.log('myInterceptor.request', config);
class Timer {
constructor () {
this.timers = {};
}
/**
* Starts the timer for the provided identifier
* @usage timer.start('myTimer');
* @param {string} id The identifier to use for this particular timer.
*/
@annapoulakos
annapoulakos / 0_reuse_code.js
Last active August 29, 2015 14:23
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console