This file contains 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
r_id,r_type,r_source,r_target,r_data,depth,visited,source_e,target_e,type,type | |
2efe837c-74a2-4b90-a9e5-fc6b3d982314,conducting,93466a23-c448-46e2-9c62-ac27c41f57c6,478d7002-4eea-4202-8a30-99ced47f9510,{},0,"""{2efe837c-74a2-4b90-a9e5-fc6b3d982314,6700da7e-98fd-4cfc-8cbe-4f1dc25822ad}""",bafc5c6c-51de-4c2e-b9fb-d66ee088bd9c,000145f8-8f60-4e83-a2cd-c3c358bfeabc,eSmart.Utility.Models.Conductor,eSmart.Utility.Models.UnknownEntity | |
6700da7e-98fd-4cfc-8cbe-4f1dc25822ad,conducting,e2174c41-2d61-4aeb-8039-eb1d79bf24df,478d7002-4eea-4202-8a30-99ced47f9510,{},0,"""{2efe837c-74a2-4b90-a9e5-fc6b3d982314,6700da7e-98fd-4cfc-8cbe-4f1dc25822ad}""",5b73c611-8bd5-46d3-89ba-2c5d58d28d8d,000145f8-8f60-4e83-a2cd-c3c358bfeabc,eSmart.Utility.Models.UnknownEntity,eSmart.Utility.Models.UnknownEntity | |
29035c88-fa5c-4a9c-baf3-ebad7cd40195,conducting,93466a23-c448-46e2-9c62-ac27c41f57c6,946e96ff-ea44-4a44-a738-5067504afaa2,{},1,"""{2efe837c-74a2-4b90-a9e5-fc6b3d982314,6700da7e-98fd-4cfc-8cbe-4f1dc25822ad,29035c88-fa5c-4a9c-baf3-ebad7cd401 |
This file contains 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
navn | parti | totalt antall votering | ikke tilstedet (%) | |
---|---|---|---|---|
Abrahamsen, Solveig Sundbø | Høyre | 1496 | 0.5387700534759359 | |
Agdestein, Elin Rodum | Høyre | 1483 | 0.5266351989211059 | |
Almeland, Grunde | Venstre | 1483 | 0.32838840188806473 | |
Amundsen, Per-Willy | Fremskrittspartiet | 1496 | 0.6136363636363636 | |
Andersen, Dag Terje | Arbeiderpartiet | 1496 | 0.10628342245989304 | |
Andersen, Karin | Sosialistisk Venstreparti | 1496 | 0.2867647058823529 | |
Arnstad, Marit | Senterpartiet | 1449 | 0.47342995169082125 | |
Asheim, Henrik | Høyre | 1496 | 0.37566844919786097 | |
Aukrust, Åsmund | Arbeiderpartiet | 1435 | 0.13937282229965156 |
This file contains 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
# minikube https://kubernetes.io/docs/setup/minikube/ | |
# enable hyper-v | |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All | |
# install minikube https://github.com/kubernetes/minikube/releases | |
# create hyper-v | |
# url https://docs.microsoft.com/en-us/windows-server/virtualization/hyper-v/get-started/create-a-virtual-switch-for-hyper-v-virtual-machines | |
# named 'Primary Virtual Switch' |
This file contains 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
[ | |
{ | |
"relation": { | |
"guid": "a557b7f9-874f-e811-b091-40b034be34e4", | |
"source": "ba8711ab-ece6-4cfc-a173-c9e543e88ddf", | |
"target": "cf969ef2-1f6f-4c06-a27b-07c2aba5bfa8", | |
"label": "NetworkTopology" | |
}, | |
"entity": { | |
"$type": "eSmart.Common.DataModel.BusinessObject.Asset.Asset, eSmart.Common.DataModel", |
This file contains 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
// Here we find the Andersen family via its LastName | |
IQueryable<Family> familyQuery = this.client.CreateDocumentQuery<Family>( | |
UriFactory.CreateDocumentCollectionUri(databaseName, collectionName), queryOptions) | |
.Where(f => f.LastName == "Andersen"); |
This file contains 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
// created with gremlin api | |
{ | |
"label": "county", | |
"name": [ | |
{ | |
"_value": "Adams", | |
"id": "ea942714-a11c-4be2-ad51-7a8770f9671a" | |
} | |
], | |
"id": "Adams", |
This file contains 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
module Main exposing (..) | |
import Html exposing (Html, div, button, text) | |
import Html.App exposing (beginnerProgram) | |
import Html.Events exposing (onClick) | |
main : Program Never | |
main = | |
beginnerProgram { model = init, view = view, update = update } |
This file contains 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 Html exposing (..) | |
import Html.App as App | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (onClick) | |
import Json.Decode as Json exposing ((:=)) | |
import Mouse exposing (Position) | |
main = | |
App.program | |
{ init = init |
This file contains 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
Sample Presentation | |
10 Mar 2014 | |
Tags: go golang | |
Satish Talim | |
Go Hobbyist | |
[email protected] | |
http://satishtalim.com/ | |
@IndianGuru | |