I hereby claim:
- I am pnw on github.
- I am patch (https://keybase.io/patch) on keybase.
- I have a public key ASAsxQHVC7HfEH5CQZIQ-GvYZINMcrkelC07858lx4bjIgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import Ember from 'ember' | |
| import {task, timeout} from 'ember-concurrency' | |
| export default Ember.Component.extend({ | |
| someTask: task(function * (id) { | |
| this.sendAction('log', 'start', id) | |
| yield timeout(2000) | |
| this.sendAction('log', 'done', id) | |
| }).drop() | |
| }) |
| import Ember from 'ember' | |
| import {task, timeout} from 'ember-concurrency' | |
| const { get, set, inject } = Ember | |
| export default Ember.Controller.extend({ | |
| queueService: inject.service(), | |
| init () { | |
| this._super(...arguments) |
| """ | |
| Simply automates the process of converting the raw steam downloads into unzipped directories. | |
| See: http://forums.civfanatics.com/showthread.php?t=477763 | |
| Requirements: p7zip | |
| Installing p7zip: http://superuser.com/questions/548349/how-can-i-install-7zip-so-i-can-run-it-from-terminal-on-os-x | |