I hereby claim:
- I am lrdiv on github.
- I am lrdiv (https://keybase.io/lrdiv) on keybase.
- I have a public key whose fingerprint is 0742 B5C9 AA02 256B 950A A213 A26B 312C CA2E A84F
To claim this, I am signing this object:
| // return [{ "name": '', "id": '' }].concat(paymentOptions.map(function(p){ return {"name": p.get('name'), "id": p.get("id")} })); | |
| return paymentOptions.reduce((a, b) => a.push(b.getProperties('id', 'name')), [{"name": "", "id": ""]); | |
| // OR | |
| return paymentOptions.reduce(function(a, b) { | |
| return a.push(b.getProperties('id', 'name')); | |
| }, [{"name": "", "id": ""}]) |
| (* Note: `cdnr` and `cdnem` are custom aliases for this project *) | |
| tell application "iTerm" | |
| (* Creates a new window for our project *) | |
| set newWindow to (create window with default profile) | |
| select first window | |
| tell the current window | |
| (* cd to rails directory and start server *) | |
| activate current session |
I hereby claim:
To claim this, I am signing this object:
| /* global require, module */ | |
| var EmberApp = require('ember-cli/lib/broccoli/ember-app'); | |
| var app = new EmberApp({ | |
| minifyCSS: { | |
| enabled: true, | |
| options: {} | |
| }, |
| ChosenView = Ember.Select.extend | |
| didInsertElement: -> | |
| @_super | |
| options = | |
| multiple: false | |
| search_contains: true | |
| options.clean_search_text = this.cleanSearchText | |
| options.calling_context = this |
| ({ | |
| states: [ | |
| { | |
| country: "US", | |
| states: [ | |
| { | |
| name: "Alabama", | |
| abbreviation: "AL" | |
| }, { | |
| name: "Alaska", |
| states: [ | |
| { | |
| country: "US" | |
| states: [ | |
| { | |
| name: "Alabama" | |
| abbreviation: "AL" | |
| } | |
| { | |
| name: "Alaska" |
| var firstClue = function(min, max, digitSum) { | |
| for(var i = min; i < max; i++) { | |
| var digitArray = i.toString().split(''); | |
| var digitTotal = 0; | |
| digitArray.forEach(function(digit) { | |
| digitTotal += parseInt(digit); | |
| }); | |
| if ( digitTotal < digitSum ) { | |
| return i; |
| <?php | |
| $attachment_id = the_field('the_image'); | |
| $size = 'small'; | |
| $image = wp_get_attachment_image_src($attachment_id, $size); | |
| ?> | |
| <img src="<?php echo $image[0]; ?>" /> |