Because markdown don't support aligning image, instead of
![example seeing impaired TEXT](httpLinktoPicture.jpg)
you can use <img src="httpLinktoPicture.jpg" alt="example seeing impaired TEXT" />
sudo ssh-keygen | |
ssh-add | |
ssh-copy-id username@IP |
#! /usr/bin/env python | |
import module1, module2 | |
from bottle import run | |
run(host='localhost', port='8080') |
let streetmap = [ | |
"http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", | |
"http://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png", | |
"http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}", | |
]; | |
let topologymap = [ | |
"http://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png", | |
"http://{s}.tile.opentopomap.org/{z}/{x}/{y}.png", | |
"http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x)", |
import lxml.html | |
def add_css_code(webpageString, linkString): | |
root = lxml.html.fromstring(webpageString) | |
link = lxml.html.fromstring(linkString).find('.//link') | |
head = root.find('.//head') | |
title = head.find('title') | |
if title == None: | |
where = 0 | |
else: |
In general, you will learn some markdown tricks combined with standard HTML tags. In more details what you will learn:
#! /usr/bin/env python | |
import module1, module2 | |
from bottle import run | |
run(host='localhost', port='8080') |
{ | |
loader: 'binaryen-loader', | |
options: { | |
optimization: { | |
level: 2, | |
shrinkLevel: 2 | |
}, | |
transformation: { | |
// https://github.com/WebAssembly/binaryen/blob/master/src/passes/pass.cpp#L67-L126 | |
passes: [ |
Section "ServerLayout" | |
Identifier "layout" | |
Screen 0 "nvidia" | |
Inactive "intel" | |
EndSection | |
Section "Device" | |
Identifier "nvidia" | |
Driver "nvidia" | |
BusID "PCI:1:0:0" |