Bookmarks in Power BI Desktop let you save views and settings in your reports, and build story-like presentations
Category: Uncategorized
Goat Canyon Trestle Bridge Hike: Worlds Largest Wooden Trestle
Only 15 miles from the Mexico border, in the southern section of Anza-Borrego sits one of the largest freestanding wooden trestles in the entire world. This bridge is accessible by a 6-mile round trip hike that should NOT be attempted without a lot of research, a GPS, a four-wheel drive car and mental preparation. I would suggest only experienced hikers try taking it on and I cannot stress enough that you should not do it when it is hot. I hike a lot, and this is one of the most difficult short hikes I have ever done. Luckily I had Last Adventurer
Source: Goat Canyon Trestle Bridge Hike: Worlds Largest Wooden Trestle
ArcGIS Runtime SDK for .NET Samples—ArcGIS Runtime SDK for .NET Samples | ArcGIS for Developers
Get hands-on with ArcGIS Runtime SDK for .NET by using the samples, which illustrate the variety of mapping and GIS capabilities you can add to your own applications.
You have a couple of choices for getting started with sample code, described on this page:
- Samples in GitHub
- The code samples here
Source: ArcGIS Runtime SDK for .NET Samples—ArcGIS Runtime SDK for .NET Samples | ArcGIS for Developers
microsoft/aspnetcore – Docker Hub
Add support to install Docker on raspbian/jessie #24815
Search – Docker Hub
Source: Search – Docker Hub
.NET Core Development Sample
Some Docker basic Commands
docker search microsoft
dotnet new HelloWorld
create dockerfile
From microsoft/dotnet:1.0.0-rc2-core
WORKDIR /app COPY /app /app
ENTRYPOINT dotnet HelloWorld.dlldotnet
dotnet restore
dotnet build -c release
dotnet publish -c release -o app
docker build -t helloworld .
docker images
docker ps
docker run helloworld
void static main()
{
for (int i = 0 ; i < 30 ; i++)
{System.Threading.Thread.Sleep(1000);
Console.Writeline(“Hello”);
}
}
docker build -t helloworld:loop
docker run -d helloworld:loop
docker run -d helloworld:loop
docker run -d helloworld:loop
docker run -d helloworld:loop
docker task is gone sooner or later.
docker ps
docker tag helloworld:loop frank/helloworld:dotnetconf
docker push frank/helloworld:dotnetconf
Docker ToolBox : Shared Folders: c/Users c:\Users Yes Full
docker logindocker run -v h:c
docker-machine ls
docker-machine env dockerhost-linux
docker-machine activedocker-machine ip dockerhost-linux
%Userprofile%\.docker\machine\
Docker Compose:
version: ‘2’services:
multiservices:
image: frank/multiservice:latest
#set environment variables
environment:
– CustomerAPIService = http://webapi/api/Customer
#Make Port available
ports:
– “80:80”
#Set the container startup order
depends_on:
-webapi
# the .Net Core WebAPI
Servicewebapi:
image: frank/mulitiserviceapi:latest
docker-compose up -d
Load and append more Grid records as the user scrolls down – Grid – Kendo UI Code Library
Code Library thread about Load and append more Grid records as the user scrolls down in Kendo UI. Join the conversation now.
Source: Load and append more Grid records as the user scrolls down – Grid – Kendo UI Code Library
DATEPART (Transact-SQL)
Using this, you can get Month, Day, Year and etc.
Source: DATEPART (Transact-SQL)