meeting: https://www.joinclubhouse.com/event/xLljXApk
Technical
- Securing DevOps: Security in the Cloud - https://amzn.to/3pxJQ0D
# Copyright 2017 The Kubernetes Authors. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
meeting: https://www.joinclubhouse.com/event/xLljXApk
Technical
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: samples | |
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: sample-api-cm | |
namespace: samples |
<?xml version="1.0" encoding="UTF-8"?> | |
<UserSettings> | |
<ApplicationIdentity version="14.0" /> | |
<ToolsOptions> | |
<ToolsOptionsCategory name="Environment" RegisteredName="Environment" /> | |
</ToolsOptions> | |
<Category name="Environment_Group" RegisteredName="Environment_Group"> | |
<Category name="Environment_FontsAndColors" Category="{1EDA5DD4-927A-43a7-810E-7FD247D0DA1D}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_FontsAndColors" PackageName="Visual Studio Environment Package"> | |
<PropertyValue name="Version">2</PropertyValue> | |
<FontsAndColors Version="2.0"> |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CFBundleDevelopmentRegion</key> | |
<string>English</string> | |
<key>CFBundleDocumentTypes</key> | |
<array> | |
<dict> |
SELECT | |
[Project1].[AutomatedComplianceAssessmentId] AS [AutomatedComplianceAssessmentId], | |
[Project1].[AssessmentTypeCode] AS [AssessmentTypeCode], | |
[Project1].[AssessmentTypeName] AS [AssessmentTypeName], | |
[Project1].[EmissionPointId] AS [EmissionPointId], | |
[Project1].[EmissionPointCode] AS [EmissionPointCode], | |
[Project1].[ParameterMatrixName] AS [ParameterMatrixName], | |
[Project1].[ParameterId] AS [ParameterId], | |
[Project1].[ParameterName] AS [ParameterName] | |
FROM ( SELECT |
open System.IO | |
open FSharp.Data | |
let readLines filePath = File.ReadAllLines(filePath);; | |
let downloadWebAsync (links:seq<string>) = | |
links | |
|> Seq.map HtmlDocument.AsyncLoad | |
let castToOption (linkElements:seq<HtmlNode>) = |
1 Zaloguj sie | |
2 Zmien profil na firmowy | |
3 Kliknij na historie | |
4 Kliknij na zmien widok (gorny prawy rog pod menu) | |
5 Wybierz konto | |
6 Wybierz przedzial czasowy | |
7 przeszukaj | |
8 wejdz w szczegoly tranzakcji | |
9 Pobierz PDFa |
#!/usr/bin/env ruby | |
# This script convers markdown book to one of the serveral e-book | |
# formats supported with calibre (http://calibre-ebook.com) | |
# | |
# Samples: | |
# | |
# Build e-book for amazon kindle | |
# $ make-ebook | |
# or | |
# $ FORMAT=mobi make-ebook |