- Python 3
- Pip 3
$ brew install python3
<?php | |
require __DIR__ .'/vendor/autoload.php'; | |
use \JSONDB\Exception as ex; | |
try{ | |
$test = new \JSONDB\JSONDB(); | |
$test->createServer('adonis2','root','root'); |
headers: { | |
'Authorization': response.data.token_type + ' ' + response.data.token, | |
'lang': 'fr' | |
} |
APP_ENV=development | |
APP_DEBUG=true | |
APP_KEY=VezTkYJ6BmlqKv6gCABnkZEDTe9urvb6 | |
DB_HOST=localhost | |
DB_DATABASE=immo_bivindi | |
DB_USERNAME=root | |
DB_PASSWORD=root | |
CACHE_DRIVER=file |
<?php | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| PDO Fetch Style | |
|-------------------------------------------------------------------------- | |
| | |
| By default, database results will be returned as instances of the PHP |
<form action="{% url %}" method="post" enctype="multipart/form-data">{% csrf_token %} | |
<input type="file" name="csv_file" /> | |
<input type="submit" value="Upload" /> | |
</form> |
// the navigator | |
const AppStack = DrawerNavigator({ | |
Home: HomeView, | |
Favoris: FavorisView, | |
RendezVous: RdvView, | |
Agenda:AgendaView , | |
Aide: AideView, | |
Parametres:SettingView, | |
ProfilePrestataire: ProfilePView, | |
ListPrestataires: ListrestataireView, |
* OpenHatch - https://openhatch.org/search/?q=&language=Python | |
* PyLadies - https://github.com/pyladies | |
* New Coder - https://github.com/econchick/new-coder | |
* Django Girls - https://github.com/DjangoGirls | |
* Matplotlib - https://github.com/matplotlib/matplotlib | |
* Hylang - http://docs.hylang.org/en/latest/, https://github.com/hylang/hy | |
* Open Slides (Django) - http://openslides.org/ | |
* Zeeguu - https://zeeguu.unibe.ch | |
* Project Jupyter - https://github.com/jupyter | |
* nbgrader - https://github.com/jupyter/nbgrader |
/* Extra small devices (phones, 600px and down) */ | |
@media only screen and (max-width: 600px) {...} | |
/* Small devices (portrait tablets and large phones, 600px and up) */ | |
@media only screen and (min-width: 600px) {...} | |
/* Medium devices (landscape tablets, 768px and up) */ | |
@media only screen and (min-width: 768px) {...} | |
/* Large devices (laptops/desktops, 992px and up) */ |