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();
Package template (html/template) implements data-driven templates for generating HTML output safe against code injection. It provides the same interface as package text/template and should be used instead of text/template whenever the output is HTML.
The documentation here focuses on the security features of the package. For information about how to program the templates themselves, see the documentation for text/template.
un nuget pour lire les flux RSS en .net Core
et le site du projet
https://github.com/RobThree/SimpleFeedReader
une idée à tester en petite quantité avant d'indutrialiser :p
avec des turbines de modélisme ça peut le faire...
Pour des raisons de coût !!! Oo
Bandes de nazes...
Mais ce sera pareil en France soyez en sur...
How do I create a container?
The basic work flow to creating a container is simple:
Build rootfs --> Import container --> Use Container
Creating the rootfs
You can use all sorts of tools to create the root FS as well.
Brian's example used Buildroot to create a root FS and that's what I'll do here.
Le cold brew café est la dernière boisson à la mode chez les hipsters. Il s'agit d'un café infusé à froid. Venez le découvrir, il va arriver chez nous.
armhf-busybox - busybox ARM Docker container image
show grants for 'root'@'localhost';
+---------------------------------------------------------------------+
| Grants for root@localhost |
+---------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON . TO 'root'@'localhost' WITH GRANT OPTION |
+---------------------------------------------------------------------+
Create a systemd drop-in directory for the docker service:
$ mkdir -p /etc/systemd/system/docker.service.d
Create a file called /etc/systemd/system/docker.service.d/http-proxy.conf that adds the HTTP_PROXY environment variable:
[Service]
Environment="HTTP_PROXY=http://proxy.example.com:80/"
Or, if you are behind an HTTPS proxy server, create a file called /etc/systemd/system/docker.service.d/https-proxy.conf that adds the HTTPS_PROXY environment variable:
[Service]
Environment="HTTPS_PROXY=https://proxy.example.com:443/"
If you have internal Docker registries that you need to contact without proxying you can specify them via the NO_PROXY environment variable:
Environment="HTTP_PROXY=http://proxy.example.com:80/" "NO_PROXY=localhost,127.0.0.1,docker-registry.somecorporation.com"
lush changes:
$ sudo systemctl daemon-reload
Restart Docker:
$ sudo systemctl restart docker
Verify that the configuration has been loaded:
$ systemctl show --property=Environment docker