Sur la machine hôte, ouvrez /etc/network/interfaces
Déclarez une nouvelle interface en ajoutant les lignes suivantes :
auto vmbr2
iface vmbr2 inet static
address 10.0.0.1
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
| <?php | |
| // see https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Advanced+Metadata | |
| namespace PHPSTORM_META { | |
| override(\Doctrine\ORM\EntityManager::find(0), map([ | |
| '' => '@', | |
| ])); | |
| override(\Interop\Container\ContainerInterface::get(0), map([ | |
| '' => '@', |
| /* | |
| Template literals for-loop example | |
| Using `Array(5).join(0).split(0)`, we create an empty array | |
| with 5 items which we can iterate through using `.map()` | |
| */ | |
| var element = document.createElement('div') | |
| element.innerHTML = ` | |
| <h1>This element is looping</h1> | |
| ${Array(5).join(0).split(0).map((item, i) => ` |
| { | |
| "info": { | |
| "termsOfService": "https://trello.com/legal", | |
| "description": "This document describes the REST API of Trello as published by Trello.com. <a href='https://trello.com/docs/index.html' target='_blank'>Official Documentation</a>", | |
| "license": { | |
| "url": "https://trello.com/legal", | |
| "name": "Trello : Terms of Service" | |
| }, | |
| "title": "Trello API", | |
| "contact": { |
| /* | |
| This replaces <Sequencer> + multiple <Sampler>s with a marble diagram sequencer. | |
| You can use it like this: | |
| <Marble | |
| resolution={16} | |
| samples={[ | |
| 'samples/kick.wav', | |
| 'samples/snare.wav', | |
| ]} |
| # Last updated: 08/24/2916 | |
| # | |
| # Total instructions available: 18 | |
| # | |
| # https://docs.docker.com/engine/reference/builder/ | |
| # | |
| # You can use a .dockerignore file in the same context directory as | |
| # your Dockerfile to ignore files in the context before sending them | |
| # to the Docker daemon for building to speed up building. |
Sur la machine hôte, ouvrez /etc/network/interfaces
Déclarez une nouvelle interface en ajoutant les lignes suivantes :
auto vmbr2
iface vmbr2 inet static
address 10.0.0.1
netmask 255.255.255.0
network 10.0.0.0
broadcast 10.0.0.255
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
| -/macro fio-dec system, june 1963 | |
| 007652 640500 szm=sza sma-szf | |
| 007652 650500 spq=szm i | |
| 007652 761200 clc=cma+cla-opr | |
| - define senseswitch A | |
| - repeat 3, A=A+A | |
| - szs A | |
| - term | |
| - define init A,B | |
| - law B |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| html { | |
| width: 100%; | |
| height: 100%; | |
| } | |
| body { |
| // It is important to declare your variables. | |
| (function() { | |
| var foo = 'Hello, world!'; | |
| print(foo); //=> Hello, world! | |
| })(); | |
| // Because if you don't, the become global variables. | |
| (function() { |