This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Module, {dependency} from 'parser/core/Module' | |
import {Data} from 'parser/core/modules/Data' | |
import {Ability, BuffEvent, CastEvent} from '../../../fflogs' | |
export default class AllActionsKnown extends Module { | |
static handle = 'aak' | |
static debug = false | |
@dependency private data!: Data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am casualsuperman on github. | |
* I am casualsuperman (https://keybase.io/casualsuperman) on keybase. | |
* I have a public key ASAhlNy1iUR86IM5t--mw8TBo8wQR-lt6CTfZQgzY8BtgQo | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package robots | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"strings" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Underscore function that combines _.find and _.indexOf | |
* Source: https://github.com/documentcloud/underscore/issues/413 | |
* | |
* _.indexBy([2, 6, 4, 7, 9, 0], function(num) { | |
* return num % 2 === 1; | |
* }); | |
* => 3 | |
*/ |