I hereby claim:
- I am rogatty on github.
- I am igor_rogatty (https://keybase.io/igor_rogatty) on keybase.
- I have a public key ASDEmsZ61ZuHQmOKRvsg4O7daHFplKoTip5KIt0JprpoyQo
To claim this, I am signing this object:
/*! | |
* @license Copyright (c) 2003-2022, CKSource - Frederico Knabben. All rights reserved. | |
* For licensing, see LICENSE.md. | |
*/ | |
!function(t){const e=t.pl=t.pl||{};e.dictionary=Object.assign(e.dictionary||{},{"%0 of %1":"%0 z %1",Aquamarine:"Akwamaryna",Black:"Czarny",Blue:"Niebieski",Cancel:"Anuluj","Dim grey":"Ciemnoszary","Dropdown toolbar":"Rozwijany pasek narzędzi","Edit block":"Edytuj blok","Editor toolbar":"Pasek narzędzi edytora",Green:"Zielony",Grey:"Szary","HTML object":"Obiekt HTML","Insert paragraph after block":"Wstaw akapit po bloku","Insert paragraph before block":"Wstaw akapit przed blokiem","Light blue":"Jasnoniebieski","Light green":"Jasnozielony","Light grey":"Jasnoszary",Next:"Następny",Orange:"Pomarańczowy",Previous:"Poprzedni",Purple:"Purpurowy",Red:"Czerwony",Redo:"Ponów","Rich Text Editor":"Edytor tekstu sformatowanego","Rich Text Editor, %0":"Edytor tekstu sformatowanego, %0",Save:"Zapisz","Select all":"Zaznacz wszystko","Show more items":"Pokaż więcej",Turquoise:"Turkusowy",Undo:"Co |
#!/usr/bin/env python3 | |
# Converts the JSON export of Journey.Cloud diary entries into an Evernote Note Export format (ENEX) for easy import into Joplin. | |
# Create/update date, journal text, location, photos and tags are preserved in the resulting Evernote Note. | |
# Based on https://gist.github.com/mbafford/2c18f5c4d7b0dab673fddb1af2126680 | |
import sys | |
import os | |
import json | |
import base64 |
I hereby claim:
To claim this, I am signing this object:
import Ember from 'ember'; | |
import config from './config/environment'; | |
const Router = Ember.Router.extend({ | |
location: 'none', | |
rootURL: config.rootURL | |
}); | |
Router.map(function() { | |
this.route('article', {path: '/article/:name'}); |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
type: Ember.computed(function () { | |
// it's function | |
return typeof(Ember.A().slice().setEach); | |
}) | |
}); |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
afterSlice: Ember.computed(function () { | |
return typeof(Ember.A().slice().setEach); | |
}), | |
afterFilterBy: Ember.computed(function () { | |
return typeof(Ember.A().filterBy(() => true).setEach); | |
}), |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
lastPost: 0, | |
init() { | |
this.data = { | |
entities: [] | |
}; | |
}, |