http://sourcetreeapp.com/download/
https://downloads.atlassian.com/software/sourcetree/windows/ga/SourceTreeSetup-2.3.5.0.exe
((\d*|.)*)(?=.exe)
""" | |
This script should be run from the Python consol inside QGIS. | |
It adds online sources to the QGIS Browser. | |
Each source should contain a list with the folowing items (string type): | |
[sourcetype, title, authconfig, password, referer, url, username, zmax, zmin] | |
You can add or remove sources from the sources section of the code. | |
Script by Klas Karlsson |
#!/usr/bin/env python3 | |
import email | |
import smtplib | |
import sys | |
smtp_address = "smtp.gmail.com" | |
smtp_port = 587 | |
smtp_user_name = "[email protected]" | |
smtp_password = "YOUR_APP_PASSWORD" |
<?php | |
//get query data so we can extract the email address | |
$email = $_REQUEST['emailaddress']; | |
$domain = explode('@', $_REQUEST['emailaddress'])[1]; | |
//set Content-Type | |
header("Content-Type: application/xml"); | |
echo '<?xml version="1.0" encoding="utf-8" ?>'; ?> | |
<clientConfig version="1.1"> |
<?php | |
//get raw POST data so we can extract the email address | |
$data = file_get_contents("php://input"); | |
preg_match("/\<EMailAddress\>(.*?)\<\/EMailAddress\>/", $data, $matches); | |
//set Content-Type | |
header("Content-Type: application/xml"); | |
echo '<?xml version="1.0" encoding="utf-8" ?>'; ?> | |
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006"> |
<?php | |
/** | |
* Calculates a Maidenhead Grid Square Locator containing | |
* the given latitude/longitude (WGS84) coordinate pair. | |
* | |
* @param string|float $input_lat | |
* @param string|float $input_lng | |
* @return string | |
*/ |
APP_URL=https://laravel.test | |
APP_SERVICE=laravel.test | |
[...] |
In Terminal
mkdir ~/.bash
Copy the raw git-prompt.sh
file from git contrib in to the ~/.bash
directory: https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh
Inside ~/.bashrc
or ~/.bash_profile
(choose the file where you normally put any bash customizations/setup), add the lines:
There aren't many tutorials about this, the only tutorials I've found were about passing through entire PCIe cards to VMs, or refered to old ESXi versions (below 6.5) that used a more comprehensive desktop client instead of the web app. In v6.5, the web app was introduced and the desktop client was deprecated. You used to be able to setup RDMs in the desktop client, but with the introduction of the web console, this is no longer the case. This tutorial shows you how to pass SATA HDDs to the virtual machine on VMWare ESXi 6.5. This tutorial is partially based on VMWare's own KB and the now deprecated Forza IT blog post.
There is now an option while editing your VM's settings to add a New raw disk
when you click `Add ha
import os.path | |
from urllib.request import urlopen | |
import requests | |
from tqdm import tqdm | |
def download_from_url(url, dst): | |
""" | |
@param: url to download file | |
@param: dst place to put the file |