Give 1 tablet (1.25mg) by mouth every 12 hours. This medication is used to increase cardiac contractile ability (inotropy) while also serving as a vasodilator (therefore an 'inodilator').
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
public static class FileSystemExtensions | |
{ | |
/// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import arcpy | |
import arcpy.da as da | |
import arcgiscsv | |
class Toolbox(object): | |
def __init__(self): | |
"""Define the toolbox (the name of the toolbox is the name of the | |
.pyt file).""" | |
self.label = "Export to CSV Toolbox" | |
self.alias = "csv" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Clones an Subversion repository into a Git repository. | |
.DESCRIPTION | |
Clones a Subversion repository into a Git repository, for migrating from Subversion to Git. | |
This is a scripted version of the processed outlined here: | |
http://web.archive.org/web/20161107131841/https://git-scm.com/book/en/v2/Git-and-Other-Systems-Migrating-to-Git | |
.EXAMPLE | |
PS C:\> .\Clone-SvnToGit.ps1 https://example.com/path/to/svn/myrepo/trunk users.txt | |
This will clone the SVN repository at the given URL into a git repository folder called "myrepo", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# Runs Python unit tests in multiple environments #> | |
# Get python.exe paths. | |
$pyenvs = Get-ChildItem -Path "C:\Python*\" -Filter "python.exe" -Recurse | |
$pyenvs += Get-ChildItem -Path "C:\Program Files\ArcGIS" -Filter "python.exe" -Recurse | |
# Build the list of modules that will be tested. | |
$modules_to_test = [string]::Join(" ", @( | |
"test_travelerinfo", | |
"test_armcalc", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Token { | |
[string] $token | |
[System.DateTimeOffset] $expires | |
Token($response) { | |
$this.token = $response.token; | |
$this.expires = [System.DateTimeOffset]::FromUnixTimeMilliseconds($response.expires) | |
} | |
} | |
$rootUri = "https://www.arcgis.com/sharing/rest" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Finds an SDK tool in .NET SDK folders | |
.INPUTS | |
Name of tool (exe filename) to search for. (E.g., svcutil.exe) | |
.OUTPUTS | |
Outputs a list of matching filenames along with properties about the directories | |
* Windows SDK version | |
* .NET version | |
* 32- or 64-bit exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Creates an index HTML page listing Python packages in the current directory. | |
.DESCRIPTION | |
Creates an index HTML page listing Python packages in the current directory. | |
.EXAMPLE | |
PS C:\> .\New-Index.ps1 | |
Creates the index file and saves it to index.html | |
.INPUTS | |
Inputs (if any) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Gets the Open Data portal URL filtered to just this location | |
"https://gisdata-wsdot.opendata.arcgis.com/datasets/46a11f7e043842a5bfbbb1b69e7e4900_0/data?where=LocationID%20%3D%20%27" + $feature.LocationID + "%27" |