Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
    Type 1 or more characters for results.
    page 1 / 4
    63 results tagged PHP  ✕
    How it feels to learn JavaScript in 2016 – Hacker Noon https://hackernoon.com/how-it-feels-to-learn-javascript-in-2016-d3a717dd577f
    Fri Mar 16 22:11:48 2018 archive.org
    QRCode
    thumbnail

    Cela explique pourquoi je suis toujours sur PHP ou .net core, ou Java, ou...(remplacer par vrai langage)
    et que j’aime toujours autant les moteurs de template

    et pourquoi je ne comprends pas les sites avec 25JS pour afficher du HTML simple, sans formulaires, sans carroussels, etc.

    bref… je suis un vieux… devenu Architecte et mon boulot :
    « et j’aimerai faire cela, regarde c’est trop cool, bla bla bla
    Moi: c’est bien mais “bla bla bla” c’est déjà géré par l’application X et celle-ci gère en plus …
    Eux: ah oui, mais on est en 2018, l’application X elle est trop moche »

    …

    JS php
    dBug http://dbug.ospinto.com/
    Thu Feb 8 18:01:24 2018 archive.org
    QRCode
    thumbnail

    PHP version of ColdFusion’s cfdump.
    Outputs colored and structured tabular variable information.
    Variable types supported are: Arrays, Classes/Objects, Database and XML Resources.
    Ability to force certain types of output. Example: You can force an object variable to be outputted as an array type variable.
    Stylesheet can be easily edited.
    Table cells can be expanded and collapsed.

    It’s FREE!!!

    ou le télécharger ?
    j'aime bien ce fork :
    https://github.com/CodyErekson/dBug

    Comment l'utiliser :

    • include_once("dBug.php");
    • new dBug($myVariable);
    php debug dbug
    Kint, a debugging tool for PHP http://kint-php.github.io/kint/#about
    Thu Feb 8 17:22:27 2018 archive.org
    QRCode
    thumbnail

    Kint - a modern and powerful PHP debugging helper
    What is it?

    Kint for PHP is a tool designed to present your debugging data in the absolutely best way possible.

    In other words, it’s var_dump() and debug_backtrace() on steroids. Easy to use, but powerful and customizable. An essential addition to your development toolbox.

    Still lost? You use it to see what’s inside variables.

    php debug
    Slim Framework - Slim Framework https://www.slimframework.com/
    Wed Jul 26 23:28:13 2017 archive.org
    QRCode

    Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs.

    <?php
    use \Psr\Http\Message\ServerRequestInterface as Request;
    use \Psr\Http\Message\ResponseInterface as Response;

    require 'vendor/autoload.php';

    $app = new \Slim\App;
    $app->get('/hello/{name}', function (Request $request, Response $response) {
    $name = $request->getAttribute('name');
    $response->getBody()->write("Hello, $name");

    return $response;

    });
    $app->run();

    slim template php
    PHPCI - Continuous Integration for PHP Projects https://www.phptesting.org/
    Fri Nov 25 21:35:14 2016 archive.org
    QRCode
    thumbnail

    Free and open source continuous integration specifically designed for PHP.

    php jenkins integration
    PHP: The Right Way http://www.phptherightway.com/
    Mon Jun 13 18:01:06 2016 archive.org
    QRCode
    thumbnail

    Bonne pratique PHP et surtout tout ce qu'il ne faut plus faire.

    merci !

    via http://liens.vader.fr/?Ug41rw

    php bonne pratique code
    dbv.php: Database version control, made easy! http://dbv.vizuina.com/documentation/
    Thu Jun 2 17:22:23 2016 archive.org
    QRCode
    thumbnail

    Versionner la base de données de votre projet PHP

    database versionnng php project
    Example Implementations of PSR-4 - PHP-FIG http://www.php-fig.org/psr/psr-4/examples/
    Wed Jun 1 21:55:32 2016 archive.org
    QRCode
    thumbnail

    Comment mettre en place l'autoload PSR4 ?

    surement plus simple et sans composer...

    projet psr4 autoload php
    How And When To Use PSR-4 Autoloading In Your Craft Plugins | Experience HQ https://experiencehq.net/blog/how-and-when-to-use-psr-4-autoloading-in-your-craft-plugins
    Wed Jun 1 21:54:32 2016 archive.org
    QRCode
    thumbnail

    Comment mettre en place l'autoloader de composer dans vos projets PHP ?

    c'est par ici.

    ça va mettre utile cela !

    composer php autoload projet
    php - How to minify JS or CSS on the fly - Stack Overflow http://stackoverflow.com/questions/5389822/how-to-minify-js-or-css-on-the-fly
    Wed May 18 21:31:09 2016 archive.org
    QRCode
    thumbnail

    Les barbares ! comment minifier le CSS à la volée et l'envoyer à la requête oO

    moi j'aurai ajouté une gestion du cache en plus pour pas le faire à chaque fois...
    voir mis en place un script php séparé pour pouvoir récupérer les styles et js via requetes externes :x

    php minified javascript css fly
    Upgrade Guide - Slim Framework http://www.slimframework.com/docs/start/upgrade.html
    Wed Jan 20 00:53:30 2016 archive.org
    QRCode

    Comment utiliser rapidement le framework Slim.

    slim php micro framework
    Flight - An extensible micro-framework for PHP http://flightphp.com/
    Tue Jan 19 21:55:24 2016 archive.org
    QRCode

    What is Flight?

    Flight is a fast, simple, extensible framework for PHP. Flight enables you to quickly and easily build RESTful web applications.

    https://github.com/mikecao/flight

    php micro framework light
    RedBeanPHP4 :: Aliases http://www.redbeanphp.com/index.php?p=/aliases
    Thu Dec 10 19:06:07 2015 archive.org
    QRCode
    thumbnail

    Comment utiliser les alias pour gérer le cas des père / mère.

    PHP redbeanphp parent alias
    Redbeansphp - Family tree like data structure - Google Groupes https://groups.google.com/forum/m/#!msg/redbeanorm/SNkPHCS1wow/6sI7m7x6UB0J
    Thu Dec 10 18:53:22 2015 archive.org
    QRCode

    Comment gérer des arbres de familles (parent, enfants) dans redbeansphp

    redbeanphp php orm tree parent child
    Plesk10 with PHP5 + suPHP + Apache2 | dtbaker https://dtbaker.net/web-development/plesk10-with-php5-suphp-apache2/
    Wed Dec 9 19:56:34 2015 archive.org
    QRCode
    thumbnail

    Ajout d'un handler sur suphp avec mod_php5 activé

    (tout ça pour tester php7 sur des domaines mais pas tous...)

    php suphp mod_php5
    PHP Mustache 2.1 partial loading NOT based on the filename http://stackoverflow.com/questions/14878970/php-mustache-2-1-partial-loading-not-based-on-the-filename
    Mon Dec 7 18:54:42 2015 archive.org
    QRCode
    thumbnail

    gestion dynamique des partials sur moustache, une réponse à vérifier.

    (mais pas automatique à installer).

    à check.

    mustache php
    Home · bobthecow/mustache.php Wiki · GitHub https://github.com/bobthecow/mustache.php/wiki
    Mon Dec 7 00:39:48 2015 archive.org
    QRCode
    thumbnail

    mustache.php - A Mustache implementation in PHP.

    template PHP documentation
    phpmaster | PHP Sessions http://www.sitepoint.com/php-sessions/
    Thu Jun 18 23:53:30 2015 archive.org
    QRCode
    thumbnail

    comment gérer les sessions en PHP ?

    php sessions
    [PHP][REST][JSON] Un serveur RestFull en php qui tient en 3 fichiers ! https://github.com/jacwright/RestServer
    Wed Jun 17 23:50:58 2015 archive.org
    QRCode
    thumbnail

    J'ai commencé à utiliser ce serveur et il est très simple et facile à prendre en main.

    Il passe par l'analyse de commentaire pour gérer les méthodes à utiliser pour chaque appel.

    Ensuite il est possible de définir ses propres class et les URL d'accés.

    pour le moment c'est pas mal,
    conjugué à un client HTML / JS / CSS et hop on a une application web :D

    je pense que je vais saupoudrer cela de localstorage....
    puis une gestion des données sans base de données...
    et enfin un système d'indexation des valeurs pour les recherches...

    php api restfull json serveur
    PuPHPet - Online GUI configurator for Puppet & Vagrant https://puphpet.com/
    Sat Mar 7 00:32:09 2015 archive.org
    QRCode
    thumbnail

    Configurer votre machine virtuelle pour le développement web.

    le tout en PHP ?

    php vagrant docker virtual machine config
    page 1 / 4
    4683 links, including 1598 private
    Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn