I hereby claim:
- I am therealchiko on github.
- I am chessnotchekcers (https://keybase.io/chessnotchekcers) on keybase.
- I have a public key ASC35NRJSsetEhCswDhhiNWjwITOmQr9H71JPeglB7jJ9go
To claim this, I am signing this object:
| import Controller from '@ember/controller'; | |
| export default class ApplicationController extends Controller { | |
| appName = 'Ember Twiddle'; | |
| let numbers = []; | |
| get totalNumbers(){ | |
| console.log(numbers); | |
| } |
| import Component from '@glimmer/component'; | |
| export default class extends Component { | |
| @action | |
| sayHello(){ | |
| console.log("hello"); | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| function get(){ | |
| mv ~/Sites/$1 ~/Desktop/ | |
| cd ~/Desktop/$1 | |
| ll | |
| open -a Phpstorm ./ | |
| } | |
| function store(){ | |
| mv ~/Desktop/$1 ~/Sites/ | |
| cd ~/Sites/ |
| function go(){ | |
| WAY=$1 | |
| CAPPED=$(tr a-z A-Z <<< ${WAY:0:1})${WAY:1} | |
| SUB=$2 | |
| cd ~/$CAPPED/$SUB | |
| } |
| <?php | |
| //all the info for this business is available inside $_SESSION['businessinfo'] | |
| //let's rearrange it. | |
| $f3->set('bid', $f3->get('SESSION.businessinfo')->bid); | |
| $businessinfo =new DB\SQL\Mapper($db, 'business_info'); | |
| //this sets the keywords array with all the words we are looking for. | |
| $f3->set('keywords', explode(',',$businessinfo->load(array('bid=?', $f3->get('bid')))['keywords'])); |