Nombre de mois entiers jusqu'à la date de déblocage du prêt | taux de déblocage |
---|---|
20 ou plus | 30% |
19 à 16 | 45% |
15 à 11 | 60% |
10 à 5 | 75% |
5 à 2 | 85% |
1 | 90% |
0 | 95% |
Date de déblocage passé depuis plus d'un mois | 100% |
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
<?php | |
//Pour voir une requête sql à partir d'une query doctrine (version testée) : | |
function getQueryString(\Doctrine\ORM\Query $query):string | |
{ | |
foreach ($query->getParameters() as $p) { | |
$params[] = $p->getValue(); | |
} | |
return vsprintf(str_replace('?', '"%s"', $query->getSql()), $params); | |
} |
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
<?php | |
/** | |
* Invocation simple à un Service WEB : la classe SoapClient() comporte des paramètres supplémentaires | |
* qui seront intéressants à étudier dans la documentation | |
*/ | |
//On doit passer le fichier WSDL du Service en paramètre de l'objet SoapClient() | |
$wsdl="http://www.dneonline.com/calculator.asmx?wsdl"; | |
$service=new SoapClient($wsdl); |
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
phpunit | |
selenium | |
behat |
You should know, have read and understood and those resources :
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
<?php | |
namespace Headoo\CoreBundle\Helper; | |
use Symfony\Component\Routing\Exception\ResourceNotFoundException; | |
/** | |
* Class TxtToImage | |
* About: TxtToImage transformer with GD 2 | |
* @package St\AppBundle\Service |
- https://medium.com/the-mission/want-to-become-a-multi-millionaire-then-do-these-14-things-immediately-18065dc492a1
- http://www.themindsetapp.com/musk-letter/
- https://mustread.tech/books
- https://medium.com/@yegg/mental-models-i-find-repeatedly-useful-936f1cc405d
- http://russolsen.com/articles/2012/08/09/the-best-programming-advice-i-ever-got.html
- https://math.vanderbilt.edu/schectex/commerrs/
- http://www.evanmiller.org/how-not-to-sort-by-average-rating.html
- demonstatration du nombre de tetraedre réguliers (noé)https://fr.m.wikipedia.org/wiki/Polyèdre_régulier
NewerOlder