- May 2018
-
portainer.io portainer.io
-
$ docker volume create portainer_data $ docker run -d -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/
if the socket permission denied
$ docker run -d -p 9000:9000 --privileged -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer
-
-
www.boyans.net www.boyans.net
-
EFI way of handling the boot entry became the defacto.
Windows: ESP /EFI/microsoft/boot/bcd | bootmgfw.efi
-
Repair Windows BCD - Windows 10/8.1/7/Vista
Related command you need disk related: diskpart
bcd related bcdboot bcdedit
https://www.veritas.com/support/en_US/article.100000533
http://www.uefi.org/sites/default/files/resources/UEFI-Plugfest-WindowsBootEnvironment.pdf
-
bcdboot c:\windows /s d: /f UEFI
You need to see the BCD is created under \EFI\Microsoft\Boot\BCD
-
- Mar 2018
-
shixudongleo.linkpc.net:10021 shixudongleo.linkpc.net:10021
-
export var Layer = Evented.extend({
Layer is the base class for geometry object in Leaflet.
- base class for Marker
- base class for Vector objects (path, polyline, polygon, circle, rectangle)
- base class for tile layers
-
-
shixudongleo.linkpc.net:10021 shixudongleo.linkpc.net:10021
-
// Adds the given layer to the group.
addLayer method add object to LayerGroup. Since Path is extend from Layer. Almost all geometry can be applied here.
- marker
- path/circle/ployline/polygon
-
-
shixudongleo.linkpc.net:10021 shixudongleo.linkpc.net:10021
-
export var Path
Path class is the parent for many path-like Class,
- Polyline
- Polygon
-
-
shixudongleo.linkpc.net:10021 shixudongleo.linkpc.net:10021
-
export {Marker, marker} from './Marker';
The Marker class is starting here. L.marker
-
-
shixudongleo.linkpc.net:10021 shixudongleo.linkpc.net:10021
-
export {Map, createMap as map} from './Map';
the starting point for L.map.
-
- Dec 2017
-
github.com github.com
-
Intro to HTML and CSS
completed
-
- Nov 2017
-
arstechnica.com arstechnica.com
Tags
Annotators
URL
-
- Aug 2017
-
github.com github.com
-
set guifont=YaHei\ Consolas\ Hybrid\ 11.5
-
前面介绍的主题风格对状态栏不起作用,需要借助插件 Powerline
lightweight and reliable
-
界面美化
continue to be done
-
-
help.github.com help.github.com
-
github search patterns
Tags
Annotators
URL
-
- Jul 2017
-
softwareengineering.stackexchange.com softwareengineering.stackexchange.com
-
xml:
sub tags (sub-nodes) attributes
sub tag can be more than one. but attribute only allows one field.
-