This file contains hidden or 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
class card{ | |
constructor(value,suit){ | |
this.value = value; | |
this.suit = suit; | |
} | |
get valueName(){ return this.value.toString() }; | |
get name(){return this.valueName + ' of ' + this.suit;} | |
toString(){ return this.name } | |
} | |
class pokerCard extends card{ |
This file contains hidden or 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
86a87 | |
> 'add' => '0', | |
198a200 | |
> $layouts[ $layout['name'] ]['found'] = 0; | |
238c240 | |
< | |
--- | |
> $layouts[ $value['acf_fc_layout'] ]['found']++; | |
243a246,261 | |
> <?php |
This file contains hidden or 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
/* | |
When the routine is running, the computer and video card resources will | |
be fully available and dedicated to the routine. | |
Images are located on a 1TB SSD + 1TB SSD Raid 0 Array | |
The Daemon must run in both Windows AND Linux. | |
*/ | |