I hereby claim:
- I am zerodahero on github.
- I am zerodahero (https://keybase.io/zerodahero) on keybase.
- I have a public key ASA8DRK3L0j012HpsdXGPXaAiFZ0B6VR399I3kGz3hg5uAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| TEMPFILE='/tmp/restic_ignores.txt' | |
| BACKUPDIR=$HOME | |
| # Note: Not sure which way is better, echo nothing into the file, or remove if exists | |
| # if [ -f $TEMPFILE ]; then | |
| # rm $TEMPFILE | |
| # fi | |
| # touch $TEMPFILE |
| <?php | |
| namespace App\Http\Requests; | |
| use Illuminate\Foundation\Http\FormRequest; | |
| class EmailRequest extends FormRequest | |
| { | |
| /** | |
| * Determine if the user is authorized to make this request. |
| <template> | |
| <div> <!-- Must have a root element (doesn't have to be div) --> | |
| </div> | |
| </template> | |
| <script> | |
| import AwesomeComponent from './AwesomeComponent.vue' | |
| export default { | |
| components: { |
| // Most likely in app.js | |
| $('time').each(function(){ | |
| new Foundation.Tooltip($(this), {tipText: $(this).attr('datetime')}); | |
| }); |