Within the <Product> tag, add a property
<Property Id='MOTTO' Value="The quick brown fox jumped over the lazy dog" />
The property name MUST be all upper case! Why is this?
This property will be used to edit an XML file:
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <!-- | |
| How to define a variable. | |
| Just stick a new node in a property group. | |
| --> | |
| <PropertyGroup> | |
| <!-- This node in a property group will define a variable --> | |
| <TestVariable>Test Variable Value</TestVariable> | |
This is a docker-compose template for a lemp stack.
Make sure to change both the root password under the mysql service, and the absolute URI on the phpmyadmin container.
You can also expose phpMyAdmin locally instead of remotely by properly configuring the ports.
Default locations:
(Original) -> (Your server)
/var/www/html -> ./webroot
/etc/nginx -> ./nginx
| clear parse_my_data | |
| clear path | |
| clear inputs | |
| clear index | |
| function parse_my_data(f_data_path) | |
| csv_data = read_csv(f_data_path); | |
| num_data = strtod(csv_data(2:$,1:$)); | |
| num_data_points = size(num_data,1); | |
| my_plot = figure(); |
| import geocoder | |
| import requests | |
| import unicodecsv as csv | |
| import time | |
| container = {} | |
| g = geocoder.google("New Brunswick, Canada") | |
| url = "https://www.realtor.ca/api/Listing.svc/PropertySearch_Post" | |
| PropertySearchType = { |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <stuff> | |
| <MyFirstElement>My first property</MyFirstElement> | |
| <MySecondElement>My second property</MySecondElement> | |
| </stuff> |