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
x | y | power | direction | |
---|---|---|---|---|
-22 | -14 | 4 | 29 | |
-73 | -10 | 5 | 27 | |
15 | -36 | 5 | 21 | |
58 | 0 | 3 | 12 | |
-103 | -46 | 7 | 24 | |
35 | -91 | 6 | 14 | |
-128 | -3 | 6 | 36 | |
-96 | -98 | 8 | 25 | |
40 | -93 | 7 | 13 |
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
class Scratch3ML4KMap { | |
constructor() { | |
this.EARTH_RADIUS = 6371; | |
this.TOP_LEFT = { | |
mapCoordsX : -240, mapCoordsY : 180, | |
lat : 40.0, lon : -123.5 | |
}; | |
this.BOTTOM_RIGHT = { |
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
#!/bin/sh | |
# the URL from Step 1 | |
URL=https://my-kafka-cluster-ibm-es-recapi-external-event-automation.apps.15eb31a112f5c312116f22c1.cloud.techzone.ibm.com | |
# the credentials from Step 2 | |
USERNAME=demo-username | |
PASSWORD=tfmA896q8l3rCcbqa15k4NOcbn8Zm5ir | |
# the folder with test files you created in Step 3 |
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
#!/bin/sh | |
# the URL from Step 1 | |
URL=https://my-kafka-cluster-ibm-es-recapi-external-event-automation.apps.15eb31a112f5c312116f22c1.cloud.techzone.ibm.com | |
# the credentials from Step 2 | |
USERNAME=demo-username | |
PASSWORD=tfmA896q8l3rCcbqa15k4NOcbn8Zm5ir | |
# the file you created in Step 3 |
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
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
targetNamespace="urn:books" | |
xmlns:bks="urn:books"> | |
<xsd:element name="books" type="bks:BooksForm"/> | |
<xsd:complexType name="BooksForm"> | |
<xsd:sequence> | |
<xsd:element name="book" | |
type="bks:BookForm" |
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
<?xml version="1.0"?> | |
<x:books xmlns:x="urn:books"> | |
<book id="bk001"> | |
<author>Writer</author> | |
<title>The First Book</title> | |
<genre>Fiction</genre> | |
<price>44.95</price> | |
<pub_date>2000-10-01</pub_date> | |
<review>An amazing story of nothing.</review> | |
</book> |
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
asyncapi: 3.0.0 | |
id: 'https://github.com/dalelane/my-first-asyncapi-v3-doc' | |
info: | |
title: 'Title of my app' | |
version: '0.0.1' | |
description: 'This is what **my app** does. It uses `code`.' | |
termsOfService: https://dalelane.co.uk/asyncapi/terms-of-service | |
contact: | |
name: Dale Lane | |
url: https://dalelane.co.uk |
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
asyncapi: 2.6.0 | |
id: https://github.com/dalelane/my-asyncapi-v2-doc | |
info: | |
title: Modo Jeans order system | |
description: > | |
Need to write something here | |
### Using headers |
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
# | |
# Creating an Operator-managed deployment of Apache Flink | |
# | |
# | |
# permissions for running a Flink pod | |
# | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: Role | |
metadata: |
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
FROM flink:1.17.0 | |
# | |
# Add additional connectors not included in the default Flink image | |
# | |
# Kafka connectors | |
RUN wget -P /opt/flink/lib https://repo.maven.apache.org/maven2/org/apache/flink/flink-sql-connector-kafka/1.17.0/flink-sql-connector-kafka-1.17.0.jar | |
# PostgreSQL connectors |
NewerOlder