Keybase proof
I hereby claim:
- I am stefanwallin on github.
- I am stefan_wallin (https://keybase.io/stefan_wallin) on keybase.
- I have a public key ASCt8QiLBDzHRzjy0V0PvNTeOqG_lW_eFB8lv-YkPpmptgo
To claim this, I am signing this object:
MIT License | |
Copyright (c) 2015 - present Stefan Wallin | |
All rights reserved. | |
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 |
I hereby claim:
To claim this, I am signing this object:
The following debugging information was generated by Atom Beautify
on Wed Jan 29 2020 15:17:33 GMT+0100 (CET)
.
export default class AnySuccessfulPromise { | |
constructor(promises) { | |
this.promises = promises; | |
this.successes = []; | |
this.errors = []; | |
this.thenCallbacks = []; | |
this.catchCallback = () => { | |
console.error("catch not defined"); | |
}; | |
this.finallyCallbacks = []; |
class AnyPromise { | |
constructor(promises) { | |
this.promises = promises; | |
this.successes = []; | |
this.errors = []; | |
this.thenCallback = () => { console.error('then not defined'); }; | |
this.catchCallback = () => { console.error('catch not defined'); }; | |
this.finallyCallback = () => {}; | |
this.awaitPromises(); | |
} |
The hierarchic relation between regions(län) and municipalities(kommuner) represented as JSON. It's derived from the SCB(The Swedish Central Board of Statistics) XLS-file at http://www.scb.se/sv_/Hitta-statistik/Regional-statistik-och-kartor/Regionala-indelningar/Lan-och-kommuner/Lan-och-kommuner-i-kodnummerordning/ as it existed on 2017-06-05.
Den hierarkiska strukturen mellan län och kommuner representerad som JSON. Den är skapad utifrån SCB's XLS-fil på http://www.scb.se/sv_/Hitta-statistik/Regional-statistik-och-kartor/Regionala-indelningar/Lan-och-kommuner/Lan-och-kommuner-i-kodnummerordning/
Post Upgrade to El Capitan, with Homebrew & Ruby
... and Xcode and Java, etc.
If you don't already have homebrew installed, do that first, so you don't have to deal with SIP issues. Install all Software Updates available in the Apple Menu, up to and including El Capitan.
document.mittmedia = document.mittmedia || {}; | |
(function(object, jQuery, ...dependencies...){ | |
object.plugin_name = { | |
elements: { | |
}, | |
init: function(){ | |
this.gatherElements() | |
this.bindEventHandlers() | |
}, | |
gatherElements: function(){ |
class AddFlagsToHuman < ActiveRecord::Migration | |
def change | |
# Add the flags | |
add_column :humen, :signed_up, :boolean, default: false | |
add_column :humen, :welcome_email_sent, :boolean, default: false | |
# Set the flags values | |
reversible do |dir| | |
dir.up do | |
Humen.all.select(&:signed_up?).each do |human| |