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
page 67 / 155
Arduino Basics: 433 MHz RF module with Arduino Tutorial 1 https://arduinobasics.blogspot.fr/2014/06/433-mhz-rf-module-with-arduino-tutorial.html
Wed Aug 2 17:58:58 2017 archive.org
QRCode
thumbnail
adventures in haproxy: tcp, tls, https, ssh, openvpn https://coolaj86.com/articles/adventures-in-haproxy-tcp-tls-https-ssh-openvpn/
Fri Jul 28 23:06:51 2017 archive.org
QRCode
thumbnail
SSH over SSL, episode 4: a HAproxy based configuration http://blog.chmd.fr/ssh-over-ssl-episode-4-a-haproxy-based-configuration.html
Fri Jul 28 23:04:43 2017 archive.org
QRCode
thumbnail
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
template - The Go Programming Language https://golang.org/pkg/html/template/
Wed Jul 26 21:30:09 2017 archive.org
QRCode
thumbnail

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.

go golang html template
les hommes en proie à des clichés, un vrai sujet http://about://reader?url=http%3A%2F%2Fwww.madmoizelle.com%2Fmasculinite-feminisme-803101
Wed Jul 26 21:00:44 2017 archive.org
QRCode
thumbnail
Le Mecxpliqueur – Le blog qui mecxplique la vie aux mecs https://lemecxpliqueur.wordpress.com/
Wed Jul 26 21:00:32 2017 archive.org
QRCode
thumbnail
Packages, Metapackages and Frameworks | Microsoft Docs https://docs.microsoft.com/en-us/dotnet/core/packages
Wed Jul 26 17:03:30 2017 archive.org
QRCode
thumbnail

un nuget pour lire les flux RSS en .net Core

et le site du projet
https://github.com/RobThree/SimpleFeedReader

core visual rss feed parser
Chauffage Solaire DIY de Fresnel 18 Lentilles - Optik-Solution.com le site des expériences de Fresnel http://www.optik-solution.com/cms.php?id_cms=10
Tue Jul 25 18:24:52 2017 archive.org
QRCode
thumbnail
Chauffage solaire | Alternative ↺ Autonomie https://decroissons.wordpress.com/energie/solaire/chauffage-solaire/
Tue Jul 25 18:22:49 2017 archive.org
QRCode
DIY : comment fabriquer un chauffage solaire avec des canettes ? https://mrmondialisation.org/fabriquer-chauffage-solaire-canettes-aluminium/
Tue Jul 25 18:21:42 2017 archive.org
QRCode
thumbnail
Fabriquez votre panneau solaire avec des canettes - Terra eco http://www.terraeco.net/Fabriquez-votre-panneau-solaire,56410.html
Tue Jul 25 18:16:03 2017 archive.org
QRCode
thumbnail

une idée à tester en petite quantité avant d'indutrialiser :p

avec des turbines de modélisme ça peut le faire...

panneau solaire diy
Suède : scandale après l’exposition de données secrètes sur le Cloud http://www.silicon.fr/suede-scandale-national-exposition-donnees-cloud-181109.html?inf_by=5946246a671db87e198b4702
Tue Jul 25 14:45:26 2017 archive.org
QRCode
thumbnail

Pour des raisons de coût !!! Oo

Bandes de nazes...

Mais ce sera pareil en France soyez en sur...

cloud scandale gouvernement
lean container tricks https://michaelcoyote.github.io/2015/08/02/lean-container-tricks/
Thu Jul 20 17:26:58 2017 archive.org
QRCode
thumbnail

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.

  • Buildroot
  • Gentoo
  • debootstrap
  • yum/dnf
  • Alpine
  • others...

Brian's example used Buildroot to create a root FS and that's what I'll do here.

lxc container build
Le cold brew café ou café infusé à froid https://www.papillesetpupilles.fr/2014/04/le-cold-brew-cafe-ou-cafe-infuse-a-froid.html/
Fri Jun 30 14:57:26 2017 archive.org
QRCode
thumbnail

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/Dockerfile.builder at master · hypriot/armhf-busybox · GitHub https://github.com/hypriot/armhf-busybox/blob/master/upstream/Dockerfile.builder
Fri Jun 30 04:55:35 2017 archive.org
QRCode
thumbnail

armhf-busybox - busybox ARM Docker container image

HowTo unpack D-Link firmware [DLink DNS-300 Alternative firmware] http://dns-300.sergeyzh.org/wiki/howto/unpack_dlink_firmware
Thu Jun 29 22:09:49 2017 archive.org
QRCode
SHOW GRANTS - MariaDB Knowledge Base https://mariadb.com/kb/en/mariadb/show-grants/
Wed Jun 28 23:23:38 2017 archive.org
QRCode
thumbnail

show grants for 'root'@'localhost';
+---------------------------------------------------------------------+
| Grants for root@localhost |
+---------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON . TO 'root'@'localhost' WITH GRANT OPTION |
+---------------------------------------------------------------------+

maria db show grants
Control and configure Docker with systemd | Docker Documentation https://docs.docker.com/engine/admin/systemd/#httphttps-proxy
Wed Jun 28 17:04:31 2017 archive.org
QRCode
thumbnail

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

docker proxy
OpenSSH for Windows http://www.datastat.com/sysadminjournal/opensshwin.html
Mon Jun 26 18:12:35 2017 archive.org
QRCode
thumbnail
page 67 / 155
5002 links, including 1908 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn