Davis Community Artisan House
Main entrance to the Davis Community at 1011 Porters Neck Road, Wilmington, NC 28411.
Read MoreMain entrance to the Davis Community at 1011 Porters Neck Road, Wilmington, NC 28411.
Read More
The Davis Community Campus Map
The Davis Community Campus is located at 1011 Porters Neck Road. It can be a challenge to navigate the Rehab Pavilion. The Rehab Pavilion is shown on the center right of the above map.
Davis Community Rehab Pavillion Entrance
The main entrance is near the Community Center. The after-hours entrance is located where the Rehab Pavilion is indicated on the map. The above figure shows the after-hours entrance.
Kyfishfishfish, Djmirko, Habj, Pharaoh Hound, Almn, Ed Garcia, Boxercab, et al. 2017. Montage of Nine Dogs. Image/jpeg. Wikimedia Commons, the Free Media Repository. https://commons.wikimedia.org/wiki/File:Collage_of_Nine_Dogs.jpg.
Read MoreLog-log scatter plot of the calibrated b values in terms of average surface of the geographic units for 80 case studies; the line represents the regression line predicting b. The surface is made non–dimensional by the unitary surface of 1 km2. doi:10.1371/journal.pone.0045985.g004. Courtesy of (Lenormand et al. 2012).
Read MoreReferences for the Full Width at Half Maximum calculation.
Read MoreTypical X-Y Plotter Readout. Courtesy of (Canberra 1985, 63).
Read MoreWriting Bash scripts that process required and optional arguments has been tricky. The solution I came upon is to use the number of arguments, $#, instead of their existence, -z “$1”.
#!/usr/bin/env bash
# Process 2 required and other optional arguments
if [[ $# -eq 0 ]] # Both required arguments are missing.
then
echo "twenty-three: Missing required arguments 1–2, one and two"
exit 1
fi
if [[ $# -eq 1 ]] # Second required argument is missing.
then
echo "twenty-three: Missing required argument 2, two"
exit 1
fi
required1="$1"
required2="$2"
shift 2 # Strip off the required arguments on the left.
if [[ $# -ge 1 ]] # Are there optional arguemnts?
then
optional="$*" # Capture remaining arguments in optional.
else
optional="" # Set optional to the null string.
fi
echo "twenty-three: required1: '$required1'"
echo "twenty-three: required2: '$required2'"
echo "twenty-three: optional: '$optional'"
exit 0
Figure 1. Sample Bash script, twenty-three.sh, for processing two required arguments and multiple trailing arguments.
Of course, you can do the same processing within a function.
function f23()
{
if [[ $# -eq 0 ]] # Both required arguments are missing.
then
echo "f23: Missing required arguments 1–2, one and two"
exit 1
fi
if [[ $# -eq 1 ]] # Second required argument is missing.
then
echo "f23: Missing required argument 2, two"
exit 1
fi
local required1="$1"
local required2="$2"
shift 2 # Strip off the required arguments on the left.
if [[ $# -ge 1 ]] # Are there optional arguemnts?
then
local optional="$*" # Capture remaining arguments in optional.
else
local optional="" # Set optional to the null string.
fi
.
.
.
} # f23
Figure 2. Sample Bash function, f23, for processing two required arguments and multiple trailing arguments.
The GNU Scientific Library (GSL) is a collection of routines for numerical computing. The routines have been written from scratch in C, and present a modern Applications Programming Interface (API) for C programmers, allowing wrappers to be written for very high-level languages. The source code is distributed under the GNU General Public License (Galassi et al. 2009). Rainbow courtesy of Lauri Kosonen (2011)
Read MoreCourtesy of Microsoft. 2015. Windows Store Logo. Image/png. Wikimedia Commons, the Free Media Repository. http://bit.ly/2GEeIIb.
Read MoreCourtesy of Whitewater Foundry Pengwin. (N/D). Pengwin Logo and Tag Line. Image/jpeg. SquareSpace. http://bit.ly/2GADBEL.
Read MoreView from inside a Toyota Corolla looking through the front windshield down a wooded country lane. Courtesy of Koutoulas, Nikos. 2012. Acceleration! Image/jpeg. Flickr. http://bit.ly/2TWpYst.
Read MoreThe 2018 Singlehanded Transpac winner is Philippe Jamotte and his Olson 30. He sailed the rhumb line from San Francisco to Hanalei Bay, Kauai.
Read More
Courtesy of Ogden, Jeff. 2013. Wireline broadband availability in the USA. Image/jpeg. Wikimedia Commons, the Free Media Repository. http://bit.ly/2zD4QgF.
I ran the Ookla Internet Speed test this morning. It showed a significant increase in performance over the previous Time Warner Cable results:
http://bit.ly/2zFl1do
The download speed was 49.99 MB/s with and upload speed of 4.90 MB/s. This was in agreement with the advertised speeds of 50 MB/s and 5 MB/s.
Are you tired of using the famous 3-4-5 Pythagorean triangle for student problems. Here are 17 Pythagorean Triangle alternatives.
Read MoreDaylight Savings Time will be here in just over three weeks. Let the punduntry begin.
Read MoreSmoother shipping is swamping previous controversies.
Read MoreProcessing YAML records sometimes requires selection of YAML modules.
Read MoreAfter Brexit some folks in Britian are moving back to Imperial Units.
Read MoreThe clip "Hello Sweetie" provides a poignant moment during the Doctor Who Christmas Special for Series 9.
Read MoreThe derivation of the phase constant is explored. The graphic is courtesy of Ignacio Icke. 2006. Phase Shift. Image/png. Wikimedia Commons, the Free Media Repository. http://bit.ly/1Grp5qC.
Read More