View index.js
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
// npm install googleapis@105 @google-cloud/local-auth@2.1.0 --save | |
const fs = require('fs'); | |
const fsp = fs.promises; | |
const path = require('path'); | |
const process = require('process'); | |
const {authenticate} = require('@google-cloud/local-auth'); | |
const {google} = require('googleapis'); |
View KlFhirIssueOneReport.json
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
{ | |
"resourceType": "Bundle", | |
"id": "2d3be3fe-f464-4bb1-b0eb-110c2a88e8a9", | |
"meta": { | |
"profile": [ | |
"http://gateway.kl.dk/1.0/StructureDefinition/klgateway-care-delivery-report" | |
] | |
}, | |
"type": "collection", | |
"timestamp": "2022-03-03T12:07:20.91+01:00", |
View bundel.json
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
{ | |
"resourceType": "Bundle", | |
"id": "C424B46A-C0D9-4836-A835-57CF83A41358", | |
"meta": { | |
"profile": [ | |
"http://gateway.kl.dk/1.0/StructureDefinition/klgateway-care-delivery-report" | |
] | |
}, | |
"type": "collection", | |
"timestamp": "2021-07-15T12:40:16.657+02:00", |
View UploadVideo.cs
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
using System; | |
using System.IO; | |
using System.Threading.Tasks; | |
using Google.Apis.Upload; | |
using Google.Apis.YouTube.v3; | |
using Google.Apis.YouTube.v3.Data; | |
namespace YouTubeExampleUpload | |
{ | |
public class UploadVideo |
View DeployGCP-K8sCluster.txt
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
#create the new cluser | |
gcloud deployment-manager deployments create kuberneties-deployment-v3 --config k8s.yaml | |
# update the cluser if you change the yaml file | |
gcloud deployment-manager deployments update kuberneties-deployment-v3 --config k8s.yaml | |
View index.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hello Drive v3</title> | |
<!-- Create a client id on Google developer console. Web credentials https://youtu.be/pBVAyU4pZOU --> | |
<meta name="google-signin-client_id" content="YOURCREDENTIALSHERE"> | |
<meta name="google-signin-scope" content="https://www.googleapis.com/auth/drive.metadata.readonly"> | |
</head> | |
<body> |
View GoogleAnaltyicsConsole.cs
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
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Threading; | |
using Google.Apis.AnalyticsReporting.v4; | |
using Google.Apis.AnalyticsReporting.v4.Data; | |
using Google.Apis.Auth.OAuth2; | |
using Google.Apis.Services; | |
using Google.Apis.Util.Store; |
View GoogleDriveV3FileListConsoleExample.cs
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
using System; | |
using System.IO; | |
using System.Threading; | |
using Google.Apis.Auth.OAuth2; | |
using Google.Apis.Drive.v3; | |
using Google.Apis.Drive.v3.Data; | |
using Google.Apis.Requests; | |
using Google.Apis.Services; | |
using Google.Apis.Util.Store; |
View AboutExample.cs
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
using Google.Apis.Drive.v3; | |
using Google.Apis.Drive.v3.Data; | |
using System; | |
using Google.Apis.Requests; | |
namespace GoogleApiSample.Drivev3 | |
{ | |
public static class AboutExamples | |
{ |
View FileScanner
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
using System; | |
using System.IO; | |
using System.Linq; | |
namespace FileScanner | |
{ | |
public class Program | |
{ | |
private const string _locationOfRepoToScan = @"C:\Development\IdentiyServer\IdentityServer4\src\IdentityServer4"; | |
private const string _localDirectoryReplace = @"C:\Development\IdentiyServer\IdentityServer4\"; |
NewerOlder