create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| DATA TRANSFER | |
| The example in the previous section can be expanded to build a basic data transfer model. Any information input into one end of the connection will be output to the other end, and input and output can be easily captured in order to emulate file trans‐ | |
| fer. | |
| Start by using nc to listen on a specific port, with output captured into a file: | |
| $ nc -l 1234 > filename.out | |
| Using a second machine, connect to the listening nc process, feeding it the file which is to be transferred: |
| import socket | |
| UDP_IP = "::1" # localhost | |
| UDP_PORT = 5005 | |
| MESSAGE = "Hello, World!" | |
| print "UDP target IP:", UDP_IP | |
| print "UDP target port:", UDP_PORT | |
| print "message:", MESSAGE |
| Map | Action |
|---|---|
| <F1> | Causes Netrw to issue help |
| <cr> | Netrw will enter the directory or read the file |
| <del> | Netrw will attempt to remove the file/directory |
| - | Makes Netrw go up one directory |
| a | Toggles between normal display, hiding (suppress display of files matching g:netrw_list_hide) showing (display only files which match g:netrw_list_hide) |
| c | Make browsing directory the current directory |
| C | Setting the editing window |
| d | Make a directory |
Table of Contents
| #for not running docker, use save: | |
| docker save <dockernameortag> | gzip > mycontainer.tgz | |
| #for running or paused docker, use export: | |
| docker export <dockernameortag> | gzip > mycontainer.tgz | |
| #load | |
| gunzip -c mycontainer.tgz | docker load |
| /* This file is part of: | |
| * Jalali, a Gregorian to Jalali and inverse date convertor | |
| * Copyright (C) 2001 Roozbeh Pournader <roozbeh@sharif.edu> | |
| * Copyright (C) 2001 Mohammad Toossi <mohammad@bamdad.org> | |
| * | |
| * This program is free software; you can redistribute it and/or | |
| * modify it under the terms of the GNU Lesser General Public | |
| * License as published by the Free Software Foundation; either | |
| * version 2.1 of the License, or (at your option) any later version. | |
| * |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>HTML Table Cell Split Diagonally</title> | |
| </head> | |
| <body> | |
| <table> | |
| <tr> | |
| <td> | |
| <div class="c1">A</div> |
Here are the steps needed to run a self hosted Open Street Map server (using Docker):
Download desired pbf files (like south-carolina-latest.osm.pbf) from https://download.geofabrik.de or just use the following empty planet below:
<?xml version='1.0' encoding='UTF-8'?>
<osm version="0.6" generator="osmconvert 0.8.8" timestamp="2019-10-23T20:18:02Z">
<bounds minlat="42.4276" minlon="1.412368" maxlat="42.65717" maxlon="1.787481"/>
</osm>