I hereby claim:
- I am balinterdi on github.
- I am balint (https://keybase.io/balint) on keybase.
- I have a public key whose fingerprint is FFB5 2EE3 5A57 0762 43E5 2676 F4FA 9D95 F3D0 7083
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import { | |
promiseHash, | |
promiseHashSettled, | |
} from 'stock-ticker/utils/promise-utils'; | |
import { module, test } from 'qunit'; | |
module('Unit | Utility | promise-utils', function () { | |
module('#promiseHash', function () { | |
test('It works when all promises resolve', function (assert) { | |
assert.expect(2); |
These are the questions that can serve as a guide for the interview. You don't have to religiously adhere to them, though, so feel free to skip any or even come up with others you'd like to answer.
The easiest way for me to compose the interviews would be for you to fork this gist, add your name and your answers to the questions (right below each question) and send me the link to your gist.
<script> | |
export let fill; | |
export let stroke; | |
export let strokeWidth; | |
export let rotation; | |
</script> | |
<svg viewBox="0 0 24 24" class="w-6" xmlns="http://www.w3.org/2000/svg"> | |
<path | |
d="m11 14.59v-7.59a1 1 0 0 1 2 0v7.59l2.3-2.3a1 1 0 1 1 1.4 1.42l-4 4a1 1 0 0 1 -1.4 0l-4-4a1 1 0 0 1 1.4-1.42z" |
function print_array(a) | |
local i = 1 | |
while a[i] do | |
print(a[i]) | |
i = i + 1 | |
end | |
end | |
function bubblesort(t) | |
local swapsMade; |
import V1Addon from '../v1-addon'; | |
import { AddonMeta } from '@embroider/core'; | |
export default class EmberFontAwesome extends V1Addon { | |
get packageMeta(): Partial<AddonMeta> { | |
let meta = super.packageMeta; | |
meta['public-assets'] = { | |
'node_modules/font-awesome/fonts/FontAwesome.otf': '/fonts/FontAwesome.otf', | |
}; | |
for (let extension of ['eot', 'svg', 'ttf', 'woff', 'woff2']) { |
import Route from '@ember/routing/route'; | |
import { inject as service } from '@ember/service'; | |
export default Route.extend({ | |
currentUser: service(), | |
router: service(), | |
init() { | |
this._super(); | |
this.setDocumentTitle(); |
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAnMnNV3Wonaxa0BHY5gTelsUpet1qRfEhzJUGN04tD1gXXAZnF+iDBQcw7g7600MS0OsXbiquQYiyqEhnnLpUv4fMmN+aEoqh20+smU6iKbHN2RwXwb7NRQ6kzHyQD+QC+/6MJjOsdjCibLmljMwGUh1MKw+AQ248cooSJdpHKqs= |