From adfdfe2b6318fe3f9d0df5159ac5a85a7903ed25 Mon Sep 17 00:00:00 2001
From: bglacial
+ Ouvert et curieux de caractère, je suis à l’aise dans la relation client et apprécie le travail
+ en équipe.
+ J’aime ce travail de développeur qui nécessite une capacité d’adaptation et d’écoute au service
+ d’un projet.
+ 2017 - IB Formation - Paris 2012 - UFR Des Sciences - Angers 2011 - Lycée Chevrollier - Angers 2009 - Baccalauréat Scientifique - La Flèche PHP Javascript HTML / CSS .NET / C# SQL Server Microsoft BI MySQL PostgreSQL MongoDb / CassandraDb Python NodeJs AngularJS Ionic Framework
+ Maintenance évolutive d'une application de facturation pour les télécoms.
+
+ Développeur référent pour une TMA pour le groupe La Poste.
+
+ Développement d'une application web pour informatiser le métier des chercheurs.
+ Developpement d'un site vitrine sous Joomla
+ Analyse du besoin, qualification, chiffrage, rédaction des spécifications et des cahiers de
+ test.
+
+ Adepte du manifeste "Software craftsmanship manifesto".
+ Gestion du SAV, priorisation des tickets. Numéro : +33637290170 Email : nicolas.riault@gmail.com
+ Addresse :
+
+ 90 boulevard de la butte
+ 72230 - Mulsanne
+
+
Nicolas Riault
+ Web Developer Full Stack, Consultant IT
+
+
+ Bonjour, je m'appelle Nicolas
+
+ Du point de vue technique, je développe principalement en PHP, C#. Je suis également a l'aise
+ avec SQL Server et la solution MSBI.
+
+ Sur mon temps libre je travaille sur des projets personnels que j'autilise au quotidien en
+ utilisant de nouvelles technologies (AngularJs, Ionic ... ).
+ Cursus et certifications
+ SQL Server 2014 Performance Tuning and Optimization
+ Licence Professionelle logiciel libre et propriétaire
+ BTS Informatique de Gestion
+ Lycée Notre Dame
+ Mes Compétences
+ Développement
+
+ SGBD / Business intelligence
+
+ Autres
+
+ Mes Experiences
+ Développeur Full Stack - Serveurcom
+
+ Macro gestion de l'équipe de développement.
+
+ Formation Microsoft 55144B.
+ Consultant SI - Capgémini
+
+ PHP(CakePhp), MSBI/Asp.NET ( SSAS, SSRS, SSIS)
+
+ TMA pour le ministère des sports.
+
+ .NET/MSBI
+
+ TMA pour l'Agence nationale de la recherche.
+
+ C#, ASP, Sharepoint
+
+ Développeur - INRA
+
+ Qooxdoo, Python, PostgreSQL
+ Développeur Web - Archimède
+ Mes Engagements
+ Web Development
+ Web Design
+ Responsif
+ Documentation
+ Clean Coder
+
+
+ Pas seulement une application qui marche, mais une application bien faite, perreine,
+ robuste, maintenable et évolutive.
+
+ Support
+ Contactez Moi
+
diff --git a/module/Smarty/.gitignore b/module/Smarty/.gitignore deleted file mode 100644 index 3ccc23f..0000000 --- a/module/Smarty/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -.idea -vendor -composer.lock -composer.phar -phpunit.xml -phpmd.xml -phpdox.xml diff --git a/module/Smarty/LICENSE b/module/Smarty/LICENSE deleted file mode 100644 index b8eb49b..0000000 --- a/module/Smarty/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 skillfish - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/module/Smarty/README.md b/module/Smarty/README.md deleted file mode 100644 index df59e9b..0000000 --- a/module/Smarty/README.md +++ /dev/null @@ -1,88 +0,0 @@ -# zf3-smarty-module -Based on https://github.com/randlem/zf2-smarty-module and modified for use with ZF3 - -# Installation -Although you could just clone this repository, it is highly recommended to install the module via composer. -- run `php composer.phar require skillfish/zf3-smarty-module` -- add Smarty to your ZF3 modules Configuration e.g /config/modules.config.php -- change the View Manager Strategy to Smarty in your module or apllication config like: -```php - [ - 'strategies' => [ - 'Smarty\View\Strategy' - ], - ], -]; -``` -you might also want to change your View Manager's Template Map to actually use .tpl files instead of the default .phtml -```php - [ - 'template_map' => [ - 'layout/layout' => '/module/Application/view/layout/layout.tpl', - 'application/index/index' => '/module/Application/view/application/index/index.tpl', - 'error/404' => '/module/Application/view/error/404.tpl', - 'error/index' => '/module/Applicationview/error/index.tpl', - ], - ], -]; -``` -# Template Inheritance -In order for template inheritance to work, you must terminate your ViewModel inside your Controller with `$viewModel->setTerminal(true);` and make use of the smarty `{extends}` tag. Otherwise the ViewModel will render the default layout template and inheritance won't work. - -### Example - -layout.tpl -```html - -
-
- -
-