Let's say you want to host domains first.com
and second.com
.
Create folders for their files:
<template> | |
<div class="row text-center"> | |
<div class="col-md-12 mb-3"> | |
<label>Upload your resume</label> | |
<small>(.pdf or .docx file please)</small> | |
</div> | |
<div class="col-4 offset-4 text-center mb-3"> | |
<!-- Upload resume button. Trigger function on browser file upload --> | |
<input type="file" name="resume" @change="uploadResume" class="form-control-file"> | |
</div> |
import asyncio | |
import random | |
q = asyncio.Queue() | |
async def producer(num): | |
while True: | |
await q.put(num + random.random()) | |
await asyncio.sleep(random.random()) |
web: (bash ./start.sh) & vendor/bin/heroku-php-nginx public/ |
<public:attach event="ondocumentready" onevent="CSSHover()" /> | |
<script> | |
/** | |
* Whatever:hover - V3.11 | |
* ------------------------------------------------------------ | |
* Author - Peter Nederlof, http://www.xs4all.nl/~peterned | |
* License - http://creativecommons.org/licenses/LGPL/2.1 | |
* | |
* Special thanks to Sergiu Dumitriu, http://purl.org/net/sergiu, | |
* for fixing the expression loop. |