From 2752c0d610de365670c1a2954b3b711ff8309b76 Mon Sep 17 00:00:00 2001 From: Marvin Date: Mon, 31 Mar 2025 20:16:55 -0300 Subject: [PATCH 01/23] Experimenting examples with sqrl 0.6-SNAPSHOT --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9830575..7c6e2d56 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,7 +60,7 @@ jobs: env: TZ: 'America/Los_Angeles' - SQRL_VERSION: 'v0.5.10' + SQRL_VERSION: 'ee61b3f' steps: - uses: actions/checkout@v4 From f5ffe1251ae48b418c111f20a1b57cc46546b775 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Tue, 8 Apr 2025 13:35:02 -0700 Subject: [PATCH 02/23] update finance-analytics.sqrl --- .gitignore | 1 + clickstream-ai-recommendation/README.md | 2 + .../creditcard-analytics.graphqls | 36 +++---- .../creditcard-analytics.sqrl | 80 ++++++++------ .../cardassignment.table.json | 18 ---- .../creditcard-kafka/cardassignment.table.sql | 12 +++ .../creditcard-kafka/merchant.table.json | 18 ---- .../creditcard-kafka/merchant.table.sql | 9 ++ .../merchantreward.table.json | 18 ---- .../creditcard-kafka/merchantreward.table.sql | 9 ++ .../creditcard-kafka/rewardsink.table.json | 17 --- .../creditcard-kafka/rewardsink.table.sql | 13 +++ .../creditcard-kafka/transaction.table.json | 21 ---- .../creditcard-kafka/transaction.table.sql | 12 +++ .../cardassignment.table.json | 15 --- .../creditcard-local/cardassignment.table.sql | 9 ++ .../creditcard-local/merchant.table.json | 15 --- .../creditcard-local/merchant.table.sql | 9 ++ .../merchantReward.schema.yml | 2 +- .../merchantreward.table.json | 15 --- .../creditcard-local/merchantreward.table.sql | 9 ++ .../creditcard-local/transaction.table.json | 15 --- .../creditcard-local/transaction.table.sql | 9 ++ .../creditcard-views.sqrl | 41 ++++--- .../sink-local/rewardsink.table.json | 11 -- .../sink-local/rewardsink.table.sql | 6 ++ .../CustomerTransactionTest.snapshot | 2 +- .../SpendingByCategoryTest.snapshot | 2 +- util/tablejsonMigration06.py | 101 ++++++++++++++++++ 29 files changed, 284 insertions(+), 243 deletions(-) delete mode 100755 finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.json create mode 100755 finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.sql delete mode 100755 finance-credit-card-chatbot/creditcard-kafka/merchant.table.json create mode 100755 finance-credit-card-chatbot/creditcard-kafka/merchant.table.sql delete mode 100755 finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.json create mode 100755 finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.sql delete mode 100644 finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.json create mode 100644 finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.sql delete mode 100755 finance-credit-card-chatbot/creditcard-kafka/transaction.table.json create mode 100755 finance-credit-card-chatbot/creditcard-kafka/transaction.table.sql delete mode 100644 finance-credit-card-chatbot/creditcard-local/cardassignment.table.json create mode 100644 finance-credit-card-chatbot/creditcard-local/cardassignment.table.sql delete mode 100644 finance-credit-card-chatbot/creditcard-local/merchant.table.json create mode 100644 finance-credit-card-chatbot/creditcard-local/merchant.table.sql delete mode 100644 finance-credit-card-chatbot/creditcard-local/merchantreward.table.json create mode 100644 finance-credit-card-chatbot/creditcard-local/merchantreward.table.sql delete mode 100644 finance-credit-card-chatbot/creditcard-local/transaction.table.json create mode 100644 finance-credit-card-chatbot/creditcard-local/transaction.table.sql delete mode 100644 finance-credit-card-chatbot/sink-local/rewardsink.table.json create mode 100644 finance-credit-card-chatbot/sink-local/rewardsink.table.sql create mode 100644 util/tablejsonMigration06.py diff --git a/.gitignore b/.gitignore index 88365cd9..4a814bf4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ target h2.db.mv.db cache .project +*/myenv # Created by https://www.toptal.com/developers/gitignore/api/python diff --git a/clickstream-ai-recommendation/README.md b/clickstream-ai-recommendation/README.md index b6fd4b57..da17bb8a 100644 --- a/clickstream-ai-recommendation/README.md +++ b/clickstream-ai-recommendation/README.md @@ -1,5 +1,7 @@ # Clickstream Recommendation +> ⚠️ **Warning:** This example has not yet been updated to 0.6 and uses an older version of DataSQRL + This example demonstrates DataSQRL's capabilities by creating personalized content recommendations based on clickstream data and content vector embeddings. The pipeline ingests data, processes it, and serves recommendations in real time, highlighting the power of DataSQRL in handling streaming diff --git a/finance-credit-card-chatbot/creditcard-analytics.graphqls b/finance-credit-card-chatbot/creditcard-analytics.graphqls index 4f9481b9..a7702565 100644 --- a/finance-credit-card-chatbot/creditcard-analytics.graphqls +++ b/finance-credit-card-chatbot/creditcard-analytics.graphqls @@ -1,4 +1,5 @@ scalar DateTime +scalar GraphQLBigInteger type Query { """ @@ -6,9 +7,9 @@ type Query { """ Transactions( """ - customerid: The ID of the customer whose transactions to query. + customerId: The ID of the customer whose transactions to query. """ - customerid: Int!, + customerId: GraphQLBigInteger!, """ fromTime: RFC-3339 compliant date time scalar. Returns transactions after this time. Use the start of the day only, e.g. `2024-01-19T00:00:00-00:00`. """ @@ -24,9 +25,9 @@ type Query { """ SpendingByDay( """ - customerid: The ID of the customer whose spending to query. + customerId: The ID of the customer whose spending to query. """ - customerid: Int!, + customerId: GraphQLBigInteger!, """ fromTime: RFC-3339 compliant date time scalar. Returns spending from this time. Use the start of the day only, e.g. `2024-01-19T00:00:00-00:00`. """ @@ -42,9 +43,9 @@ type Query { """ SpendingByCategory( """ - customerid: The ID of the customer whose spending to query. + customerId: The ID of the customer whose spending to query. """ - customerid: Int!, + customerId: GraphQLBigInteger!, """ limit: The number of spending records to return. Each week has 12 records - one for each spending category. To return the spending records for multiple weeks, multiple the number of weeks by 12. For example, to return spending records for 5 week, set the limit to 60. """ @@ -56,14 +57,14 @@ type Query { Retrieves User Chat Messages """ InternalGetChatMessages( - customerid: Int!, + customerId: Int!, limit: Int = 10, offset: Int = 0 ): [CustomerChatMessage!] } type CustomerTransaction { - transactionId: Int! + transactionId: GraphQLBigInteger! cardNo: String! time: String! amount: Float! @@ -87,18 +88,17 @@ type CustomerChatMessage { content: String! name: String functionCall: String - customerid: Int! + customerId: Int! timestamp: String! uuid: String! } type Subscription { - CustomerTransaction(customerid: Int!): CustomerTransaction + NewCustomerTransaction(customerId: GraphQLBigInteger!): CustomerTransaction } type Mutation { InternalSaveChatMessage(message: ChatMessageInput!): CreatedChatMessage - AddTransaction(tx: TransactionInput!): CreatedTransaction } input ChatMessageInput { @@ -106,21 +106,9 @@ input ChatMessageInput { content: String! name: String functionCall: String - customerid: Int + customerId: Int } type CreatedChatMessage { event_time: String! } - -input TransactionInput { - transactionId: Int! - cardNo: String! - amount: Float! - merchantId: Int! -} - -type CreatedTransaction { - transactionId: Int! - event_time: String! -} diff --git a/finance-credit-card-chatbot/creditcard-analytics.sqrl b/finance-credit-card-chatbot/creditcard-analytics.sqrl index b41abbd9..8dce0442 100644 --- a/finance-credit-card-chatbot/creditcard-analytics.sqrl +++ b/finance-credit-card-chatbot/creditcard-analytics.sqrl @@ -1,61 +1,77 @@ /* Import Data */ -IMPORT creditcard-data.Merchant; -IMPORT creditcard-data.CardAssignment; -IMPORT creditcard-data.Transaction; +IMPORT creditcard-data.Merchant AS _MerchantStream; +IMPORT creditcard-data.CardAssignment AS _CardAssignmentStream; +IMPORT creditcard-data.Transaction AS _Transaction; /* Import Functions */ IMPORT time.*; /* Deduplicate CDC Streams */ -Merchant := DISTINCT Merchant ON merchantId ORDER BY updatedTime DESC; -CardAssignment := DISTINCT CardAssignment ON cardNo ORDER BY timestamp DESC; +_Merchant := DISTINCT _MerchantStream ON merchantId ORDER BY updatedTime DESC; +_CardAssignment := DISTINCT _CardAssignmentStream ON cardNo ORDER BY `timestamp` DESC; /* Enrich credit card transactions with customer and merchant information */ -CustomerTransaction := SELECT t.transactionId, t.cardNo, t.time, t.amount, m.name AS merchantName, - m.category, c.customerid - FROM Transaction t - TEMPORAL JOIN CardAssignment c ON t.cardNo = c.cardNo - TEMPORAL JOIN Merchant m ON t.merchantId = m.merchantid ORDER BY t.time DESC; - -SpendingByCategory := SELECT customerid, endOfWeek(time) as timeWeek, category, SUM(amount) as spending - FROM CustomerTransaction - GROUP BY customerid, timeWeek, category - ORDER BY timeWeek DESC, category ASC; - -_SpendingByDay := SELECT customerid, endOfDay(time) as timeDay, SUM(amount) as spending - FROM CustomerTransaction - GROUP BY customerid, timeDay - ORDER BY timeDay DESC; +CustomerTransaction := SELECT t.transactionId, t.cardNo, t.`time`, t.amount, m.name AS merchantName, + m.category, c.customerId + FROM _Transaction t + JOIN _CardAssignment FOR SYSTEM_TIME AS OF t.`time` c ON t.cardNo = c.cardNo + JOIN _Merchant FOR SYSTEM_TIME AS OF t.`time` m ON t.merchantId = m.merchantId; + +/*+query_by_all(customerId) */ +SpendingByCategory := SELECT customerId, window_time as timeWeek, category, SUM(amount) as spending + FROM TABLE(TUMBLE(TABLE CustomerTransaction, DESCRIPTOR(`time`), INTERVAL '7' DAY)) + GROUP BY customerId, window_start, window_end, window_time, category + ORDER BY window_time DESC, category ASC; + +_SpendingByDay := SELECT customerId, window_time as timeDay, SUM(amount) as spending + FROM TABLE(TUMBLE(TABLE CustomerTransaction, DESCRIPTOR(`time`), INTERVAL '1' DAY)) + GROUP BY customerId, window_start, window_end, window_time + ORDER BY window_time DESC; /* Query Endpoints */ -Transactions(@customerid: BIGINT, @fromTime: TIMESTAMP, @toTime: TIMESTAMP) := - SELECT * FROM CustomerTransaction WHERE customerid = @customerid AND @fromTime <= time AND @toTime > time - ORDER BY time DESC LIMIT 10000; +Transactions(customerId BIGINT NOT NULL, fromTime TIMESTAMP NOT NULL, toTime TIMESTAMP NOT NULL) := + SELECT * FROM CustomerTransaction WHERE customerId = :customerId AND :fromTime <= `time` AND :toTime > `time` + ORDER BY `time` DESC LIMIT 10000; -SpendingByDay(@customerid: BIGINT, @fromTime: TIMESTAMP, @toTime: TIMESTAMP) := +SpendingByDay(customerId BIGINT NOT NULL, fromTime TIMESTAMP NOT NULL, toTime TIMESTAMP NOT NULL) := SELECT timeDay, spending - FROM _SpendingByDay WHERE customerid = @customerid AND @fromTime <= timeDay AND @toTime > timeDay + FROM _SpendingByDay WHERE customerId = :customerId AND :fromTime <= timeDay AND :toTime > timeDay ORDER BY timeDay DESC; -IMPORT creditcard-analytics.InternalSaveChatMessage; +NewCustomerTransaction(customerId BIGINT) := + SUBSCRIBE SELECT * FROM CustomerTransaction WHERE customerId = :customerId; + +/* ==== Agent message history === */ + +CREATE TABLE InternalSaveChatMessage ( + uuid STRING NOT NULL METADATA FROM 'uuid', + role STRING NOT NULL, + content STRING NOT NULL, + name STRING, + functionCall STRING, + customerId INT, + event_time TIMESTAMP_LTZ(3) METADATA FROM 'timestamp' +); -InternalGetChatMessages := SELECT c.role, c.content, c.name, c.functionCall, c.customerid, c.event_time AS timestamp, - c._uuid AS uuid FROM InternalSaveChatMessage c ORDER BY timestamp DESC; +/*+query_by_all(customerId) */ +InternalGetChatMessages := SELECT c.role, c.content, c.name, c.functionCall, c.customerId, + c.event_time AS `timestamp`, uuid + FROM InternalSaveChatMessage c ORDER BY event_time DESC; /* =======TEST CASES======== */ /*+test */ -CustomerTransactionTest := SELECT * FROM CustomerTransaction ORDER BY time DESC limit 5; +CustomerTransactionTest := SELECT * FROM CustomerTransaction ORDER BY `time` DESC limit 5; /*+test */ -SpendingByCategoryTest := SELECT * FROM SpendingByCategory ORDER BY customerid DESC, timeWeek DESC limit 5; +SpendingByCategoryTest := SELECT * FROM SpendingByCategory ORDER BY customerId DESC, timeWeek DESC, category ASC limit 5; /*+test */ InternalGetChatMessagesTest := SELECT role, content, name, functionCall, - customerid, - timestamp, + customerId, + `timestamp`, uuid FROM InternalGetChatMessages LIMIT 5; diff --git a/finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.json b/finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.json deleted file mode 100755 index fb47b9d7..00000000 --- a/finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "flink" : { - "connector": "kafka", - "properties.bootstrap.servers": "${PROPERTIES_BOOTSTRAP_SERVERS}", - "properties.group.id": "mygroupid", - "scan.startup.mode": "group-offsets", - "properties.auto.offset.reset": "earliest", - "value.format": "flexible-json", - "topic": "cardassignment" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : ["customerId", "cardNo", "timestamp"], - "timestamp" : "timestamp", - "watermark-millis" : "1000" - } -} \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.sql b/finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.sql new file mode 100755 index 00000000..499b91bb --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-kafka/cardassignment.table.sql @@ -0,0 +1,12 @@ +CREATE TABLE CardAssignment ( + PRIMARY KEY (`customerId`, `cardNo`, `timestamp`) NOT ENFORCED, + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '1' SECOND +) WITH ( + 'connector' = 'kafka', + 'properties.bootstrap.servers' = '${PROPERTIES_BOOTSTRAP_SERVERS}', + 'properties.group.id' = 'mygroupid', + 'scan.startup.mode' = 'group-offsets', + 'properties.auto.offset.reset' = 'earliest', + 'value.format' = 'flexible-json', + 'topic' = 'cardassignment' + ); diff --git a/finance-credit-card-chatbot/creditcard-kafka/merchant.table.json b/finance-credit-card-chatbot/creditcard-kafka/merchant.table.json deleted file mode 100755 index 0b7e91e9..00000000 --- a/finance-credit-card-chatbot/creditcard-kafka/merchant.table.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "flink": { - "format": "flexible-json", - "path": "${DATA_PATH}/merchant.jsonl", - "source.monitor-interval": "10 min", - "connector": "filesystem" - }, - "version": 1, - "table": { - "type": "source", - "primary-key": [ - "merchantId", - "updatedTime" - ], - "timestamp": "updatedTime", - "watermark-millis": "1000" - } -} \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-kafka/merchant.table.sql b/finance-credit-card-chatbot/creditcard-kafka/merchant.table.sql new file mode 100755 index 00000000..6d43b007 --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-kafka/merchant.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Merchant ( + PRIMARY KEY (`merchantId`, `updatedTime`) NOT ENFORCED, + WATERMARK FOR `updatedTime` AS `updatedTime` - INTERVAL '1' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/merchant.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.json b/finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.json deleted file mode 100755 index fa438040..00000000 --- a/finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "flink": { - "format" : "flexible-json", - "path" : "${DATA_PATH}/merchantReward.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version": 1, - "table": { - "type": "source", - "primary-key": [ - "merchantId", - "updatedTime" - ], - "timestamp": "updatedTime", - "watermark-millis": "1000" - } -} diff --git a/finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.sql b/finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.sql new file mode 100755 index 00000000..87433f3d --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-kafka/merchantreward.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE MerchantReward ( + PRIMARY KEY (`merchantId`, `updatedTime`) NOT ENFORCED, + WATERMARK FOR `updatedTime` AS `updatedTime` - INTERVAL '1' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/merchantReward.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' +); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.json b/finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.json deleted file mode 100644 index 6cec6644..00000000 --- a/finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "flink" : { - "connector": "kafka", - "properties.bootstrap.servers": "${PROPERTIES_BOOTSTRAP_SERVERS}", - "properties.group.id": "mygroupid", - "scan.startup.mode" : "group-offsets", - "properties.auto.offset.reset" : "earliest", - "key.format" : "raw", - "key.fields" : "customerId", - "value.format": "flexible-json", - "topic": "customerreward" - }, - "table" : { - "type" : "sink" - } -} diff --git a/finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.sql b/finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.sql new file mode 100644 index 00000000..5bf9dba7 --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-kafka/rewardsink.table.sql @@ -0,0 +1,13 @@ +CREATE TABLE CustomerReward ( + PRIMARY KEY (`customerId`) NOT ENFORCED +) WITH ( + 'connector' = 'kafka', + 'properties.bootstrap.servers' = '${PROPERTIES_BOOTSTRAP_SERVERS}', + 'properties.group.id' = 'mygroupid', + 'scan.startup.mode' = 'group-offsets', + 'properties.auto.offset.reset' = 'earliest', + 'key.format' = 'raw', + 'key.fields' = 'customerId', + 'value.format' = 'flexible-json', + 'topic' = 'customerreward' + ); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-kafka/transaction.table.json b/finance-credit-card-chatbot/creditcard-kafka/transaction.table.json deleted file mode 100755 index 2910e009..00000000 --- a/finance-credit-card-chatbot/creditcard-kafka/transaction.table.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "flink": { - "connector": "kafka", - "properties.bootstrap.servers": "${PROPERTIES_BOOTSTRAP_SERVERS}", - "properties.group.id": "mygroupid", - "scan.startup.mode": "group-offsets", - "properties.auto.offset.reset": "earliest", - "value.format": "flexible-json", - "topic": "transaction" - }, - "version": 1, - "table": { - "type": "source", - "primary-key": [ - "transactionId", - "time" - ], - "timestamp": "time", - "watermark-millis": "1000" - } -} diff --git a/finance-credit-card-chatbot/creditcard-kafka/transaction.table.sql b/finance-credit-card-chatbot/creditcard-kafka/transaction.table.sql new file mode 100755 index 00000000..5310e787 --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-kafka/transaction.table.sql @@ -0,0 +1,12 @@ +CREATE TABLE Transaction ( + PRIMARY KEY (`transactionId`, `time`) NOT ENFORCED, + WATERMARK FOR `time` AS `time` - INTERVAL '1' SECOND +) WITH ( + 'connector' = 'kafka', + 'properties.bootstrap.servers' = '${PROPERTIES_BOOTSTRAP_SERVERS}', + 'properties.group.id' = 'mygroupid', + 'scan.startup.mode' = 'group-offsets', + 'properties.auto.offset.reset' = 'earliest', + 'value.format' = 'flexible-json', + 'topic' = 'transaction' + ); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/cardassignment.table.json b/finance-credit-card-chatbot/creditcard-local/cardassignment.table.json deleted file mode 100644 index 8076d062..00000000 --- a/finance-credit-card-chatbot/creditcard-local/cardassignment.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/cardAssignment.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : ["customerId", "cardNo", "timestamp"], - "timestamp" : "timestamp", - "watermark-millis" : "1000" - } -} \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/cardassignment.table.sql b/finance-credit-card-chatbot/creditcard-local/cardassignment.table.sql new file mode 100644 index 00000000..e63aeab5 --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-local/cardassignment.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE CardAssignment ( + PRIMARY KEY (`customerId`, `cardNo`, `timestamp`) NOT ENFORCED, + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '1' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/cardAssignment.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' +); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/merchant.table.json b/finance-credit-card-chatbot/creditcard-local/merchant.table.json deleted file mode 100644 index 074ffceb..00000000 --- a/finance-credit-card-chatbot/creditcard-local/merchant.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/merchant.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : ["merchantId", "updatedTime"], - "timestamp" : "updatedTime", - "watermark-millis" : "1000" - } -} \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/merchant.table.sql b/finance-credit-card-chatbot/creditcard-local/merchant.table.sql new file mode 100644 index 00000000..ddbb0e90 --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-local/merchant.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Merchant ( + PRIMARY KEY (`merchantId`, `updatedTime`) NOT ENFORCED, + WATERMARK FOR `updatedTime` AS `updatedTime` - INTERVAL '1' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/merchant.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/merchantReward.schema.yml b/finance-credit-card-chatbot/creditcard-local/merchantReward.schema.yml index f97041e8..883b2902 100644 --- a/finance-credit-card-chatbot/creditcard-local/merchantReward.schema.yml +++ b/finance-credit-card-chatbot/creditcard-local/merchantReward.schema.yml @@ -20,7 +20,7 @@ columns: - name: "startTimestamp" type: "BIGINT" tests: - - "not_null" + - "not_null" - name: "expirationTimestamp" type: "BIGINT" tests: diff --git a/finance-credit-card-chatbot/creditcard-local/merchantreward.table.json b/finance-credit-card-chatbot/creditcard-local/merchantreward.table.json deleted file mode 100644 index 4334af7c..00000000 --- a/finance-credit-card-chatbot/creditcard-local/merchantreward.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/merchantReward.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : ["merchantId", "updatedTime"], - "timestamp" : "updatedTime", - "watermark-millis" : "1000" - } -} \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/merchantreward.table.sql b/finance-credit-card-chatbot/creditcard-local/merchantreward.table.sql new file mode 100644 index 00000000..0314235f --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-local/merchantreward.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE MerchantReward ( + PRIMARY KEY (`merchantId`, `updatedTime`) NOT ENFORCED, + WATERMARK FOR `updatedTime` AS `updatedTime` - INTERVAL '1' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/merchantReward.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/transaction.table.json b/finance-credit-card-chatbot/creditcard-local/transaction.table.json deleted file mode 100644 index ca5a58ac..00000000 --- a/finance-credit-card-chatbot/creditcard-local/transaction.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/transaction.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : ["transactionId", "time"], - "timestamp" : "time", - "watermark-millis" : "1000" - } -} \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-local/transaction.table.sql b/finance-credit-card-chatbot/creditcard-local/transaction.table.sql new file mode 100644 index 00000000..34a2c3e8 --- /dev/null +++ b/finance-credit-card-chatbot/creditcard-local/transaction.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Transaction ( + PRIMARY KEY (`transactionId`, `time`) NOT ENFORCED, + WATERMARK FOR `time` AS `time` - INTERVAL '1' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/transaction.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/finance-credit-card-chatbot/creditcard-views.sqrl b/finance-credit-card-chatbot/creditcard-views.sqrl index 805cb207..fffd516c 100644 --- a/finance-credit-card-chatbot/creditcard-views.sqrl +++ b/finance-credit-card-chatbot/creditcard-views.sqrl @@ -1,39 +1,38 @@ /* Import Data */ -IMPORT creditcard-data.Merchant AS Merchant; -IMPORT creditcard-data.CardAssignment AS _CardAssignment; +IMPORT creditcard-data.Merchant AS _MerchantStream; +IMPORT creditcard-data.CardAssignment AS _CardAssignmentStream; IMPORT creditcard-data.Transaction AS _Transaction; -/* Import Functions */ -IMPORT time.*; /* Deduplicate CDC Streams */ -Merchant := DISTINCT Merchant ON merchantId ORDER BY updatedTime DESC; -_CardAssignment := DISTINCT _CardAssignment ON cardNo ORDER BY timestamp DESC; +Merchant := DISTINCT _MerchantStream ON merchantId ORDER BY updatedTime DESC; +_CardAssignment := DISTINCT _CardAssignmentStream ON cardNo ORDER BY `timestamp` DESC; /* Enrich credit card transactions with customer and merchant information */ -/*+partition_key(customerid) */ -_CustomerTransaction := SELECT t.transactionId, t.cardNo, t.time, t.amount, t.merchantid, - m.category, c.customerid +/*+partition_key(customerId) */ +_CustomerTransaction := SELECT t.transactionId, t.cardNo, t.`time`, t.amount, t.merchantId, + m.category, c.customerId FROM _Transaction t - TEMPORAL JOIN _CardAssignment c ON t.cardNo = c.cardNo - TEMPORAL JOIN Merchant m ON t.merchantId = m.merchantid ORDER BY t.time DESC; + JOIN _CardAssignment FOR SYSTEM_TIME AS OF t.`time` c ON t.cardNo = c.cardNo + JOIN Merchant FOR SYSTEM_TIME AS OF t.`time` m ON t.merchantId = m.merchantId + ORDER BY t.`time` DESC; -SpendingByCategory := SELECT customerid, endOfWeek(time) as timeWeek, category, SUM(amount) as spending - FROM _CustomerTransaction - GROUP BY customerid, timeWeek, category - ORDER BY timeWeek DESC, category ASC; +SpendingByCategory := SELECT customerId, window_time as timeWeek, category, SUM(amount) as spending + FROM TABLE(TUMBLE(TABLE _CustomerTransaction, DESCRIPTOR(`time`), INTERVAL 7 DAY)) + GROUP BY customerId, window_start, window_end, window_time, category + ORDER BY window_time DESC, category ASC; -SpendingByDay := SELECT customerid, endOfDay(time) as timeDay, SUM(amount) as spending - FROM _CustomerTransaction - GROUP BY customerid, timeDay - ORDER BY timeDay DESC; +SpendingByDay := SELECT customerId, window_time as timeDay, SUM(amount) as spending + FROM TABLE(TUMBLE(TABLE _CustomerTransaction, DESCRIPTOR(`time`), INTERVAL 1 DAY)) + GROUP BY customerId, window_start, window_end, window_time + ORDER BY window_time DESC; CustomerTransactionWithMerchant := SELECT * FROM _CustomerTransaction t - INNER JOIN Merchant m ON t.merchantid = m.merchantid; + INNER JOIN Merchant m ON t.merchantId = m.merchantId; /* =======TEST CASES======== */ /*+test */ -SpendingByCategoryTest := SELECT * FROM SpendingByCategory ORDER BY customerid DESC, timeWeek DESC limit 5; +SpendingByCategoryTest := SELECT * FROM SpendingByCategory ORDER BY customerId DESC, timeWeek DESC limit 5; diff --git a/finance-credit-card-chatbot/sink-local/rewardsink.table.json b/finance-credit-card-chatbot/sink-local/rewardsink.table.json deleted file mode 100644 index 0546a53f..00000000 --- a/finance-credit-card-chatbot/sink-local/rewardsink.table.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": 1, - "flink" : { - "connector": "print", - "print-identifier": "Customer-Rewards" - }, - "table" : { - "type" : "sink", - "primary-key" : ["customerId"] - } -} \ No newline at end of file diff --git a/finance-credit-card-chatbot/sink-local/rewardsink.table.sql b/finance-credit-card-chatbot/sink-local/rewardsink.table.sql new file mode 100644 index 00000000..164a4c90 --- /dev/null +++ b/finance-credit-card-chatbot/sink-local/rewardsink.table.sql @@ -0,0 +1,6 @@ +CREATE TABLE CustomerRewards ( + PRIMARY KEY (`customerId`) NOT ENFORCED +) WITH ( + 'connector' = 'print', + 'print-identifier' = 'Customer-Rewards' + ); \ No newline at end of file diff --git a/finance-credit-card-chatbot/snapshots-analytics/CustomerTransactionTest.snapshot b/finance-credit-card-chatbot/snapshots-analytics/CustomerTransactionTest.snapshot index c2dd23a5..4305e1b4 100644 --- a/finance-credit-card-chatbot/snapshots-analytics/CustomerTransactionTest.snapshot +++ b/finance-credit-card-chatbot/snapshots-analytics/CustomerTransactionTest.snapshot @@ -1 +1 @@ -{"data":{"CustomerTransactionTest":[{"transactionId":8571374.0,"cardNo":6771894392571071,"time":"2024-06-05T06:40:55.077Z","amount":1025.86,"merchantName":"Schulist, Leffler and Schneider","category":"Childcare","customerid":9.0},{"transactionId":8571399.0,"cardNo":6771895852360780,"time":"2024-06-05T06:28:53.485Z","amount":521.21,"merchantName":"Mraz, Ankunding and Dietrich","category":"Groceries","customerid":2.0},{"transactionId":8571378.0,"cardNo":6771894392571071,"time":"2024-06-05T06:07:45.566Z","amount":969.2,"merchantName":"Fisher, Gusikowski and Denesik","category":"Miscellaneous","customerid":9.0},{"transactionId":8571385.0,"cardNo":65696286024927158272,"time":"2024-06-05T05:50:51.672Z","amount":2614.5,"merchantName":"Howe and Sons","category":"Housing & Utilities","customerid":6.0},{"transactionId":8571373.0,"cardNo":6771894392571071,"time":"2024-06-05T05:38:52.502Z","amount":195.89,"merchantName":"Paucek, Pfeffer and Nolan","category":"Clothing & Apparel","customerid":9.0}]}} \ No newline at end of file +{"data":{"CustomerTransactionTest":[{"transactionId":8571374,"cardNo":6771894392571071,"time":"2024-06-05T06:40:55.077Z","amount":1025.86,"merchantName":"Schulist, Leffler and Schneider","category":"Childcare","customerId":9},{"transactionId":8571399,"cardNo":6771895852360780,"time":"2024-06-05T06:28:53.485Z","amount":521.21,"merchantName":"Mraz, Ankunding and Dietrich","category":"Groceries","customerId":2},{"transactionId":8571378,"cardNo":6771894392571071,"time":"2024-06-05T06:07:45.566Z","amount":969.2,"merchantName":"Fisher, Gusikowski and Denesik","category":"Miscellaneous","customerId":9},{"transactionId":8571385,"cardNo":65696286024927158272,"time":"2024-06-05T05:50:51.672Z","amount":2614.5,"merchantName":"Howe and Sons","category":"Housing & Utilities","customerId":6},{"transactionId":8571373,"cardNo":6771894392571071,"time":"2024-06-05T05:38:52.502Z","amount":195.89,"merchantName":"Paucek, Pfeffer and Nolan","category":"Clothing & Apparel","customerId":9}]}} \ No newline at end of file diff --git a/finance-credit-card-chatbot/snapshots-analytics/SpendingByCategoryTest.snapshot b/finance-credit-card-chatbot/snapshots-analytics/SpendingByCategoryTest.snapshot index 28bbb94b..3bbc31e0 100644 --- a/finance-credit-card-chatbot/snapshots-analytics/SpendingByCategoryTest.snapshot +++ b/finance-credit-card-chatbot/snapshots-analytics/SpendingByCategoryTest.snapshot @@ -1 +1 @@ -{"data":{"SpendingByCategoryTest":[{"customerid":10.0,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Housing & Utilities","spending":4767.13},{"customerid":10.0,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Miscellaneous","spending":2431.46},{"customerid":10.0,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Restaurants & Dining","spending":1478.88},{"customerid":10.0,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Transportation","spending":993.7},{"customerid":10.0,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Travel & Vacations","spending":2088.6}]}} \ No newline at end of file +{"data":{"SpendingByCategoryTest":[{"customerId":10,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Clothing & Apparel","spending":976.09},{"customerId":10,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Communication","spending":198.98},{"customerId":10,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Entertainment","spending":263.24},{"customerId":10,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Groceries","spending":1529.74},{"customerId":10,"timeWeek":"2024-05-30T13:59:59.999Z","category":"Health & Wellness","spending":493.13}]}} \ No newline at end of file diff --git a/util/tablejsonMigration06.py b/util/tablejsonMigration06.py new file mode 100644 index 00000000..2d45575c --- /dev/null +++ b/util/tablejsonMigration06.py @@ -0,0 +1,101 @@ +import os +from openai import OpenAI +import argparse + + +PROMPT_STRING = """Given a json configuration file, produce a SQL CREATE table statement by: +- converting all fields nested under "flink" to connector options in the WITH clause +- converting the primary key +- converting the timestamp and watermark-millis to a watermark declaration. +- converting "metadata" entries to columns with the key as the column name: if the attribute is a + function call create a computed column, else create a metadata column with the data type and metadata attribute +Here is an example of a configuration file and the SQL file to convert to: +==JSON CONFIG== +{ + "version": 1, + "flink" : { + "format" : "flexible-json", + "path" : "${DATA_PATH}/click.jsonl", + "connector" : "filesystem" + }, + "table" : { + "type" : "source", + "primary-key" : ["url","userid","timestamp"], + "timestamp" : "timestamp", + "watermark-millis" : "1" + }, + "metadata" : { + "timestamp": { + "attribute": "time.EpochMilliToTimestamp(time)" + }, + + } +} +==SQL== +CREATE TABLE Click ( + `timestamp` AS EpochMilliToTimestamp(`time`), + PRIMARY KEY (`url`, `userid`, `time`) NOT ENFORCED, + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/click.jsonl', + 'source.monitor-interval' = '10 sec', + 'connector' = 'filesystem' + ); +== +Apply this transformation to the following config file and produce a text output without markdown syntax or escaping that only contains the result: +""" + +def process_files(directory, openai_key): + client = OpenAI( + api_key=openai_key, + ) + for root, _, files in os.walk(directory): + for file in files: + if file.endswith('.table.sql'): + file_path = os.path.join(root, file) + + # Read the contents of the file + with open(file_path, 'r') as f: + content = f.read() + + # Skip the file if it contains 'CREATE TABLE' + if 'CREATE TABLE' in content: + continue + + print("Converting: " + file_path) + + # Create a backup file + backup_file_path = file_path + '.backup' + with open(backup_file_path, 'w') as f: + f.write(content) + + # Append PROMPT_STRING to the content + appended_content = content + PROMPT_STRING + + # Send the appended content to OpenAI + response = client.chat.completions.create( + model="gpt-4o", + messages=[ + { + "role": "user", + "content": appended_content, + }, + ], + max_tokens=2048 + ) + new_content = response.choices[0].message.content + + # Replace the original file content + with open(file_path, 'w') as f: + f.write(new_content) + +def parse_arguments(): + parser = argparse.ArgumentParser(description='Process SQL files with OpenAI.') + parser.add_argument('directory', type=str, help='The directory to process') + parser.add_argument('openai_key', type=str, help='The OpenAI API key') + return parser.parse_args() + +if __name__ == '__main__': + args = parse_arguments() + process_files(args.directory, args.openai_key) \ No newline at end of file From 4ad62125cb82df0d258439c62250bf9f76218f98 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Tue, 8 Apr 2025 13:37:00 -0700 Subject: [PATCH 03/23] use datasqrl 0.6 for tests --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a393cb2b..a87b81d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,7 +60,7 @@ jobs: env: TZ: 'America/Los_Angeles' - SQRL_VERSION: 'v0.5.10' + SQRL_VERSION: 'ee61b3f' steps: - uses: actions/checkout@v4 From 43d87c02a4ef7488597b54692c164a98f409f35c Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Tue, 8 Apr 2025 14:09:08 -0700 Subject: [PATCH 04/23] updated finance example for 0.6 --- .../creditcard-analytics.sqrl | 2 - .../creditcard-rewards.graphqls | 45 ++++---- .../creditcard-rewards.sqrl | 100 ++++++++++-------- .../package-analytics-duckdb.json | 1 - .../package-analytics-kafka.json | 1 - .../package-analytics-local.json | 1 - .../package-rewards-kafka.json | 1 - .../package-rewards-local.json | 1 - .../CardAssignmentTest.snapshot | 1 - .../CustomerRewardsTest.snapshot | 2 +- .../PotentialRewardsByWeekTest.snapshot | 2 +- .../RewardsByWeekTest.snapshot | 2 +- 12 files changed, 84 insertions(+), 75 deletions(-) delete mode 100644 finance-credit-card-chatbot/snapshots-rewards/CardAssignmentTest.snapshot diff --git a/finance-credit-card-chatbot/creditcard-analytics.sqrl b/finance-credit-card-chatbot/creditcard-analytics.sqrl index 8dce0442..3639ee39 100644 --- a/finance-credit-card-chatbot/creditcard-analytics.sqrl +++ b/finance-credit-card-chatbot/creditcard-analytics.sqrl @@ -2,8 +2,6 @@ IMPORT creditcard-data.Merchant AS _MerchantStream; IMPORT creditcard-data.CardAssignment AS _CardAssignmentStream; IMPORT creditcard-data.Transaction AS _Transaction; -/* Import Functions */ -IMPORT time.*; /* Deduplicate CDC Streams */ _Merchant := DISTINCT _MerchantStream ON merchantId ORDER BY updatedTime DESC; diff --git a/finance-credit-card-chatbot/creditcard-rewards.graphqls b/finance-credit-card-chatbot/creditcard-rewards.graphqls index a054616b..dbf74f23 100644 --- a/finance-credit-card-chatbot/creditcard-rewards.graphqls +++ b/finance-credit-card-chatbot/creditcard-rewards.graphqls @@ -1,11 +1,12 @@ "An RFC-3339 compliant DateTime Scalar" scalar DateTime +scalar GraphQLBigInteger type Query { """Returns all the rewards that a customer has earned in the given time period""" Rewards( - """customerid: Customer identifier""" - customerid: Int!, + """customerId: Customer identifier""" + customerId: GraphQLBigInteger!, """fromTime: RFC-3339 compliant date time scalar. Returns rewards after this time. Use the start of the day only, e.g. 2024-01-19T00:00:00-00:00.""" fromTime: DateTime!, """toTime: RFC-3339 compliant date time scalar. Returns rewards up to this time. Use the start of the day only, e.g. 2024-01-19T00:00:00-00:00.""" @@ -14,8 +15,8 @@ type Query { """Returns the total awards a customer earned by week starting from the most recent week.""" RewardsByWeek( - """customerid: Customer identifier""" - customerid: Int!, + """customerId: Customer identifier""" + customerId: GraphQLBigInteger!, """limit: The number of weeks to return starting from most recent to less recent weeks. For example, if limit is 12 it will return the last 12 weeks of total rewards earned.""" limit: Int = 12, """offset: The number of weeks to offset. For example, if offset is 4, it will skip the last 4 weeks of rewards earned and return the weeks before that.""" @@ -24,14 +25,14 @@ type Query { """Returns the total amount of rewards the customer has earned to date and the time since when they eared rewards""" TotalReward( - """customerid: Customer identifier""" - customerid: Int! + """customerId: Customer identifier""" + customerId: GraphQLBigInteger! ): TotalReward """Returns all the potential rewards a customer could have earned in the given time period for the given card type. Use this function to show customers the rewards they would have earned if they had the given card.""" PotentialRewards( - """customerid: Customer identifier""" - customerid: Int!, + """customerId: Customer identifier""" + customerId: GraphQLBigInteger!, """cardType: The type of card to calculate potential rewards for (i.e. travel, sports, business, or family)""" cardType: String!, """fromTime: RFC-3339 compliant date time scalar. Returns rewards after this time. Use the start of the day only, e.g. 2024-01-19T00:00:00-00:00.""" @@ -42,8 +43,8 @@ type Query { """Returns the total awards a customer could have earned for a given card type by week starting from the most recent week. Use this function to show the customer what their reward earnings would have looked like, if they had a given card.""" PotentialRewardsByWeek( - """customerid: Customer identifier""" - customerid: Int!, + """customerId: Customer identifier""" + customerId: GraphQLBigInteger!, """cardType: The type of card to calculate potential rewards for (e.g., travel, sports, business, family)""" cardType: String!, """limit: The number of weeks to return starting from most recent to less recent weeks. For example, if limit is 12 it will return the last 12 weeks of total rewards earned.""" @@ -54,13 +55,13 @@ type Query { """Returns the total amount of rewards the customer could have earned for each type of credit card the customer does not yet have. Use this function to determine which credit card type to recommend to a customer.""" TotalPotentialReward( - """customerid: Customer identifier""" - customerid: Int! + """customerId: Customer identifier""" + customerId: GraphQLBigInteger! ): [TotalPotentialReward!] """Retrieves User Chat Messages""" InternalGetChatMessages( - customerid: Int!, + customerId: Int!, limit: Int = 10, offset: Int = 0 ): [CustomerChatMessage!] @@ -68,12 +69,12 @@ type Query { type Subscription { """Returns the rewards for a given customer immediately""" - CustomerRewards(customerid: Int!): CustomerRewards + NewCustomerRewards(customerId: GraphQLBigInteger!): CustomerRewards } type CustomerRewards { transactionId: Float! - customerid: Int! + customerId: GraphQLBigInteger! cardNo: Float! cardType: String! time: DateTime! @@ -83,20 +84,20 @@ type CustomerRewards { } type RewardsByWeek { - customerid: Int! + customerId: GraphQLBigInteger! timeWeek: DateTime! total_reward: Float! } type TotalReward { - customerid: Int! + customerId: GraphQLBigInteger! total_reward: Float! since_time: DateTime! } type PotentialRewards { transactionId: Float! - customerid: Int! + customerId: GraphQLBigInteger! rewardCardType: String! time: DateTime! amount: Float! @@ -105,14 +106,14 @@ type PotentialRewards { } type PotentialRewardsByWeek { - customerid: Int! + customerId: GraphQLBigInteger! cardType: String! timeWeek: DateTime! total_reward: Float! } type TotalPotentialReward { - customerid: Int! + customerId: GraphQLBigInteger! cardType: String! total_reward: Float! since_time: DateTime! @@ -123,7 +124,7 @@ type CustomerChatMessage { content: String! name: String functionCall: String - customerid: Int! + customerId: Int! timestamp: String! uuid: String! } @@ -138,7 +139,7 @@ input ChatMessageInput { content: String! name: String functionCall: String - customerid: Int + customerId: Int } type CreatedChatMessage { diff --git a/finance-credit-card-chatbot/creditcard-rewards.sqrl b/finance-credit-card-chatbot/creditcard-rewards.sqrl index 4c0aa5d2..e6bf5b03 100644 --- a/finance-credit-card-chatbot/creditcard-rewards.sqrl +++ b/finance-credit-card-chatbot/creditcard-rewards.sqrl @@ -1,81 +1,97 @@ -IMPORT creditcard-data.Merchant; -IMPORT creditcard-data.CardAssignment; -IMPORT creditcard-data.Transaction; -IMPORT creditcard-data.MerchantReward; -IMPORT time.*; +IMPORT creditcard-data.Merchant AS _MerchantStream; +IMPORT creditcard-data.CardAssignment AS _CardAssignmentStream; +IMPORT creditcard-data.Transaction AS _Transaction; +IMPORT creditcard-data.MerchantReward AS _MerchantRewardStream; -Merchant := DISTINCT Merchant ON merchantId ORDER BY updatedTime DESC; -MerchantReward := DISTINCT MerchantReward ON merchantId ORDER BY updatedTime DESC; -CardAssignment := DISTINCT CardAssignment ON cardNo ORDER BY timestamp DESC; + +/* Deduplicate CDC Streams */ +_Merchant := DISTINCT _MerchantStream ON merchantId ORDER BY updatedTime DESC; +_CardAssignment := DISTINCT _CardAssignmentStream ON cardNo ORDER BY `timestamp` DESC; +_MerchantReward := DISTINCT _MerchantRewardStream ON merchantId ORDER BY updatedTime DESC; /* Part 1: Compute customer rewards */ -_CustomerTransaction := SELECT t.transactionId, t.cardNo, t.time, t.amount, m.name AS merchantName, - m.merchantId, m.category, c.customerid, c.cardType - FROM Transaction t - TEMPORAL JOIN CardAssignment c ON t.cardNo = c.cardNo - TEMPORAL JOIN Merchant m ON t.merchantId = m.merchantid ORDER BY t.time DESC; +_CustomerTransaction := SELECT t.transactionId, t.cardNo, t.`time`, t.amount, m.name AS merchantName, + m.merchantId, m.category, c.customerId, c.cardType + FROM _Transaction t + JOIN _CardAssignment FOR SYSTEM_TIME AS OF t.`time` c ON t.cardNo = c.cardNo + JOIN _Merchant FOR SYSTEM_TIME AS OF t.`time` m ON t.merchantId = m.merchantId; _CustomerTransactionRewards := SELECT t.*, r.rewardsByCard AS rewards FROM _CustomerTransaction t - TEMPORAL JOIN MerchantReward r ON r.merchantId = t.merchantId; + JOIN _MerchantReward FOR SYSTEM_TIME AS OF t.`time` r ON r.merchantId = t.merchantId; _CustomerTransactionRewardsByCard := SELECT t.*, t.amount * (r.rewardPercentage / 100.0) as reward, r.cardType AS rewardCardType - FROM _CustomerTransactionRewards t JOIN t.rewards r - WHERE timestampToEpoch(t.time) <= r.expirationTimestamp AND timestampToEpoch(t.time) >= r.startTimestamp; + FROM _CustomerTransactionRewards t CROSS JOIN UNNEST(t.rewards) r + WHERE UNIX_TIMESTAMP(DATE_FORMAT(t.`time`,'yyyy-MM-dd HH:mm:ss')) BETWEEN r.startTimestamp AND r.expirationTimestamp; -CustomerRewards := SELECT transactionId, customerId, cardNo, cardType, time, amount, reward, merchantName +CustomerRewards := SELECT transactionId, customerId, cardNo, cardType, `time`, amount, reward, merchantName FROM _CustomerTransactionRewardsByCard WHERE cardType = rewardCardType; -EXPORT CustomerRewards TO creditcard-sink.RewardSink; +NewCustomerRewards(customerId BIGINT NOT NULL) := SUBSCRIBE SELECT * FROM CustomerRewards WHERE customerId = :customerId; +EXPORT CustomerRewards TO creditcard-sink.RewardSink; /* Part 2a: Query and Analyze Rewards */ -Rewards(@customerid: BIGINT, @fromTime: TIMESTAMP, @toTime: TIMESTAMP) := -SELECT * FROM CustomerRewards WHERE customerid = @customerid AND @fromTime <= time AND @toTime > time -ORDER BY time DESC; +Rewards(customerId BIGINT NOT NULL, fromTime TIMESTAMP NOT NULL, toTime TIMESTAMP NOT NULL) := +SELECT * FROM CustomerRewards WHERE customerId = :customerId AND :fromTime <= `time` AND :toTime > `time` +ORDER BY `time` DESC; +/*+query_by_all(customerId) */ TotalReward := SELECT customerId, SUM(reward) AS total_reward, - MIN(time) as since_time + MIN(`time`) as since_time FROM CustomerRewards GROUP BY customerId; -RewardsByWeek := SELECT customerId, endOfWeek(time) as timeWeek, SUM(reward) as total_reward - FROM CustomerRewards GROUP BY customerId, timeWeek ORDER BY timeWeek DESC; - +/*+query_by_all(customerId) */ +RewardsByWeek := SELECT customerId, window_time as timeWeek, SUM(reward) as total_reward + FROM TABLE(TUMBLE(TABLE CustomerRewards, DESCRIPTOR(`time`), INTERVAL '7' DAY)) + GROUP BY customerId, window_start, window_end, window_time + ORDER BY window_time DESC; /* Part 2b: Compute potential rewards for personalized sales */ -_CustomerPotentialRewards := SELECT transactionId, customerId, rewardCardType, time, amount, reward, merchantName +_CustomerPotentialRewards := SELECT transactionId, customerId, rewardCardType, `time`, amount, reward, merchantName FROM _CustomerTransactionRewardsByCard - WHERE cardType != rewardCardType; + WHERE cardType <> rewardCardType; -PotentialRewards(@customerid: BIGINT, @cardType: STRING, @fromTime: TIMESTAMP, @toTime: TIMESTAMP) := -SELECT * FROM _CustomerPotentialRewards WHERE customerid = @customerid AND @fromTime <= time AND @toTime > time -AND rewardCardType = @cardType ORDER BY time DESC; +PotentialRewards(customerId BIGINT NOT NULL, cardType STRING NOT NULL, fromTime TIMESTAMP NOT NULL, toTime TIMESTAMP NOT NULL) := +SELECT * FROM _CustomerPotentialRewards WHERE customerId = :customerId AND :fromTime <= `time` AND :toTime > `time` +AND rewardCardType = :cardType ORDER BY `time` DESC; +/*+query_by_all(customerId) */ TotalPotentialReward := SELECT customerId, rewardCardType AS cardType, SUM(reward) AS total_reward, - MIN(time) as since_time + MIN(`time`) as since_time FROM _CustomerPotentialRewards - GROUP BY customerId, cardType ORDER BY cardType DESC; + GROUP BY customerId, rewardCardType ORDER BY cardType DESC; -PotentialRewardsByWeek := SELECT customerId, rewardCardType AS cardType, endOfWeek(time) as timeWeek, SUM(reward) as total_reward - FROM _CustomerPotentialRewards GROUP BY customerId, cardType, timeWeek ORDER BY timeWeek DESC; +/*+query_by_all(customerId, cardType) */ +PotentialRewardsByWeek := SELECT customerId, rewardCardType AS cardType, window_time as timeWeek, SUM(reward) as total_reward + FROM TABLE(TUMBLE(TABLE _CustomerPotentialRewards, DESCRIPTOR(`time`), INTERVAL '7' DAY)) + GROUP BY customerId, window_start, window_end, window_time, rewardCardType + ORDER BY window_time DESC, rewardCardType ASC; /* Part 3: Integrate Chat Agent */ -IMPORT creditcard-rewards.InternalSaveChatMessage; - -InternalGetChatMessages := SELECT c.role, c.content, c.name, c.functionCall, c.customerid, c.event_time AS timestamp, - c._uuid AS uuid FROM InternalSaveChatMessage c ORDER BY timestamp DESC; +CREATE TABLE InternalSaveChatMessage ( + uuid STRING NOT NULL METADATA FROM 'uuid', + role STRING NOT NULL, + content STRING NOT NULL, + name STRING, + functionCall STRING, + customerId INT, + event_time TIMESTAMP_LTZ(3) METADATA FROM 'timestamp' +); + +/*+query_by_all(customerId) */ +InternalGetChatMessages := SELECT c.role, c.content, c.name, c.functionCall, c.customerId, + c.event_time AS `timestamp`, uuid + FROM InternalSaveChatMessage c ORDER BY event_time DESC; /* =======TEST CASES======== */ /*+test */ -CardAssignmentTest := SELECT * FROM CardAssignment ORDER BY cardNo DESC, timestamp DESC LIMIT 5; - -/*+test */ -CustomerRewardsTest := SELECT * FROM CustomerRewards ORDER BY cardType DESC, time DESC LIMIT 5; +CustomerRewardsTest := SELECT * FROM CustomerRewards ORDER BY cardType DESC, `time` DESC LIMIT 5; /*+test */ RewardsByWeekTest := SELECT * FROM RewardsByWeek ORDER BY customerId DESC, timeWeek DESC LIMIT 5; diff --git a/finance-credit-card-chatbot/package-analytics-duckdb.json b/finance-credit-card-chatbot/package-analytics-duckdb.json index c97289e2..ad942ddd 100644 --- a/finance-credit-card-chatbot/package-analytics-duckdb.json +++ b/finance-credit-card-chatbot/package-analytics-duckdb.json @@ -1,7 +1,6 @@ { "version": "1", "enabled-engines": ["vertx", "iceberg", "duckdb", "kafka", "flink"], - "profiles": ["datasqrl.profile.default"], "script": { "main": "creditcard-analytics.sqrl", "graphql": "creditcard-analytics.graphqls" diff --git a/finance-credit-card-chatbot/package-analytics-kafka.json b/finance-credit-card-chatbot/package-analytics-kafka.json index 6cf1cc78..418d3c11 100644 --- a/finance-credit-card-chatbot/package-analytics-kafka.json +++ b/finance-credit-card-chatbot/package-analytics-kafka.json @@ -1,7 +1,6 @@ { "version": "1", "enabled-engines": ["vertx", "postgres", "kafka", "flink"], - "profiles": ["datasqrl.profile.default"], "script": { "main": "creditcard-analytics.sqrl", "graphql": "creditcard-analytics.graphqls" diff --git a/finance-credit-card-chatbot/package-analytics-local.json b/finance-credit-card-chatbot/package-analytics-local.json index 20f3167c..b5a19c0e 100644 --- a/finance-credit-card-chatbot/package-analytics-local.json +++ b/finance-credit-card-chatbot/package-analytics-local.json @@ -1,7 +1,6 @@ { "version": "1", "enabled-engines": ["vertx", "postgres", "kafka", "flink"], - "profiles": ["datasqrl.profile.default"], "script": { "main": "creditcard-analytics.sqrl", "graphql": "creditcard-analytics.graphqls" diff --git a/finance-credit-card-chatbot/package-rewards-kafka.json b/finance-credit-card-chatbot/package-rewards-kafka.json index ba67a8ab..731f6218 100644 --- a/finance-credit-card-chatbot/package-rewards-kafka.json +++ b/finance-credit-card-chatbot/package-rewards-kafka.json @@ -1,7 +1,6 @@ { "version": "1", "enabled-engines": ["vertx", "postgres", "kafka", "flink"], - "profiles": ["datasqrl.profile.default"], "script": { "main": "creditcard-rewards.sqrl", "graphql": "creditcard-rewards.graphqls" diff --git a/finance-credit-card-chatbot/package-rewards-local.json b/finance-credit-card-chatbot/package-rewards-local.json index 05d10828..e03068fc 100644 --- a/finance-credit-card-chatbot/package-rewards-local.json +++ b/finance-credit-card-chatbot/package-rewards-local.json @@ -1,7 +1,6 @@ { "version": "1", "enabled-engines": ["vertx", "postgres", "kafka", "flink"], - "profiles": ["datasqrl.profile.default"], "script": { "main": "creditcard-rewards.sqrl", "graphql": "creditcard-rewards.graphqls" diff --git a/finance-credit-card-chatbot/snapshots-rewards/CardAssignmentTest.snapshot b/finance-credit-card-chatbot/snapshots-rewards/CardAssignmentTest.snapshot deleted file mode 100644 index 22687c8c..00000000 --- a/finance-credit-card-chatbot/snapshots-rewards/CardAssignmentTest.snapshot +++ /dev/null @@ -1 +0,0 @@ -{"data":{"CardAssignmentTest":[{"customerId":6.0,"cardNo":65696286024927158272,"timestamp":"2024-02-25T08:00:00.000Z","cardType":"sports"},{"customerId":5.0,"cardNo":60116263360680935424,"timestamp":"2024-02-25T08:00:00.000Z","cardType":""},{"customerId":7.0,"cardNo":6771897819748792,"timestamp":"2024-02-25T08:00:00.000Z","cardType":""},{"customerId":2.0,"cardNo":6771897352274545,"timestamp":"2024-02-25T08:00:00.000Z","cardType":"travel"},{"customerId":2.0,"cardNo":6771895852360780,"timestamp":"2024-02-25T08:00:00.000Z","cardType":""}]}} \ No newline at end of file diff --git a/finance-credit-card-chatbot/snapshots-rewards/CustomerRewardsTest.snapshot b/finance-credit-card-chatbot/snapshots-rewards/CustomerRewardsTest.snapshot index 55d80637..8ea0f3de 100644 --- a/finance-credit-card-chatbot/snapshots-rewards/CustomerRewardsTest.snapshot +++ b/finance-credit-card-chatbot/snapshots-rewards/CustomerRewardsTest.snapshot @@ -1 +1 @@ -{"data":{"CustomerRewardsTest":[{"transactionId":8571374.0,"customerId":9.0,"cardNo":6771894392571071,"cardType":"travel","time":"2024-06-05T06:40:55.077Z","amount":1025.86,"reward":102.586,"merchantName":"Schulist, Leffler and Schneider"},{"transactionId":8571378.0,"customerId":9.0,"cardNo":6771894392571071,"cardType":"travel","time":"2024-06-05T06:07:45.566Z","amount":969.2,"reward":145.38,"merchantName":"Fisher, Gusikowski and Denesik"},{"transactionId":8571359.0,"customerId":2.0,"cardNo":6771897352274545,"cardType":"travel","time":"2024-06-04T23:54:33.829Z","amount":89.81,"reward":8.981,"merchantName":"Kulas Group"},{"transactionId":8571356.0,"customerId":2.0,"cardNo":6771897352274545,"cardType":"travel","time":"2024-06-04T22:37:10.033Z","amount":165.07,"reward":33.014,"merchantName":"VonRueden, Donnelly and Gleason"},{"transactionId":8571377.0,"customerId":9.0,"cardNo":6771894392571071,"cardType":"travel","time":"2024-06-04T22:17:51.860Z","amount":221.26,"reward":22.126,"merchantName":"Wolff Inc"}]}} \ No newline at end of file +{"data":{"CustomerRewardsTest":[{"transactionId":8571374,"customerId":9,"cardNo":6771894392571071,"cardType":"travel","time":"2024-06-05T06:40:55.077Z","amount":1025.86,"reward":102.586,"merchantName":"Schulist, Leffler and Schneider"},{"transactionId":8571378,"customerId":9,"cardNo":6771894392571071,"cardType":"travel","time":"2024-06-05T06:07:45.566Z","amount":969.2,"reward":145.38,"merchantName":"Fisher, Gusikowski and Denesik"},{"transactionId":8571359,"customerId":2,"cardNo":6771897352274545,"cardType":"travel","time":"2024-06-04T23:54:33.829Z","amount":89.81,"reward":8.981,"merchantName":"Kulas Group"},{"transactionId":8571356,"customerId":2,"cardNo":6771897352274545,"cardType":"travel","time":"2024-06-04T22:37:10.033Z","amount":165.07,"reward":33.014,"merchantName":"VonRueden, Donnelly and Gleason"},{"transactionId":8571377,"customerId":9,"cardNo":6771894392571071,"cardType":"travel","time":"2024-06-04T22:17:51.860Z","amount":221.26,"reward":22.126,"merchantName":"Wolff Inc"}]}} \ No newline at end of file diff --git a/finance-credit-card-chatbot/snapshots-rewards/PotentialRewardsByWeekTest.snapshot b/finance-credit-card-chatbot/snapshots-rewards/PotentialRewardsByWeekTest.snapshot index 93993635..b28d09ff 100644 --- a/finance-credit-card-chatbot/snapshots-rewards/PotentialRewardsByWeekTest.snapshot +++ b/finance-credit-card-chatbot/snapshots-rewards/PotentialRewardsByWeekTest.snapshot @@ -1 +1 @@ -{"data":{"PotentialRewardsByWeekTest":[{"customerId":2.0,"cardType":"sports","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":1209.067},{"customerId":4.0,"cardType":"travel","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":1050.519},{"customerId":10.0,"cardType":"travel","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":956.8925},{"customerId":2.0,"cardType":"travel","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":873.0795},{"customerId":2.0,"cardType":"sports","timeWeek":"2024-05-23T13:59:59.999Z","total_reward":1115.4105}]}} \ No newline at end of file +{"data":{"PotentialRewardsByWeekTest":[{"customerId":2,"cardType":"sports","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":1209.067},{"customerId":2,"cardType":"sports","timeWeek":"2024-05-23T13:59:59.999Z","total_reward":1115.4105},{"customerId":4,"cardType":"travel","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":1050.519},{"customerId":10,"cardType":"travel","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":956.8925},{"customerId":2,"cardType":"travel","timeWeek":"2024-05-30T13:59:59.999Z","total_reward":873.0795}]}} \ No newline at end of file diff --git a/finance-credit-card-chatbot/snapshots-rewards/RewardsByWeekTest.snapshot b/finance-credit-card-chatbot/snapshots-rewards/RewardsByWeekTest.snapshot index ad5875ed..7a5c309a 100644 --- a/finance-credit-card-chatbot/snapshots-rewards/RewardsByWeekTest.snapshot +++ b/finance-credit-card-chatbot/snapshots-rewards/RewardsByWeekTest.snapshot @@ -1 +1 @@ -{"data":{"RewardsByWeekTest":[{"customerId":9.0,"timeWeek":"2024-05-30T13:59:59.999Z","total_reward":441.643},{"customerId":9.0,"timeWeek":"2024-05-23T13:59:59.999Z","total_reward":313.08},{"customerId":9.0,"timeWeek":"2024-05-16T13:59:59.999Z","total_reward":258.56},{"customerId":9.0,"timeWeek":"2024-05-09T13:59:59.999Z","total_reward":165.0235},{"customerId":9.0,"timeWeek":"2024-05-02T13:59:59.999Z","total_reward":51.9605}]}} \ No newline at end of file +{"data":{"RewardsByWeekTest":[{"customerId":9,"timeWeek":"2024-05-30T13:59:59.999Z","total_reward":441.643},{"customerId":9,"timeWeek":"2024-05-23T13:59:59.999Z","total_reward":313.08},{"customerId":9,"timeWeek":"2024-05-16T13:59:59.999Z","total_reward":258.56},{"customerId":9,"timeWeek":"2024-05-09T13:59:59.999Z","total_reward":165.0235},{"customerId":9,"timeWeek":"2024-05-02T13:59:59.999Z","total_reward":51.9605}]}} \ No newline at end of file From 39f591e6ca0e37d97b4e33bee935b3bc9cc8ded6 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Tue, 8 Apr 2025 14:27:54 -0700 Subject: [PATCH 05/23] update udf example --- user-defined-function/README.md | 11 +++++------ user-defined-function/myudf.graphqls | 20 -------------------- user-defined-function/myudf.sqrl | 8 ++++++-- 3 files changed, 11 insertions(+), 28 deletions(-) delete mode 100644 user-defined-function/myudf.graphqls diff --git a/user-defined-function/README.md b/user-defined-function/README.md index ded15b7c..b15145d9 100644 --- a/user-defined-function/README.md +++ b/user-defined-function/README.md @@ -19,14 +19,13 @@ User-defined functions (UDFs) in Flink are powerful tools that allow for the ext 1. **SQRL Compilation:** Compile the SQRL using DataSQRL's command interface, which prepares your script for deployment in the Flink environment. ```shell -docker run --rm -v $PWD:/build datasqrl/cmd:v0.5.2 compile myudf.sqrl myudf.graphqls +docker run --rm -v $PWD:/build datasqrl/cmd compile myudf.sqrl ``` ## Deployment and Testing -### Starting Docker -1. **Docker Environment:** Deploy your new flink jar using the docker-compose example in the deploy folder. +### Run Example ```shell -(cd build/deploy; docker-compose up --build) +docker run -it -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:dev run myudf.sqrl ``` ### Creating and Testing Records 1. Creating a Record: Test the function by creating a record via a GraphQL query. @@ -35,7 +34,7 @@ curl -X POST 'http://localhost:8888/graphql' \ -H 'Content-Type: application/graphql' \ -d ' mutation { - entry(input: { val: 2 }) { + InputData(event: { val: 2 }) { val } }' @@ -48,7 +47,7 @@ curl -X POST 'http://localhost:8888/graphql' \ -H 'Content-Type: application/graphql' \ -d ' query { - myTable { + MyTable { val myFnc } diff --git a/user-defined-function/myudf.graphqls b/user-defined-function/myudf.graphqls deleted file mode 100644 index 3aec336b..00000000 --- a/user-defined-function/myudf.graphqls +++ /dev/null @@ -1,20 +0,0 @@ -type Query { - myTable(limit: Int = 10, offset: Int = 0): [MyTable!] -} - -type MyTable { - val: Int! - myFnc: Int! -} - -type Mutation { - entry(input: Entry!): EntryResponse! -} - -input Entry { - val: Int! -} - -type EntryResponse { - val: Int! -} diff --git a/user-defined-function/myudf.sqrl b/user-defined-function/myudf.sqrl index 88cb4036..cf4bb247 100644 --- a/user-defined-function/myudf.sqrl +++ b/user-defined-function/myudf.sqrl @@ -1,8 +1,12 @@ -IMPORT myudf.Entry; -- In prod, copy the jar into a sensibly named folder. In this example -- we'll use the folder that maven automatically creates for simplicity. -- The path is folder/functions IMPORT myjavafunction.target.MyScalarFunction; +-- Capture some input data +CREATE TABLE InputData ( + val BIGINT NOT NULL +); + MyTable := SELECT val, MyScalarFunction(val, val) AS myFnc - FROM Entry; \ No newline at end of file + FROM InputData; \ No newline at end of file From af2cc76c3c99f5a2cb76d3d32b1bab2d1668aa5d Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Tue, 8 Apr 2025 15:04:46 -0700 Subject: [PATCH 06/23] migrated oil and gas example --- .../monitoring-agent.sqrl | 53 ++++++++---- .../operations-agent.graphqls | 81 ------------------- .../operations-agent.sqrl | 70 ++++++++++------ oil-gas-agent-automation/package-local.json | 4 +- oil-gas-agent-automation/schema.graphqls | 77 ++++++++++++++++++ .../snapshots/RecentPressureTest.snapshot | 2 +- .../test-data/assets.table.json | 15 ---- .../test-data/assets.table.sql | 9 +++ .../test-data/flowrate.table.json | 15 ---- .../test-data/flowrate.table.sql | 9 +++ .../test-data/maintenance.table.json | 15 ---- .../test-data/maintenance.table.sql | 9 +++ .../test-data/measurement.table.json | 15 ---- .../test-data/measurement.table.sql | 9 +++ 14 files changed, 200 insertions(+), 183 deletions(-) delete mode 100644 oil-gas-agent-automation/operations-agent.graphqls create mode 100644 oil-gas-agent-automation/schema.graphqls delete mode 100644 oil-gas-agent-automation/test-data/assets.table.json create mode 100644 oil-gas-agent-automation/test-data/assets.table.sql delete mode 100644 oil-gas-agent-automation/test-data/flowrate.table.json create mode 100644 oil-gas-agent-automation/test-data/flowrate.table.sql delete mode 100644 oil-gas-agent-automation/test-data/maintenance.table.json create mode 100644 oil-gas-agent-automation/test-data/maintenance.table.sql delete mode 100644 oil-gas-agent-automation/test-data/measurement.table.json create mode 100644 oil-gas-agent-automation/test-data/measurement.table.sql diff --git a/oil-gas-agent-automation/monitoring-agent.sqrl b/oil-gas-agent-automation/monitoring-agent.sqrl index 4e9db8d3..74887423 100644 --- a/oil-gas-agent-automation/monitoring-agent.sqrl +++ b/oil-gas-agent-automation/monitoring-agent.sqrl @@ -1,25 +1,48 @@ -IMPORT test-data.*; -IMPORT time.endOfMinute; +IMPORT test-data.Assets AS _AssetUpdates; +IMPORT test-data.Maintenance AS _MaintenanceUpdates; +IMPORT test-data.Measurement AS _Measurement; +IMPORT test-data.FlowRate; -Assets := DISTINCT Assets ON asset_id ORDER BY lastUpdated DESC; -Maintenance := DISTINCT Maintenance ON work_order_id ORDER BY lastUpdated DESC; -Assets.maintenance := JOIN Maintenance m ON @.asset_id = m.asset_id ORDER BY m.lastUpdated DESC; +/** + Returns information about the well/asset including it's maintenance records, manual, + description, and other important information. + */ +/*+query_by_all(asset_id) */ +Assets := DISTINCT _AssetUpdates ON asset_id ORDER BY lastUpdated DESC; +/*+no_query */ +Maintenance := DISTINCT _MaintenanceUpdates ON work_order_id ORDER BY lastUpdated DESC; +Assets.maintenance := SELECT * FROM Maintenance m WHERE this.asset_id = m.asset_id ORDER BY m.lastUpdated DESC; -FlowRateByRange(@minRate: DOUBLE, @maxRate: DOUBLE) := SELECT * FROM Flowrate - WHERE flowrate >= @minRate AND flowrate <= @maxRate ORDER BY event_time DESC LIMIT 100; +/** + Returns all FlowRate readings within the provided [minRate,maxRate] interval across + all assets. + */ +FlowRateByRange(minRate DOUBLE NOT NULL, maxRate DOUBLE NOT NULL) := SELECT * FROM FlowRate + WHERE flowrate >= :minRate AND flowrate <= :maxRate ORDER BY event_time DESC LIMIT 100; -PressureByMinute := SELECT assetId, endOfMinute(timestamp) AS timestamp_min, +/** + Returns the average/maximum pressure and average temperature for a given asset + for minute time intervals + */ +/*+query_by_all(assetId) */ +PressureByMinute := SELECT assetId, window_time AS timestamp_min, AVG(pressure_psi) AS avg_pressure_psi, MAX(pressure_psi) AS max_pressure_psi, AVG(temperature_f) AS avg_temperature_f - FROM Measurement - GROUP BY assetId, timestamp_min ORDER BY timestamp_min DESC; + FROM TABLE(TUMBLE(TABLE _Measurement, DESCRIPTOR(`timestamp`), INTERVAL '1' MINUTE)) + GROUP BY assetId, window_start, window_end, window_time + ORDER BY window_time DESC; -FlowrateByMinute := SELECT assetId, endOfMinute(event_time) AS timestamp_min, +/** + Returns the average/maximum flow rate for a given asset for minute time intervals + */ +/*+query_by_all(assetId) */ +FlowrateByMinute := SELECT assetId, window_time AS timestamp_min, AVG(flowrate) AS avg_flowrate, MAX(flowrate) AS max_flowrate - FROM Flowrate - GROUP BY assetId, timestamp_min ORDER BY timestamp_min DESC; + FROM TABLE(TUMBLE(TABLE FlowRate, DESCRIPTOR(`event_time`), INTERVAL '1' MINUTE)) + GROUP BY assetId, window_start, window_end, window_time + ORDER BY window_time DESC; -Assets.flowrate := JOIN FlowrateByMinute f ON @.asset_id = f.assetId ORDER BY timestamp_min DESC; -Assets.pressure := JOIN PressureByMinute p ON @.asset_id = p.assetId ORDER BY timestamp_min DESC; \ No newline at end of file +Assets.flowrate := SELECT * FROM FlowrateByMinute f WHERE this.asset_id = f.assetId ORDER BY timestamp_min DESC; +Assets.pressure := SELECT * FROM PressureByMinute p WHERE this.asset_id = p.assetId ORDER BY timestamp_min DESC; \ No newline at end of file diff --git a/oil-gas-agent-automation/operations-agent.graphqls b/oil-gas-agent-automation/operations-agent.graphqls deleted file mode 100644 index d9613fa1..00000000 --- a/oil-gas-agent-automation/operations-agent.graphqls +++ /dev/null @@ -1,81 +0,0 @@ -"An RFC-3339 compliant DateTime Scalar" -scalar DateTime - -type Query { - """ - Returns information about the well/asset including it's maintenance records, manual, - description, and other important information. - """ - Assets(asset_id: Int!, limit: Int = 20, offset: Int = 0): [Assets!] - """ - Returns the flowrate readings for a given well/asset within the specified range order by timestamp decreasing. - """ - FlowRateByRange(assetId: Int!, minRate: Float = 0, maxRate: Float = 10000): [EnrichedFlowRate!] - """ - Returns recent pressure and temperature readings for a given well/asset by id. - """ - RecentPressure(assetId: Int!, limit: Int = 25, offset: Int = 0): [RecentPressure!] -} - -type Subscription { - LowFlowRate: EnrichedFlowRate -} - -type RecentPressure { - assetId: Int! - timestamp_normalized: DateTime! - pressure_psi: Float! - temperature_f: Float! -} - -type Assets { - asset_id: Int! - asset_number: String! - asset_name: String! - asset_category_id: Int! - description: String! - date_placed_in_service: String! - asset_cost: Float! - status: String! - asset_manual: String! - lastUpdated: DateTime! - maintenance: [Maintenance!] -} - -type Maintenance { - work_order_id: Int! - work_order_num: String! - asset_id: Int! - description: String! - wo_type: String! - priority: String! - status: String! - request_date: String! - start_date: String - completion_date: String - lastUpdated: DateTime! -} - -type EnrichedFlowRate { - assetId: Int! - flowrate: Float! - event_time: DateTime! - asset_number: String! - asset_name: String! - description: String! -} - -input FlowRateInput { - assetId: Int! - flowrate: Float! -} - -type FlowRateResult { - assetId: Int! - flowrate: Float! - event_time: DateTime! -} - -type Mutation { - AddFlowRate(event: FlowRateInput!): FlowRateResult! -} \ No newline at end of file diff --git a/oil-gas-agent-automation/operations-agent.sqrl b/oil-gas-agent-automation/operations-agent.sqrl index 6fa582a1..ab7363d3 100644 --- a/oil-gas-agent-automation/operations-agent.sqrl +++ b/oil-gas-agent-automation/operations-agent.sqrl @@ -1,32 +1,56 @@ -IMPORT test-data.Assets; -IMPORT test-data.Maintenance AS MaintenanceUpdates; -IMPORT test-data.Measurement; -IMPORT operations-agent.AddFlowRate AS Flowrate; -IMPORT time.endOfSecond; - -Assets := DISTINCT Assets ON asset_id ORDER BY lastUpdated DESC; -Maintenance := DISTINCT MaintenanceUpdates ON work_order_id ORDER BY lastUpdated DESC; -Assets.maintenance := JOIN Maintenance m ON @.asset_id = m.asset_id ORDER BY m.lastUpdated DESC; - -EXPORT Flowrate TO print.Flowrate; - +IMPORT test-data.Assets AS _AssetUpdates; +IMPORT test-data.Maintenance AS _MaintenanceUpdates; +IMPORT test-data.Measurement AS _Measurement; + +/*+no_query */ +CREATE TABLE FlowRate ( + event_id STRING NOT NULL METADATA FROM 'uuid', + assetId BIGINT NOT NULL, + flowrate FLOAT NOT NULL, + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' +); + +/** + Returns information about the well/asset including it's maintenance records, manual, + description, and other important information. + */ +/*+query_by_all(asset_id) */ +Assets := DISTINCT _AssetUpdates ON asset_id ORDER BY lastUpdated DESC; +/*+no_query */ +Maintenance := DISTINCT _MaintenanceUpdates ON work_order_id ORDER BY lastUpdated DESC; +Assets.maintenance := SELECT * FROM Maintenance m WHERE this.asset_id = m.asset_id ORDER BY m.lastUpdated DESC; + +EXPORT FlowRate TO print.Flowrate; + +/*+no_query */ EnrichedFlowRate := SELECT f.*, a.asset_number, a.asset_name, a.description - FROM Flowrate f - TEMPORAL JOIN Assets a ON f.assetId = a.asset_id; + FROM FlowRate f + JOIN Assets FOR SYSTEM_TIME AS OF f.event_time a ON f.assetId = a.asset_id; EXPORT EnrichedFlowRate TO print.EnrichedFlowRate; -LowFlowRate := SELECT * FROM EnrichedFlowRate WHERE flowrate < 200; - -FlowRateByRange(@assetId: BIGINT, @minRate: DOUBLE, @maxRate: DOUBLE) := SELECT * FROM EnrichedFlowRate - WHERE assetId = @assetId AND flowrate >= @minRate AND flowrate <= @maxRate ORDER BY event_time DESC LIMIT 100; - -RecentPressure := SELECT assetId, endOfSecond(timestamp, 10) AS timestamp_normalized, +LowFlowRate := SUBSCRIBE SELECT * FROM EnrichedFlowRate WHERE flowrate < 200; + +/** +Returns the flowrate readings for a given well/asset within the specified range order by timestamp decreasing. + */ +FlowRateByRange(assetId BIGINT NOT NULL, minRate DOUBLE NOT NULL, maxRate DOUBLE NOT NULL) := + SELECT * FROM EnrichedFlowRate + WHERE assetId = :assetId AND flowrate >= :minRate AND flowrate <= :maxRate + ORDER BY event_time DESC LIMIT 100; + +/** +Returns recent pressure and temperature readings for a given well/asset by id. + */ +/*+query_by_all(assetId) */ +RecentPressure := SELECT assetId, window_time AS timestamp_normalized, AVG(pressure_psi) AS pressure_psi, AVG(temperature_f) AS temperature_f - FROM Measurement - GROUP BY assetId, timestamp_normalized ORDER BY timestamp_normalized DESC; + FROM TABLE(TUMBLE(TABLE _Measurement, DESCRIPTOR(`timestamp`), INTERVAL '10' SECOND)) + GROUP BY assetId, window_start, window_end, window_time + ORDER BY window_time DESC; + /*+ test */ -RecentPressureTest := SELECT * FROM RecentPressure ORDER BY timestamp_normalized DESC; +RecentPressureTest := SELECT * FROM RecentPressure ORDER BY timestamp_normalized DESC, assetId ASC; diff --git a/oil-gas-agent-automation/package-local.json b/oil-gas-agent-automation/package-local.json index 75ea1ac4..93cea48e 100644 --- a/oil-gas-agent-automation/package-local.json +++ b/oil-gas-agent-automation/package-local.json @@ -1,10 +1,8 @@ { "version": "1", "enabled-engines": ["vertx", "postgres", "kafka", "flink"], - "profiles": ["datasqrl.profile.default"], "script": { - "main": "operations-agent.sqrl", - "graphql": "operations-agent.graphqls" + "main": "operations-agent.sqrl" }, "values" : { "flink-config": { diff --git a/oil-gas-agent-automation/schema.graphqls b/oil-gas-agent-automation/schema.graphqls new file mode 100644 index 00000000..22c3db62 --- /dev/null +++ b/oil-gas-agent-automation/schema.graphqls @@ -0,0 +1,77 @@ +type Assets { + asset_id: GraphQLBigInteger! + asset_number: String! + asset_name: String! + asset_category_id: GraphQLBigInteger! + description: String! + date_placed_in_service: String! + asset_cost: GraphQLBigInteger! + status: String! + asset_manual: String! + lastUpdated: DateTime! + flowrate(limit: Int = 10, offset: Int = 0): [FlowrateByMinute!] + maintenance(limit: Int = 10, offset: Int = 0): [Maintenance!] + pressure(limit: Int = 10, offset: Int = 0): [PressureByMinute!] +} + +"An RFC-3339 compliant DateTime Scalar" +scalar DateTime + +type FlowRate { + assetId: GraphQLBigInteger! + flowrate: Float! + event_time: DateTime! +} + +type FlowrateByMinute { + assetId: GraphQLBigInteger! + timestamp_min: DateTime! + avg_flowrate: Float! + max_flowrate: Float! +} + +"An arbitrary precision signed integer" +scalar GraphQLBigInteger + +type Maintenance { + work_order_id: GraphQLBigInteger! + work_order_num: String! + asset_id: GraphQLBigInteger! + description: String! + wo_type: String! + priority: String! + status: String! + request_date: String! + start_date: String + completion_date: String + lastUpdated: DateTime! +} + +type PressureByMinute { + assetId: GraphQLBigInteger! + timestamp_min: DateTime! + avg_pressure_psi: Float! + max_pressure_psi: Float! + avg_temperature_f: Float! +} + +type Query { + """ + Returns information about the well/asset including it's maintenance records, manual, + description, and other important information. + """ + Assets(asset_id: GraphQLBigInteger!, limit: Int = 10, offset: Int = 0): [Assets!] + FlowRate(limit: Int = 10, offset: Int = 0): [FlowRate!] + "Returns the average/maximum flow rate for a given asset for minute time intervals" + FlowrateByMinute(assetId: GraphQLBigInteger!, limit: Int = 10, offset: Int = 0): [FlowrateByMinute!] + """ + Returns the average/maximum pressure and average temperature for a given asset + for minute time intervals + """ + PressureByMinute(assetId: GraphQLBigInteger!, limit: Int = 10, offset: Int = 0): [PressureByMinute!] + """ + Returns all FlowRate readings within the provided [minRate,maxRate] interval across + all assets. + """ + FlowRateByRange(minRate: Float!, maxRate: Float!, limit: Int = 10, offset: Int = 0): [FlowRate!] +} diff --git a/oil-gas-agent-automation/snapshots/RecentPressureTest.snapshot b/oil-gas-agent-automation/snapshots/RecentPressureTest.snapshot index ccc33ee5..f13d4307 100644 --- a/oil-gas-agent-automation/snapshots/RecentPressureTest.snapshot +++ b/oil-gas-agent-automation/snapshots/RecentPressureTest.snapshot @@ -1 +1 @@ -{"data":{"RecentPressureTest":[{"assetId":12221.0,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":3399.59,"temperature_f":189.68},{"assetId":21112.0,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":1803.95,"temperature_f":189.51},{"assetId":34443.0,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":3686.41,"temperature_f":190.04},{"assetId":45555.0,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":2076.75,"temperature_f":189.98},{"assetId":59995.0,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":2999.76,"temperature_f":189.9},{"assetId":12221.0,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":3397.36,"temperature_f":189.41},{"assetId":21112.0,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":1808.38,"temperature_f":190.25},{"assetId":34443.0,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":3603.5,"temperature_f":190.15},{"assetId":45555.0,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":2127.65,"temperature_f":189.54},{"assetId":59995.0,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":3000.97,"temperature_f":190.4}]}} \ No newline at end of file +{"data":{"RecentPressureTest":[{"assetId":12221,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":3399.59,"temperature_f":189.68},{"assetId":21112,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":1803.95,"temperature_f":189.51},{"assetId":34443,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":3686.41,"temperature_f":190.04},{"assetId":45555,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":2076.75,"temperature_f":189.98},{"assetId":59995,"timestamp_normalized":"2025-02-11T12:21:29.999Z","pressure_psi":2999.76,"temperature_f":189.9},{"assetId":12221,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":3397.36,"temperature_f":189.41},{"assetId":21112,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":1808.38,"temperature_f":190.25},{"assetId":34443,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":3603.5,"temperature_f":190.15},{"assetId":45555,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":2127.65,"temperature_f":189.54},{"assetId":59995,"timestamp_normalized":"2025-02-11T12:21:19.999Z","pressure_psi":3000.97,"temperature_f":190.4}]}} \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/assets.table.json b/oil-gas-agent-automation/test-data/assets.table.json deleted file mode 100644 index 016f9d07..00000000 --- a/oil-gas-agent-automation/test-data/assets.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/assets.jsonl", - "source.monitor-interval" : 10000, - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "asset_id", "lastUpdated" ], - "timestamp" : "lastUpdated", - "watermark-millis" : "0" - } -} \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/assets.table.sql b/oil-gas-agent-automation/test-data/assets.table.sql new file mode 100644 index 00000000..09559c21 --- /dev/null +++ b/oil-gas-agent-automation/test-data/assets.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Assets ( + PRIMARY KEY (`asset_id`, `lastUpdated`) NOT ENFORCED, + WATERMARK FOR `lastUpdated` AS `lastUpdated` +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/assets.jsonl', + 'source.monitor-interval' = '10000', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/flowrate.table.json b/oil-gas-agent-automation/test-data/flowrate.table.json deleted file mode 100644 index 5dd01c40..00000000 --- a/oil-gas-agent-automation/test-data/flowrate.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/flowrate.jsonl.gz", - "source.monitor-interval" : 10000, - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "assetId", "event_time" ], - "timestamp" : "event_time", - "watermark-millis" : "0" - } -} \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/flowrate.table.sql b/oil-gas-agent-automation/test-data/flowrate.table.sql new file mode 100644 index 00000000..9169f053 --- /dev/null +++ b/oil-gas-agent-automation/test-data/flowrate.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Flowrate ( + PRIMARY KEY (`assetId`, `event_time`) NOT ENFORCED, + WATERMARK FOR `event_time` AS `event_time` +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/flowrate.jsonl.gz', + 'source.monitor-interval' = '10000', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/maintenance.table.json b/oil-gas-agent-automation/test-data/maintenance.table.json deleted file mode 100644 index cc0d481b..00000000 --- a/oil-gas-agent-automation/test-data/maintenance.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/maintenance.jsonl", - "source.monitor-interval" : 10000, - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "work_order_id", "lastUpdated" ], - "timestamp" : "lastUpdated", - "watermark-millis" : "0" - } -} \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/maintenance.table.sql b/oil-gas-agent-automation/test-data/maintenance.table.sql new file mode 100644 index 00000000..b74ec8dc --- /dev/null +++ b/oil-gas-agent-automation/test-data/maintenance.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Maintenance ( + PRIMARY KEY (`work_order_id`, `lastUpdated`) NOT ENFORCED, + WATERMARK FOR `lastUpdated` AS `lastUpdated` +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/maintenance.jsonl', + 'source.monitor-interval' = '10000', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/measurement.table.json b/oil-gas-agent-automation/test-data/measurement.table.json deleted file mode 100644 index 8cfadc51..00000000 --- a/oil-gas-agent-automation/test-data/measurement.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/measurement.jsonl.gz", - "source.monitor-interval" : 10000, - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "assetId", "timestamp" ], - "timestamp" : "timestamp", - "watermark-millis" : "0" - } -} \ No newline at end of file diff --git a/oil-gas-agent-automation/test-data/measurement.table.sql b/oil-gas-agent-automation/test-data/measurement.table.sql new file mode 100644 index 00000000..2a6eb006 --- /dev/null +++ b/oil-gas-agent-automation/test-data/measurement.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Measurement ( + PRIMARY KEY (`assetId`, `timestamp`) NOT ENFORCED, + WATERMARK FOR `timestamp` AS `timestamp` +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/measurement.jsonl.gz', + 'source.monitor-interval' = '10000', + 'connector' = 'filesystem' + ); \ No newline at end of file From 227c4db0d4d2bf2b8fff6ab0b74fa675db29accf Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 14:57:29 -0700 Subject: [PATCH 07/23] updated logistics example to 0.6 --- .../data/customer.schema.yml | 21 - .../data/customer.table.json | 19 - .../data/shipment.schema.yml | 37 - .../data/shipment.table.json | 19 - .../data/shipment_location.schema.yml | 17 - .../data/shipment_location.table.json | 19 - .../data/vehicle.schema.yml | 21 - .../data/vehicle.table.json | 19 - .../data/vehicle_status.schema.yml | 21 - .../data/vehicle_status.table.json | 19 - logistics-shipping-geodata/logistics.sqrl | 30 +- .../{data => tables}/customer.jsonl | 0 .../tables/customer.table.json | 14 - .../tables/customer.table.sql | 8 + .../{data => tables}/shipment.jsonl | 0 .../tables/shipment.table.json | 14 - .../tables/shipment.table.sql | 8 + .../{data => tables}/shipment_location.jsonl | 0 .../tables/shipment_location.table.json | 14 - .../tables/shipment_location.table.sql | 8 + .../{data => tables}/vehicle.jsonl | 0 .../tables/vehicle.table.json | 14 - .../tables/vehicle.table.sql | 8 + .../{data => tables}/vehicle_status.jsonl | 0 .../tables/vehicle_status.table.json | 14 - .../tables/vehicle_status.table.sql | 8 + oil-gas-agent-automation/schema.graphqls | 77 -- retail-customer360-nutshop/README.md | 95 -- retail-customer360-nutshop/customer360.sqrl | 51 - .../nutshop-data/README.md | 124 -- .../nutshop-data/customers.jsonl | 37 - .../nutshop-data/customers.schema.yml | 29 - .../nutshop-data/customers.table.json | 19 - .../nutshop-data/orderitems.jsonl | 1014 ----------------- .../nutshop-data/orderitems.schema.yml | 35 - .../nutshop-data/orderitems.table.json | 14 - .../nutshop-data/orders.jsonl | 1014 ----------------- .../nutshop-data/orders.schema.yml | 31 - .../nutshop-data/orders.table.json | 14 - .../nutshop-data/package.json | 16 - .../nutshop-data/products.jsonl | 208 ---- .../nutshop-data/products.schema.yml | 37 - .../nutshop-data/products.table.json | 14 - .../snapshots/CustomerPurchaseTest.snapshot | 1 - 44 files changed, 60 insertions(+), 3122 deletions(-) delete mode 100644 logistics-shipping-geodata/data/customer.schema.yml delete mode 100644 logistics-shipping-geodata/data/customer.table.json delete mode 100644 logistics-shipping-geodata/data/shipment.schema.yml delete mode 100644 logistics-shipping-geodata/data/shipment.table.json delete mode 100644 logistics-shipping-geodata/data/shipment_location.schema.yml delete mode 100644 logistics-shipping-geodata/data/shipment_location.table.json delete mode 100644 logistics-shipping-geodata/data/vehicle.schema.yml delete mode 100644 logistics-shipping-geodata/data/vehicle.table.json delete mode 100644 logistics-shipping-geodata/data/vehicle_status.schema.yml delete mode 100644 logistics-shipping-geodata/data/vehicle_status.table.json rename logistics-shipping-geodata/{data => tables}/customer.jsonl (100%) delete mode 100644 logistics-shipping-geodata/tables/customer.table.json create mode 100644 logistics-shipping-geodata/tables/customer.table.sql rename logistics-shipping-geodata/{data => tables}/shipment.jsonl (100%) delete mode 100644 logistics-shipping-geodata/tables/shipment.table.json create mode 100644 logistics-shipping-geodata/tables/shipment.table.sql rename logistics-shipping-geodata/{data => tables}/shipment_location.jsonl (100%) delete mode 100644 logistics-shipping-geodata/tables/shipment_location.table.json create mode 100644 logistics-shipping-geodata/tables/shipment_location.table.sql rename logistics-shipping-geodata/{data => tables}/vehicle.jsonl (100%) delete mode 100644 logistics-shipping-geodata/tables/vehicle.table.json create mode 100644 logistics-shipping-geodata/tables/vehicle.table.sql rename logistics-shipping-geodata/{data => tables}/vehicle_status.jsonl (100%) delete mode 100644 logistics-shipping-geodata/tables/vehicle_status.table.json create mode 100644 logistics-shipping-geodata/tables/vehicle_status.table.sql delete mode 100644 oil-gas-agent-automation/schema.graphqls delete mode 100644 retail-customer360-nutshop/README.md delete mode 100644 retail-customer360-nutshop/customer360.sqrl delete mode 100644 retail-customer360-nutshop/nutshop-data/README.md delete mode 100644 retail-customer360-nutshop/nutshop-data/customers.jsonl delete mode 100644 retail-customer360-nutshop/nutshop-data/customers.schema.yml delete mode 100644 retail-customer360-nutshop/nutshop-data/customers.table.json delete mode 100644 retail-customer360-nutshop/nutshop-data/orderitems.jsonl delete mode 100644 retail-customer360-nutshop/nutshop-data/orderitems.schema.yml delete mode 100644 retail-customer360-nutshop/nutshop-data/orderitems.table.json delete mode 100644 retail-customer360-nutshop/nutshop-data/orders.jsonl delete mode 100644 retail-customer360-nutshop/nutshop-data/orders.schema.yml delete mode 100644 retail-customer360-nutshop/nutshop-data/orders.table.json delete mode 100644 retail-customer360-nutshop/nutshop-data/package.json delete mode 100644 retail-customer360-nutshop/nutshop-data/products.jsonl delete mode 100644 retail-customer360-nutshop/nutshop-data/products.schema.yml delete mode 100644 retail-customer360-nutshop/nutshop-data/products.table.json delete mode 100644 retail-customer360-nutshop/snapshots/CustomerPurchaseTest.snapshot diff --git a/logistics-shipping-geodata/data/customer.schema.yml b/logistics-shipping-geodata/data/customer.schema.yml deleted file mode 100644 index da67e461..00000000 --- a/logistics-shipping-geodata/data/customer.schema.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: "customer" -schema_version: "1" -partial_schema: false -columns: -- name: "id" - type: "BIGINT" - tests: - - "not_null" -- name: "lastUpdated" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "email" - type: "STRING" - tests: - - "not_null" -- name: "phone" - type: "STRING" - tests: - - "not_null" diff --git a/logistics-shipping-geodata/data/customer.table.json b/logistics-shipping-geodata/data/customer.table.json deleted file mode 100644 index 6dc22411..00000000 --- a/logistics-shipping-geodata/data/customer.table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/customer.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "metadata" : { - "_ingest_time" : { - "attribute" : "proctime()" - } - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "id", "lastUpdated", "email", "phone" ], - "timestamp" : "_ingest_time" - } -} \ No newline at end of file diff --git a/logistics-shipping-geodata/data/shipment.schema.yml b/logistics-shipping-geodata/data/shipment.schema.yml deleted file mode 100644 index ab80b118..00000000 --- a/logistics-shipping-geodata/data/shipment.schema.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -name: "shipment" -schema_version: "1" -partial_schema: false -columns: -- name: "id" - type: "BIGINT" - tests: - - "not_null" -- name: "lastUpdated" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "origin" - type: "STRING" - tests: - - "not_null" -- name: "lat" - type: "DOUBLE" - tests: - - "not_null" -- name: "lon" - type: "DOUBLE" - tests: - - "not_null" -- name: "weight" - type: "DOUBLE" - tests: - - "not_null" -- name: "estimatedDelivery" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "customerId" - type: "BIGINT" - tests: - - "not_null" diff --git a/logistics-shipping-geodata/data/shipment.table.json b/logistics-shipping-geodata/data/shipment.table.json deleted file mode 100644 index 0dd88948..00000000 --- a/logistics-shipping-geodata/data/shipment.table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/shipment.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "metadata" : { - "_ingest_time" : { - "attribute" : "proctime()" - } - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "id", "lastUpdated", "origin", "lat", "lon", "weight", "estimatedDelivery", "customerId" ], - "timestamp" : "_ingest_time" - } -} \ No newline at end of file diff --git a/logistics-shipping-geodata/data/shipment_location.schema.yml b/logistics-shipping-geodata/data/shipment_location.schema.yml deleted file mode 100644 index 173bd89c..00000000 --- a/logistics-shipping-geodata/data/shipment_location.schema.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: "shipment_location" -schema_version: "1" -partial_schema: false -columns: -- name: "timestamp" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "shipmentId" - type: "BIGINT" - tests: - - "not_null" -- name: "vehicleId" - type: "BIGINT" - tests: - - "not_null" diff --git a/logistics-shipping-geodata/data/shipment_location.table.json b/logistics-shipping-geodata/data/shipment_location.table.json deleted file mode 100644 index 3ebfe173..00000000 --- a/logistics-shipping-geodata/data/shipment_location.table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/shipment_location.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "metadata" : { - "_ingest_time" : { - "attribute" : "proctime()" - } - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "timestamp", "shipmentId", "vehicleId" ], - "timestamp" : "_ingest_time" - } -} \ No newline at end of file diff --git a/logistics-shipping-geodata/data/vehicle.schema.yml b/logistics-shipping-geodata/data/vehicle.schema.yml deleted file mode 100644 index 9e4d928c..00000000 --- a/logistics-shipping-geodata/data/vehicle.schema.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: "vehicle" -schema_version: "1" -partial_schema: false -columns: -- name: "id" - type: "BIGINT" - tests: - - "not_null" -- name: "lastUpdated" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "type" - type: "STRING" - tests: - - "not_null" -- name: "capacity" - type: "BIGINT" - tests: - - "not_null" diff --git a/logistics-shipping-geodata/data/vehicle.table.json b/logistics-shipping-geodata/data/vehicle.table.json deleted file mode 100644 index 4a0afdd1..00000000 --- a/logistics-shipping-geodata/data/vehicle.table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/vehicle.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "metadata" : { - "_ingest_time" : { - "attribute" : "proctime()" - } - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "id", "lastUpdated", "type", "capacity" ], - "timestamp" : "_ingest_time" - } -} \ No newline at end of file diff --git a/logistics-shipping-geodata/data/vehicle_status.schema.yml b/logistics-shipping-geodata/data/vehicle_status.schema.yml deleted file mode 100644 index 4d45211f..00000000 --- a/logistics-shipping-geodata/data/vehicle_status.schema.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: "vehicle_status" -schema_version: "1" -partial_schema: false -columns: -- name: "timestamp" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "lat" - type: "DOUBLE" - tests: - - "not_null" -- name: "lon" - type: "DOUBLE" - tests: - - "not_null" -- name: "vehicleId" - type: "BIGINT" - tests: - - "not_null" diff --git a/logistics-shipping-geodata/data/vehicle_status.table.json b/logistics-shipping-geodata/data/vehicle_status.table.json deleted file mode 100644 index d217003f..00000000 --- a/logistics-shipping-geodata/data/vehicle_status.table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/vehicle_status.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "metadata" : { - "_ingest_time" : { - "attribute" : "proctime()" - } - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "timestamp", "lat", "lon", "vehicleId" ], - "timestamp" : "_ingest_time" - } -} \ No newline at end of file diff --git a/logistics-shipping-geodata/logistics.sqrl b/logistics-shipping-geodata/logistics.sqrl index 31723de5..e87eb168 100644 --- a/logistics-shipping-geodata/logistics.sqrl +++ b/logistics-shipping-geodata/logistics.sqrl @@ -1,26 +1,36 @@ -IMPORT tables.Customer; -IMPORT tables.Shipment; -IMPORT tables.Vehicle; +IMPORT tables.Customer AS _CustomerUpdates; +IMPORT tables.Shipment AS _ShipmentUpdates; +IMPORT tables.Vehicle AS _VehicleUpdates; +/*+no_query */ IMPORT tables.Shipment_Location; +/*+no_query */ IMPORT tables.Vehicle_Status; - -- Turn the Customer and Shipment CDC change streams to a state tables. -Customer := DISTINCT Customer ON id ORDER BY lastUpdated DESC; -Shipment := DISTINCT Shipment ON id ORDER BY lastUpdated DESC; +/*+query_by_any(id, email) */ +Customer := DISTINCT _CustomerUpdates ON id ORDER BY lastUpdated DESC; +/*+query_by_all(id) */ +Shipment := DISTINCT _ShipmentUpdates ON id ORDER BY lastUpdated DESC; +/*+query_by_all(id) */ +Vehicle := DISTINCT _VehicleUpdates ON id ORDER BY lastUpdated DESC; -- Create a relationship between the two. -Customer.shipments := JOIN Shipment s ON s.customerId = @.id; +Customer.shipments := SELECT * FROM Shipment s WHERE s.customerId = this.id; +/*+no_query */ +CustomerStatistics := SELECT customerId, count(*) AS shipment_count FROM Shipment GROUP BY customerId; -- Add a statistics field to the customer to indicate how many shipments they have. -Customer.statistics := SELECT count(*) shipment_count FROM @ JOIN @.shipments; +Customer.statistics := SELECT * FROM CustomerStatistics WHERE customerId = this.id LIMIT 1; -- Create relationship to shipment locations. -Shipment.locations := JOIN Shipment_Location l ON l.shipmentId = @.id ORDER BY l.timestamp DESC; +Shipment.locations := SELECT * FROM Shipment_Location l WHERE l.shipmentId = this.id ORDER BY l.`timestamp` DESC; -- Create relationship to vehicle statuses. -Shipment_Location.vehicle_statuses := JOIN Vehicle_Status s ON s.vehicleId = @.vehicleId ORDER BY s.timestamp DESC; +Shipment_Location.vehicle_statuses := SELECT * FROM Vehicle_Status s WHERE s.vehicleId = this.vehicleId ORDER BY s.`timestamp` DESC; + +Vehicle_Status.vehicle := SELECT * FROM Vehicle v WHERE v.id = this.vehicleId LIMIT 1; +Vehicle.status := SELECT * FROM Vehicle_Status s WHERE s.vehicleId = this.id ORDER BY s.`timestamp`; /* =======TEST CASES======== */ diff --git a/logistics-shipping-geodata/data/customer.jsonl b/logistics-shipping-geodata/tables/customer.jsonl similarity index 100% rename from logistics-shipping-geodata/data/customer.jsonl rename to logistics-shipping-geodata/tables/customer.jsonl diff --git a/logistics-shipping-geodata/tables/customer.table.json b/logistics-shipping-geodata/tables/customer.table.json deleted file mode 100644 index 85cabdc2..00000000 --- a/logistics-shipping-geodata/tables/customer.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/customer.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["id"], - "timestamp" : "lastUpdated", - "watermark-millis" : "1" - } -} diff --git a/logistics-shipping-geodata/tables/customer.table.sql b/logistics-shipping-geodata/tables/customer.table.sql new file mode 100644 index 00000000..4ec4fe93 --- /dev/null +++ b/logistics-shipping-geodata/tables/customer.table.sql @@ -0,0 +1,8 @@ +CREATE TABLE Customer ( + PRIMARY KEY (`id`) NOT ENFORCED, + WATERMARK FOR `lastUpdated` AS `lastUpdated` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/customer.jsonl', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/logistics-shipping-geodata/data/shipment.jsonl b/logistics-shipping-geodata/tables/shipment.jsonl similarity index 100% rename from logistics-shipping-geodata/data/shipment.jsonl rename to logistics-shipping-geodata/tables/shipment.jsonl diff --git a/logistics-shipping-geodata/tables/shipment.table.json b/logistics-shipping-geodata/tables/shipment.table.json deleted file mode 100644 index 5443ed09..00000000 --- a/logistics-shipping-geodata/tables/shipment.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/shipment.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["id"], - "timestamp" : "lastUpdated", - "watermark-millis" : "1" - } -} diff --git a/logistics-shipping-geodata/tables/shipment.table.sql b/logistics-shipping-geodata/tables/shipment.table.sql new file mode 100644 index 00000000..3048a007 --- /dev/null +++ b/logistics-shipping-geodata/tables/shipment.table.sql @@ -0,0 +1,8 @@ +CREATE TABLE Shipment ( + PRIMARY KEY (`id`) NOT ENFORCED, + WATERMARK FOR `lastUpdated` AS `lastUpdated` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/shipment.jsonl', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/logistics-shipping-geodata/data/shipment_location.jsonl b/logistics-shipping-geodata/tables/shipment_location.jsonl similarity index 100% rename from logistics-shipping-geodata/data/shipment_location.jsonl rename to logistics-shipping-geodata/tables/shipment_location.jsonl diff --git a/logistics-shipping-geodata/tables/shipment_location.table.json b/logistics-shipping-geodata/tables/shipment_location.table.json deleted file mode 100644 index 6459c689..00000000 --- a/logistics-shipping-geodata/tables/shipment_location.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/shipment_location.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["timestamp", "shipmentId", "vehicleId"], - "timestamp" : "timestamp", - "watermark-millis" : "1" - } -} diff --git a/logistics-shipping-geodata/tables/shipment_location.table.sql b/logistics-shipping-geodata/tables/shipment_location.table.sql new file mode 100644 index 00000000..5fc31873 --- /dev/null +++ b/logistics-shipping-geodata/tables/shipment_location.table.sql @@ -0,0 +1,8 @@ +CREATE TABLE ShipmentLocation ( + PRIMARY KEY (`timestamp`, `shipmentId`, `vehicleId`) NOT ENFORCED, + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/shipment_location.jsonl', + 'connector' = 'filesystem' +); \ No newline at end of file diff --git a/logistics-shipping-geodata/data/vehicle.jsonl b/logistics-shipping-geodata/tables/vehicle.jsonl similarity index 100% rename from logistics-shipping-geodata/data/vehicle.jsonl rename to logistics-shipping-geodata/tables/vehicle.jsonl diff --git a/logistics-shipping-geodata/tables/vehicle.table.json b/logistics-shipping-geodata/tables/vehicle.table.json deleted file mode 100644 index d28431f2..00000000 --- a/logistics-shipping-geodata/tables/vehicle.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/vehicle.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["id"], - "timestamp" : "lastUpdated", - "watermark-millis" : "1" - } -} diff --git a/logistics-shipping-geodata/tables/vehicle.table.sql b/logistics-shipping-geodata/tables/vehicle.table.sql new file mode 100644 index 00000000..6d8f6a7a --- /dev/null +++ b/logistics-shipping-geodata/tables/vehicle.table.sql @@ -0,0 +1,8 @@ +CREATE TABLE Vehicle ( + PRIMARY KEY (`id`) NOT ENFORCED, + WATERMARK FOR `lastUpdated` AS `lastUpdated` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/vehicle.jsonl', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/logistics-shipping-geodata/data/vehicle_status.jsonl b/logistics-shipping-geodata/tables/vehicle_status.jsonl similarity index 100% rename from logistics-shipping-geodata/data/vehicle_status.jsonl rename to logistics-shipping-geodata/tables/vehicle_status.jsonl diff --git a/logistics-shipping-geodata/tables/vehicle_status.table.json b/logistics-shipping-geodata/tables/vehicle_status.table.json deleted file mode 100644 index fcd5decb..00000000 --- a/logistics-shipping-geodata/tables/vehicle_status.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/vehicle_status.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["timestamp", "vehicleId"], - "timestamp" : "timestamp", - "watermark-millis" : "1" - } -} diff --git a/logistics-shipping-geodata/tables/vehicle_status.table.sql b/logistics-shipping-geodata/tables/vehicle_status.table.sql new file mode 100644 index 00000000..fe5bafa0 --- /dev/null +++ b/logistics-shipping-geodata/tables/vehicle_status.table.sql @@ -0,0 +1,8 @@ +CREATE TABLE VehicleStatus ( + PRIMARY KEY (`timestamp`, `vehicleId`) NOT ENFORCED, + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/vehicle_status.jsonl', + 'connector' = 'filesystem' +); \ No newline at end of file diff --git a/oil-gas-agent-automation/schema.graphqls b/oil-gas-agent-automation/schema.graphqls deleted file mode 100644 index 22c3db62..00000000 --- a/oil-gas-agent-automation/schema.graphqls +++ /dev/null @@ -1,77 +0,0 @@ -type Assets { - asset_id: GraphQLBigInteger! - asset_number: String! - asset_name: String! - asset_category_id: GraphQLBigInteger! - description: String! - date_placed_in_service: String! - asset_cost: GraphQLBigInteger! - status: String! - asset_manual: String! - lastUpdated: DateTime! - flowrate(limit: Int = 10, offset: Int = 0): [FlowrateByMinute!] - maintenance(limit: Int = 10, offset: Int = 0): [Maintenance!] - pressure(limit: Int = 10, offset: Int = 0): [PressureByMinute!] -} - -"An RFC-3339 compliant DateTime Scalar" -scalar DateTime - -type FlowRate { - assetId: GraphQLBigInteger! - flowrate: Float! - event_time: DateTime! -} - -type FlowrateByMinute { - assetId: GraphQLBigInteger! - timestamp_min: DateTime! - avg_flowrate: Float! - max_flowrate: Float! -} - -"An arbitrary precision signed integer" -scalar GraphQLBigInteger - -type Maintenance { - work_order_id: GraphQLBigInteger! - work_order_num: String! - asset_id: GraphQLBigInteger! - description: String! - wo_type: String! - priority: String! - status: String! - request_date: String! - start_date: String - completion_date: String - lastUpdated: DateTime! -} - -type PressureByMinute { - assetId: GraphQLBigInteger! - timestamp_min: DateTime! - avg_pressure_psi: Float! - max_pressure_psi: Float! - avg_temperature_f: Float! -} - -type Query { - """ - Returns information about the well/asset including it's maintenance records, manual, - description, and other important information. - """ - Assets(asset_id: GraphQLBigInteger!, limit: Int = 10, offset: Int = 0): [Assets!] - FlowRate(limit: Int = 10, offset: Int = 0): [FlowRate!] - "Returns the average/maximum flow rate for a given asset for minute time intervals" - FlowrateByMinute(assetId: GraphQLBigInteger!, limit: Int = 10, offset: Int = 0): [FlowrateByMinute!] - """ - Returns the average/maximum pressure and average temperature for a given asset - for minute time intervals - """ - PressureByMinute(assetId: GraphQLBigInteger!, limit: Int = 10, offset: Int = 0): [PressureByMinute!] - """ - Returns all FlowRate readings within the provided [minRate,maxRate] interval across - all assets. - """ - FlowRateByRange(minRate: Float!, maxRate: Float!, limit: Int = 10, offset: Int = 0): [FlowRate!] -} diff --git a/retail-customer360-nutshop/README.md b/retail-customer360-nutshop/README.md deleted file mode 100644 index 63fa4a5e..00000000 --- a/retail-customer360-nutshop/README.md +++ /dev/null @@ -1,95 +0,0 @@ -# Customer 360 (Retail) Example - -This example shows how to combine data from multiple sources to create a comprehensive view of the customer (called a *"Customer 360"*) and expose that view through an API. - -We are building a Customer 360 for an e-commerce site - our SQRL Nut Shop. It combines information on the customer, with the customer's orders and products. The goal is to give the customer a complete picture of their purchase history with analytics and search. - -## 1. Compile & Launch Data Pipeline - -To run this example, invoke the following command in this directory to compile the data pipeline -```bash - docker run -it --rm -v $PWD:/build datasqrl/cmd:v0.5.2 compile customer360.sqrl -``` - -Next, run the following to start the pipeline with Docker: -`(cd build/deploy; docker compose up --build)`. - -Once everything is started pu, check that the GraphQL API is running properly by [opening GraphiQL](http://localhost:8888/graphiql/) to access it. - -## 2. Query the API - -In GraphiQL, you can run the following queries to access the data: - -### Retrieve Recent Purchases - -```graphql -{ - Customers(id: 5) { - country - purchases { - id - time - items { - productid - unit_price - } - } - } -} -``` - -Returns the purchases for customer with `id=5` and the items in those orders. - -### Spending History - -```graphql -{ - Customers(id: 5) { - spending { - week - spend - saved - } - } -} -``` - -Shows how much money the customer spent and saved in each of the previous weeks. - -### Repeat Purchases - -```graphql -{ - Customers(id: 5) { - past_purchases { - productid - num_orders - total_quantity - } - } -} -``` - -Shows which products the customers has purchased repeatedly. - - -### Product Search - -```graphql -{ - ProductSearch(customerId: 5, query: "macadamia") { - id - time - productid - productName - quantity - } -} -``` - -Searches for all customer orders with products that match the query `macadamia`. - -## 3. Shut Down Data Pipeline - -To stop the data pipeline and release the resources allocated to it, run -`(cd build/deploy; docker compose down -v)`. diff --git a/retail-customer360-nutshop/customer360.sqrl b/retail-customer360-nutshop/customer360.sqrl deleted file mode 100644 index 7dc91cac..00000000 --- a/retail-customer360-nutshop/customer360.sqrl +++ /dev/null @@ -1,51 +0,0 @@ -IMPORT nutshop-data.OrderItems AS Orders; -IMPORT nutshop-data.Products; -IMPORT nutshop-data.Customers; -IMPORT time.*; -IMPORT text.textSearch; - -Orders.totals := SELECT sum(quantity * unit_price - coalesce(discount, 0.0)) as price, - sum(coalesce(discount, 0.0)) as saving FROM @.items; - -Customers := DISTINCT Customers ON id ORDER BY timestamp DESC; -Customers.purchases := JOIN Orders ON Orders.customerid = @.id; -Customers.country0 := coalesce(country, 'none'); -Orders.customer := JOIN Customers ON @.customerid = Customers.id; - -Customers.spending := SELECT endOfWeek(p.time) AS week, - sum(t.price) AS spend, sum(t.saving) AS saved - FROM @.purchases p JOIN p.totals t - GROUP BY week ORDER BY week DESC; - -Customers.order_stats := SELECT min(p.time) as first_order, - sum(t.price) as total_spend, sum(t.saving) as total_saved, - count(1) as num_orders - FROM @.purchases p JOIN p.totals t; - - -Customers.past_purchases := SELECT i.productid, count(1) as num_orders, - sum(i.quantity) as total_quantity - FROM @ JOIN Orders o ON o.customerid = @.id JOIN o.items i - GROUP BY i.productid - ORDER BY num_orders DESC, total_quantity DESC; - -/*+test */ -CustomerPurchaseTest := SELECT c.id, p.productid, count(*) as num - FROM Customers c JOIN c.past_purchases p - GROUP BY id, productid - ORDER BY id ASC, productid ASC; - -Products := DISTINCT Products ON id ORDER BY updated DESC; - -_OrderItems := SELECT o.id, o.time, o.customerid, i.* FROM Orders o JOIN o.items i; - -_OrderItemsProduct := SELECT o.*, p.name as productName, p.category as productCategory, p.type as productType - FROM _OrderItems o JOIN Products p ON o.productid = p.id; - - -ProductSearch(@customerId: BIGINT, @query: String) := SELECT id, time, productid, productName, quantity, - textSearch(@query, productName, productCategory) as score - FROM _OrderItemsProduct - WHERE textSearch(@query, productName, productCategory) > 0 - AND customerid = @customerId - ORDER BY score DESC; diff --git a/retail-customer360-nutshop/nutshop-data/README.md b/retail-customer360-nutshop/nutshop-data/README.md deleted file mode 100644 index 4887d204..00000000 --- a/retail-customer360-nutshop/nutshop-data/README.md +++ /dev/null @@ -1,124 +0,0 @@ -# Data Package for the Customer 360 (Retail) Example - -This data package is used by the Customer 360 (Retail) Example which demonstrates how to integrate data from multiple -sources to create a comprehensive Customer 360 view. By combining customer data with orders and product information, -we can offer customers a detailed look at their purchase history and enable analytics and search functionalities -through a GraphQL API. - -We will use the SQRL Nut Shop, an e-commerce store that sells a variety of nuts and seeds, as the example. -The goal is to provide a customer with insights into their purchase behavior, order details, and product searches. - -## Data Overview - -The Customer 360 pipeline aggregates four core data sources: -Customers: Basic customer profile information (e.g., name, email, and country). -Orders: Details about orders, including products purchased, time of order, and any discounts applied. -Order Items: Specific details of products in each order. -- Products: Information about each product sold (e.g., name, weight, and category). - -#### Customers Data - -This dataset contains the customer profile data, which is used to identify customers and connect them with their orders. - -Fields: -- id: Unique customer identifier. -- first_name: The customer's first name. -- last_name: The customer's last name. -- email: Customer's email address. -- ip_address: IP address used by the customer. -- country: Country of residence. -- changed_on: Timestamp of the last change to the customer's data. - -Sample Data: -```json -{"id":17,"first_name":"Petrina","last_name":"Donahue","email":"pdonahueg@tmall.com","ip_address":"113.165.34.115","country":"US","changed_on":1672448170042} -{"id":18,"first_name":"Luelle","last_name":"Sproul","email":"lsproulh@friendfeed.com","ip_address":"186.204.27.207","country":"BR","changed_on":1672227942481} -{"id":19,"first_name":"Debbie","last_name":"Forsdike","email":"dforsdikei@cnn.com","ip_address":null,"country":"BR","changed_on":1672093739202} -``` - -#### Order Items Data - -The order items data includes detailed records of the products purchased in each order. Each order can have multiple items. - -Fields: -- id: Unique order identifier. -- customerid: The ID of the customer who placed the order. -- time: Timestamp of when the order was placed. -- items: An array of items purchased in the order, each item containing: -- productid: The ID of the purchased product. -- quantity: The number of units of the product purchased. -- unit_price: The price per unit. -- discount: Any discount applied to the unit price (optional). - -Sample Data: -```json -{ - "id": 150000001, - "customerid": 13, - "time": "2023-01-03T13:08:50.269Z", - "items": [ - {"productid": 140, "quantity": 2, "unit_price": 25.83, "discount": 15.32}, - {"productid": 184, "quantity": 1, "unit_price": 8.47} - ] -} -``` - -#### Orders Data - -The Orders dataset gives a summary of customer orders, focusing on which products were purchased, when, and at what price. - -Fields: -- id: Unique order identifier. -- customerid: The customer ID associated with the order. -- time: Timestamp of the order. -- productid: The ID of the product purchased. -- quantity: The number of units purchased. -- unit_price: Price of the product per unit. -- discount: Any discount applied to the product. - -Sample Data: -```json -{"id": 150000001, "customerid": 13, "time": "2023-01-03T13:08:50.269Z", "productid": 140, "quantity": 2, "unit_price": 25.83, "discount": 15.32} -``` - -#### Products Data - -The product dataset contains information about the products sold in the e-commerce shop, which is essential for matching order items with product descriptions, weights, and categories. - -Fields: -- id: Unique identifier for the product. -- name: The name of the product. -- sizing: The size or package description. -- weight_in_gram: The weight of the product in grams. -- type: The type of product (e.g., “Nuts”, “Seeds”). -- category: The category to which the product belongs (e.g., “almonds”, “mixed nuts”). -- usda_id: A reference to USDA product information. -- updated: The last update timestamp for the product information. - -Sample Data: -```json -{ - "id": 21, - "name": "mixed nuts, oil roasted, with peanuts, with salt added", - "sizing": "2 lbs", - "weight_in_gram": 907, - "type": "Nuts", - "category": "mixed nuts", - "usda_id": 168600, - "updated": "2023-01-01T22:14:30.525Z" -} -``` - -## How to use the data package with an example - -For a detailed explanation of how to work with this package, please refer to our comprehensive -[Retail Customer360 Nutshop](https://github.com/DataSQRL/datasqrl-examples/blob/main/retail-customer360-nutshop/README.md) tutorial. - -To apply it in your project, update the imports in the `customer360.sqrl` file: -```sql -IMPORT datasqrl.examples.retail.OrderItems AS Orders; -IMPORT datasqrl.examples.retail.Products; -IMPORT datasqrl.examples.retail.Customers; -IMPORT time.*; -IMPORT text.textSearch; -``` diff --git a/retail-customer360-nutshop/nutshop-data/customers.jsonl b/retail-customer360-nutshop/nutshop-data/customers.jsonl deleted file mode 100644 index 0c9edbba..00000000 --- a/retail-customer360-nutshop/nutshop-data/customers.jsonl +++ /dev/null @@ -1,37 +0,0 @@ -{"id":1,"first_name":"Anne-marie","last_name":"Tottie","email":"atottie0@bigcartel.com","ip_address":null,"country":"US","changed_on":1671889581594} -{"id":2,"first_name":"Moritz","last_name":"Mousdall","email":"mmousdall1@bloglovin.com","ip_address":"215.96.236.38","country":"CN","changed_on":1671493141039} -{"id":3,"first_name":"Meris","last_name":"Nutbeem","email":"mnutbeem2@bloomberg.com","ip_address":null,"country":"CN","changed_on":1671481877581} -{"id":4,"first_name":"Norry","last_name":"Montford","email":"nmontford3@cam.ac.uk","ip_address":"69.114.135.70","country":"DE","changed_on":1671188183819} -{"id":5,"first_name":"Roselia","last_name":"Aldiss","email":"raldiss4@twitter.com","ip_address":null,"country":"BR","changed_on":1672288484944} -{"id":6,"first_name":"Leigh","last_name":"Archbell","email":"larchbell5@bbb.org","ip_address":"44.170.52.228","country":"NG","changed_on":1672442525833} -{"id":7,"first_name":"Georgia","last_name":"Gut","email":"ggut6@youtube.com","ip_address":"52.16.65.112","country":null,"changed_on":1671127728352} -{"id":8,"first_name":"Juline","last_name":"Bucke","email":"jbucke7@nature.com","ip_address":"162.109.151.166","country":"NG","changed_on":1672141743453} -{"id":9,"first_name":"Jacqueline","last_name":"Cleynaert","email":"jcleynaert8@census.gov","ip_address":"119.219.106.31","country":"CN","changed_on":1671788931569} -{"id":10,"first_name":"Rosaleen","last_name":"McGerr","email":"rmcgerr9@upenn.edu","ip_address":"199.20.98.208","country":"US","changed_on":1671365262914} -{"id":11,"first_name":"Marylynne","last_name":"McGinlay","email":"mmcginlaya@trellian.com","ip_address":"85.120.18.96","country":"US","changed_on":1671816208967} -{"id":12,"first_name":"Poppy","last_name":"Iacabucci","email":"piacabuccib@ameblo.jp","ip_address":"204.216.26.121","country":"DE","changed_on":1671466722363} -{"id":13,"first_name":"Gilbertine","last_name":"Martelet","email":"gmarteletc@usa.gov","ip_address":"147.121.46.107","country":"CN","changed_on":1671603044145} -{"id":14,"first_name":"Toby","last_name":"Duley","email":"tduleyd@salon.com","ip_address":"177.118.95.245","country":"BR","changed_on":1672604282349} -{"id":15,"first_name":"Dall","last_name":"Prue","email":"dpruee@edublogs.org","ip_address":null,"country":"NG","changed_on":1671386743086} -{"id":16,"first_name":"Nealon","last_name":"Conan","email":"nconanf@baidu.com","ip_address":"230.204.155.159","country":"DE","changed_on":1671152888027} -{"id":17,"first_name":"Petrina","last_name":"Donahue","email":"pdonahueg@tmall.com","ip_address":"113.165.34.115","country":"US","changed_on":1672448170042} -{"id":18,"first_name":"Luelle","last_name":"Sproul","email":"lsproulh@friendfeed.com","ip_address":"186.204.27.207","country":"BR","changed_on":1672227942481} -{"id":19,"first_name":"Debbie","last_name":"Forsdike","email":"dforsdikei@cnn.com","ip_address":null,"country":"BR","changed_on":1672093739202} -{"id":20,"first_name":"Elenore","last_name":"Sprakes","email":"esprakesj@dailymotion.com","ip_address":"39.86.132.196","country":"NG","changed_on":1671824056227} -{"id":21,"first_name":"Linzy","last_name":"Morrice","email":"lmorricek@pinterest.com","ip_address":null,"country":"CN","changed_on":1671020516625} -{"id":22,"first_name":"Brinn","last_name":"Dagworthy","email":"bdagworthyl@meetup.com","ip_address":"11.16.233.213","country":"NG","changed_on":1671789387519} -{"id":23,"first_name":"Lily","last_name":"Simak","email":"lsimakm@webs.com","ip_address":"105.184.198.159","country":"BR","changed_on":1671411902248} -{"id":24,"first_name":"Ambrosio","last_name":"Lewzey","email":"alewzeyn@uiuc.edu","ip_address":"237.89.80.124","country":null,"changed_on":1672058351832} -{"id":25,"first_name":"Harland","last_name":"Gregr","email":"hgregro@mysql.com","ip_address":"179.219.186.43","country":"US","changed_on":1670927180036} -{"id":26,"first_name":"Jilly","last_name":"Ferrarello","email":"jferrarellop@wordpress.com","ip_address":"124.116.217.135","country":"CN","changed_on":1672428506917} -{"id":27,"first_name":"Guendolen","last_name":"Calow","email":"gcalowq@twitpic.com","ip_address":"37.35.166.52","country":"NG","changed_on":1671744058898} -{"id":28,"first_name":"Conchita","last_name":"Gherardesci","email":"cgherardescir@eepurl.com","ip_address":"171.81.103.175","country":"US","changed_on":1671297901261} -{"id":29,"first_name":"Griswold","last_name":"Asple","email":"gasples@ebay.co.uk","ip_address":"76.229.209.74","country":"DE","changed_on":1672393640477} -{"id":30,"first_name":"Danya","last_name":"Corkitt","email":"dcorkittt@japanpost.jp","ip_address":"40.117.36.107","country":"BR","changed_on":1671486370277} -{"id":1,"first_name":"Anne-marie","last_name":"Tottie","email":"atottie0@bigcartel.com","ip_address":null,"country":"BR","changed_on":1674597360079} -{"id":5,"first_name":"Roselia","last_name":"Aldiss","email":"raldiss4@twitter.com","ip_address":null,"country":"US","changed_on":1674597360079} -{"id":14,"first_name":"Toby","last_name":"Duley","email":"tduleyd@salon.com","ip_address":"177.118.95.245","country":"US","changed_on":1674597360079} -{"id":17,"first_name":"Petrina","last_name":"Donahue","email":"pdonahueg@tmall.com","ip_address":"113.165.34.115","country":"CN","changed_on":1674597360079} -{"id":19,"first_name":"Debbie","last_name":"Forsdike","email":"dforsdikei@cnn.com","ip_address":null,"country":"CN","changed_on":1674597360079} -{"id":25,"first_name":"Harland","last_name":"Gregr","email":"hgregro@mysql.com","ip_address":"179.219.186.43","country":"CN","changed_on":1674597360079} -{"id":25,"first_name":"Harland","last_name":"Gregr","email":"hgregro@mysql.com","ip_address":"179.219.186.58","country":"CN","changed_on":1679698360079} diff --git a/retail-customer360-nutshop/nutshop-data/customers.schema.yml b/retail-customer360-nutshop/nutshop-data/customers.schema.yml deleted file mode 100644 index 3775f006..00000000 --- a/retail-customer360-nutshop/nutshop-data/customers.schema.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- -name: "customers" -schema_version: "1" -partial_schema: false -columns: -- name: "id" - type: "BIGINT" - tests: - - "not_null" -- name: "first_name" - type: "STRING" - tests: - - "not_null" -- name: "last_name" - type: "STRING" - tests: - - "not_null" -- name: "email" - type: "STRING" - tests: - - "not_null" -- name: "ip_address" - type: "STRING" -- name: "country" - type: "STRING" -- name: "changed_on" - type: "BIGINT" - tests: - - "not_null" diff --git a/retail-customer360-nutshop/nutshop-data/customers.table.json b/retail-customer360-nutshop/nutshop-data/customers.table.json deleted file mode 100644 index 9eff18f8..00000000 --- a/retail-customer360-nutshop/nutshop-data/customers.table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/customers.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["id", "changed_on"], - "timestamp" : "timestamp", - "watermark-millis" : "1" - }, - "metadata" : { - "timestamp" : { - "attribute" : "time.epochMilliToTimestamp(changed_on)" - } - } -} \ No newline at end of file diff --git a/retail-customer360-nutshop/nutshop-data/orderitems.jsonl b/retail-customer360-nutshop/nutshop-data/orderitems.jsonl deleted file mode 100644 index 5daf6503..00000000 --- a/retail-customer360-nutshop/nutshop-data/orderitems.jsonl +++ /dev/null @@ -1,1014 +0,0 @@ -{"id": 150000011, "customerid": 11, "time": "2023-01-02T22:22:58.525Z", "items": [{"productid": 115,"quantity": 1,"unit_price": 9.22 }] } -{"id": 150000005, "customerid": 6, "time": "2023-01-02T22:23:51.868Z", "items": [{"productid": 113,"quantity": 1,"unit_price": 38.70 ,"discount": 7.75 }] } -{"id": 150000013, "customerid": 28, "time": "2023-01-02T22:50:58.838Z", "items": [{"productid": 18,"quantity": 1,"unit_price": 10.01 ,"discount": 4.81 }] } -{"id": 150000022, "customerid": 12, "time": "2023-01-02T23:18:17.934Z", "items": [{"productid": 59,"quantity": 1,"unit_price": 23.22 ,"discount": 9.40 }] } -{"id": 150000015, "customerid": 4, "time": "2023-01-02T23:54:28.476Z", "items": [{"productid": 101,"quantity": 1,"unit_price": 35.01 }] } -{"id": 150000021, "customerid": 13, "time": "2023-01-03T00:35:12.294Z", "items": [{"productid": 57,"quantity": 1,"unit_price": 6.11 ,"discount": 2.02 }] } -{"id": 150000008, "customerid": 30, "time": "2023-01-03T02:26:52.748Z", "items": [{"productid": 155,"quantity": 1,"unit_price": 83.44 ,"discount": 38.52 }] } -{"id": 150000014, "customerid": 3, "time": "2023-01-03T02:53:02.123Z", "items": [{"productid": 62,"quantity": 1,"unit_price": 42.47 ,"discount": 9.41 }] } -{"id": 150000023, "customerid": 18, "time": "2023-01-03T04:54:43.118Z", "items": [{"productid": 110,"quantity": 1,"unit_price": 5.64 ,"discount": 2.62 }] } -{"id": 150000009, "customerid": 10, "time": "2023-01-03T05:05:36.956Z", "items": [{"productid": 177,"quantity": 1,"unit_price": 8.70 }] } -{"id": 150000020, "customerid": 30, "time": "2023-01-03T06:58:03.038Z", "items": [{"productid": 180,"quantity": 1,"unit_price": 23.20 ,"discount": 4.38 }] } -{"id": 150000003, "customerid": 26, "time": "2023-01-03T07:41:33.092Z", "items": [{"productid": 141,"quantity": 1,"unit_price": 6.36 }] } -{"id": 150000006, "customerid": 29, "time": "2023-01-03T07:58:05.708Z", "items": [{"productid": 87,"quantity": 2,"unit_price": 12.05 }] } -{"id": 150000004, "customerid": 26, "time": "2023-01-03T09:22:20.364Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 }] } -{"id": 150000017, "customerid": 10, "time": "2023-01-03T11:21:07.625Z", "items": [{"productid": 93,"quantity": 3,"unit_price": 58.77 }] } -{"id": 150000012, "customerid": 13, "time": "2023-01-03T11:46:45.221Z", "items": [{"productid": 207,"quantity": 2,"unit_price": 17.50 }] } -{"id": 150000002, "customerid": 4, "time": "2023-01-03T11:59:39.659Z", "items": [{"productid": 9,"quantity": 1,"unit_price": 15.41 ,"discount": 3.06 }] } -{"id": 150000001, "customerid": 13, "time": "2023-01-03T13:08:50.269Z", "items": [{"productid": 140,"quantity": 2,"unit_price": 25.83 ,"discount": 15.32 },{"productid": 184,"quantity": 1,"unit_price": 8.47 }] } -{"id": 150000019, "customerid": 21, "time": "2023-01-03T14:23:57.743Z", "items": [{"productid": 177,"quantity": 2,"unit_price": 8.70 }] } -{"id": 150000010, "customerid": 10, "time": "2023-01-03T15:14:26.207Z", "items": [{"productid": 150,"quantity": 2,"unit_price": 5.92 }] } -{"id": 150000016, "customerid": 23, "time": "2023-01-03T15:48:34.469Z", "items": [{"productid": 121,"quantity": 1,"unit_price": 7.83 }] } -{"id": 150000007, "customerid": 5, "time": "2023-01-03T18:20:52.045Z", "items": [{"productid": 168,"quantity": 1,"unit_price": 11.15 ,"discount": 0.70 }] } -{"id": 150000024, "customerid": 14, "time": "2023-01-03T20:10:50.725Z", "items": [{"productid": 21,"quantity": 1,"unit_price": 8.90 }] } -{"id": 150000018, "customerid": 14, "time": "2023-01-03T20:14:48.817Z", "items": [{"productid": 68,"quantity": 1,"unit_price": 7.02 ,"discount": 0.69 }] } -{"id": 150000025, "customerid": 24, "time": "2023-01-03T21:32:30.798Z", "items": [{"productid": 204,"quantity": 1,"unit_price": 8.20 }] } -{"id": 150000031, "customerid": 23, "time": "2023-01-03T22:28:51.549Z", "items": [{"productid": 83,"quantity": 1,"unit_price": 9.09 }] } -{"id": 150000040, "customerid": 11, "time": "2023-01-04T04:12:08.182Z", "items": [{"productid": 36,"quantity": 2,"unit_price": 7.61 ,"discount": 5.45 }] } -{"id": 150000036, "customerid": 2, "time": "2023-01-04T04:26:41.425Z", "items": [{"productid": 41,"quantity": 2,"unit_price": 5.31 }] } -{"id": 150000034, "customerid": 4, "time": "2023-01-04T07:20:33.197Z", "items": [{"productid": 133,"quantity": 1,"unit_price": 8.38 }] } -{"id": 150000037, "customerid": 24, "time": "2023-01-04T10:12:36.113Z", "items": [{"productid": 4,"quantity": 1,"unit_price": 8.01 ,"discount": 1.56 }] } -{"id": 150000033, "customerid": 15, "time": "2023-01-04T10:40:11.932Z", "items": [{"productid": 98,"quantity": 3,"unit_price": 32.37 }] } -{"id": 150000027, "customerid": 28, "time": "2023-01-04T11:06:16.563Z", "items": [{"productid": 113,"quantity": 1,"unit_price": 38.70 ,"discount": 4.58 },{"productid": 170,"quantity": 1,"unit_price": 8.90 ,"discount": 1.89 }] } -{"id": 150000026, "customerid": 15, "time": "2023-01-04T11:21:54.177Z", "items": [{"productid": 78,"quantity": 1,"unit_price": 6.29 ,"discount": 1.56 }] } -{"id": 150000032, "customerid": 24, "time": "2023-01-04T14:03:23.122Z", "items": [{"productid": 177,"quantity": 1,"unit_price": 8.70 },{"productid": 38,"quantity": 1,"unit_price": 6.74 ,"discount": 2.89 }] } -{"id": 150000035, "customerid": 26, "time": "2023-01-04T15:38:24.454Z", "items": [{"productid": 173,"quantity": 1,"unit_price": 20.52 ,"discount": 7.40 }] } -{"id": 150000039, "customerid": 19, "time": "2023-01-04T16:15:15.669Z", "items": [{"productid": 190,"quantity": 1,"unit_price": 9.81 }] } -{"id": 150000038, "customerid": 17, "time": "2023-01-04T17:56:18.071Z", "items": [{"productid": 2,"quantity": 1,"unit_price": 11.81 }] } -{"id": 150000030, "customerid": 19, "time": "2023-01-04T18:09:41.515Z", "items": [{"productid": 183,"quantity": 1,"unit_price": 11.46 ,"discount": 3.04 }] } -{"id": 150000028, "customerid": 18, "time": "2023-01-04T18:53:50.879Z", "items": [{"productid": 52,"quantity": 1,"unit_price": 40.62 ,"discount": 18.12 },{"productid": 56,"quantity": 1,"unit_price": 5.47 }] } -{"id": 150000029, "customerid": 26, "time": "2023-01-04T20:26:36.325Z", "items": [{"productid": 172,"quantity": 1,"unit_price": 12.07 ,"discount": 0.90 }] } -{"id": 150000041, "customerid": 15, "time": "2023-01-04T21:18:19.266Z", "items": [{"productid": 95,"quantity": 1,"unit_price": 8.15 }] } -{"id": 150000074, "customerid": 8, "time": "2023-01-05T00:02:10.896Z", "items": [{"productid": 135,"quantity": 1,"unit_price": 11.92 ,"discount": 0.87 }] } -{"id": 150000044, "customerid": 13, "time": "2023-01-05T00:31:55.921Z", "items": [{"productid": 48,"quantity": 1,"unit_price": 5.45 }] } -{"id": 150000042, "customerid": 1, "time": "2023-01-05T01:26:16.193Z", "items": [{"productid": 77,"quantity": 2,"unit_price": 96.05 }] } -{"id": 150000072, "customerid": 11, "time": "2023-01-05T01:56:31.346Z", "items": [{"productid": 6,"quantity": 1,"unit_price": 8.66 ,"discount": 1.02 }] } -{"id": 150000050, "customerid": 1, "time": "2023-01-05T02:32:30.549Z", "items": [{"productid": 122,"quantity": 1,"unit_price": 13.31 }] } -{"id": 150000056, "customerid": 1, "time": "2023-01-05T04:40:50.570Z", "items": [{"productid": 16,"quantity": 1,"unit_price": 18.64 ,"discount": 8.51 }] } -{"id": 150000059, "customerid": 7, "time": "2023-01-05T05:05:15.045Z", "items": [{"productid": 204,"quantity": 2,"unit_price": 8.20 }] } -{"id": 150000043, "customerid": 13, "time": "2023-01-05T05:20:21.632Z", "items": [{"productid": 46,"quantity": 2,"unit_price": 6.31 }] } -{"id": 150000051, "customerid": 24, "time": "2023-01-05T05:42:42.371Z", "items": [{"productid": 55,"quantity": 2,"unit_price": 12.22 }] } -{"id": 150000073, "customerid": 20, "time": "2023-01-05T06:16:58.486Z", "items": [{"productid": 47,"quantity": 3,"unit_price": 12.30 }] } -{"id": 150000064, "customerid": 23, "time": "2023-01-05T06:51:14.244Z", "items": [{"productid": 47,"quantity": 1,"unit_price": 12.30 ,"discount": 2.13 }] } -{"id": 150000067, "customerid": 1, "time": "2023-01-05T07:22:48.807Z", "items": [{"productid": 107,"quantity": 1,"unit_price": 15.03 ,"discount": 0.82 }] } -{"id": 150000058, "customerid": 29, "time": "2023-01-05T08:07:13.497Z", "items": [{"productid": 142,"quantity": 1,"unit_price": 6.33 }] } -{"id": 150000054, "customerid": 9, "time": "2023-01-05T08:12:55.706Z", "items": [{"productid": 166,"quantity": 1,"unit_price": 6.59 ,"discount": 1.44 }] } -{"id": 150000069, "customerid": 20, "time": "2023-01-05T08:21:37.768Z", "items": [{"productid": 75,"quantity": 1,"unit_price": 22.06 ,"discount": 4.38 }] } -{"id": 150000046, "customerid": 8, "time": "2023-01-05T09:23:08.208Z", "items": [{"productid": 34,"quantity": 2,"unit_price": 37.32 }] } -{"id": 150000053, "customerid": 23, "time": "2023-01-05T09:24:31.781Z", "items": [{"productid": 111,"quantity": 1,"unit_price": 10.18 }] } -{"id": 150000068, "customerid": 26, "time": "2023-01-05T09:51:34.081Z", "items": [{"productid": 183,"quantity": 2,"unit_price": 11.46 },{"productid": 67,"quantity": 1,"unit_price": 8.28 }] } -{"id": 150000055, "customerid": 7, "time": "2023-01-05T10:44:44.346Z", "items": [{"productid": 72,"quantity": 1,"unit_price": 11.75 }] } -{"id": 150000071, "customerid": 26, "time": "2023-01-05T11:23:00.082Z", "items": [{"productid": 73,"quantity": 1,"unit_price": 7.94 ,"discount": 3.16 }] } -{"id": 150000052, "customerid": 4, "time": "2023-01-05T12:15:06.782Z", "items": [{"productid": 161,"quantity": 1,"unit_price": 29.88 },{"productid": 100,"quantity": 2,"unit_price": 15.66 ,"discount": 7.60 }] } -{"id": 150000049, "customerid": 1, "time": "2023-01-05T12:18:46.190Z", "items": [{"productid": 82,"quantity": 2,"unit_price": 85.96 ,"discount": 10.26 }] } -{"id": 150000045, "customerid": 25, "time": "2023-01-05T14:19:00.016Z", "items": [{"productid": 65,"quantity": 1,"unit_price": 10.28 },{"productid": 166,"quantity": 2,"unit_price": 6.59 }] } -{"id": 150000065, "customerid": 2, "time": "2023-01-05T15:04:52.759Z", "items": [{"productid": 27,"quantity": 1,"unit_price": 5.49 }] } -{"id": 150000057, "customerid": 29, "time": "2023-01-05T15:26:40.066Z", "items": [{"productid": 32,"quantity": 2,"unit_price": 9.82 ,"discount": 9.69 }] } -{"id": 150000047, "customerid": 6, "time": "2023-01-05T15:30:38.213Z", "items": [{"productid": 107,"quantity": 1,"unit_price": 15.03 },{"productid": 52,"quantity": 2,"unit_price": 40.62 }] } -{"id": 150000066, "customerid": 7, "time": "2023-01-05T16:14:39.450Z", "items": [{"productid": 9,"quantity": 1,"unit_price": 15.41 }] } -{"id": 150000063, "customerid": 9, "time": "2023-01-05T17:13:37.414Z", "items": [{"productid": 88,"quantity": 1,"unit_price": 11.12 ,"discount": 5.15 }] } -{"id": 150000048, "customerid": 14, "time": "2023-01-05T17:36:55.571Z", "items": [{"productid": 15,"quantity": 1,"unit_price": 10.96 }] } -{"id": 150000062, "customerid": 21, "time": "2023-01-05T19:11:41.315Z", "items": [{"productid": 52,"quantity": 1,"unit_price": 40.62 ,"discount": 19.49 }] } -{"id": 150000060, "customerid": 25, "time": "2023-01-05T20:20:48.482Z", "items": [{"productid": 110,"quantity": 1,"unit_price": 5.64 },{"productid": 129,"quantity": 1,"unit_price": 20.60 }] } -{"id": 150000070, "customerid": 11, "time": "2023-01-05T22:03:18.458Z", "items": [{"productid": 95,"quantity": 1,"unit_price": 8.15 }] } -{"id": 150000061, "customerid": 22, "time": "2023-01-05T22:04:38.919Z", "items": [{"productid": 24,"quantity": 1,"unit_price": 5.02 ,"discount": 0.92 },{"productid": 123,"quantity": 2,"unit_price": 29.75 }] } -{"id": 150000076, "customerid": 11, "time": "2023-01-05T22:16:22.567Z", "items": [{"productid": 54,"quantity": 1,"unit_price": 11.68 ,"discount": 3.99 }] } -{"id": 150000078, "customerid": 14, "time": "2023-01-05T22:17:24.659Z", "items": [{"productid": 198,"quantity": 2,"unit_price": 6.75 ,"discount": 1.82 }] } -{"id": 150000111, "customerid": 8, "time": "2023-01-05T22:22:43.846Z", "items": [{"productid": 61,"quantity": 2,"unit_price": 19.00 ,"discount": 6.28 },{"productid": 169,"quantity": 1,"unit_price": 5.23 ,"discount": 1.29 }] } -{"id": 150000103, "customerid": 8, "time": "2023-01-05T22:47:10.030Z", "items": [{"productid": 181,"quantity": 1,"unit_price": 45.19 ,"discount": 9.42 },{"productid": 11,"quantity": 2,"unit_price": 12.08 }] } -{"id": 150000100, "customerid": 6, "time": "2023-01-05T23:17:06.630Z", "items": [{"productid": 14,"quantity": 3,"unit_price": 5.99 ,"discount": 6.83 }] } -{"id": 150000094, "customerid": 27, "time": "2023-01-05T23:45:55.521Z", "items": [{"productid": 100,"quantity": 3,"unit_price": 15.66 ,"discount": 14.15 }] } -{"id": 150000098, "customerid": 25, "time": "2023-01-06T00:15:07.838Z", "items": [{"productid": 140,"quantity": 1,"unit_price": 25.83 }] } -{"id": 150000092, "customerid": 28, "time": "2023-01-06T01:42:23.166Z", "items": [{"productid": 43,"quantity": 1,"unit_price": 9.13 ,"discount": 0.98 }] } -{"id": 150000089, "customerid": 27, "time": "2023-01-06T01:51:42.840Z", "items": [{"productid": 66,"quantity": 2,"unit_price": 5.62 ,"discount": 5.07 }] } -{"id": 150000108, "customerid": 6, "time": "2023-01-06T02:52:19.754Z", "items": [{"productid": 154,"quantity": 1,"unit_price": 42.85 }] } -{"id": 150000096, "customerid": 30, "time": "2023-01-06T03:20:58.856Z", "items": [{"productid": 204,"quantity": 1,"unit_price": 8.20 ,"discount": 3.62 }] } -{"id": 150000107, "customerid": 30, "time": "2023-01-06T04:17:12.038Z", "items": [{"productid": 113,"quantity": 1,"unit_price": 38.70 }] } -{"id": 150000077, "customerid": 19, "time": "2023-01-06T05:06:18.067Z", "items": [{"productid": 176,"quantity": 1,"unit_price": 7.79 },{"productid": 167,"quantity": 2,"unit_price": 6.56 }] } -{"id": 150000093, "customerid": 6, "time": "2023-01-06T06:08:45.972Z", "items": [{"productid": 41,"quantity": 1,"unit_price": 5.31 }] } -{"id": 150000105, "customerid": 22, "time": "2023-01-06T06:11:34.932Z", "items": [{"productid": 168,"quantity": 1,"unit_price": 11.15 ,"discount": 1.55 }] } -{"id": 150000075, "customerid": 16, "time": "2023-01-06T06:13:21.949Z", "items": [{"productid": 164,"quantity": 2,"unit_price": 18.71 }] } -{"id": 150000081, "customerid": 26, "time": "2023-01-06T07:32:57.429Z", "items": [{"productid": 31,"quantity": 1,"unit_price": 52.53 ,"discount": 4.63 }] } -{"id": 150000090, "customerid": 22, "time": "2023-01-06T08:23:24.617Z", "items": [{"productid": 29,"quantity": 2,"unit_price": 12.07 }] } -{"id": 150000104, "customerid": 20, "time": "2023-01-06T08:29:05.870Z", "items": [{"productid": 141,"quantity": 1,"unit_price": 6.36 },{"productid": 183,"quantity": 3,"unit_price": 11.46 }] } -{"id": 150000085, "customerid": 8, "time": "2023-01-06T09:05:52.720Z", "items": [{"productid": 57,"quantity": 1,"unit_price": 6.11 }] } -{"id": 150000112, "customerid": 27, "time": "2023-01-06T10:10:24.485Z", "items": [{"productid": 127,"quantity": 3,"unit_price": 20.99 ,"discount": 21.51 }] } -{"id": 150000086, "customerid": 3, "time": "2023-01-06T10:32:48.377Z", "items": [{"productid": 148,"quantity": 2,"unit_price": 20.75 }] } -{"id": 150000110, "customerid": 9, "time": "2023-01-06T10:46:44.398Z", "items": [{"productid": 76,"quantity": 1,"unit_price": 49.32 }] } -{"id": 150000088, "customerid": 30, "time": "2023-01-06T10:48:54.062Z", "items": [{"productid": 200,"quantity": 1,"unit_price": 25.64 ,"discount": 8.30 }] } -{"id": 150000106, "customerid": 17, "time": "2023-01-06T12:26:25.347Z", "items": [{"productid": 20,"quantity": 2,"unit_price": 5.24 },{"productid": 74,"quantity": 1,"unit_price": 12.98 }] } -{"id": 150000087, "customerid": 10, "time": "2023-01-06T13:08:00.455Z", "items": [{"productid": 30,"quantity": 1,"unit_price": 26.98 ,"discount": 8.51 },{"productid": 86,"quantity": 1,"unit_price": 6.10 }] } -{"id": 150000099, "customerid": 28, "time": "2023-01-06T14:06:22.229Z", "items": [{"productid": 185,"quantity": 1,"unit_price": 7.89 }] } -{"id": 150000101, "customerid": 8, "time": "2023-01-06T14:09:00.724Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 ,"discount": 1.57 }] } -{"id": 150000095, "customerid": 26, "time": "2023-01-06T14:32:05.163Z", "items": [{"productid": 156,"quantity": 1,"unit_price": 8.00 }] } -{"id": 150000084, "customerid": 29, "time": "2023-01-06T14:32:32.123Z", "items": [{"productid": 117,"quantity": 1,"unit_price": 35.05 }] } -{"id": 150000091, "customerid": 26, "time": "2023-01-06T16:33:43.174Z", "items": [{"productid": 150,"quantity": 1,"unit_price": 5.92 }] } -{"id": 150000079, "customerid": 21, "time": "2023-01-06T17:30:55.620Z", "items": [{"productid": 186,"quantity": 1,"unit_price": 9.27 }] } -{"id": 150000083, "customerid": 2, "time": "2023-01-06T17:52:31.581Z", "items": [{"productid": 93,"quantity": 2,"unit_price": 58.77 }] } -{"id": 150000109, "customerid": 7, "time": "2023-01-06T18:08:29.556Z", "items": [{"productid": 60,"quantity": 2,"unit_price": 11.18 },{"productid": 67,"quantity": 2,"unit_price": 8.28 ,"discount": 1.52 }] } -{"id": 150000080, "customerid": 25, "time": "2023-01-06T18:17:37.010Z", "items": [{"productid": 102,"quantity": 1,"unit_price": 11.60 }] } -{"id": 150000097, "customerid": 16, "time": "2023-01-06T18:25:56.915Z", "items": [{"productid": 195,"quantity": 1,"unit_price": 11.38 }] } -{"id": 150000082, "customerid": 16, "time": "2023-01-06T21:38:14.810Z", "items": [{"productid": 97,"quantity": 2,"unit_price": 14.48 ,"discount": 6.38 }] } -{"id": 150000102, "customerid": 15, "time": "2023-01-06T22:11:40.086Z", "items": [{"productid": 12,"quantity": 2,"unit_price": 7.49 }] } -{"id": 150000142, "customerid": 27, "time": "2023-01-06T22:17:57.676Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 }] } -{"id": 150000138, "customerid": 23, "time": "2023-01-06T23:06:30.109Z", "items": [{"productid": 3,"quantity": 1,"unit_price": 26.39 },{"productid": 32,"quantity": 1,"unit_price": 9.82 }] } -{"id": 150000144, "customerid": 18, "time": "2023-01-06T23:15:36.186Z", "items": [{"productid": 92,"quantity": 1,"unit_price": 30.18 ,"discount": 3.89 }] } -{"id": 150000122, "customerid": 16, "time": "2023-01-06T23:50:06.874Z", "items": [{"productid": 5,"quantity": 2,"unit_price": 5.43 ,"discount": 3.79 }] } -{"id": 150000145, "customerid": 14, "time": "2023-01-07T01:34:36.575Z", "items": [{"productid": 147,"quantity": 1,"unit_price": 12.21 }] } -{"id": 150000123, "customerid": 22, "time": "2023-01-07T02:37:47.850Z", "items": [{"productid": 142,"quantity": 1,"unit_price": 6.33 }] } -{"id": 150000140, "customerid": 2, "time": "2023-01-07T02:47:27.759Z", "items": [{"productid": 37,"quantity": 2,"unit_price": 12.94 ,"discount": 8.41 }] } -{"id": 150000126, "customerid": 22, "time": "2023-01-07T03:25:26.939Z", "items": [{"productid": 54,"quantity": 1,"unit_price": 11.68 }] } -{"id": 150000136, "customerid": 26, "time": "2023-01-07T03:46:28.634Z", "items": [{"productid": 33,"quantity": 1,"unit_price": 16.69 }] } -{"id": 150000117, "customerid": 18, "time": "2023-01-07T03:53:56.997Z", "items": [{"productid": 195,"quantity": 2,"unit_price": 11.38 ,"discount": 7.45 }] } -{"id": 150000114, "customerid": 10, "time": "2023-01-07T04:21:25.221Z", "items": [{"productid": 47,"quantity": 2,"unit_price": 12.30 ,"discount": 3.05 }] } -{"id": 150000131, "customerid": 13, "time": "2023-01-07T04:33:05.088Z", "items": [{"productid": 155,"quantity": 2,"unit_price": 83.44 }] } -{"id": 150000120, "customerid": 26, "time": "2023-01-07T04:58:11.757Z", "items": [{"productid": 78,"quantity": 1,"unit_price": 6.29 },{"productid": 169,"quantity": 1,"unit_price": 5.23 ,"discount": 2.43 },{"productid": 36,"quantity": 1,"unit_price": 7.61 }] } -{"id": 150000143, "customerid": 1, "time": "2023-01-07T05:22:47.345Z", "items": [{"productid": 54,"quantity": 1,"unit_price": 11.68 }] } -{"id": 150000134, "customerid": 14, "time": "2023-01-07T05:47:12.306Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 }] } -{"id": 150000128, "customerid": 9, "time": "2023-01-07T07:00:57.957Z", "items": [{"productid": 207,"quantity": 1,"unit_price": 17.50 ,"discount": 5.44 }] } -{"id": 150000113, "customerid": 29, "time": "2023-01-07T07:42:30.656Z", "items": [{"productid": 164,"quantity": 1,"unit_price": 18.71 },{"productid": 171,"quantity": 1,"unit_price": 19.89 }] } -{"id": 150000127, "customerid": 2, "time": "2023-01-07T08:15:06.848Z", "items": [{"productid": 94,"quantity": 1,"unit_price": 5.03 }] } -{"id": 150000146, "customerid": 16, "time": "2023-01-07T09:32:14.717Z", "items": [{"productid": 28,"quantity": 1,"unit_price": 7.10 }] } -{"id": 150000121, "customerid": 13, "time": "2023-01-07T09:56:46.625Z", "items": [{"productid": 145,"quantity": 1,"unit_price": 41.55 ,"discount": 18.44 }] } -{"id": 150000147, "customerid": 24, "time": "2023-01-07T10:29:02.296Z", "items": [{"productid": 141,"quantity": 2,"unit_price": 6.36 }] } -{"id": 150000137, "customerid": 16, "time": "2023-01-07T11:59:50.099Z", "items": [{"productid": 185,"quantity": 1,"unit_price": 7.89 }] } -{"id": 150000141, "customerid": 15, "time": "2023-01-07T12:13:20.026Z", "items": [{"productid": 25,"quantity": 1,"unit_price": 8.54 }] } -{"id": 150000130, "customerid": 16, "time": "2023-01-07T13:19:19.758Z", "items": [{"productid": 138,"quantity": 1,"unit_price": 6.80 }] } -{"id": 150000135, "customerid": 17, "time": "2023-01-07T14:13:01.591Z", "items": [{"productid": 86,"quantity": 1,"unit_price": 6.10 ,"discount": 2.17 }] } -{"id": 150000129, "customerid": 13, "time": "2023-01-07T14:21:11.287Z", "items": [{"productid": 154,"quantity": 2,"unit_price": 42.85 }] } -{"id": 150000125, "customerid": 14, "time": "2023-01-07T14:53:19.361Z", "items": [{"productid": 106,"quantity": 1,"unit_price": 8.84 }] } -{"id": 150000116, "customerid": 23, "time": "2023-01-07T15:26:12.529Z", "items": [{"productid": 108,"quantity": 1,"unit_price": 33.60 ,"discount": 2.62 }] } -{"id": 150000124, "customerid": 7, "time": "2023-01-07T16:42:00.804Z", "items": [{"productid": 113,"quantity": 2,"unit_price": 38.70 ,"discount": 9.23 }] } -{"id": 150000139, "customerid": 17, "time": "2023-01-07T18:27:57.344Z", "items": [{"productid": 199,"quantity": 1,"unit_price": 11.47 ,"discount": 5.73 }] } -{"id": 150000132, "customerid": 10, "time": "2023-01-07T18:30:14.434Z", "items": [{"productid": 179,"quantity": 1,"unit_price": 10.38 ,"discount": 3.18 },{"productid": 146,"quantity": 1,"unit_price": 10.96 ,"discount": 4.14 }] } -{"id": 150000115, "customerid": 22, "time": "2023-01-07T18:41:32.284Z", "items": [{"productid": 26,"quantity": 1,"unit_price": 19.08 }] } -{"id": 150000133, "customerid": 6, "time": "2023-01-07T19:29:45.126Z", "items": [{"productid": 174,"quantity": 2,"unit_price": 10.71 }] } -{"id": 150000118, "customerid": 24, "time": "2023-01-07T20:00:08.214Z", "items": [{"productid": 94,"quantity": 1,"unit_price": 5.03 ,"discount": 2.35 }] } -{"id": 150000119, "customerid": 9, "time": "2023-01-07T21:29:49.562Z", "items": [{"productid": 6,"quantity": 1,"unit_price": 8.66 ,"discount": 2.98 },{"productid": 120,"quantity": 1,"unit_price": 10.88 },{"productid": 19,"quantity": 1,"unit_price": 11.78 ,"discount": 4.26 }] } -{"id": 150000154, "customerid": 7, "time": "2023-01-07T22:14:48.911Z", "items": [{"productid": 132,"quantity": 1,"unit_price": 10.21 }] } -{"id": 150000164, "customerid": 23, "time": "2023-01-07T23:19:03.410Z", "items": [{"productid": 78,"quantity": 2,"unit_price": 6.29 ,"discount": 3.10 }] } -{"id": 150000170, "customerid": 6, "time": "2023-01-08T00:01:32.429Z", "items": [{"productid": 63,"quantity": 1,"unit_price": 8.34 ,"discount": 0.74 }] } -{"id": 150000152, "customerid": 22, "time": "2023-01-08T01:06:04.614Z", "items": [{"productid": 103,"quantity": 2,"unit_price": 19.72 },{"productid": 56,"quantity": 1,"unit_price": 5.47 ,"discount": 0.66 }] } -{"id": 150000148, "customerid": 17, "time": "2023-01-08T01:48:49.913Z", "items": [{"productid": 52,"quantity": 2,"unit_price": 40.62 }] } -{"id": 150000169, "customerid": 12, "time": "2023-01-08T03:24:18.875Z", "items": [{"productid": 129,"quantity": 1,"unit_price": 20.60 }] } -{"id": 150000168, "customerid": 23, "time": "2023-01-08T03:52:32.308Z", "items": [{"productid": 69,"quantity": 1,"unit_price": 8.65 }] } -{"id": 150000165, "customerid": 24, "time": "2023-01-08T06:07:41.958Z", "items": [{"productid": 46,"quantity": 1,"unit_price": 6.31 ,"discount": 0.66 }] } -{"id": 150000163, "customerid": 7, "time": "2023-01-08T06:21:09.648Z", "items": [{"productid": 26,"quantity": 3,"unit_price": 19.08 },{"productid": 145,"quantity": 1,"unit_price": 41.55 }] } -{"id": 150000156, "customerid": 24, "time": "2023-01-08T09:10:50.235Z", "items": [{"productid": 70,"quantity": 1,"unit_price": 10.76 }] } -{"id": 150000167, "customerid": 17, "time": "2023-01-08T09:11:45.124Z", "items": [{"productid": 106,"quantity": 1,"unit_price": 8.84 }] } -{"id": 150000161, "customerid": 30, "time": "2023-01-08T09:35:06.969Z", "items": [{"productid": 81,"quantity": 1,"unit_price": 44.14 }] } -{"id": 150000157, "customerid": 18, "time": "2023-01-08T10:03:12.526Z", "items": [{"productid": 75,"quantity": 2,"unit_price": 22.06 ,"discount": 3.00 }] } -{"id": 150000150, "customerid": 14, "time": "2023-01-08T10:03:40.684Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 },{"productid": 104,"quantity": 3,"unit_price": 44.08 }] } -{"id": 150000155, "customerid": 25, "time": "2023-01-08T10:40:15.249Z", "items": [{"productid": 21,"quantity": 2,"unit_price": 8.90 }] } -{"id": 150000151, "customerid": 2, "time": "2023-01-08T11:09:55.599Z", "items": [{"productid": 98,"quantity": 2,"unit_price": 32.37 }] } -{"id": 150000171, "customerid": 25, "time": "2023-01-08T13:57:14.750Z", "items": [{"productid": 189,"quantity": 1,"unit_price": 5.75 ,"discount": 0.33 }] } -{"id": 150000158, "customerid": 1, "time": "2023-01-08T14:14:22.978Z", "items": [{"productid": 26,"quantity": 1,"unit_price": 19.08 }] } -{"id": 150000162, "customerid": 4, "time": "2023-01-08T15:11:40.370Z", "items": [{"productid": 97,"quantity": 1,"unit_price": 14.48 ,"discount": 4.11 }] } -{"id": 150000160, "customerid": 20, "time": "2023-01-08T17:40:10.164Z", "items": [{"productid": 14,"quantity": 1,"unit_price": 5.99 },{"productid": 63,"quantity": 1,"unit_price": 8.34 }] } -{"id": 150000159, "customerid": 24, "time": "2023-01-08T18:00:10.166Z", "items": [{"productid": 16,"quantity": 1,"unit_price": 18.64 ,"discount": 3.35 }] } -{"id": 150000166, "customerid": 10, "time": "2023-01-08T18:42:51.201Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 }] } -{"id": 150000153, "customerid": 7, "time": "2023-01-08T20:41:15.764Z", "items": [{"productid": 156,"quantity": 1,"unit_price": 8.00 }] } -{"id": 150000149, "customerid": 25, "time": "2023-01-08T21:24:33.518Z", "items": [{"productid": 120,"quantity": 1,"unit_price": 10.88 ,"discount": 3.98 },{"productid": 17,"quantity": 1,"unit_price": 5.08 }] } -{"id": 150000175, "customerid": 15, "time": "2023-01-08T22:47:50.092Z", "items": [{"productid": 3,"quantity": 2,"unit_price": 26.39 }] } -{"id": 150000179, "customerid": 11, "time": "2023-01-08T22:58:35.701Z", "items": [{"productid": 13,"quantity": 1,"unit_price": 9.69 }] } -{"id": 150000188, "customerid": 12, "time": "2023-01-09T01:50:32.128Z", "items": [{"productid": 192,"quantity": 2,"unit_price": 14.07 }] } -{"id": 150000189, "customerid": 2, "time": "2023-01-09T01:54:48.453Z", "items": [{"productid": 178,"quantity": 2,"unit_price": 6.11 ,"discount": 1.79 }] } -{"id": 150000178, "customerid": 13, "time": "2023-01-09T02:05:27.146Z", "items": [{"productid": 54,"quantity": 2,"unit_price": 11.68 ,"discount": 6.03 }] } -{"id": 150000181, "customerid": 19, "time": "2023-01-09T02:31:59.863Z", "items": [{"productid": 62,"quantity": 2,"unit_price": 42.47 ,"discount": 16.13 }] } -{"id": 150000177, "customerid": 27, "time": "2023-01-09T03:25:06.981Z", "items": [{"productid": 68,"quantity": 3,"unit_price": 7.02 }] } -{"id": 150000176, "customerid": 21, "time": "2023-01-09T04:49:47.462Z", "items": [{"productid": 202,"quantity": 2,"unit_price": 14.70 ,"discount": 6.04 }] } -{"id": 150000183, "customerid": 28, "time": "2023-01-09T05:33:35.896Z", "items": [{"productid": 59,"quantity": 2,"unit_price": 23.22 ,"discount": 9.46 }] } -{"id": 150000185, "customerid": 22, "time": "2023-01-09T06:11:34.942Z", "items": [{"productid": 40,"quantity": 1,"unit_price": 7.91 }] } -{"id": 150000195, "customerid": 23, "time": "2023-01-09T06:45:37.695Z", "items": [{"productid": 17,"quantity": 1,"unit_price": 5.08 ,"discount": 0.63 },{"productid": 9,"quantity": 1,"unit_price": 15.41 ,"discount": 3.38 }] } -{"id": 150000174, "customerid": 13, "time": "2023-01-09T08:01:53.984Z", "items": [{"productid": 192,"quantity": 2,"unit_price": 14.07 ,"discount": 2.85 }] } -{"id": 150000187, "customerid": 4, "time": "2023-01-09T08:28:15.822Z", "items": [{"productid": 79,"quantity": 2,"unit_price": 11.62 },{"productid": 99,"quantity": 1,"unit_price": 9.21 }] } -{"id": 150000172, "customerid": 21, "time": "2023-01-09T08:58:28.790Z", "items": [{"productid": 204,"quantity": 2,"unit_price": 8.20 },{"productid": 42,"quantity": 1,"unit_price": 5.37 }] } -{"id": 150000182, "customerid": 3, "time": "2023-01-09T09:15:22.529Z", "items": [{"productid": 164,"quantity": 2,"unit_price": 18.71 ,"discount": 18.64 },{"productid": 46,"quantity": 1,"unit_price": 6.31 ,"discount": 1.69 }] } -{"id": 150000194, "customerid": 16, "time": "2023-01-09T09:49:57.819Z", "items": [{"productid": 97,"quantity": 1,"unit_price": 14.48 }] } -{"id": 150000193, "customerid": 5, "time": "2023-01-09T10:16:23.053Z", "items": [{"productid": 114,"quantity": 1,"unit_price": 8.22 }] } -{"id": 150000186, "customerid": 26, "time": "2023-01-09T10:21:55.928Z", "items": [{"productid": 49,"quantity": 2,"unit_price": 7.62 ,"discount": 6.59 },{"productid": 5,"quantity": 1,"unit_price": 5.43 }] } -{"id": 150000184, "customerid": 29, "time": "2023-01-09T13:47:18.523Z", "items": [{"productid": 134,"quantity": 1,"unit_price": 7.01 },{"productid": 160,"quantity": 1,"unit_price": 13.37 ,"discount": 6.50 }] } -{"id": 150000191, "customerid": 4, "time": "2023-01-09T14:53:39.884Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 }] } -{"id": 150000192, "customerid": 29, "time": "2023-01-09T16:23:47.959Z", "items": [{"productid": 184,"quantity": 1,"unit_price": 8.47 ,"discount": 4.18 }] } -{"id": 150000190, "customerid": 17, "time": "2023-01-09T16:25:46.644Z", "items": [{"productid": 127,"quantity": 1,"unit_price": 20.99 ,"discount": 1.51 }] } -{"id": 150000180, "customerid": 25, "time": "2023-01-09T18:04:15.827Z", "items": [{"productid": 150,"quantity": 1,"unit_price": 5.92 ,"discount": 0.78 }] } -{"id": 150000173, "customerid": 19, "time": "2023-01-09T18:16:48.488Z", "items": [{"productid": 125,"quantity": 2,"unit_price": 8.93 },{"productid": 80,"quantity": 1,"unit_price": 19.75 }] } -{"id": 150000198, "customerid": 24, "time": "2023-01-09T23:51:48.994Z", "items": [{"productid": 114,"quantity": 2,"unit_price": 8.22 }] } -{"id": 150000197, "customerid": 14, "time": "2023-01-10T03:38:19.667Z", "items": [{"productid": 80,"quantity": 2,"unit_price": 19.75 }] } -{"id": 150000196, "customerid": 12, "time": "2023-01-10T21:17:18.795Z", "items": [{"productid": 54,"quantity": 3,"unit_price": 11.68 ,"discount": 10.27 }] } -{"id": 150000206, "customerid": 8, "time": "2023-01-10T23:07:54.082Z", "items": [{"productid": 126,"quantity": 3,"unit_price": 12.35 },{"productid": 75,"quantity": 1,"unit_price": 22.06 }] } -{"id": 150000205, "customerid": 1, "time": "2023-01-11T00:07:52.047Z", "items": [{"productid": 11,"quantity": 1,"unit_price": 12.08 }] } -{"id": 150000204, "customerid": 21, "time": "2023-01-11T04:06:37.293Z", "items": [{"productid": 149,"quantity": 2,"unit_price": 46.38 ,"discount": 12.21 }] } -{"id": 150000207, "customerid": 21, "time": "2023-01-11T06:26:05.243Z", "items": [{"productid": 121,"quantity": 1,"unit_price": 7.83 },{"productid": 48,"quantity": 1,"unit_price": 5.45 ,"discount": 2.70 }] } -{"id": 150000202, "customerid": 1, "time": "2023-01-11T07:37:08.941Z", "items": [{"productid": 24,"quantity": 1,"unit_price": 5.02 ,"discount": 1.02 }] } -{"id": 150000200, "customerid": 2, "time": "2023-01-11T08:37:30.966Z", "items": [{"productid": 162,"quantity": 2,"unit_price": 5.19 },{"productid": 46,"quantity": 1,"unit_price": 6.31 },{"productid": 199,"quantity": 2,"unit_price": 11.47 ,"discount": 8.22 }] } -{"id": 150000213, "customerid": 30, "time": "2023-01-11T09:38:37.027Z", "items": [{"productid": 181,"quantity": 1,"unit_price": 45.19 }] } -{"id": 150000208, "customerid": 5, "time": "2023-01-11T10:21:35.451Z", "items": [{"productid": 26,"quantity": 1,"unit_price": 19.08 ,"discount": 2.83 }] } -{"id": 150000199, "customerid": 5, "time": "2023-01-11T12:08:03.134Z", "items": [{"productid": 165,"quantity": 2,"unit_price": 41.83 },{"productid": 122,"quantity": 1,"unit_price": 13.31 ,"discount": 3.26 }] } -{"id": 150000203, "customerid": 27, "time": "2023-01-11T12:26:18.939Z", "items": [{"productid": 112,"quantity": 1,"unit_price": 17.31 }] } -{"id": 150000211, "customerid": 7, "time": "2023-01-11T12:31:58.570Z", "items": [{"productid": 139,"quantity": 2,"unit_price": 11.56 ,"discount": 3.92 }] } -{"id": 150000214, "customerid": 15, "time": "2023-01-11T14:35:33.057Z", "items": [{"productid": 82,"quantity": 1,"unit_price": 85.96 }] } -{"id": 150000210, "customerid": 15, "time": "2023-01-11T18:37:32.002Z", "items": [{"productid": 87,"quantity": 2,"unit_price": 12.05 }] } -{"id": 150000212, "customerid": 24, "time": "2023-01-11T18:40:22.782Z", "items": [{"productid": 146,"quantity": 1,"unit_price": 10.96 ,"discount": 4.87 },{"productid": 111,"quantity": 1,"unit_price": 10.18 ,"discount": 4.75 }] } -{"id": 150000209, "customerid": 10, "time": "2023-01-11T19:56:58.017Z", "items": [{"productid": 146,"quantity": 1,"unit_price": 10.96 }] } -{"id": 150000201, "customerid": 20, "time": "2023-01-11T20:18:47.667Z", "items": [{"productid": 194,"quantity": 1,"unit_price": 6.77 ,"discount": 1.08 },{"productid": 182,"quantity": 1,"unit_price": 9.18 ,"discount": 4.56 }] } -{"id": 150000219, "customerid": 14, "time": "2023-01-12T02:11:14.484Z", "items": [{"productid": 48,"quantity": 2,"unit_price": 5.45 ,"discount": 3.89 }] } -{"id": 150000216, "customerid": 16, "time": "2023-01-12T02:14:40.345Z", "items": [{"productid": 32,"quantity": 1,"unit_price": 9.82 },{"productid": 118,"quantity": 1,"unit_price": 12.95 ,"discount": 2.83 }] } -{"id": 150000235, "customerid": 20, "time": "2023-01-12T03:28:53.880Z", "items": [{"productid": 25,"quantity": 1,"unit_price": 8.54 }] } -{"id": 150000227, "customerid": 3, "time": "2023-01-12T04:21:24.950Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 ,"discount": 12.61 },{"productid": 51,"quantity": 1,"unit_price": 18.17 }] } -{"id": 150000233, "customerid": 9, "time": "2023-01-12T04:51:13.016Z", "items": [{"productid": 31,"quantity": 1,"unit_price": 52.53 }] } -{"id": 150000228, "customerid": 8, "time": "2023-01-12T06:00:05.545Z", "items": [{"productid": 12,"quantity": 2,"unit_price": 7.49 }] } -{"id": 150000234, "customerid": 16, "time": "2023-01-12T06:44:16.275Z", "items": [{"productid": 93,"quantity": 1,"unit_price": 58.77 }] } -{"id": 150000226, "customerid": 15, "time": "2023-01-12T06:49:57.407Z", "items": [{"productid": 84,"quantity": 3,"unit_price": 15.46 }] } -{"id": 150000221, "customerid": 26, "time": "2023-01-12T07:18:18.240Z", "items": [{"productid": 139,"quantity": 2,"unit_price": 11.56 ,"discount": 6.82 },{"productid": 48,"quantity": 2,"unit_price": 5.45 ,"discount": 2.71 }] } -{"id": 150000222, "customerid": 21, "time": "2023-01-12T07:25:34.515Z", "items": [{"productid": 116,"quantity": 1,"unit_price": 15.68 ,"discount": 4.33 }] } -{"id": 150000215, "customerid": 6, "time": "2023-01-12T07:35:51.523Z", "items": [{"productid": 10,"quantity": 1,"unit_price": 9.53 }] } -{"id": 150000218, "customerid": 11, "time": "2023-01-12T08:24:38.414Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 ,"discount": 4.39 }] } -{"id": 150000231, "customerid": 5, "time": "2023-01-12T09:53:51.744Z", "items": [{"productid": 115,"quantity": 2,"unit_price": 9.22 }] } -{"id": 150000229, "customerid": 1, "time": "2023-01-12T10:00:01.699Z", "items": [{"productid": 137,"quantity": 1,"unit_price": 51.89 }] } -{"id": 150000225, "customerid": 1, "time": "2023-01-12T10:29:08.680Z", "items": [{"productid": 66,"quantity": 1,"unit_price": 5.62 ,"discount": 1.26 }] } -{"id": 150000223, "customerid": 21, "time": "2023-01-12T10:52:49.189Z", "items": [{"productid": 135,"quantity": 1,"unit_price": 11.92 }] } -{"id": 150000217, "customerid": 21, "time": "2023-01-12T12:43:15.388Z", "items": [{"productid": 201,"quantity": 1,"unit_price": 8.65 ,"discount": 1.14 }] } -{"id": 150000232, "customerid": 26, "time": "2023-01-12T13:31:23.868Z", "items": [{"productid": 2,"quantity": 1,"unit_price": 11.81 },{"productid": 21,"quantity": 1,"unit_price": 8.90 ,"discount": 1.43 }] } -{"id": 150000230, "customerid": 13, "time": "2023-01-12T13:42:18.615Z", "items": [{"productid": 139,"quantity": 1,"unit_price": 11.56 }] } -{"id": 150000220, "customerid": 1, "time": "2023-01-12T19:34:54.393Z", "items": [{"productid": 99,"quantity": 1,"unit_price": 9.21 ,"discount": 4.56 },{"productid": 126,"quantity": 1,"unit_price": 12.35 ,"discount": 0.88 }] } -{"id": 150000224, "customerid": 12, "time": "2023-01-12T20:41:25.554Z", "items": [{"productid": 63,"quantity": 1,"unit_price": 8.34 ,"discount": 2.13 }] } -{"id": 150000243, "customerid": 22, "time": "2023-01-12T22:25:18.705Z", "items": [{"productid": 165,"quantity": 1,"unit_price": 41.83 }] } -{"id": 150000238, "customerid": 14, "time": "2023-01-12T22:38:13.414Z", "items": [{"productid": 135,"quantity": 1,"unit_price": 11.92 ,"discount": 1.84 }] } -{"id": 150000255, "customerid": 26, "time": "2023-01-13T00:36:19.706Z", "items": [{"productid": 25,"quantity": 1,"unit_price": 8.54 }] } -{"id": 150000254, "customerid": 30, "time": "2023-01-13T01:11:25.136Z", "items": [{"productid": 84,"quantity": 1,"unit_price": 15.46 ,"discount": 5.50 }] } -{"id": 150000239, "customerid": 10, "time": "2023-01-13T02:20:48.413Z", "items": [{"productid": 9,"quantity": 2,"unit_price": 15.41 },{"productid": 34,"quantity": 1,"unit_price": 37.32 }] } -{"id": 150000257, "customerid": 21, "time": "2023-01-13T02:50:10.182Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 ,"discount": 1.92 }] } -{"id": 150000258, "customerid": 13, "time": "2023-01-13T02:55:39.811Z", "items": [{"productid": 1,"quantity": 2,"unit_price": 6.94 ,"discount": 5.09 },{"productid": 124,"quantity": 1,"unit_price": 57.94 }] } -{"id": 150000237, "customerid": 7, "time": "2023-01-13T02:58:12.889Z", "items": [{"productid": 168,"quantity": 2,"unit_price": 11.15 },{"productid": 34,"quantity": 1,"unit_price": 37.32 }] } -{"id": 150000251, "customerid": 27, "time": "2023-01-13T03:12:45.081Z", "items": [{"productid": 163,"quantity": 2,"unit_price": 11.01 }] } -{"id": 150000248, "customerid": 18, "time": "2023-01-13T03:42:44.493Z", "items": [{"productid": 133,"quantity": 1,"unit_price": 8.38 ,"discount": 3.88 }] } -{"id": 150000236, "customerid": 17, "time": "2023-01-13T04:49:40.384Z", "items": [{"productid": 163,"quantity": 3,"unit_price": 11.01 },{"productid": 65,"quantity": 1,"unit_price": 10.28 ,"discount": 2.03 }] } -{"id": 150000249, "customerid": 10, "time": "2023-01-13T05:16:07.728Z", "items": [{"productid": 179,"quantity": 1,"unit_price": 10.38 }] } -{"id": 150000260, "customerid": 25, "time": "2023-01-13T06:07:34.789Z", "items": [{"productid": 190,"quantity": 1,"unit_price": 9.81 }] } -{"id": 150000240, "customerid": 18, "time": "2023-01-13T06:17:24.792Z", "items": [{"productid": 163,"quantity": 2,"unit_price": 11.01 }] } -{"id": 150000256, "customerid": 16, "time": "2023-01-13T07:38:50.277Z", "items": [{"productid": 191,"quantity": 1,"unit_price": 8.27 },{"productid": 161,"quantity": 1,"unit_price": 29.88 }] } -{"id": 150000252, "customerid": 19, "time": "2023-01-13T07:52:53.747Z", "items": [{"productid": 131,"quantity": 1,"unit_price": 6.01 ,"discount": 0.55 },{"productid": 15,"quantity": 1,"unit_price": 10.96 }] } -{"id": 150000242, "customerid": 8, "time": "2023-01-13T08:31:30.691Z", "items": [{"productid": 203,"quantity": 1,"unit_price": 6.18 }] } -{"id": 150000259, "customerid": 28, "time": "2023-01-13T09:14:32.854Z", "items": [{"productid": 78,"quantity": 1,"unit_price": 6.29 }] } -{"id": 150000262, "customerid": 26, "time": "2023-01-13T10:44:29.978Z", "items": [{"productid": 98,"quantity": 2,"unit_price": 32.37 }] } -{"id": 150000253, "customerid": 6, "time": "2023-01-13T10:45:26.979Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 ,"discount": 0.54 }] } -{"id": 150000261, "customerid": 14, "time": "2023-01-13T12:03:12.350Z", "items": [{"productid": 103,"quantity": 1,"unit_price": 19.72 ,"discount": 1.93 }] } -{"id": 150000246, "customerid": 19, "time": "2023-01-13T13:01:54.169Z", "items": [{"productid": 159,"quantity": 1,"unit_price": 7.86 }] } -{"id": 150000250, "customerid": 12, "time": "2023-01-13T14:36:47.205Z", "items": [{"productid": 129,"quantity": 1,"unit_price": 20.60 ,"discount": 7.46 },{"productid": 47,"quantity": 1,"unit_price": 12.30 ,"discount": 3.45 }] } -{"id": 150000247, "customerid": 13, "time": "2023-01-13T17:27:51.602Z", "items": [{"productid": 173,"quantity": 1,"unit_price": 20.52 },{"productid": 146,"quantity": 1,"unit_price": 10.96 }] } -{"id": 150000241, "customerid": 20, "time": "2023-01-13T19:49:28.557Z", "items": [{"productid": 78,"quantity": 1,"unit_price": 6.29 }] } -{"id": 150000245, "customerid": 26, "time": "2023-01-13T19:59:57.169Z", "items": [{"productid": 1,"quantity": 1,"unit_price": 6.94 }] } -{"id": 150000244, "customerid": 18, "time": "2023-01-13T21:59:28.151Z", "items": [{"productid": 95,"quantity": 1,"unit_price": 8.15 },{"productid": 182,"quantity": 1,"unit_price": 9.18 }] } -{"id": 150000271, "customerid": 25, "time": "2023-01-13T23:02:18.341Z", "items": [{"productid": 136,"quantity": 1,"unit_price": 26.65 },{"productid": 105,"quantity": 1,"unit_price": 10.44 ,"discount": 4.01 }] } -{"id": 150000268, "customerid": 12, "time": "2023-01-14T00:00:16.509Z", "items": [{"productid": 151,"quantity": 2,"unit_price": 7.24 ,"discount": 6.11 }] } -{"id": 150000272, "customerid": 11, "time": "2023-01-14T00:46:51.386Z", "items": [{"productid": 110,"quantity": 2,"unit_price": 5.64 }] } -{"id": 150000273, "customerid": 15, "time": "2023-01-14T01:03:59.641Z", "items": [{"productid": 5,"quantity": 3,"unit_price": 5.43 }] } -{"id": 150000278, "customerid": 29, "time": "2023-01-14T01:49:56.415Z", "items": [{"productid": 167,"quantity": 1,"unit_price": 6.56 ,"discount": 2.46 }] } -{"id": 150000276, "customerid": 18, "time": "2023-01-14T02:32:30.515Z", "items": [{"productid": 123,"quantity": 1,"unit_price": 29.75 },{"productid": 130,"quantity": 2,"unit_price": 10.02 ,"discount": 3.62 }] } -{"id": 150000263, "customerid": 22, "time": "2023-01-14T03:04:23.834Z", "items": [{"productid": 158,"quantity": 1,"unit_price": 30.42 ,"discount": 7.31 }] } -{"id": 150000267, "customerid": 4, "time": "2023-01-14T03:58:35.804Z", "items": [{"productid": 189,"quantity": 1,"unit_price": 5.75 },{"productid": 175,"quantity": 2,"unit_price": 18.21 },{"productid": 68,"quantity": 1,"unit_price": 7.02 }] } -{"id": 150000275, "customerid": 10, "time": "2023-01-14T04:22:07.932Z", "items": [{"productid": 137,"quantity": 2,"unit_price": 51.89 ,"discount": 15.44 }] } -{"id": 150000265, "customerid": 2, "time": "2023-01-14T04:24:33.568Z", "items": [{"productid": 73,"quantity": 2,"unit_price": 7.94 ,"discount": 6.51 }] } -{"id": 150000281, "customerid": 18, "time": "2023-01-14T05:16:48.773Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000269, "customerid": 12, "time": "2023-01-14T06:57:11.475Z", "items": [{"productid": 124,"quantity": 1,"unit_price": 57.94 }] } -{"id": 150000274, "customerid": 13, "time": "2023-01-14T07:56:42.367Z", "items": [{"productid": 194,"quantity": 2,"unit_price": 6.77 },{"productid": 148,"quantity": 1,"unit_price": 20.75 }] } -{"id": 150000279, "customerid": 12, "time": "2023-01-14T10:29:44.363Z", "items": [{"productid": 20,"quantity": 1,"unit_price": 5.24 }] } -{"id": 150000280, "customerid": 2, "time": "2023-01-14T11:36:34.828Z", "items": [{"productid": 163,"quantity": 2,"unit_price": 11.01 }] } -{"id": 150000264, "customerid": 11, "time": "2023-01-14T14:26:33.920Z", "items": [{"productid": 28,"quantity": 1,"unit_price": 7.10 },{"productid": 102,"quantity": 1,"unit_price": 11.60 ,"discount": 5.21 }] } -{"id": 150000266, "customerid": 8, "time": "2023-01-14T21:20:33.569Z", "items": [{"productid": 137,"quantity": 1,"unit_price": 51.89 }] } -{"id": 150000270, "customerid": 30, "time": "2023-01-14T21:25:47.864Z", "items": [{"productid": 84,"quantity": 2,"unit_price": 15.46 }] } -{"id": 150000277, "customerid": 3, "time": "2023-01-14T22:10:53.446Z", "items": [{"productid": 198,"quantity": 1,"unit_price": 6.75 ,"discount": 1.18 },{"productid": 102,"quantity": 2,"unit_price": 11.60 }] } -{"id": 150000294, "customerid": 3, "time": "2023-01-15T00:59:19.296Z", "items": [{"productid": 179,"quantity": 1,"unit_price": 10.38 }] } -{"id": 150000289, "customerid": 6, "time": "2023-01-15T02:01:31.735Z", "items": [{"productid": 95,"quantity": 1,"unit_price": 8.15 ,"discount": 1.14 }] } -{"id": 150000296, "customerid": 20, "time": "2023-01-15T02:23:30.980Z", "items": [{"productid": 90,"quantity": 1,"unit_price": 7.94 }] } -{"id": 150000291, "customerid": 18, "time": "2023-01-15T02:52:55.807Z", "items": [{"productid": 99,"quantity": 1,"unit_price": 9.21 }] } -{"id": 150000290, "customerid": 18, "time": "2023-01-15T03:06:25.092Z", "items": [{"productid": 49,"quantity": 1,"unit_price": 7.62 }] } -{"id": 150000299, "customerid": 20, "time": "2023-01-15T03:19:43.692Z", "items": [{"productid": 106,"quantity": 2,"unit_price": 8.84 }] } -{"id": 150000282, "customerid": 16, "time": "2023-01-15T03:52:54.321Z", "items": [{"productid": 131,"quantity": 1,"unit_price": 6.01 }] } -{"id": 150000302, "customerid": 5, "time": "2023-01-15T05:05:42.471Z", "items": [{"productid": 23,"quantity": 1,"unit_price": 8.87 }] } -{"id": 150000287, "customerid": 27, "time": "2023-01-15T06:01:01.169Z", "items": [{"productid": 165,"quantity": 1,"unit_price": 41.83 }] } -{"id": 150000301, "customerid": 25, "time": "2023-01-15T06:04:51.688Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 ,"discount": 4.55 }] } -{"id": 150000300, "customerid": 30, "time": "2023-01-15T06:31:32.103Z", "items": [{"productid": 68,"quantity": 2,"unit_price": 7.02 }] } -{"id": 150000298, "customerid": 28, "time": "2023-01-15T08:14:07.521Z", "items": [{"productid": 47,"quantity": 1,"unit_price": 12.30 }] } -{"id": 150000293, "customerid": 5, "time": "2023-01-15T08:14:36.360Z", "items": [{"productid": 58,"quantity": 2,"unit_price": 10.39 ,"discount": 5.82 }] } -{"id": 150000288, "customerid": 9, "time": "2023-01-15T09:05:45.634Z", "items": [{"productid": 25,"quantity": 1,"unit_price": 8.54 }] } -{"id": 150000286, "customerid": 7, "time": "2023-01-15T09:56:41.252Z", "items": [{"productid": 165,"quantity": 2,"unit_price": 41.83 ,"discount": 18.75 }] } -{"id": 150000285, "customerid": 18, "time": "2023-01-15T13:47:16.125Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 },{"productid": 66,"quantity": 2,"unit_price": 5.62 }] } -{"id": 150000295, "customerid": 7, "time": "2023-01-15T15:28:08.912Z", "items": [{"productid": 110,"quantity": 1,"unit_price": 5.64 }] } -{"id": 150000283, "customerid": 21, "time": "2023-01-15T17:37:09.249Z", "items": [{"productid": 190,"quantity": 2,"unit_price": 9.81 }] } -{"id": 150000292, "customerid": 6, "time": "2023-01-15T19:05:08.428Z", "items": [{"productid": 178,"quantity": 1,"unit_price": 6.11 },{"productid": 66,"quantity": 1,"unit_price": 5.62 ,"discount": 1.90 }] } -{"id": 150000284, "customerid": 19, "time": "2023-01-15T20:41:38.771Z", "items": [{"productid": 50,"quantity": 1,"unit_price": 10.69 }] } -{"id": 150000297, "customerid": 23, "time": "2023-01-15T22:13:41.010Z", "items": [{"productid": 122,"quantity": 1,"unit_price": 13.31 ,"discount": 2.71 }] } -{"id": 150000303, "customerid": 17, "time": "2023-01-15T22:54:13.501Z", "items": [{"productid": 81,"quantity": 1,"unit_price": 44.14 ,"discount": 17.85 }] } -{"id": 150000314, "customerid": 13, "time": "2023-01-16T02:36:23.433Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 ,"discount": 3.69 },{"productid": 127,"quantity": 1,"unit_price": 20.99 }] } -{"id": 150000307, "customerid": 17, "time": "2023-01-16T02:38:47.373Z", "items": [{"productid": 53,"quantity": 1,"unit_price": 12.62 }] } -{"id": 150000312, "customerid": 4, "time": "2023-01-16T06:29:35.976Z", "items": [{"productid": 150,"quantity": 1,"unit_price": 5.92 ,"discount": 0.85 }] } -{"id": 150000317, "customerid": 2, "time": "2023-01-16T07:48:21.741Z", "items": [{"productid": 188,"quantity": 1,"unit_price": 35.21 }] } -{"id": 150000305, "customerid": 21, "time": "2023-01-16T08:25:25.039Z", "items": [{"productid": 196,"quantity": 1,"unit_price": 8.00 ,"discount": 1.49 }] } -{"id": 150000316, "customerid": 29, "time": "2023-01-16T13:20:14.806Z", "items": [{"productid": 112,"quantity": 2,"unit_price": 17.31 },{"productid": 133,"quantity": 1,"unit_price": 8.38 }] } -{"id": 150000311, "customerid": 16, "time": "2023-01-16T14:57:33.189Z", "items": [{"productid": 108,"quantity": 1,"unit_price": 33.60 ,"discount": 3.59 }] } -{"id": 150000313, "customerid": 28, "time": "2023-01-16T18:26:40.228Z", "items": [{"productid": 94,"quantity": 1,"unit_price": 5.03 }] } -{"id": 150000308, "customerid": 5, "time": "2023-01-16T18:45:43.564Z", "items": [{"productid": 71,"quantity": 2,"unit_price": 11.90 },{"productid": 18,"quantity": 1,"unit_price": 10.01 }] } -{"id": 150000306, "customerid": 30, "time": "2023-01-16T19:15:58.315Z", "items": [{"productid": 79,"quantity": 2,"unit_price": 11.62 }] } -{"id": 150000315, "customerid": 20, "time": "2023-01-16T19:39:40.851Z", "items": [{"productid": 85,"quantity": 1,"unit_price": 34.56 }] } -{"id": 150000304, "customerid": 12, "time": "2023-01-16T20:50:12.740Z", "items": [{"productid": 138,"quantity": 2,"unit_price": 6.80 },{"productid": 184,"quantity": 1,"unit_price": 8.47 ,"discount": 2.96 }] } -{"id": 150000309, "customerid": 7, "time": "2023-01-16T20:51:40.385Z", "items": [{"productid": 176,"quantity": 1,"unit_price": 7.79 }] } -{"id": 150000310, "customerid": 7, "time": "2023-01-16T21:15:30.136Z", "items": [{"productid": 177,"quantity": 2,"unit_price": 8.70 ,"discount": 2.84 }] } -{"id": 150000319, "customerid": 28, "time": "2023-01-17T00:04:25.582Z", "items": [{"productid": 198,"quantity": 1,"unit_price": 6.75 ,"discount": 1.67 }] } -{"id": 150000333, "customerid": 13, "time": "2023-01-17T02:43:48.173Z", "items": [{"productid": 157,"quantity": 3,"unit_price": 13.61 ,"discount": 7.25 }] } -{"id": 150000330, "customerid": 29, "time": "2023-01-17T04:00:05.842Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 }] } -{"id": 150000321, "customerid": 22, "time": "2023-01-17T06:33:39.443Z", "items": [{"productid": 175,"quantity": 1,"unit_price": 18.21 },{"productid": 103,"quantity": 2,"unit_price": 19.72 ,"discount": 13.41 }] } -{"id": 150000318, "customerid": 4, "time": "2023-01-17T06:58:32.886Z", "items": [{"productid": 163,"quantity": 1,"unit_price": 11.01 ,"discount": 1.10 }] } -{"id": 150000322, "customerid": 29, "time": "2023-01-17T08:02:35.707Z", "items": [{"productid": 136,"quantity": 1,"unit_price": 26.65 }] } -{"id": 150000325, "customerid": 22, "time": "2023-01-17T08:08:55.546Z", "items": [{"productid": 152,"quantity": 2,"unit_price": 11.28 ,"discount": 6.89 }] } -{"id": 150000334, "customerid": 3, "time": "2023-01-17T08:58:43.422Z", "items": [{"productid": 126,"quantity": 1,"unit_price": 12.35 }] } -{"id": 150000326, "customerid": 3, "time": "2023-01-17T11:34:36.660Z", "items": [{"productid": 198,"quantity": 1,"unit_price": 6.75 ,"discount": 1.49 },{"productid": 130,"quantity": 3,"unit_price": 10.02 ,"discount": 7.55 },{"productid": 151,"quantity": 1,"unit_price": 7.24 }] } -{"id": 150000323, "customerid": 13, "time": "2023-01-17T16:00:15.159Z", "items": [{"productid": 134,"quantity": 1,"unit_price": 7.01 ,"discount": 2.84 }] } -{"id": 150000331, "customerid": 16, "time": "2023-01-17T17:40:35.865Z", "items": [{"productid": 158,"quantity": 1,"unit_price": 30.42 ,"discount": 10.79 }] } -{"id": 150000332, "customerid": 16, "time": "2023-01-17T18:03:12.153Z", "items": [{"productid": 20,"quantity": 1,"unit_price": 5.24 }] } -{"id": 150000329, "customerid": 9, "time": "2023-01-17T18:18:27.968Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000327, "customerid": 7, "time": "2023-01-17T18:50:37.076Z", "items": [{"productid": 165,"quantity": 1,"unit_price": 41.83 ,"discount": 11.39 }] } -{"id": 150000320, "customerid": 1, "time": "2023-01-17T19:00:51.083Z", "items": [{"productid": 201,"quantity": 1,"unit_price": 8.65 }] } -{"id": 150000328, "customerid": 25, "time": "2023-01-17T20:33:16.878Z", "items": [{"productid": 164,"quantity": 1,"unit_price": 18.71 }] } -{"id": 150000324, "customerid": 18, "time": "2023-01-17T20:52:38.682Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 ,"discount": 18.78 },{"productid": 19,"quantity": 2,"unit_price": 11.78 }] } -{"id": 150000348, "customerid": 11, "time": "2023-01-17T22:22:31.465Z", "items": [{"productid": 98,"quantity": 2,"unit_price": 32.37 }] } -{"id": 150000347, "customerid": 8, "time": "2023-01-17T23:54:13.453Z", "items": [{"productid": 29,"quantity": 2,"unit_price": 12.07 },{"productid": 26,"quantity": 1,"unit_price": 19.08 }] } -{"id": 150000349, "customerid": 26, "time": "2023-01-18T00:29:09.438Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000335, "customerid": 10, "time": "2023-01-18T01:38:43.521Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000339, "customerid": 27, "time": "2023-01-18T04:00:16.181Z", "items": [{"productid": 2,"quantity": 1,"unit_price": 11.81 ,"discount": 3.42 }] } -{"id": 150000341, "customerid": 23, "time": "2023-01-18T04:26:53.394Z", "items": [{"productid": 204,"quantity": 1,"unit_price": 8.20 }] } -{"id": 150000345, "customerid": 18, "time": "2023-01-18T06:42:22.960Z", "items": [{"productid": 191,"quantity": 1,"unit_price": 8.27 ,"discount": 2.74 }] } -{"id": 150000346, "customerid": 18, "time": "2023-01-18T07:38:15.057Z", "items": [{"productid": 180,"quantity": 1,"unit_price": 23.20 }] } -{"id": 150000343, "customerid": 30, "time": "2023-01-18T07:41:20.550Z", "items": [{"productid": 178,"quantity": 1,"unit_price": 6.11 ,"discount": 0.66 }] } -{"id": 150000342, "customerid": 12, "time": "2023-01-18T09:32:57.805Z", "items": [{"productid": 149,"quantity": 2,"unit_price": 46.38 },{"productid": 55,"quantity": 2,"unit_price": 12.22 ,"discount": 2.32 },{"productid": 150,"quantity": 2,"unit_price": 5.92 ,"discount": 2.61 }] } -{"id": 150000340, "customerid": 20, "time": "2023-01-18T12:54:10.762Z", "items": [{"productid": 38,"quantity": 1,"unit_price": 6.74 }] } -{"id": 150000344, "customerid": 22, "time": "2023-01-18T12:56:54.406Z", "items": [{"productid": 124,"quantity": 1,"unit_price": 57.94 }] } -{"id": 150000338, "customerid": 19, "time": "2023-01-18T14:14:21.889Z", "items": [{"productid": 132,"quantity": 1,"unit_price": 10.21 ,"discount": 1.71 }] } -{"id": 150000336, "customerid": 10, "time": "2023-01-18T15:52:59.433Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 ,"discount": 9.93 }] } -{"id": 150000337, "customerid": 22, "time": "2023-01-18T20:15:40.581Z", "items": [{"productid": 189,"quantity": 1,"unit_price": 5.75 },{"productid": 88,"quantity": 1,"unit_price": 11.12 }] } -{"id": 150000372, "customerid": 3, "time": "2023-01-18T22:26:30.311Z", "items": [{"productid": 64,"quantity": 1,"unit_price": 14.18 }] } -{"id": 150000357, "customerid": 20, "time": "2023-01-18T23:21:24.218Z", "items": [{"productid": 166,"quantity": 1,"unit_price": 6.59 },{"productid": 30,"quantity": 2,"unit_price": 26.98 ,"discount": 12.93 }] } -{"id": 150000354, "customerid": 29, "time": "2023-01-19T02:42:05.855Z", "items": [{"productid": 207,"quantity": 1,"unit_price": 17.50 }] } -{"id": 150000358, "customerid": 19, "time": "2023-01-19T04:01:32.848Z", "items": [{"productid": 159,"quantity": 2,"unit_price": 7.86 },{"productid": 173,"quantity": 1,"unit_price": 20.52 }] } -{"id": 150000370, "customerid": 10, "time": "2023-01-19T04:08:55.080Z", "items": [{"productid": 205,"quantity": 1,"unit_price": 8.00 }] } -{"id": 150000371, "customerid": 11, "time": "2023-01-19T04:14:15.747Z", "items": [{"productid": 141,"quantity": 1,"unit_price": 6.36 }] } -{"id": 150000362, "customerid": 3, "time": "2023-01-19T05:16:09.205Z", "items": [{"productid": 148,"quantity": 2,"unit_price": 20.75 ,"discount": 9.31 },{"productid": 196,"quantity": 1,"unit_price": 8.00 }] } -{"id": 150000355, "customerid": 25, "time": "2023-01-19T05:16:33.762Z", "items": [{"productid": 103,"quantity": 1,"unit_price": 19.72 }] } -{"id": 150000366, "customerid": 17, "time": "2023-01-19T05:17:21.619Z", "items": [{"productid": 139,"quantity": 1,"unit_price": 11.56 }] } -{"id": 150000363, "customerid": 19, "time": "2023-01-19T05:41:34.095Z", "items": [{"productid": 18,"quantity": 1,"unit_price": 10.01 },{"productid": 201,"quantity": 1,"unit_price": 8.65 ,"discount": 0.97 }] } -{"id": 150000361, "customerid": 7, "time": "2023-01-19T06:29:54.637Z", "items": [{"productid": 85,"quantity": 1,"unit_price": 34.56 }] } -{"id": 150000359, "customerid": 28, "time": "2023-01-19T06:49:26.745Z", "items": [{"productid": 24,"quantity": 2,"unit_price": 5.02 ,"discount": 3.88 }] } -{"id": 150000351, "customerid": 28, "time": "2023-01-19T06:58:11.304Z", "items": [{"productid": 42,"quantity": 2,"unit_price": 5.37 }] } -{"id": 150000369, "customerid": 6, "time": "2023-01-19T08:08:29.885Z", "items": [{"productid": 183,"quantity": 2,"unit_price": 11.46 },{"productid": 103,"quantity": 1,"unit_price": 19.72 }] } -{"id": 150000367, "customerid": 25, "time": "2023-01-19T08:43:56.272Z", "items": [{"productid": 8,"quantity": 1,"unit_price": 9.06 ,"discount": 0.93 }] } -{"id": 150000350, "customerid": 25, "time": "2023-01-19T10:51:42.936Z", "items": [{"productid": 139,"quantity": 2,"unit_price": 11.56 }] } -{"id": 150000365, "customerid": 21, "time": "2023-01-19T12:25:00.256Z", "items": [{"productid": 192,"quantity": 1,"unit_price": 14.07 }] } -{"id": 150000368, "customerid": 24, "time": "2023-01-19T13:48:09.889Z", "items": [{"productid": 12,"quantity": 2,"unit_price": 7.49 },{"productid": 70,"quantity": 3,"unit_price": 10.76 }] } -{"id": 150000356, "customerid": 8, "time": "2023-01-19T15:35:21.461Z", "items": [{"productid": 72,"quantity": 1,"unit_price": 11.75 }] } -{"id": 150000360, "customerid": 6, "time": "2023-01-19T17:36:50.675Z", "items": [{"productid": 59,"quantity": 2,"unit_price": 23.22 ,"discount": 2.95 }] } -{"id": 150000353, "customerid": 11, "time": "2023-01-19T17:39:05.911Z", "items": [{"productid": 86,"quantity": 2,"unit_price": 6.10 }] } -{"id": 150000364, "customerid": 8, "time": "2023-01-19T20:04:30.735Z", "items": [{"productid": 38,"quantity": 2,"unit_price": 6.74 ,"discount": 5.58 },{"productid": 83,"quantity": 2,"unit_price": 9.09 }] } -{"id": 150000352, "customerid": 23, "time": "2023-01-19T20:25:45.271Z", "items": [{"productid": 35,"quantity": 1,"unit_price": 72.67 ,"discount": 33.41 }] } -{"id": 150000377, "customerid": 25, "time": "2023-01-19T23:22:05.366Z", "items": [{"productid": 13,"quantity": 1,"unit_price": 9.69 ,"discount": 1.04 }] } -{"id": 150000386, "customerid": 18, "time": "2023-01-20T03:40:44.417Z", "items": [{"productid": 15,"quantity": 1,"unit_price": 10.96 ,"discount": 4.79 }] } -{"id": 150000380, "customerid": 2, "time": "2023-01-20T03:55:43.025Z", "items": [{"productid": 19,"quantity": 3,"unit_price": 11.78 ,"discount": 8.76 }] } -{"id": 150000375, "customerid": 14, "time": "2023-01-20T06:10:14.756Z", "items": [{"productid": 111,"quantity": 1,"unit_price": 10.18 ,"discount": 4.14 },{"productid": 110,"quantity": 1,"unit_price": 5.64 ,"discount": 1.19 }] } -{"id": 150000382, "customerid": 14, "time": "2023-01-20T06:34:20.586Z", "items": [{"productid": 2,"quantity": 1,"unit_price": 11.81 },{"productid": 132,"quantity": 1,"unit_price": 10.21 ,"discount": 2.17 }] } -{"id": 150000385, "customerid": 29, "time": "2023-01-20T10:37:33.393Z", "items": [{"productid": 120,"quantity": 2,"unit_price": 10.88 ,"discount": 8.02 }] } -{"id": 150000383, "customerid": 4, "time": "2023-01-20T11:38:47.155Z", "items": [{"productid": 70,"quantity": 2,"unit_price": 10.76 }] } -{"id": 150000379, "customerid": 13, "time": "2023-01-20T12:31:43.516Z", "items": [{"productid": 175,"quantity": 1,"unit_price": 18.21 ,"discount": 1.52 }] } -{"id": 150000374, "customerid": 21, "time": "2023-01-20T13:56:34.297Z", "items": [{"productid": 63,"quantity": 1,"unit_price": 8.34 },{"productid": 59,"quantity": 2,"unit_price": 23.22 ,"discount": 4.45 }] } -{"id": 150000378, "customerid": 18, "time": "2023-01-20T14:11:16.314Z", "items": [{"productid": 68,"quantity": 1,"unit_price": 7.02 ,"discount": 3.32 }] } -{"id": 150000381, "customerid": 4, "time": "2023-01-20T15:09:04.317Z", "items": [{"productid": 115,"quantity": 1,"unit_price": 9.22 }] } -{"id": 150000384, "customerid": 15, "time": "2023-01-20T16:22:17.065Z", "items": [{"productid": 177,"quantity": 1,"unit_price": 8.70 },{"productid": 146,"quantity": 1,"unit_price": 10.96 }] } -{"id": 150000373, "customerid": 25, "time": "2023-01-20T20:48:07.087Z", "items": [{"productid": 59,"quantity": 2,"unit_price": 23.22 }] } -{"id": 150000376, "customerid": 11, "time": "2023-01-20T21:26:24.175Z", "items": [{"productid": 110,"quantity": 1,"unit_price": 5.64 }] } -{"id": 150000389, "customerid": 17, "time": "2023-01-21T01:12:28.365Z", "items": [{"productid": 59,"quantity": 1,"unit_price": 23.22 }] } -{"id": 150000395, "customerid": 11, "time": "2023-01-21T02:34:09.112Z", "items": [{"productid": 65,"quantity": 1,"unit_price": 10.28 }] } -{"id": 150000396, "customerid": 17, "time": "2023-01-21T04:26:17.083Z", "items": [{"productid": 122,"quantity": 1,"unit_price": 13.31 }] } -{"id": 150000388, "customerid": 21, "time": "2023-01-21T05:13:48.045Z", "items": [{"productid": 40,"quantity": 2,"unit_price": 7.91 }] } -{"id": 150000391, "customerid": 4, "time": "2023-01-21T05:30:21.656Z", "items": [{"productid": 128,"quantity": 1,"unit_price": 12.12 ,"discount": 1.08 }] } -{"id": 150000394, "customerid": 10, "time": "2023-01-21T06:42:18.947Z", "items": [{"productid": 43,"quantity": 1,"unit_price": 9.13 ,"discount": 1.84 }] } -{"id": 150000387, "customerid": 25, "time": "2023-01-21T09:27:02.915Z", "items": [{"productid": 30,"quantity": 2,"unit_price": 26.98 ,"discount": 23.08 },{"productid": 76,"quantity": 2,"unit_price": 49.32 ,"discount": 26.83 }] } -{"id": 150000393, "customerid": 22, "time": "2023-01-21T10:43:31.931Z", "items": [{"productid": 61,"quantity": 2,"unit_price": 19.00 ,"discount": 16.70 },{"productid": 119,"quantity": 1,"unit_price": 6.36 }] } -{"id": 150000392, "customerid": 23, "time": "2023-01-21T12:06:10.186Z", "items": [{"productid": 105,"quantity": 2,"unit_price": 10.44 ,"discount": 9.72 }] } -{"id": 150000390, "customerid": 14, "time": "2023-01-21T14:11:09.146Z", "items": [{"productid": 195,"quantity": 1,"unit_price": 11.38 ,"discount": 3.33 },{"productid": 81,"quantity": 2,"unit_price": 44.14 }] } -{"id": 150000397, "customerid": 5, "time": "2023-01-21T14:39:37.779Z", "items": [{"productid": 3,"quantity": 2,"unit_price": 26.39 }] } -{"id": 150000410, "customerid": 24, "time": "2023-01-21T23:22:13.773Z", "items": [{"productid": 173,"quantity": 2,"unit_price": 20.52 }] } -{"id": 150000407, "customerid": 3, "time": "2023-01-22T00:13:18.339Z", "items": [{"productid": 2,"quantity": 1,"unit_price": 11.81 ,"discount": 3.40 },{"productid": 107,"quantity": 2,"unit_price": 15.03 ,"discount": 6.33 },{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000409, "customerid": 27, "time": "2023-01-22T00:14:47.612Z", "items": [{"productid": 165,"quantity": 2,"unit_price": 41.83 ,"discount": 36.13 }] } -{"id": 150000404, "customerid": 27, "time": "2023-01-22T08:06:49.396Z", "items": [{"productid": 6,"quantity": 1,"unit_price": 8.66 }] } -{"id": 150000398, "customerid": 27, "time": "2023-01-22T10:00:02.274Z", "items": [{"productid": 27,"quantity": 1,"unit_price": 5.49 ,"discount": 1.74 }] } -{"id": 150000406, "customerid": 28, "time": "2023-01-22T10:07:09.330Z", "items": [{"productid": 186,"quantity": 1,"unit_price": 9.27 ,"discount": 2.66 },{"productid": 65,"quantity": 1,"unit_price": 10.28 }] } -{"id": 150000399, "customerid": 1, "time": "2023-01-22T14:14:49.858Z", "items": [{"productid": 117,"quantity": 2,"unit_price": 35.05 ,"discount": 15.54 }] } -{"id": 150000405, "customerid": 7, "time": "2023-01-22T15:46:31.424Z", "items": [{"productid": 201,"quantity": 2,"unit_price": 8.65 }] } -{"id": 150000400, "customerid": 24, "time": "2023-01-22T16:48:42.242Z", "items": [{"productid": 40,"quantity": 1,"unit_price": 7.91 }] } -{"id": 150000408, "customerid": 27, "time": "2023-01-22T17:49:46.643Z", "items": [{"productid": 116,"quantity": 1,"unit_price": 15.68 },{"productid": 194,"quantity": 1,"unit_price": 6.77 ,"discount": 2.63 }] } -{"id": 150000403, "customerid": 26, "time": "2023-01-22T19:38:04.409Z", "items": [{"productid": 146,"quantity": 1,"unit_price": 10.96 ,"discount": 4.24 }] } -{"id": 150000402, "customerid": 16, "time": "2023-01-22T20:11:01.552Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 ,"discount": 1.66 }] } -{"id": 150000401, "customerid": 5, "time": "2023-01-22T21:07:44.864Z", "items": [{"productid": 85,"quantity": 1,"unit_price": 34.56 }] } -{"id": 150000424, "customerid": 20, "time": "2023-01-23T04:37:26.370Z", "items": [{"productid": 60,"quantity": 2,"unit_price": 11.18 ,"discount": 7.82 }] } -{"id": 150000412, "customerid": 11, "time": "2023-01-23T06:36:29.733Z", "items": [{"productid": 33,"quantity": 1,"unit_price": 16.69 ,"discount": 0.86 }] } -{"id": 150000414, "customerid": 2, "time": "2023-01-23T07:13:29.494Z", "items": [{"productid": 175,"quantity": 1,"unit_price": 18.21 }] } -{"id": 150000411, "customerid": 14, "time": "2023-01-23T08:03:17.955Z", "items": [{"productid": 70,"quantity": 1,"unit_price": 10.76 },{"productid": 47,"quantity": 1,"unit_price": 12.30 }] } -{"id": 150000422, "customerid": 14, "time": "2023-01-23T09:07:59.916Z", "items": [{"productid": 178,"quantity": 1,"unit_price": 6.11 },{"productid": 49,"quantity": 1,"unit_price": 7.62 }] } -{"id": 150000417, "customerid": 24, "time": "2023-01-23T09:34:42.366Z", "items": [{"productid": 83,"quantity": 2,"unit_price": 9.09 }] } -{"id": 150000423, "customerid": 15, "time": "2023-01-23T10:31:00.341Z", "items": [{"productid": 181,"quantity": 2,"unit_price": 45.19 }] } -{"id": 150000421, "customerid": 7, "time": "2023-01-23T11:47:50.206Z", "items": [{"productid": 166,"quantity": 1,"unit_price": 6.59 ,"discount": 3.19 }] } -{"id": 150000413, "customerid": 1, "time": "2023-01-23T12:04:52.456Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 ,"discount": 2.33 }] } -{"id": 150000415, "customerid": 16, "time": "2023-01-23T13:17:51.540Z", "items": [{"productid": 141,"quantity": 1,"unit_price": 6.36 ,"discount": 2.24 }] } -{"id": 150000419, "customerid": 9, "time": "2023-01-23T14:46:58.577Z", "items": [{"productid": 102,"quantity": 2,"unit_price": 11.60 }] } -{"id": 150000418, "customerid": 3, "time": "2023-01-23T16:04:40.250Z", "items": [{"productid": 66,"quantity": 1,"unit_price": 5.62 },{"productid": 33,"quantity": 2,"unit_price": 16.69 ,"discount": 9.35 }] } -{"id": 150000420, "customerid": 6, "time": "2023-01-23T19:02:18.957Z", "items": [{"productid": 168,"quantity": 1,"unit_price": 11.15 }] } -{"id": 150000416, "customerid": 8, "time": "2023-01-23T20:27:34.017Z", "items": [{"productid": 17,"quantity": 1,"unit_price": 5.08 ,"discount": 0.83 }] } -{"id": 150000437, "customerid": 19, "time": "2023-01-23T22:49:28.825Z", "items": [{"productid": 41,"quantity": 1,"unit_price": 5.31 }] } -{"id": 150000436, "customerid": 16, "time": "2023-01-24T01:14:45.498Z", "items": [{"productid": 64,"quantity": 3,"unit_price": 14.18 }] } -{"id": 150000435, "customerid": 7, "time": "2023-01-24T02:38:49.991Z", "items": [{"productid": 190,"quantity": 2,"unit_price": 9.81 ,"discount": 8.19 }] } -{"id": 150000438, "customerid": 11, "time": "2023-01-24T03:00:10.637Z", "items": [{"productid": 200,"quantity": 1,"unit_price": 25.64 },{"productid": 31,"quantity": 3,"unit_price": 52.53 ,"discount": 29.71 }] } -{"id": 150000439, "customerid": 16, "time": "2023-01-24T03:44:36.964Z", "items": [{"productid": 94,"quantity": 2,"unit_price": 5.03 ,"discount": 4.77 }] } -{"id": 150000426, "customerid": 4, "time": "2023-01-24T04:28:05.956Z", "items": [{"productid": 47,"quantity": 2,"unit_price": 12.30 }] } -{"id": 150000429, "customerid": 28, "time": "2023-01-24T05:01:00.266Z", "items": [{"productid": 85,"quantity": 1,"unit_price": 34.56 }] } -{"id": 150000434, "customerid": 16, "time": "2023-01-24T06:42:33.901Z", "items": [{"productid": 42,"quantity": 2,"unit_price": 5.37 },{"productid": 58,"quantity": 1,"unit_price": 10.39 ,"discount": 3.71 }] } -{"id": 150000441, "customerid": 6, "time": "2023-01-24T09:13:31.315Z", "items": [{"productid": 184,"quantity": 1,"unit_price": 8.47 }] } -{"id": 150000428, "customerid": 14, "time": "2023-01-24T10:12:36.992Z", "items": [{"productid": 195,"quantity": 1,"unit_price": 11.38 }] } -{"id": 150000440, "customerid": 4, "time": "2023-01-24T11:48:59.214Z", "items": [{"productid": 117,"quantity": 1,"unit_price": 35.05 }] } -{"id": 150000430, "customerid": 17, "time": "2023-01-24T14:17:26.236Z", "items": [{"productid": 66,"quantity": 1,"unit_price": 5.62 ,"discount": 1.10 },{"productid": 145,"quantity": 1,"unit_price": 41.55 ,"discount": 3.82 }] } -{"id": 150000433, "customerid": 19, "time": "2023-01-24T14:29:50.785Z", "items": [{"productid": 31,"quantity": 1,"unit_price": 52.53 }] } -{"id": 150000431, "customerid": 3, "time": "2023-01-24T16:27:42.247Z", "items": [{"productid": 112,"quantity": 2,"unit_price": 17.31 ,"discount": 8.85 }] } -{"id": 150000442, "customerid": 23, "time": "2023-01-24T17:11:46.250Z", "items": [{"productid": 133,"quantity": 1,"unit_price": 8.38 }] } -{"id": 150000427, "customerid": 29, "time": "2023-01-24T18:12:31.840Z", "items": [{"productid": 193,"quantity": 1,"unit_price": 31.44 ,"discount": 1.90 }] } -{"id": 150000432, "customerid": 1, "time": "2023-01-24T19:09:20.079Z", "items": [{"productid": 1,"quantity": 2,"unit_price": 6.94 ,"discount": 6.92 }] } -{"id": 150000425, "customerid": 12, "time": "2023-01-24T19:30:34.098Z", "items": [{"productid": 4,"quantity": 2,"unit_price": 8.01 ,"discount": 7.47 }] } -{"id": 150000467, "customerid": 21, "time": "2023-01-24T22:22:46.385Z", "items": [{"productid": 9,"quantity": 1,"unit_price": 15.41 }] } -{"id": 150000471, "customerid": 28, "time": "2023-01-24T22:57:28.517Z", "items": [{"productid": 6,"quantity": 1,"unit_price": 8.66 }] } -{"id": 150000456, "customerid": 14, "time": "2023-01-24T23:23:41.682Z", "items": [{"productid": 136,"quantity": 1,"unit_price": 26.65 }] } -{"id": 150000451, "customerid": 7, "time": "2023-01-25T00:10:56.298Z", "items": [{"productid": 96,"quantity": 1,"unit_price": 8.52 ,"discount": 1.84 }] } -{"id": 150000463, "customerid": 2, "time": "2023-01-25T01:08:34.392Z", "items": [{"productid": 181,"quantity": 1,"unit_price": 45.19 },{"productid": 20,"quantity": 1,"unit_price": 5.24 ,"discount": 0.70 }] } -{"id": 150000453, "customerid": 28, "time": "2023-01-25T01:20:39.212Z", "items": [{"productid": 2,"quantity": 1,"unit_price": 11.81 }] } -{"id": 150000460, "customerid": 19, "time": "2023-01-25T01:20:50.890Z", "items": [{"productid": 81,"quantity": 1,"unit_price": 44.14 }] } -{"id": 150000445, "customerid": 1, "time": "2023-01-25T01:56:16.226Z", "items": [{"productid": 82,"quantity": 1,"unit_price": 85.96 }] } -{"id": 150000466, "customerid": 13, "time": "2023-01-25T02:25:30.907Z", "items": [{"productid": 114,"quantity": 2,"unit_price": 8.22 ,"discount": 6.57 }] } -{"id": 150000450, "customerid": 2, "time": "2023-01-25T03:48:36.627Z", "items": [{"productid": 99,"quantity": 1,"unit_price": 9.21 }] } -{"id": 150000459, "customerid": 6, "time": "2023-01-25T05:25:05.106Z", "items": [{"productid": 17,"quantity": 2,"unit_price": 5.08 }] } -{"id": 150000454, "customerid": 30, "time": "2023-01-25T06:36:28.831Z", "items": [{"productid": 168,"quantity": 1,"unit_price": 11.15 ,"discount": 5.14 }] } -{"id": 150000464, "customerid": 17, "time": "2023-01-25T07:14:09.765Z", "items": [{"productid": 39,"quantity": 1,"unit_price": 12.38 ,"discount": 5.90 },{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000465, "customerid": 10, "time": "2023-01-25T07:17:36.797Z", "items": [{"productid": 189,"quantity": 1,"unit_price": 5.75 }] } -{"id": 150000444, "customerid": 6, "time": "2023-01-25T11:11:49.918Z", "items": [{"productid": 89,"quantity": 2,"unit_price": 7.10 }] } -{"id": 150000452, "customerid": 10, "time": "2023-01-25T11:44:17.695Z", "items": [{"productid": 151,"quantity": 2,"unit_price": 7.24 ,"discount": 2.41 }] } -{"id": 150000447, "customerid": 25, "time": "2023-01-25T12:26:26.416Z", "items": [{"productid": 70,"quantity": 2,"unit_price": 10.76 }] } -{"id": 150000448, "customerid": 6, "time": "2023-01-25T13:08:47.682Z", "items": [{"productid": 75,"quantity": 2,"unit_price": 22.06 }] } -{"id": 150000457, "customerid": 28, "time": "2023-01-25T13:13:32.978Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 },{"productid": 169,"quantity": 1,"unit_price": 5.23 ,"discount": 0.52 }] } -{"id": 150000470, "customerid": 25, "time": "2023-01-25T13:24:43.971Z", "items": [{"productid": 88,"quantity": 2,"unit_price": 11.12 }] } -{"id": 150000473, "customerid": 22, "time": "2023-01-25T13:30:35.299Z", "items": [{"productid": 72,"quantity": 2,"unit_price": 11.75 }] } -{"id": 150000472, "customerid": 7, "time": "2023-01-25T14:10:26.327Z", "items": [{"productid": 21,"quantity": 1,"unit_price": 8.90 }] } -{"id": 150000461, "customerid": 14, "time": "2023-01-25T14:26:22.136Z", "items": [{"productid": 108,"quantity": 2,"unit_price": 33.60 ,"discount": 5.24 }] } -{"id": 150000468, "customerid": 10, "time": "2023-01-25T16:02:53.490Z", "items": [{"productid": 56,"quantity": 3,"unit_price": 5.47 ,"discount": 2.36 }] } -{"id": 150000458, "customerid": 1, "time": "2023-01-25T16:11:39.578Z", "items": [{"productid": 125,"quantity": 2,"unit_price": 8.93 },{"productid": 78,"quantity": 1,"unit_price": 6.29 }] } -{"id": 150000474, "customerid": 29, "time": "2023-01-25T16:28:17.731Z", "items": [{"productid": 24,"quantity": 1,"unit_price": 5.02 ,"discount": 0.96 },{"productid": 57,"quantity": 1,"unit_price": 6.11 }] } -{"id": 150000455, "customerid": 16, "time": "2023-01-25T16:57:40.179Z", "items": [{"productid": 130,"quantity": 1,"unit_price": 10.02 ,"discount": 1.08 }] } -{"id": 150000469, "customerid": 9, "time": "2023-01-25T17:21:30.807Z", "items": [{"productid": 4,"quantity": 1,"unit_price": 8.01 }] } -{"id": 150000443, "customerid": 10, "time": "2023-01-25T17:51:49.571Z", "items": [{"productid": 102,"quantity": 1,"unit_price": 11.60 }] } -{"id": 150000462, "customerid": 22, "time": "2023-01-25T17:57:49.694Z", "items": [{"productid": 25,"quantity": 1,"unit_price": 8.54 },{"productid": 206,"quantity": 1,"unit_price": 10.29 ,"discount": 1.13 }] } -{"id": 150000449, "customerid": 26, "time": "2023-01-25T19:26:33.929Z", "items": [{"productid": 109,"quantity": 3,"unit_price": 10.64 }] } -{"id": 150000446, "customerid": 23, "time": "2023-01-25T20:18:48.337Z", "items": [{"productid": 66,"quantity": 1,"unit_price": 5.62 }] } -{"id": 150000485, "customerid": 26, "time": "2023-01-25T23:22:00.430Z", "items": [{"productid": 29,"quantity": 2,"unit_price": 12.07 ,"discount": 10.02 }] } -{"id": 150000480, "customerid": 22, "time": "2023-01-26T00:41:33.035Z", "items": [{"productid": 107,"quantity": 1,"unit_price": 15.03 ,"discount": 5.70 }] } -{"id": 150000481, "customerid": 12, "time": "2023-01-26T04:59:17.249Z", "items": [{"productid": 27,"quantity": 3,"unit_price": 5.49 ,"discount": 0.85 }] } -{"id": 150000476, "customerid": 4, "time": "2023-01-26T05:32:18.426Z", "items": [{"productid": 174,"quantity": 2,"unit_price": 10.71 },{"productid": 133,"quantity": 1,"unit_price": 8.38 ,"discount": 3.73 }] } -{"id": 150000487, "customerid": 12, "time": "2023-01-26T05:53:11.608Z", "items": [{"productid": 114,"quantity": 1,"unit_price": 8.22 ,"discount": 2.63 }] } -{"id": 150000475, "customerid": 11, "time": "2023-01-26T08:43:49.756Z", "items": [{"productid": 91,"quantity": 1,"unit_price": 13.50 }] } -{"id": 150000490, "customerid": 23, "time": "2023-01-26T09:26:23.077Z", "items": [{"productid": 84,"quantity": 1,"unit_price": 15.46 ,"discount": 1.17 },{"productid": 173,"quantity": 1,"unit_price": 20.52 }] } -{"id": 150000484, "customerid": 28, "time": "2023-01-26T11:49:13.322Z", "items": [{"productid": 82,"quantity": 1,"unit_price": 85.96 ,"discount": 4.38 }] } -{"id": 150000486, "customerid": 27, "time": "2023-01-26T12:29:43.570Z", "items": [{"productid": 99,"quantity": 2,"unit_price": 9.21 }] } -{"id": 150000482, "customerid": 20, "time": "2023-01-26T13:49:15.836Z", "items": [{"productid": 14,"quantity": 3,"unit_price": 5.99 ,"discount": 4.61 }] } -{"id": 150000479, "customerid": 5, "time": "2023-01-26T18:22:33.151Z", "items": [{"productid": 172,"quantity": 1,"unit_price": 12.07 }] } -{"id": 150000478, "customerid": 20, "time": "2023-01-26T18:45:59.518Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 }] } -{"id": 150000489, "customerid": 2, "time": "2023-01-26T20:45:32.651Z", "items": [{"productid": 15,"quantity": 1,"unit_price": 10.96 },{"productid": 97,"quantity": 2,"unit_price": 14.48 ,"discount": 12.48 },{"productid": 67,"quantity": 2,"unit_price": 8.28 ,"discount": 3.30 }] } -{"id": 150000477, "customerid": 15, "time": "2023-01-26T21:37:01.097Z", "items": [{"productid": 158,"quantity": 1,"unit_price": 30.42 },{"productid": 74,"quantity": 1,"unit_price": 12.98 }] } -{"id": 150000483, "customerid": 15, "time": "2023-01-26T21:45:42.319Z", "items": [{"productid": 161,"quantity": 2,"unit_price": 29.88 }] } -{"id": 150000488, "customerid": 8, "time": "2023-01-26T21:52:12.075Z", "items": [{"productid": 120,"quantity": 2,"unit_price": 10.88 ,"discount": 5.53 },{"productid": 59,"quantity": 2,"unit_price": 23.22 }] } -{"id": 150000497, "customerid": 21, "time": "2023-01-26T22:17:55.989Z", "items": [{"productid": 90,"quantity": 1,"unit_price": 7.94 },{"productid": 130,"quantity": 3,"unit_price": 10.02 },{"productid": 132,"quantity": 2,"unit_price": 10.21 }] } -{"id": 150000493, "customerid": 9, "time": "2023-01-27T00:54:38.080Z", "items": [{"productid": 189,"quantity": 2,"unit_price": 5.75 ,"discount": 3.82 }] } -{"id": 150000496, "customerid": 29, "time": "2023-01-27T01:25:42.483Z", "items": [{"productid": 107,"quantity": 2,"unit_price": 15.03 }] } -{"id": 150000501, "customerid": 9, "time": "2023-01-27T01:43:32.613Z", "items": [{"productid": 104,"quantity": 1,"unit_price": 44.08 }] } -{"id": 150000495, "customerid": 16, "time": "2023-01-27T03:31:11.817Z", "items": [{"productid": 75,"quantity": 2,"unit_price": 22.06 ,"discount": 16.75 }] } -{"id": 150000498, "customerid": 29, "time": "2023-01-27T05:44:35.748Z", "items": [{"productid": 29,"quantity": 1,"unit_price": 12.07 },{"productid": 19,"quantity": 1,"unit_price": 11.78 }] } -{"id": 150000492, "customerid": 17, "time": "2023-01-27T07:33:26.030Z", "items": [{"productid": 36,"quantity": 2,"unit_price": 7.61 },{"productid": 124,"quantity": 3,"unit_price": 57.94 }] } -{"id": 150000500, "customerid": 12, "time": "2023-01-27T11:33:14.410Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 }] } -{"id": 150000494, "customerid": 15, "time": "2023-01-27T11:40:33.824Z", "items": [{"productid": 70,"quantity": 2,"unit_price": 10.76 }] } -{"id": 150000499, "customerid": 24, "time": "2023-01-27T15:36:45.479Z", "items": [{"productid": 34,"quantity": 2,"unit_price": 37.32 }] } -{"id": 150000491, "customerid": 24, "time": "2023-01-27T17:39:47.885Z", "items": [{"productid": 155,"quantity": 1,"unit_price": 83.44 }] } -{"id": 150000529, "customerid": 17, "time": "2023-01-27T22:21:32.460Z", "items": [{"productid": 74,"quantity": 1,"unit_price": 12.98 },{"productid": 88,"quantity": 1,"unit_price": 11.12 ,"discount": 2.36 }] } -{"id": 150000525, "customerid": 11, "time": "2023-01-28T01:42:46.016Z", "items": [{"productid": 100,"quantity": 1,"unit_price": 15.66 }] } -{"id": 150000520, "customerid": 17, "time": "2023-01-28T01:48:43.310Z", "items": [{"productid": 24,"quantity": 2,"unit_price": 5.02 }] } -{"id": 150000503, "customerid": 20, "time": "2023-01-28T02:50:02.724Z", "items": [{"productid": 47,"quantity": 2,"unit_price": 12.30 },{"productid": 78,"quantity": 1,"unit_price": 6.29 }] } -{"id": 150000521, "customerid": 10, "time": "2023-01-28T03:26:18.243Z", "items": [{"productid": 40,"quantity": 1,"unit_price": 7.91 }] } -{"id": 150000507, "customerid": 14, "time": "2023-01-28T04:58:16.290Z", "items": [{"productid": 75,"quantity": 1,"unit_price": 22.06 }] } -{"id": 150000528, "customerid": 26, "time": "2023-01-28T05:30:31.266Z", "items": [{"productid": 76,"quantity": 1,"unit_price": 49.32 ,"discount": 21.00 }] } -{"id": 150000506, "customerid": 30, "time": "2023-01-28T05:33:18.839Z", "items": [{"productid": 204,"quantity": 1,"unit_price": 8.20 ,"discount": 0.52 }] } -{"id": 150000504, "customerid": 29, "time": "2023-01-28T05:48:02.119Z", "items": [{"productid": 161,"quantity": 2,"unit_price": 29.88 ,"discount": 3.46 }] } -{"id": 150000518, "customerid": 7, "time": "2023-01-28T06:54:17.402Z", "items": [{"productid": 34,"quantity": 1,"unit_price": 37.32 }] } -{"id": 150000527, "customerid": 4, "time": "2023-01-28T06:55:04.719Z", "items": [{"productid": 32,"quantity": 1,"unit_price": 9.82 }] } -{"id": 150000517, "customerid": 22, "time": "2023-01-28T08:01:44.908Z", "items": [{"productid": 94,"quantity": 2,"unit_price": 5.03 }] } -{"id": 150000526, "customerid": 24, "time": "2023-01-28T08:27:08.785Z", "items": [{"productid": 111,"quantity": 4,"unit_price": 10.18 }] } -{"id": 150000522, "customerid": 14, "time": "2023-01-28T08:50:48.835Z", "items": [{"productid": 42,"quantity": 1,"unit_price": 5.37 ,"discount": 0.43 }] } -{"id": 150000530, "customerid": 10, "time": "2023-01-28T08:54:10.009Z", "items": [{"productid": 207,"quantity": 1,"unit_price": 17.50 },{"productid": 90,"quantity": 1,"unit_price": 7.94 }] } -{"id": 150000511, "customerid": 10, "time": "2023-01-28T09:09:45.032Z", "items": [{"productid": 6,"quantity": 1,"unit_price": 8.66 ,"discount": 2.46 }] } -{"id": 150000508, "customerid": 19, "time": "2023-01-28T09:40:52.566Z", "items": [{"productid": 207,"quantity": 1,"unit_price": 17.50 }] } -{"id": 150000515, "customerid": 13, "time": "2023-01-28T10:33:01.148Z", "items": [{"productid": 143,"quantity": 2,"unit_price": 10.93 ,"discount": 9.44 }] } -{"id": 150000510, "customerid": 15, "time": "2023-01-28T10:39:22.082Z", "items": [{"productid": 127,"quantity": 2,"unit_price": 20.99 ,"discount": 6.49 }] } -{"id": 150000513, "customerid": 8, "time": "2023-01-28T10:44:02.743Z", "items": [{"productid": 203,"quantity": 3,"unit_price": 6.18 ,"discount": 5.19 },{"productid": 5,"quantity": 2,"unit_price": 5.43 ,"discount": 2.18 }] } -{"id": 150000505, "customerid": 1, "time": "2023-01-28T16:19:03.474Z", "items": [{"productid": 109,"quantity": 2,"unit_price": 10.64 }] } -{"id": 150000519, "customerid": 12, "time": "2023-01-28T16:29:23.074Z", "items": [{"productid": 121,"quantity": 1,"unit_price": 7.83 ,"discount": 0.83 }] } -{"id": 150000502, "customerid": 7, "time": "2023-01-28T17:38:06.687Z", "items": [{"productid": 64,"quantity": 2,"unit_price": 14.18 }] } -{"id": 150000516, "customerid": 13, "time": "2023-01-28T17:39:26.920Z", "items": [{"productid": 54,"quantity": 1,"unit_price": 11.68 ,"discount": 4.29 }] } -{"id": 150000524, "customerid": 15, "time": "2023-01-28T20:02:31.662Z", "items": [{"productid": 132,"quantity": 1,"unit_price": 10.21 ,"discount": 0.95 }] } -{"id": 150000523, "customerid": 1, "time": "2023-01-28T20:12:44.668Z", "items": [{"productid": 136,"quantity": 1,"unit_price": 26.65 }] } -{"id": 150000512, "customerid": 28, "time": "2023-01-28T20:34:12.293Z", "items": [{"productid": 55,"quantity": 1,"unit_price": 12.22 }] } -{"id": 150000509, "customerid": 25, "time": "2023-01-28T21:15:58.274Z", "items": [{"productid": 135,"quantity": 1,"unit_price": 11.92 }] } -{"id": 150000514, "customerid": 5, "time": "2023-01-28T21:19:18.996Z", "items": [{"productid": 82,"quantity": 1,"unit_price": 85.96 ,"discount": 23.07 }] } -{"id": 150000537, "customerid": 12, "time": "2023-01-29T01:51:30.402Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 ,"discount": 3.57 }] } -{"id": 150000539, "customerid": 3, "time": "2023-01-29T04:31:49.887Z", "items": [{"productid": 12,"quantity": 1,"unit_price": 7.49 },{"productid": 118,"quantity": 1,"unit_price": 12.95 },{"productid": 137,"quantity": 1,"unit_price": 51.89 }] } -{"id": 150000534, "customerid": 16, "time": "2023-01-29T08:01:21.228Z", "items": [{"productid": 181,"quantity": 1,"unit_price": 45.19 }] } -{"id": 150000531, "customerid": 14, "time": "2023-01-29T12:04:15.401Z", "items": [{"productid": 13,"quantity": 1,"unit_price": 9.69 ,"discount": 2.65 }] } -{"id": 150000535, "customerid": 6, "time": "2023-01-29T12:21:44.492Z", "items": [{"productid": 17,"quantity": 2,"unit_price": 5.08 ,"discount": 3.00 }] } -{"id": 150000533, "customerid": 12, "time": "2023-01-29T16:01:31.617Z", "items": [{"productid": 84,"quantity": 2,"unit_price": 15.46 ,"discount": 12.54 }] } -{"id": 150000536, "customerid": 3, "time": "2023-01-29T17:48:36.075Z", "items": [{"productid": 123,"quantity": 1,"unit_price": 29.75 ,"discount": 13.73 }] } -{"id": 150000538, "customerid": 28, "time": "2023-01-29T20:50:29.960Z", "items": [{"productid": 112,"quantity": 1,"unit_price": 17.31 },{"productid": 111,"quantity": 1,"unit_price": 10.18 }] } -{"id": 150000532, "customerid": 2, "time": "2023-01-29T22:09:05.237Z", "items": [{"productid": 167,"quantity": 2,"unit_price": 6.56 }] } -{"id": 150000555, "customerid": 12, "time": "2023-01-30T01:27:32.242Z", "items": [{"productid": 73,"quantity": 1,"unit_price": 7.94 },{"productid": 70,"quantity": 1,"unit_price": 10.76 ,"discount": 2.68 }] } -{"id": 150000543, "customerid": 8, "time": "2023-01-30T01:36:48.913Z", "items": [{"productid": 61,"quantity": 1,"unit_price": 19.00 }] } -{"id": 150000554, "customerid": 8, "time": "2023-01-30T04:17:02.173Z", "items": [{"productid": 143,"quantity": 1,"unit_price": 10.93 ,"discount": 1.05 }] } -{"id": 150000556, "customerid": 20, "time": "2023-01-30T06:19:39.770Z", "items": [{"productid": 32,"quantity": 1,"unit_price": 9.82 }] } -{"id": 150000552, "customerid": 17, "time": "2023-01-30T08:07:23.809Z", "items": [{"productid": 110,"quantity": 1,"unit_price": 5.64 },{"productid": 14,"quantity": 1,"unit_price": 5.99 }] } -{"id": 150000546, "customerid": 10, "time": "2023-01-30T08:33:53.319Z", "items": [{"productid": 199,"quantity": 1,"unit_price": 11.47 }] } -{"id": 150000540, "customerid": 26, "time": "2023-01-30T09:11:14.588Z", "items": [{"productid": 108,"quantity": 1,"unit_price": 33.60 }] } -{"id": 150000553, "customerid": 14, "time": "2023-01-30T09:19:54.769Z", "items": [{"productid": 58,"quantity": 1,"unit_price": 10.39 }] } -{"id": 150000551, "customerid": 2, "time": "2023-01-30T09:58:31.794Z", "items": [{"productid": 160,"quantity": 2,"unit_price": 13.37 }] } -{"id": 150000544, "customerid": 24, "time": "2023-01-30T10:01:32.460Z", "items": [{"productid": 47,"quantity": 1,"unit_price": 12.30 }] } -{"id": 150000547, "customerid": 21, "time": "2023-01-30T11:59:57.188Z", "items": [{"productid": 118,"quantity": 1,"unit_price": 12.95 ,"discount": 5.44 }] } -{"id": 150000548, "customerid": 30, "time": "2023-01-30T14:50:47.818Z", "items": [{"productid": 5,"quantity": 3,"unit_price": 5.43 ,"discount": 2.50 }] } -{"id": 150000542, "customerid": 13, "time": "2023-01-30T15:44:55.855Z", "items": [{"productid": 31,"quantity": 2,"unit_price": 52.53 }] } -{"id": 150000549, "customerid": 5, "time": "2023-01-30T16:15:24.947Z", "items": [{"productid": 190,"quantity": 1,"unit_price": 9.81 }] } -{"id": 150000541, "customerid": 4, "time": "2023-01-30T16:52:22.847Z", "items": [{"productid": 171,"quantity": 1,"unit_price": 19.89 ,"discount": 2.46 }] } -{"id": 150000550, "customerid": 22, "time": "2023-01-30T19:19:26.833Z", "items": [{"productid": 72,"quantity": 2,"unit_price": 11.75 ,"discount": 3.96 }] } -{"id": 150000545, "customerid": 19, "time": "2023-01-30T22:09:33.553Z", "items": [{"productid": 147,"quantity": 1,"unit_price": 12.21 }] } -{"id": 150000573, "customerid": 9, "time": "2023-01-30T22:27:13.224Z", "items": [{"productid": 5,"quantity": 1,"unit_price": 5.43 }] } -{"id": 150000574, "customerid": 17, "time": "2023-01-30T22:47:18.880Z", "items": [{"productid": 46,"quantity": 1,"unit_price": 6.31 ,"discount": 1.20 },{"productid": 140,"quantity": 1,"unit_price": 25.83 }] } -{"id": 150000564, "customerid": 26, "time": "2023-01-31T00:09:41.974Z", "items": [{"productid": 44,"quantity": 2,"unit_price": 20.42 ,"discount": 10.34 }] } -{"id": 150000561, "customerid": 18, "time": "2023-01-31T00:59:55.093Z", "items": [{"productid": 148,"quantity": 1,"unit_price": 20.75 },{"productid": 94,"quantity": 1,"unit_price": 5.03 }] } -{"id": 150000562, "customerid": 26, "time": "2023-01-31T01:32:54.396Z", "items": [{"productid": 55,"quantity": 1,"unit_price": 12.22 }] } -{"id": 150000563, "customerid": 29, "time": "2023-01-31T02:35:38.649Z", "items": [{"productid": 184,"quantity": 1,"unit_price": 8.47 }] } -{"id": 150000570, "customerid": 30, "time": "2023-01-31T04:38:03.460Z", "items": [{"productid": 190,"quantity": 1,"unit_price": 9.81 }] } -{"id": 150000567, "customerid": 15, "time": "2023-01-31T05:14:02.911Z", "items": [{"productid": 137,"quantity": 2,"unit_price": 51.89 }] } -{"id": 150000571, "customerid": 28, "time": "2023-01-31T06:33:26.416Z", "items": [{"productid": 146,"quantity": 1,"unit_price": 10.96 ,"discount": 3.29 }] } -{"id": 150000576, "customerid": 1, "time": "2023-01-31T07:07:16.835Z", "items": [{"productid": 191,"quantity": 2,"unit_price": 8.27 }] } -{"id": 150000572, "customerid": 3, "time": "2023-01-31T09:19:30.234Z", "items": [{"productid": 61,"quantity": 1,"unit_price": 19.00 }] } -{"id": 150000575, "customerid": 19, "time": "2023-01-31T09:24:32.240Z", "items": [{"productid": 88,"quantity": 3,"unit_price": 11.12 },{"productid": 113,"quantity": 1,"unit_price": 38.70 ,"discount": 14.69 }] } -{"id": 150000577, "customerid": 27, "time": "2023-01-31T10:26:54.096Z", "items": [{"productid": 4,"quantity": 2,"unit_price": 8.01 }] } -{"id": 150000559, "customerid": 5, "time": "2023-01-31T15:18:15.522Z", "items": [{"productid": 80,"quantity": 1,"unit_price": 19.75 }] } -{"id": 150000569, "customerid": 3, "time": "2023-01-31T15:34:29.323Z", "items": [{"productid": 50,"quantity": 1,"unit_price": 10.69 },{"productid": 88,"quantity": 1,"unit_price": 11.12 ,"discount": 1.19 }] } -{"id": 150000560, "customerid": 21, "time": "2023-01-31T15:59:45.129Z", "items": [{"productid": 97,"quantity": 1,"unit_price": 14.48 }] } -{"id": 150000568, "customerid": 20, "time": "2023-01-31T17:40:59.857Z", "items": [{"productid": 96,"quantity": 1,"unit_price": 8.52 ,"discount": 3.94 },{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000565, "customerid": 23, "time": "2023-01-31T19:13:06.074Z", "items": [{"productid": 159,"quantity": 1,"unit_price": 7.86 }] } -{"id": 150000557, "customerid": 13, "time": "2023-01-31T19:47:56.735Z", "items": [{"productid": 74,"quantity": 1,"unit_price": 12.98 }] } -{"id": 150000558, "customerid": 27, "time": "2023-01-31T21:39:28.948Z", "items": [{"productid": 129,"quantity": 1,"unit_price": 20.60 }] } -{"id": 150000566, "customerid": 26, "time": "2023-01-31T21:46:00.479Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000587, "customerid": 12, "time": "2023-01-31T23:32:14.337Z", "items": [{"productid": 117,"quantity": 2,"unit_price": 35.05 ,"discount": 12.30 },{"productid": 203,"quantity": 1,"unit_price": 6.18 }] } -{"id": 150000580, "customerid": 24, "time": "2023-02-01T00:39:34.192Z", "items": [{"productid": 177,"quantity": 1,"unit_price": 8.70 }] } -{"id": 150000578, "customerid": 2, "time": "2023-02-01T02:48:40.788Z", "items": [{"productid": 104,"quantity": 3,"unit_price": 44.08 ,"discount": 61.19 }] } -{"id": 150000581, "customerid": 4, "time": "2023-02-01T08:52:00.046Z", "items": [{"productid": 127,"quantity": 1,"unit_price": 20.99 }] } -{"id": 150000583, "customerid": 4, "time": "2023-02-01T11:00:32.731Z", "items": [{"productid": 187,"quantity": 2,"unit_price": 15.75 }] } -{"id": 150000584, "customerid": 19, "time": "2023-02-01T11:39:34.536Z", "items": [{"productid": 79,"quantity": 1,"unit_price": 11.62 }] } -{"id": 150000582, "customerid": 19, "time": "2023-02-01T18:26:43.785Z", "items": [{"productid": 98,"quantity": 1,"unit_price": 32.37 }] } -{"id": 150000586, "customerid": 4, "time": "2023-02-01T19:42:31.077Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 }] } -{"id": 150000579, "customerid": 21, "time": "2023-02-01T20:28:41.477Z", "items": [{"productid": 24,"quantity": 1,"unit_price": 5.02 }] } -{"id": 150000585, "customerid": 24, "time": "2023-02-01T20:34:32.839Z", "items": [{"productid": 56,"quantity": 1,"unit_price": 5.47 }] } -{"id": 150000591, "customerid": 25, "time": "2023-02-01T22:32:14.368Z", "items": [{"productid": 205,"quantity": 2,"unit_price": 8.00 ,"discount": 1.95 }] } -{"id": 150000592, "customerid": 4, "time": "2023-02-01T22:54:10.989Z", "items": [{"productid": 157,"quantity": 1,"unit_price": 13.61 }] } -{"id": 150000612, "customerid": 23, "time": "2023-02-01T23:22:54.303Z", "items": [{"productid": 127,"quantity": 1,"unit_price": 20.99 }] } -{"id": 150000602, "customerid": 19, "time": "2023-02-02T02:02:21.896Z", "items": [{"productid": 62,"quantity": 1,"unit_price": 42.47 ,"discount": 11.12 }] } -{"id": 150000600, "customerid": 21, "time": "2023-02-02T02:17:18.585Z", "items": [{"productid": 32,"quantity": 1,"unit_price": 9.82 }] } -{"id": 150000611, "customerid": 7, "time": "2023-02-02T02:26:00.709Z", "items": [{"productid": 152,"quantity": 1,"unit_price": 11.28 }] } -{"id": 150000617, "customerid": 1, "time": "2023-02-02T04:51:00.894Z", "items": [{"productid": 49,"quantity": 1,"unit_price": 7.62 ,"discount": 3.69 }] } -{"id": 150000590, "customerid": 17, "time": "2023-02-02T05:19:08.648Z", "items": [{"productid": 80,"quantity": 2,"unit_price": 19.75 },{"productid": 60,"quantity": 1,"unit_price": 11.18 }] } -{"id": 150000607, "customerid": 23, "time": "2023-02-02T05:27:14.251Z", "items": [{"productid": 101,"quantity": 1,"unit_price": 35.01 },{"productid": 194,"quantity": 1,"unit_price": 6.77 }] } -{"id": 150000594, "customerid": 12, "time": "2023-02-02T05:44:29.822Z", "items": [{"productid": 65,"quantity": 2,"unit_price": 10.28 }] } -{"id": 150000620, "customerid": 19, "time": "2023-02-02T05:47:24.642Z", "items": [{"productid": 81,"quantity": 3,"unit_price": 44.14 ,"discount": 19.80 }] } -{"id": 150000614, "customerid": 13, "time": "2023-02-02T06:11:22.255Z", "items": [{"productid": 47,"quantity": 1,"unit_price": 12.30 ,"discount": 3.29 }] } -{"id": 150000619, "customerid": 8, "time": "2023-02-02T06:26:58.717Z", "items": [{"productid": 57,"quantity": 2,"unit_price": 6.11 ,"discount": 3.01 }] } -{"id": 150000610, "customerid": 7, "time": "2023-02-02T07:42:00.543Z", "items": [{"productid": 81,"quantity": 1,"unit_price": 44.14 ,"discount": 9.36 }] } -{"id": 150000603, "customerid": 11, "time": "2023-02-02T08:16:30.046Z", "items": [{"productid": 57,"quantity": 2,"unit_price": 6.11 }] } -{"id": 150000598, "customerid": 9, "time": "2023-02-02T08:52:06.279Z", "items": [{"productid": 43,"quantity": 1,"unit_price": 9.13 },{"productid": 80,"quantity": 2,"unit_price": 19.75 }] } -{"id": 150000601, "customerid": 6, "time": "2023-02-02T11:31:42.780Z", "items": [{"productid": 39,"quantity": 2,"unit_price": 12.38 }] } -{"id": 150000596, "customerid": 19, "time": "2023-02-02T13:21:23.870Z", "items": [{"productid": 11,"quantity": 1,"unit_price": 12.08 ,"discount": 5.32 }] } -{"id": 150000616, "customerid": 4, "time": "2023-02-02T15:14:57.631Z", "items": [{"productid": 68,"quantity": 2,"unit_price": 7.02 }] } -{"id": 150000606, "customerid": 16, "time": "2023-02-02T15:41:08.427Z", "items": [{"productid": 30,"quantity": 1,"unit_price": 26.98 ,"discount": 12.57 }] } -{"id": 150000605, "customerid": 8, "time": "2023-02-02T16:10:52.465Z", "items": [{"productid": 76,"quantity": 1,"unit_price": 49.32 ,"discount": 2.65 }] } -{"id": 150000604, "customerid": 21, "time": "2023-02-02T16:24:17.739Z", "items": [{"productid": 170,"quantity": 1,"unit_price": 8.90 ,"discount": 0.86 }] } -{"id": 150000588, "customerid": 26, "time": "2023-02-02T16:35:30.886Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 ,"discount": 3.77 }] } -{"id": 150000593, "customerid": 30, "time": "2023-02-02T16:38:53.492Z", "items": [{"productid": 174,"quantity": 2,"unit_price": 10.71 },{"productid": 69,"quantity": 1,"unit_price": 8.65 }] } -{"id": 150000608, "customerid": 29, "time": "2023-02-02T18:25:29.157Z", "items": [{"productid": 187,"quantity": 1,"unit_price": 15.75 },{"productid": 23,"quantity": 1,"unit_price": 8.87 }] } -{"id": 150000595, "customerid": 15, "time": "2023-02-02T18:27:09.385Z", "items": [{"productid": 102,"quantity": 2,"unit_price": 11.60 ,"discount": 11.05 }] } -{"id": 150000613, "customerid": 23, "time": "2023-02-02T18:36:34.296Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000589, "customerid": 22, "time": "2023-02-02T19:13:49.884Z", "items": [{"productid": 166,"quantity": 1,"unit_price": 6.59 },{"productid": 108,"quantity": 1,"unit_price": 33.60 ,"discount": 16.12 }] } -{"id": 150000599, "customerid": 4, "time": "2023-02-02T19:18:19.183Z", "items": [{"productid": 16,"quantity": 1,"unit_price": 18.64 ,"discount": 5.91 }] } -{"id": 150000597, "customerid": 19, "time": "2023-02-02T20:50:35.270Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 }] } -{"id": 150000609, "customerid": 20, "time": "2023-02-02T21:25:38.369Z", "items": [{"productid": 178,"quantity": 2,"unit_price": 6.11 ,"discount": 4.23 }] } -{"id": 150000618, "customerid": 20, "time": "2023-02-02T22:03:31.459Z", "items": [{"productid": 27,"quantity": 1,"unit_price": 5.49 ,"discount": 2.48 }] } -{"id": 150000615, "customerid": 21, "time": "2023-02-02T22:12:10.045Z", "items": [{"productid": 130,"quantity": 2,"unit_price": 10.02 }] } -{"id": 150000628, "customerid": 19, "time": "2023-02-02T22:53:42.588Z", "items": [{"productid": 154,"quantity": 1,"unit_price": 42.85 }] } -{"id": 150000626, "customerid": 8, "time": "2023-02-02T23:43:01.696Z", "items": [{"productid": 173,"quantity": 1,"unit_price": 20.52 ,"discount": 8.29 }] } -{"id": 150000624, "customerid": 5, "time": "2023-02-02T23:55:12.218Z", "items": [{"productid": 141,"quantity": 2,"unit_price": 6.36 }] } -{"id": 150000622, "customerid": 24, "time": "2023-02-03T01:28:55.343Z", "items": [{"productid": 117,"quantity": 1,"unit_price": 35.05 }] } -{"id": 150000621, "customerid": 11, "time": "2023-02-03T03:55:37.131Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 }] } -{"id": 150000634, "customerid": 6, "time": "2023-02-03T04:32:05.307Z", "items": [{"productid": 26,"quantity": 2,"unit_price": 19.08 }] } -{"id": 150000633, "customerid": 7, "time": "2023-02-03T06:38:04.943Z", "items": [{"productid": 194,"quantity": 1,"unit_price": 6.77 ,"discount": 1.68 }] } -{"id": 150000629, "customerid": 5, "time": "2023-02-03T08:09:51.619Z", "items": [{"productid": 188,"quantity": 1,"unit_price": 35.21 ,"discount": 4.65 }] } -{"id": 150000625, "customerid": 13, "time": "2023-02-03T09:06:26.290Z", "items": [{"productid": 44,"quantity": 1,"unit_price": 20.42 }] } -{"id": 150000623, "customerid": 28, "time": "2023-02-03T11:24:54.094Z", "items": [{"productid": 25,"quantity": 1,"unit_price": 8.54 }] } -{"id": 150000635, "customerid": 29, "time": "2023-02-03T12:29:20.776Z", "items": [{"productid": 117,"quantity": 1,"unit_price": 35.05 ,"discount": 2.75 },{"productid": 109,"quantity": 1,"unit_price": 10.64 }] } -{"id": 150000632, "customerid": 6, "time": "2023-02-03T16:01:23.142Z", "items": [{"productid": 194,"quantity": 1,"unit_price": 6.77 ,"discount": 2.38 }] } -{"id": 150000627, "customerid": 10, "time": "2023-02-03T16:13:57.761Z", "items": [{"productid": 92,"quantity": 1,"unit_price": 30.18 ,"discount": 13.97 },{"productid": 39,"quantity": 1,"unit_price": 12.38 }] } -{"id": 150000630, "customerid": 20, "time": "2023-02-03T20:35:15.766Z", "items": [{"productid": 136,"quantity": 1,"unit_price": 26.65 ,"discount": 6.25 }] } -{"id": 150000631, "customerid": 22, "time": "2023-02-03T22:11:52.982Z", "items": [{"productid": 90,"quantity": 1,"unit_price": 7.94 ,"discount": 1.36 }] } -{"id": 150000640, "customerid": 21, "time": "2023-02-03T22:23:15.136Z", "items": [{"productid": 143,"quantity": 2,"unit_price": 10.93 ,"discount": 4.05 },{"productid": 140,"quantity": 1,"unit_price": 25.83 ,"discount": 7.00 }] } -{"id": 150000652, "customerid": 27, "time": "2023-02-03T22:24:48.002Z", "items": [{"productid": 180,"quantity": 1,"unit_price": 23.20 },{"productid": 83,"quantity": 1,"unit_price": 9.09 ,"discount": 1.16 }] } -{"id": 150000655, "customerid": 26, "time": "2023-02-04T01:34:32.003Z", "items": [{"productid": 162,"quantity": 1,"unit_price": 5.19 }] } -{"id": 150000642, "customerid": 13, "time": "2023-02-04T02:08:03.821Z", "items": [{"productid": 27,"quantity": 1,"unit_price": 5.49 ,"discount": 2.59 }] } -{"id": 150000651, "customerid": 28, "time": "2023-02-04T02:53:23.485Z", "items": [{"productid": 192,"quantity": 2,"unit_price": 14.07 }] } -{"id": 150000639, "customerid": 22, "time": "2023-02-04T03:08:42.015Z", "items": [{"productid": 55,"quantity": 1,"unit_price": 12.22 },{"productid": 70,"quantity": 1,"unit_price": 10.76 ,"discount": 3.85 }] } -{"id": 150000646, "customerid": 14, "time": "2023-02-04T05:06:05.755Z", "items": [{"productid": 119,"quantity": 2,"unit_price": 6.36 }] } -{"id": 150000653, "customerid": 27, "time": "2023-02-04T05:24:39Z", "items": [{"productid": 199,"quantity": 1,"unit_price": 11.47 }] } -{"id": 150000648, "customerid": 17, "time": "2023-02-04T06:31:52.831Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000658, "customerid": 1, "time": "2023-02-04T07:38:14.461Z", "items": [{"productid": 95,"quantity": 1,"unit_price": 8.15 ,"discount": 1.15 }] } -{"id": 150000641, "customerid": 3, "time": "2023-02-04T08:51:48.947Z", "items": [{"productid": 193,"quantity": 2,"unit_price": 31.44 }] } -{"id": 150000649, "customerid": 24, "time": "2023-02-04T09:41:25.270Z", "items": [{"productid": 39,"quantity": 1,"unit_price": 12.38 }] } -{"id": 150000636, "customerid": 10, "time": "2023-02-04T10:47:26.658Z", "items": [{"productid": 31,"quantity": 1,"unit_price": 52.53 }] } -{"id": 150000638, "customerid": 5, "time": "2023-02-04T11:00:42.839Z", "items": [{"productid": 195,"quantity": 2,"unit_price": 11.38 ,"discount": 5.39 }] } -{"id": 150000637, "customerid": 13, "time": "2023-02-04T11:48:40.860Z", "items": [{"productid": 36,"quantity": 1,"unit_price": 7.61 ,"discount": 3.65 },{"productid": 111,"quantity": 1,"unit_price": 10.18 }] } -{"id": 150000657, "customerid": 13, "time": "2023-02-04T15:43:54.728Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000659, "customerid": 29, "time": "2023-02-04T17:35:07.099Z", "items": [{"productid": 77,"quantity": 1,"unit_price": 96.05 }] } -{"id": 150000654, "customerid": 30, "time": "2023-02-04T17:36:27.634Z", "items": [{"productid": 18,"quantity": 1,"unit_price": 10.01 }] } -{"id": 150000647, "customerid": 6, "time": "2023-02-04T19:11:04.564Z", "items": [{"productid": 90,"quantity": 1,"unit_price": 7.94 ,"discount": 1.33 }] } -{"id": 150000656, "customerid": 13, "time": "2023-02-04T19:28:46.297Z", "items": [{"productid": 134,"quantity": 2,"unit_price": 7.01 }] } -{"id": 150000643, "customerid": 25, "time": "2023-02-04T20:00:40.652Z", "items": [{"productid": 149,"quantity": 1,"unit_price": 46.38 }] } -{"id": 150000650, "customerid": 21, "time": "2023-02-04T20:45:12.132Z", "items": [{"productid": 155,"quantity": 1,"unit_price": 83.44 ,"discount": 8.82 },{"productid": 36,"quantity": 1,"unit_price": 7.61 ,"discount": 1.46 }] } -{"id": 150000644, "customerid": 29, "time": "2023-02-04T20:50:13.201Z", "items": [{"productid": 128,"quantity": 1,"unit_price": 12.12 ,"discount": 2.40 }] } -{"id": 150000645, "customerid": 23, "time": "2023-02-04T21:45:49.262Z", "items": [{"productid": 202,"quantity": 2,"unit_price": 14.70 }] } -{"id": 150000662, "customerid": 16, "time": "2023-02-04T22:34:20.767Z", "items": [{"productid": 98,"quantity": 2,"unit_price": 32.37 }] } -{"id": 150000666, "customerid": 28, "time": "2023-02-05T00:14:54.413Z", "items": [{"productid": 145,"quantity": 2,"unit_price": 41.55 }] } -{"id": 150000675, "customerid": 26, "time": "2023-02-05T05:20:04.091Z", "items": [{"productid": 153,"quantity": 1,"unit_price": 19.17 ,"discount": 4.30 }] } -{"id": 150000664, "customerid": 14, "time": "2023-02-05T07:16:58.922Z", "items": [{"productid": 198,"quantity": 1,"unit_price": 6.75 ,"discount": 3.17 }] } -{"id": 150000667, "customerid": 17, "time": "2023-02-05T09:40:24.602Z", "items": [{"productid": 83,"quantity": 1,"unit_price": 9.09 }] } -{"id": 150000673, "customerid": 19, "time": "2023-02-05T10:29:49.111Z", "items": [{"productid": 58,"quantity": 3,"unit_price": 10.39 }] } -{"id": 150000670, "customerid": 13, "time": "2023-02-05T11:58:09.925Z", "items": [{"productid": 53,"quantity": 1,"unit_price": 12.62 }] } -{"id": 150000660, "customerid": 22, "time": "2023-02-05T13:05:24.814Z", "items": [{"productid": 152,"quantity": 1,"unit_price": 11.28 ,"discount": 2.88 }] } -{"id": 150000668, "customerid": 12, "time": "2023-02-05T15:19:15.867Z", "items": [{"productid": 178,"quantity": 2,"unit_price": 6.11 }] } -{"id": 150000663, "customerid": 4, "time": "2023-02-05T15:29:39.600Z", "items": [{"productid": 106,"quantity": 2,"unit_price": 8.84 ,"discount": 4.69 }] } -{"id": 150000671, "customerid": 28, "time": "2023-02-05T16:37:41.536Z", "items": [{"productid": 61,"quantity": 1,"unit_price": 19.00 ,"discount": 7.90 }] } -{"id": 150000661, "customerid": 27, "time": "2023-02-05T17:17:28.986Z", "items": [{"productid": 110,"quantity": 1,"unit_price": 5.64 }] } -{"id": 150000669, "customerid": 12, "time": "2023-02-05T18:00:00.162Z", "items": [{"productid": 45,"quantity": 2,"unit_price": 39.76 }] } -{"id": 150000674, "customerid": 12, "time": "2023-02-05T20:22:50.178Z", "items": [{"productid": 22,"quantity": 1,"unit_price": 19.89 ,"discount": 8.42 },{"productid": 146,"quantity": 1,"unit_price": 10.96 }] } -{"id": 150000672, "customerid": 15, "time": "2023-02-05T20:59:39.940Z", "items": [{"productid": 43,"quantity": 1,"unit_price": 9.13 }] } -{"id": 150000665, "customerid": 21, "time": "2023-02-05T22:04:04.159Z", "items": [{"productid": 122,"quantity": 2,"unit_price": 13.31 ,"discount": 12.50 }] } -{"id": 150000692, "customerid": 24, "time": "2023-02-05T23:14:55.495Z", "items": [{"productid": 191,"quantity": 1,"unit_price": 8.27 },{"productid": 123,"quantity": 1,"unit_price": 29.75 ,"discount": 8.15 }] } -{"id": 150000686, "customerid": 1, "time": "2023-02-06T00:43:25.387Z", "items": [{"productid": 148,"quantity": 1,"unit_price": 20.75 },{"productid": 110,"quantity": 2,"unit_price": 5.64 }] } -{"id": 150000687, "customerid": 13, "time": "2023-02-06T02:32:12.392Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 }] } -{"id": 150000682, "customerid": 8, "time": "2023-02-06T04:39:26.314Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 }] } -{"id": 150000697, "customerid": 6, "time": "2023-02-06T05:21:03.812Z", "items": [{"productid": 156,"quantity": 1,"unit_price": 8.00 },{"productid": 20,"quantity": 2,"unit_price": 5.24 }] } -{"id": 150000691, "customerid": 20, "time": "2023-02-06T06:46:35.341Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000683, "customerid": 24, "time": "2023-02-06T09:18:38.418Z", "items": [{"productid": 13,"quantity": 2,"unit_price": 9.69 }] } -{"id": 150000685, "customerid": 13, "time": "2023-02-06T09:26:01.293Z", "items": [{"productid": 3,"quantity": 2,"unit_price": 26.39 },{"productid": 113,"quantity": 1,"unit_price": 38.70 ,"discount": 6.31 }] } -{"id": 150000696, "customerid": 20, "time": "2023-02-06T10:47:43.164Z", "items": [{"productid": 82,"quantity": 1,"unit_price": 85.96 ,"discount": 22.15 }] } -{"id": 150000681, "customerid": 30, "time": "2023-02-06T11:12:35.238Z", "items": [{"productid": 142,"quantity": 1,"unit_price": 6.33 },{"productid": 19,"quantity": 1,"unit_price": 11.78 }] } -{"id": 150000688, "customerid": 28, "time": "2023-02-06T11:55:34.384Z", "items": [{"productid": 21,"quantity": 3,"unit_price": 8.90 ,"discount": 11.04 },{"productid": 155,"quantity": 2,"unit_price": 83.44 }] } -{"id": 150000698, "customerid": 25, "time": "2023-02-06T13:31:40.806Z", "items": [{"productid": 91,"quantity": 2,"unit_price": 13.50 }] } -{"id": 150000677, "customerid": 11, "time": "2023-02-06T13:34:27.290Z", "items": [{"productid": 66,"quantity": 2,"unit_price": 5.62 }] } -{"id": 150000693, "customerid": 24, "time": "2023-02-06T14:04:16.156Z", "items": [{"productid": 138,"quantity": 2,"unit_price": 6.80 }] } -{"id": 150000678, "customerid": 4, "time": "2023-02-06T15:25:44.067Z", "items": [{"productid": 163,"quantity": 1,"unit_price": 11.01 }] } -{"id": 150000694, "customerid": 30, "time": "2023-02-06T16:27:37.198Z", "items": [{"productid": 105,"quantity": 2,"unit_price": 10.44 ,"discount": 6.82 },{"productid": 201,"quantity": 1,"unit_price": 8.65 ,"discount": 1.66 }] } -{"id": 150000689, "customerid": 13, "time": "2023-02-06T16:34:25.717Z", "items": [{"productid": 190,"quantity": 2,"unit_price": 9.81 }] } -{"id": 150000676, "customerid": 21, "time": "2023-02-06T17:46:28.337Z", "items": [{"productid": 61,"quantity": 1,"unit_price": 19.00 ,"discount": 6.76 }] } -{"id": 150000700, "customerid": 29, "time": "2023-02-06T18:05:36.363Z", "items": [{"productid": 130,"quantity": 1,"unit_price": 10.02 }] } -{"id": 150000684, "customerid": 3, "time": "2023-02-06T19:09:16.986Z", "items": [{"productid": 122,"quantity": 2,"unit_price": 13.31 }] } -{"id": 150000699, "customerid": 11, "time": "2023-02-06T19:35:40.972Z", "items": [{"productid": 81,"quantity": 1,"unit_price": 44.14 }] } -{"id": 150000680, "customerid": 10, "time": "2023-02-06T19:56:37.154Z", "items": [{"productid": 152,"quantity": 1,"unit_price": 11.28 }] } -{"id": 150000695, "customerid": 5, "time": "2023-02-06T20:00:15.224Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 }] } -{"id": 150000679, "customerid": 30, "time": "2023-02-06T21:45:16.516Z", "items": [{"productid": 11,"quantity": 2,"unit_price": 12.08 }] } -{"id": 150000690, "customerid": 17, "time": "2023-02-06T21:58:14.149Z", "items": [{"productid": 161,"quantity": 1,"unit_price": 29.88 }] } -{"id": 150000711, "customerid": 12, "time": "2023-02-06T22:44:26.694Z", "items": [{"productid": 109,"quantity": 3,"unit_price": 10.64 }] } -{"id": 150000719, "customerid": 18, "time": "2023-02-06T22:59:07.855Z", "items": [{"productid": 39,"quantity": 1,"unit_price": 12.38 }] } -{"id": 150000701, "customerid": 16, "time": "2023-02-07T00:50:08.442Z", "items": [{"productid": 89,"quantity": 2,"unit_price": 7.10 ,"discount": 1.67 }] } -{"id": 150000728, "customerid": 7, "time": "2023-02-07T00:51:15.419Z", "items": [{"productid": 200,"quantity": 1,"unit_price": 25.64 },{"productid": 154,"quantity": 2,"unit_price": 42.85 }] } -{"id": 150000726, "customerid": 22, "time": "2023-02-07T01:21:16.069Z", "items": [{"productid": 37,"quantity": 1,"unit_price": 12.94 }] } -{"id": 150000705, "customerid": 22, "time": "2023-02-07T03:24:15.019Z", "items": [{"productid": 135,"quantity": 1,"unit_price": 11.92 ,"discount": 0.81 }] } -{"id": 150000724, "customerid": 2, "time": "2023-02-07T03:55:00.446Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 }] } -{"id": 150000708, "customerid": 22, "time": "2023-02-07T04:05:28.793Z", "items": [{"productid": 23,"quantity": 1,"unit_price": 8.87 ,"discount": 0.96 },{"productid": 29,"quantity": 1,"unit_price": 12.07 ,"discount": 2.62 }] } -{"id": 150000709, "customerid": 20, "time": "2023-02-07T04:31:40.837Z", "items": [{"productid": 40,"quantity": 1,"unit_price": 7.91 ,"discount": 2.00 },{"productid": 136,"quantity": 1,"unit_price": 26.65 }] } -{"id": 150000715, "customerid": 21, "time": "2023-02-07T06:23:38.338Z", "items": [{"productid": 67,"quantity": 2,"unit_price": 8.28 ,"discount": 3.11 },{"productid": 203,"quantity": 2,"unit_price": 6.18 ,"discount": 4.82 }] } -{"id": 150000725, "customerid": 25, "time": "2023-02-07T06:40:46.121Z", "items": [{"productid": 10,"quantity": 1,"unit_price": 9.53 ,"discount": 4.41 }] } -{"id": 150000710, "customerid": 14, "time": "2023-02-07T06:44:05.375Z", "items": [{"productid": 94,"quantity": 1,"unit_price": 5.03 }] } -{"id": 150000713, "customerid": 13, "time": "2023-02-07T07:26:43.296Z", "items": [{"productid": 85,"quantity": 1,"unit_price": 34.56 }] } -{"id": 150000722, "customerid": 24, "time": "2023-02-07T08:30:30.087Z", "items": [{"productid": 65,"quantity": 1,"unit_price": 10.28 },{"productid": 61,"quantity": 1,"unit_price": 19.00 ,"discount": 7.20 }] } -{"id": 150000721, "customerid": 22, "time": "2023-02-07T08:35:06.966Z", "items": [{"productid": 95,"quantity": 1,"unit_price": 8.15 }] } -{"id": 150000717, "customerid": 30, "time": "2023-02-07T09:04:34.240Z", "items": [{"productid": 167,"quantity": 2,"unit_price": 6.56 }] } -{"id": 150000703, "customerid": 13, "time": "2023-02-07T12:04:28.507Z", "items": [{"productid": 124,"quantity": 1,"unit_price": 57.94 },{"productid": 199,"quantity": 1,"unit_price": 11.47 ,"discount": 5.29 }] } -{"id": 150000712, "customerid": 25, "time": "2023-02-07T12:40:31.366Z", "items": [{"productid": 19,"quantity": 1,"unit_price": 11.78 ,"discount": 3.97 },{"productid": 153,"quantity": 2,"unit_price": 19.17 ,"discount": 6.29 }] } -{"id": 150000720, "customerid": 29, "time": "2023-02-07T13:57:53.902Z", "items": [{"productid": 134,"quantity": 2,"unit_price": 7.01 ,"discount": 4.40 }] } -{"id": 150000723, "customerid": 30, "time": "2023-02-07T14:13:00.767Z", "items": [{"productid": 159,"quantity": 1,"unit_price": 7.86 }] } -{"id": 150000704, "customerid": 14, "time": "2023-02-07T15:34:25.560Z", "items": [{"productid": 21,"quantity": 1,"unit_price": 8.90 ,"discount": 2.46 }] } -{"id": 150000714, "customerid": 13, "time": "2023-02-07T15:52:24.484Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 }] } -{"id": 150000702, "customerid": 15, "time": "2023-02-07T16:01:49.016Z", "items": [{"productid": 163,"quantity": 1,"unit_price": 11.01 ,"discount": 1.08 },{"productid": 71,"quantity": 3,"unit_price": 11.90 ,"discount": 10.39 }] } -{"id": 150000716, "customerid": 9, "time": "2023-02-07T16:40:01.037Z", "items": [{"productid": 193,"quantity": 1,"unit_price": 31.44 }] } -{"id": 150000727, "customerid": 29, "time": "2023-02-07T16:41:28.959Z", "items": [{"productid": 116,"quantity": 1,"unit_price": 15.68 ,"discount": 7.23 }] } -{"id": 150000707, "customerid": 25, "time": "2023-02-07T17:29:11.975Z", "items": [{"productid": 124,"quantity": 1,"unit_price": 57.94 ,"discount": 3.59 }] } -{"id": 150000706, "customerid": 4, "time": "2023-02-07T20:24:06.450Z", "items": [{"productid": 40,"quantity": 1,"unit_price": 7.91 ,"discount": 3.88 }] } -{"id": 150000718, "customerid": 23, "time": "2023-02-07T21:20:08.591Z", "items": [{"productid": 37,"quantity": 1,"unit_price": 12.94 ,"discount": 1.39 }] } -{"id": 150000736, "customerid": 17, "time": "2023-02-07T23:13:52.727Z", "items": [{"productid": 8,"quantity": 2,"unit_price": 9.06 ,"discount": 7.59 }] } -{"id": 150000731, "customerid": 13, "time": "2023-02-08T03:41:14.595Z", "items": [{"productid": 38,"quantity": 3,"unit_price": 6.74 },{"productid": 27,"quantity": 2,"unit_price": 5.49 ,"discount": 2.71 }] } -{"id": 150000740, "customerid": 17, "time": "2023-02-08T04:31:25.682Z", "items": [{"productid": 14,"quantity": 2,"unit_price": 5.99 }] } -{"id": 150000732, "customerid": 8, "time": "2023-02-08T06:11:25.413Z", "items": [{"productid": 93,"quantity": 1,"unit_price": 58.77 }] } -{"id": 150000729, "customerid": 12, "time": "2023-02-08T09:09:59.118Z", "items": [{"productid": 24,"quantity": 2,"unit_price": 5.02 }] } -{"id": 150000738, "customerid": 13, "time": "2023-02-08T09:19:05.218Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 }] } -{"id": 150000739, "customerid": 16, "time": "2023-02-08T09:29:43.466Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 }] } -{"id": 150000734, "customerid": 22, "time": "2023-02-08T11:28:17.118Z", "items": [{"productid": 7,"quantity": 2,"unit_price": 12.70 },{"productid": 41,"quantity": 1,"unit_price": 5.31 ,"discount": 0.46 }] } -{"id": 150000735, "customerid": 18, "time": "2023-02-08T11:47:24.755Z", "items": [{"productid": 130,"quantity": 1,"unit_price": 10.02 ,"discount": 2.07 }] } -{"id": 150000730, "customerid": 16, "time": "2023-02-08T12:10:43.672Z", "items": [{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000737, "customerid": 4, "time": "2023-02-08T12:39:19.636Z", "items": [{"productid": 82,"quantity": 1,"unit_price": 85.96 ,"discount": 41.08 }] } -{"id": 150000733, "customerid": 8, "time": "2023-02-08T16:30:08.775Z", "items": [{"productid": 9,"quantity": 1,"unit_price": 15.41 }] } -{"id": 150000741, "customerid": 11, "time": "2023-02-08T23:04:04.991Z", "items": [{"productid": 88,"quantity": 1,"unit_price": 11.12 },{"productid": 139,"quantity": 1,"unit_price": 11.56 ,"discount": 1.02 }] } -{"id": 150000743, "customerid": 18, "time": "2023-02-08T23:47:35.280Z", "items": [{"productid": 197,"quantity": 2,"unit_price": 9.22 }] } -{"id": 150000748, "customerid": 12, "time": "2023-02-09T00:57:05.738Z", "items": [{"productid": 115,"quantity": 1,"unit_price": 9.22 }] } -{"id": 150000757, "customerid": 4, "time": "2023-02-09T01:13:27.162Z", "items": [{"productid": 186,"quantity": 1,"unit_price": 9.27 }] } -{"id": 150000758, "customerid": 8, "time": "2023-02-09T01:52:22.063Z", "items": [{"productid": 46,"quantity": 1,"unit_price": 6.31 ,"discount": 3.14 }] } -{"id": 150000756, "customerid": 10, "time": "2023-02-09T02:37:17.473Z", "items": [{"productid": 89,"quantity": 2,"unit_price": 7.10 }] } -{"id": 150000762, "customerid": 15, "time": "2023-02-09T03:24:36.574Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 ,"discount": 4.25 },{"productid": 157,"quantity": 2,"unit_price": 13.61 }] } -{"id": 150000763, "customerid": 4, "time": "2023-02-09T03:42:45.889Z", "items": [{"productid": 119,"quantity": 1,"unit_price": 6.36 ,"discount": 3.02 }] } -{"id": 150000749, "customerid": 5, "time": "2023-02-09T05:33:14.352Z", "items": [{"productid": 115,"quantity": 1,"unit_price": 9.22 ,"discount": 3.83 }] } -{"id": 150000761, "customerid": 17, "time": "2023-02-09T07:20:47.039Z", "items": [{"productid": 132,"quantity": 1,"unit_price": 10.21 ,"discount": 1.76 }] } -{"id": 150000766, "customerid": 10, "time": "2023-02-09T07:46:56.063Z", "items": [{"productid": 158,"quantity": 2,"unit_price": 30.42 }] } -{"id": 150000760, "customerid": 17, "time": "2023-02-09T10:37:41.960Z", "items": [{"productid": 86,"quantity": 2,"unit_price": 6.10 }] } -{"id": 150000750, "customerid": 13, "time": "2023-02-09T11:04:35.617Z", "items": [{"productid": 29,"quantity": 3,"unit_price": 12.07 ,"discount": 5.76 }] } -{"id": 150000754, "customerid": 23, "time": "2023-02-09T12:35:00.974Z", "items": [{"productid": 206,"quantity": 1,"unit_price": 10.29 }] } -{"id": 150000747, "customerid": 16, "time": "2023-02-09T12:58:27.785Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 },{"productid": 134,"quantity": 1,"unit_price": 7.01 ,"discount": 0.53 }] } -{"id": 150000752, "customerid": 4, "time": "2023-02-09T13:07:17.460Z", "items": [{"productid": 115,"quantity": 2,"unit_price": 9.22 }] } -{"id": 150000765, "customerid": 14, "time": "2023-02-09T13:11:12.246Z", "items": [{"productid": 134,"quantity": 1,"unit_price": 7.01 }] } -{"id": 150000746, "customerid": 18, "time": "2023-02-09T13:37:05.281Z", "items": [{"productid": 24,"quantity": 1,"unit_price": 5.02 }] } -{"id": 150000744, "customerid": 16, "time": "2023-02-09T15:54:23.059Z", "items": [{"productid": 120,"quantity": 1,"unit_price": 10.88 }] } -{"id": 150000751, "customerid": 14, "time": "2023-02-09T18:28:02.790Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 ,"discount": 1.45 }] } -{"id": 150000755, "customerid": 16, "time": "2023-02-09T18:59:06.216Z", "items": [{"productid": 203,"quantity": 1,"unit_price": 6.18 ,"discount": 1.12 }] } -{"id": 150000745, "customerid": 26, "time": "2023-02-09T19:01:26.475Z", "items": [{"productid": 196,"quantity": 1,"unit_price": 8.00 ,"discount": 2.58 }] } -{"id": 150000742, "customerid": 20, "time": "2023-02-09T19:23:14.626Z", "items": [{"productid": 38,"quantity": 1,"unit_price": 6.74 }] } -{"id": 150000764, "customerid": 27, "time": "2023-02-09T19:38:39.316Z", "items": [{"productid": 89,"quantity": 1,"unit_price": 7.10 }] } -{"id": 150000759, "customerid": 19, "time": "2023-02-09T21:59:14.603Z", "items": [{"productid": 104,"quantity": 2,"unit_price": 44.08 }] } -{"id": 150000753, "customerid": 8, "time": "2023-02-09T22:03:48.644Z", "items": [{"productid": 85,"quantity": 1,"unit_price": 34.56 }] } -{"id": 150000768, "customerid": 13, "time": "2023-02-10T02:06:17.667Z", "items": [{"productid": 163,"quantity": 1,"unit_price": 11.01 ,"discount": 0.77 }] } -{"id": 150000776, "customerid": 26, "time": "2023-02-10T03:22:45.232Z", "items": [{"productid": 14,"quantity": 1,"unit_price": 5.99 ,"discount": 1.22 }] } -{"id": 150000774, "customerid": 28, "time": "2023-02-10T04:31:23.704Z", "items": [{"productid": 73,"quantity": 1,"unit_price": 7.94 ,"discount": 3.86 }] } -{"id": 150000772, "customerid": 3, "time": "2023-02-10T06:19:29.437Z", "items": [{"productid": 33,"quantity": 1,"unit_price": 16.69 }] } -{"id": 150000771, "customerid": 1, "time": "2023-02-10T07:23:09.771Z", "items": [{"productid": 108,"quantity": 1,"unit_price": 33.60 ,"discount": 3.39 }] } -{"id": 150000769, "customerid": 12, "time": "2023-02-10T09:00:04.379Z", "items": [{"productid": 66,"quantity": 2,"unit_price": 5.62 }] } -{"id": 150000775, "customerid": 22, "time": "2023-02-10T10:15:42.017Z", "items": [{"productid": 16,"quantity": 4,"unit_price": 18.64 }] } -{"id": 150000773, "customerid": 24, "time": "2023-02-10T12:05:18.190Z", "items": [{"productid": 46,"quantity": 1,"unit_price": 6.31 ,"discount": 2.02 }] } -{"id": 150000767, "customerid": 1, "time": "2023-02-10T16:10:52.176Z", "items": [{"productid": 206,"quantity": 1,"unit_price": 10.29 }] } -{"id": 150000777, "customerid": 14, "time": "2023-02-10T19:07:57.077Z", "items": [{"productid": 107,"quantity": 1,"unit_price": 15.03 ,"discount": 6.91 }] } -{"id": 150000770, "customerid": 16, "time": "2023-02-10T20:53:42.757Z", "items": [{"productid": 155,"quantity": 1,"unit_price": 83.44 }] } -{"id": 150000794, "customerid": 8, "time": "2023-02-10T22:17:41.307Z", "items": [{"productid": 141,"quantity": 2,"unit_price": 6.36 ,"discount": 4.65 },{"productid": 160,"quantity": 1,"unit_price": 13.37 ,"discount": 3.39 }] } -{"id": 150000793, "customerid": 22, "time": "2023-02-10T22:50:02.933Z", "items": [{"productid": 178,"quantity": 1,"unit_price": 6.11 }] } -{"id": 150000778, "customerid": 1, "time": "2023-02-10T23:17:31.303Z", "items": [{"productid": 194,"quantity": 1,"unit_price": 6.77 }] } -{"id": 150000801, "customerid": 3, "time": "2023-02-11T02:49:54.837Z", "items": [{"productid": 108,"quantity": 2,"unit_price": 33.60 ,"discount": 14.87 }] } -{"id": 150000798, "customerid": 24, "time": "2023-02-11T04:00:41.407Z", "items": [{"productid": 48,"quantity": 1,"unit_price": 5.45 ,"discount": 2.25 }] } -{"id": 150000785, "customerid": 23, "time": "2023-02-11T04:51:45.822Z", "items": [{"productid": 37,"quantity": 3,"unit_price": 12.94 ,"discount": 3.09 }] } -{"id": 150000784, "customerid": 13, "time": "2023-02-11T06:57:29.573Z", "items": [{"productid": 116,"quantity": 1,"unit_price": 15.68 }] } -{"id": 150000797, "customerid": 11, "time": "2023-02-11T07:29:25.422Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 }] } -{"id": 150000781, "customerid": 15, "time": "2023-02-11T08:06:41.648Z", "items": [{"productid": 39,"quantity": 1,"unit_price": 12.38 },{"productid": 64,"quantity": 1,"unit_price": 14.18 ,"discount": 5.03 }] } -{"id": 150000792, "customerid": 4, "time": "2023-02-11T08:42:20.193Z", "items": [{"productid": 163,"quantity": 1,"unit_price": 11.01 },{"productid": 61,"quantity": 1,"unit_price": 19.00 }] } -{"id": 150000786, "customerid": 16, "time": "2023-02-11T09:39:55.603Z", "items": [{"productid": 143,"quantity": 1,"unit_price": 10.93 ,"discount": 4.73 },{"productid": 93,"quantity": 2,"unit_price": 58.77 }] } -{"id": 150000789, "customerid": 3, "time": "2023-02-11T10:23:46.768Z", "items": [{"productid": 31,"quantity": 1,"unit_price": 52.53 },{"productid": 152,"quantity": 1,"unit_price": 11.28 }] } -{"id": 150000782, "customerid": 17, "time": "2023-02-11T11:22:03.450Z", "items": [{"productid": 40,"quantity": 1,"unit_price": 7.91 },{"productid": 77,"quantity": 2,"unit_price": 96.05 }] } -{"id": 150000787, "customerid": 10, "time": "2023-02-11T12:17:00.058Z", "items": [{"productid": 65,"quantity": 2,"unit_price": 10.28 ,"discount": 2.85 }] } -{"id": 150000800, "customerid": 3, "time": "2023-02-11T12:48:05.931Z", "items": [{"productid": 136,"quantity": 1,"unit_price": 26.65 }] } -{"id": 150000790, "customerid": 3, "time": "2023-02-11T13:13:53.829Z", "items": [{"productid": 172,"quantity": 1,"unit_price": 12.07 }] } -{"id": 150000796, "customerid": 25, "time": "2023-02-11T13:18:05.810Z", "items": [{"productid": 40,"quantity": 1,"unit_price": 7.91 }] } -{"id": 150000795, "customerid": 9, "time": "2023-02-11T13:55:02.524Z", "items": [{"productid": 158,"quantity": 2,"unit_price": 30.42 }] } -{"id": 150000783, "customerid": 20, "time": "2023-02-11T14:13:57.115Z", "items": [{"productid": 151,"quantity": 1,"unit_price": 7.24 }] } -{"id": 150000799, "customerid": 11, "time": "2023-02-11T16:57:42.749Z", "items": [{"productid": 180,"quantity": 2,"unit_price": 23.20 },{"productid": 138,"quantity": 1,"unit_price": 6.80 }] } -{"id": 150000779, "customerid": 19, "time": "2023-02-11T19:12:13.588Z", "items": [{"productid": 100,"quantity": 2,"unit_price": 15.66 }] } -{"id": 150000780, "customerid": 4, "time": "2023-02-11T20:48:44.116Z", "items": [{"productid": 39,"quantity": 1,"unit_price": 12.38 }] } -{"id": 150000791, "customerid": 14, "time": "2023-02-11T21:13:13.778Z", "items": [{"productid": 182,"quantity": 2,"unit_price": 9.18 ,"discount": 1.82 },{"productid": 143,"quantity": 1,"unit_price": 10.93 }] } -{"id": 150000788, "customerid": 17, "time": "2023-02-11T21:53:10.607Z", "items": [{"productid": 28,"quantity": 2,"unit_price": 7.10 ,"discount": 6.69 }] } -{"id": 150000831, "customerid": 22, "time": "2023-02-11T22:59:06.194Z", "items": [{"productid": 171,"quantity": 2,"unit_price": 19.89 ,"discount": 14.72 }] } -{"id": 150000822, "customerid": 29, "time": "2023-02-11T23:55:00.071Z", "items": [{"productid": 174,"quantity": 1,"unit_price": 10.71 }] } -{"id": 150000809, "customerid": 4, "time": "2023-02-12T00:33:23.020Z", "items": [{"productid": 69,"quantity": 1,"unit_price": 8.65 }] } -{"id": 150000805, "customerid": 5, "time": "2023-02-12T00:33:34.121Z", "items": [{"productid": 19,"quantity": 1,"unit_price": 11.78 }] } -{"id": 150000812, "customerid": 22, "time": "2023-02-12T01:48:03.428Z", "items": [{"productid": 9,"quantity": 2,"unit_price": 15.41 ,"discount": 3.57 },{"productid": 176,"quantity": 2,"unit_price": 7.79 ,"discount": 5.48 }] } -{"id": 150000825, "customerid": 27, "time": "2023-02-12T02:06:00.910Z", "items": [{"productid": 138,"quantity": 1,"unit_price": 6.80 ,"discount": 1.57 }] } -{"id": 150000802, "customerid": 1, "time": "2023-02-12T02:21:05.523Z", "items": [{"productid": 182,"quantity": 1,"unit_price": 9.18 },{"productid": 36,"quantity": 1,"unit_price": 7.61 ,"discount": 2.27 }] } -{"id": 150000816, "customerid": 4, "time": "2023-02-12T02:25:54.531Z", "items": [{"productid": 127,"quantity": 1,"unit_price": 20.99 }] } -{"id": 150000819, "customerid": 8, "time": "2023-02-12T04:07:46.343Z", "items": [{"productid": 201,"quantity": 2,"unit_price": 8.65 }] } -{"id": 150000813, "customerid": 29, "time": "2023-02-12T04:18:23.494Z", "items": [{"productid": 163,"quantity": 1,"unit_price": 11.01 ,"discount": 2.15 }] } -{"id": 150000828, "customerid": 23, "time": "2023-02-12T05:47:03.801Z", "items": [{"productid": 194,"quantity": 2,"unit_price": 6.77 },{"productid": 167,"quantity": 1,"unit_price": 6.56 ,"discount": 2.36 }] } -{"id": 150000806, "customerid": 16, "time": "2023-02-12T05:54:48.370Z", "items": [{"productid": 59,"quantity": 1,"unit_price": 23.22 ,"discount": 9.14 }] } -{"id": 150000820, "customerid": 4, "time": "2023-02-12T06:17:20.343Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 ,"discount": 2.81 }] } -{"id": 150000814, "customerid": 1, "time": "2023-02-12T06:17:45.033Z", "items": [{"productid": 167,"quantity": 1,"unit_price": 6.56 ,"discount": 2.15 },{"productid": 195,"quantity": 1,"unit_price": 11.38 }] } -{"id": 150000821, "customerid": 7, "time": "2023-02-12T06:26:13.998Z", "items": [{"productid": 193,"quantity": 1,"unit_price": 31.44 }] } -{"id": 150000810, "customerid": 16, "time": "2023-02-12T08:51:05.523Z", "items": [{"productid": 87,"quantity": 3,"unit_price": 12.05 ,"discount": 9.31 },{"productid": 84,"quantity": 1,"unit_price": 15.46 ,"discount": 4.92 }] } -{"id": 150000824, "customerid": 7, "time": "2023-02-12T09:13:50.019Z", "items": [{"productid": 173,"quantity": 2,"unit_price": 20.52 ,"discount": 6.85 }] } -{"id": 150000833, "customerid": 2, "time": "2023-02-12T11:49:32.602Z", "items": [{"productid": 20,"quantity": 1,"unit_price": 5.24 }] } -{"id": 150000826, "customerid": 10, "time": "2023-02-12T12:27:18.310Z", "items": [{"productid": 158,"quantity": 2,"unit_price": 30.42 },{"productid": 80,"quantity": 1,"unit_price": 19.75 }] } -{"id": 150000817, "customerid": 1, "time": "2023-02-12T12:39:15.147Z", "items": [{"productid": 91,"quantity": 1,"unit_price": 13.50 }] } -{"id": 150000832, "customerid": 29, "time": "2023-02-12T12:50:59.839Z", "items": [{"productid": 194,"quantity": 2,"unit_price": 6.77 ,"discount": 3.41 }] } -{"id": 150000804, "customerid": 29, "time": "2023-02-12T13:28:14.425Z", "items": [{"productid": 91,"quantity": 2,"unit_price": 13.50 ,"discount": 5.22 }] } -{"id": 150000807, "customerid": 1, "time": "2023-02-12T14:01:43.702Z", "items": [{"productid": 40,"quantity": 2,"unit_price": 7.91 ,"discount": 6.70 }] } -{"id": 150000830, "customerid": 17, "time": "2023-02-12T14:22:17.204Z", "items": [{"productid": 5,"quantity": 2,"unit_price": 5.43 }] } -{"id": 150000827, "customerid": 9, "time": "2023-02-12T15:26:32.709Z", "items": [{"productid": 145,"quantity": 1,"unit_price": 41.55 },{"productid": 54,"quantity": 1,"unit_price": 11.68 }] } -{"id": 150000803, "customerid": 27, "time": "2023-02-12T16:43:32.742Z", "items": [{"productid": 99,"quantity": 1,"unit_price": 9.21 }] } -{"id": 150000815, "customerid": 3, "time": "2023-02-12T17:27:55.218Z", "items": [{"productid": 127,"quantity": 1,"unit_price": 20.99 }] } -{"id": 150000834, "customerid": 7, "time": "2023-02-12T17:47:49.795Z", "items": [{"productid": 59,"quantity": 2,"unit_price": 23.22 },{"productid": 41,"quantity": 2,"unit_price": 5.31 ,"discount": 1.81 }] } -{"id": 150000829, "customerid": 6, "time": "2023-02-12T18:50:30.245Z", "items": [{"productid": 30,"quantity": 1,"unit_price": 26.98 }] } -{"id": 150000808, "customerid": 17, "time": "2023-02-12T19:03:53.361Z", "items": [{"productid": 87,"quantity": 1,"unit_price": 12.05 },{"productid": 171,"quantity": 1,"unit_price": 19.89 }] } -{"id": 150000823, "customerid": 4, "time": "2023-02-12T20:13:51.815Z", "items": [{"productid": 60,"quantity": 2,"unit_price": 11.18 }] } -{"id": 150000818, "customerid": 3, "time": "2023-02-12T20:54:06.835Z", "items": [{"productid": 138,"quantity": 1,"unit_price": 6.80 }] } -{"id": 150000811, "customerid": 11, "time": "2023-02-12T21:57:05.388Z", "items": [{"productid": 186,"quantity": 2,"unit_price": 9.27 }] } -{"id": 150000842, "customerid": 11, "time": "2023-02-12T23:16:58.453Z", "items": [{"productid": 160,"quantity": 2,"unit_price": 13.37 ,"discount": 7.44 }] } -{"id": 150000839, "customerid": 30, "time": "2023-02-12T23:55:04.067Z", "items": [{"productid": 68,"quantity": 2,"unit_price": 7.02 ,"discount": 5.32 }] } -{"id": 150000849, "customerid": 16, "time": "2023-02-13T01:49:20.744Z", "items": [{"productid": 126,"quantity": 1,"unit_price": 12.35 ,"discount": 2.82 }] } -{"id": 150000844, "customerid": 23, "time": "2023-02-13T04:28:38.468Z", "items": [{"productid": 193,"quantity": 1,"unit_price": 31.44 ,"discount": 9.89 }] } -{"id": 150000845, "customerid": 20, "time": "2023-02-13T06:21:49.246Z", "items": [{"productid": 119,"quantity": 2,"unit_price": 6.36 }] } -{"id": 150000835, "customerid": 28, "time": "2023-02-13T07:12:37.831Z", "items": [{"productid": 3,"quantity": 2,"unit_price": 26.39 }] } -{"id": 150000837, "customerid": 14, "time": "2023-02-13T09:59:34.226Z", "items": [{"productid": 6,"quantity": 2,"unit_price": 8.66 ,"discount": 7.53 }] } -{"id": 150000836, "customerid": 8, "time": "2023-02-13T10:38:50.718Z", "items": [{"productid": 107,"quantity": 1,"unit_price": 15.03 },{"productid": 1,"quantity": 2,"unit_price": 6.94 }] } -{"id": 150000850, "customerid": 26, "time": "2023-02-13T11:15:45.959Z", "items": [{"productid": 150,"quantity": 1,"unit_price": 5.92 ,"discount": 0.49 },{"productid": 31,"quantity": 1,"unit_price": 52.53 }] } -{"id": 150000838, "customerid": 26, "time": "2023-02-13T11:34:58.877Z", "items": [{"productid": 21,"quantity": 1,"unit_price": 8.90 ,"discount": 3.83 }] } -{"id": 150000846, "customerid": 11, "time": "2023-02-13T12:28:11.374Z", "items": [{"productid": 59,"quantity": 1,"unit_price": 23.22 },{"productid": 172,"quantity": 1,"unit_price": 12.07 }] } -{"id": 150000843, "customerid": 14, "time": "2023-02-13T12:29:47.657Z", "items": [{"productid": 112,"quantity": 1,"unit_price": 17.31 ,"discount": 3.63 }] } -{"id": 150000853, "customerid": 4, "time": "2023-02-13T15:28:27.467Z", "items": [{"productid": 125,"quantity": 2,"unit_price": 8.93 ,"discount": 2.11 }] } -{"id": 150000840, "customerid": 4, "time": "2023-02-13T17:28:08.881Z", "items": [{"productid": 28,"quantity": 1,"unit_price": 7.10 ,"discount": 2.79 }] } -{"id": 150000851, "customerid": 26, "time": "2023-02-13T18:10:51.253Z", "items": [{"productid": 33,"quantity": 1,"unit_price": 16.69 }] } -{"id": 150000847, "customerid": 6, "time": "2023-02-13T19:57:08.426Z", "items": [{"productid": 134,"quantity": 1,"unit_price": 7.01 ,"discount": 0.63 }] } -{"id": 150000848, "customerid": 1, "time": "2023-02-13T20:11:20.115Z", "items": [{"productid": 58,"quantity": 1,"unit_price": 10.39 }] } -{"id": 150000854, "customerid": 10, "time": "2023-02-13T20:49:49.189Z", "items": [{"productid": 203,"quantity": 2,"unit_price": 6.18 ,"discount": 5.84 },{"productid": 12,"quantity": 1,"unit_price": 7.49 ,"discount": 0.41 }] } -{"id": 150000852, "customerid": 25, "time": "2023-02-13T21:24:59.840Z", "items": [{"productid": 48,"quantity": 1,"unit_price": 5.45 ,"discount": 0.34 }] } -{"id": 150000841, "customerid": 26, "time": "2023-02-13T21:51:38.160Z", "items": [{"productid": 85,"quantity": 1,"unit_price": 34.56 }] } -{"id": 150000856, "customerid": 8, "time": "2023-02-14T00:34:55.929Z", "items": [{"productid": 103,"quantity": 1,"unit_price": 19.72 }] } -{"id": 150000858, "customerid": 6, "time": "2023-02-14T01:11:21.806Z", "items": [{"productid": 145,"quantity": 1,"unit_price": 41.55 ,"discount": 4.74 },{"productid": 146,"quantity": 1,"unit_price": 10.96 }] } -{"id": 150000855, "customerid": 9, "time": "2023-02-14T06:34:29.790Z", "items": [{"productid": 57,"quantity": 1,"unit_price": 6.11 ,"discount": 1.01 }] } -{"id": 150000859, "customerid": 13, "time": "2023-02-14T06:46:56.587Z", "items": [{"productid": 22,"quantity": 1,"unit_price": 19.89 ,"discount": 3.10 }] } -{"id": 150000868, "customerid": 18, "time": "2023-02-14T08:10:02.063Z", "items": [{"productid": 37,"quantity": 1,"unit_price": 12.94 }] } -{"id": 150000863, "customerid": 30, "time": "2023-02-14T08:53:13.155Z", "items": [{"productid": 157,"quantity": 1,"unit_price": 13.61 }] } -{"id": 150000865, "customerid": 15, "time": "2023-02-14T08:53:34.950Z", "items": [{"productid": 14,"quantity": 1,"unit_price": 5.99 ,"discount": 2.58 }] } -{"id": 150000870, "customerid": 2, "time": "2023-02-14T13:33:08.083Z", "items": [{"productid": 195,"quantity": 2,"unit_price": 11.38 },{"productid": 164,"quantity": 1,"unit_price": 18.71 }] } -{"id": 150000866, "customerid": 6, "time": "2023-02-14T13:37:15.531Z", "items": [{"productid": 168,"quantity": 1,"unit_price": 11.15 },{"productid": 45,"quantity": 1,"unit_price": 39.76 ,"discount": 12.52 }] } -{"id": 150000861, "customerid": 14, "time": "2023-02-14T13:52:29.050Z", "items": [{"productid": 12,"quantity": 2,"unit_price": 7.49 },{"productid": 109,"quantity": 2,"unit_price": 10.64 }] } -{"id": 150000869, "customerid": 20, "time": "2023-02-14T13:55:58.147Z", "items": [{"productid": 38,"quantity": 2,"unit_price": 6.74 },{"productid": 145,"quantity": 2,"unit_price": 41.55 }] } -{"id": 150000867, "customerid": 9, "time": "2023-02-14T15:25:10.909Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 },{"productid": 146,"quantity": 3,"unit_price": 10.96 }] } -{"id": 150000860, "customerid": 27, "time": "2023-02-14T18:59:59.480Z", "items": [{"productid": 161,"quantity": 1,"unit_price": 29.88 ,"discount": 2.43 },{"productid": 75,"quantity": 1,"unit_price": 22.06 }] } -{"id": 150000857, "customerid": 22, "time": "2023-02-14T19:50:36.705Z", "items": [{"productid": 102,"quantity": 2,"unit_price": 11.60 }] } -{"id": 150000864, "customerid": 18, "time": "2023-02-14T20:06:12.200Z", "items": [{"productid": 132,"quantity": 1,"unit_price": 10.21 ,"discount": 2.73 }] } -{"id": 150000862, "customerid": 10, "time": "2023-02-14T21:50:31.923Z", "items": [{"productid": 76,"quantity": 1,"unit_price": 49.32 ,"discount": 14.70 }] } -{"id": 150000873, "customerid": 4, "time": "2023-02-14T22:25:01.129Z", "items": [{"productid": 46,"quantity": 2,"unit_price": 6.31 },{"productid": 134,"quantity": 1,"unit_price": 7.01 ,"discount": 2.64 }] } -{"id": 150000881, "customerid": 22, "time": "2023-02-14T22:39:03.112Z", "items": [{"productid": 64,"quantity": 1,"unit_price": 14.18 }] } -{"id": 150000877, "customerid": 30, "time": "2023-02-14T23:46:00.554Z", "items": [{"productid": 76,"quantity": 2,"unit_price": 49.32 }] } -{"id": 150000878, "customerid": 12, "time": "2023-02-15T04:19:25.775Z", "items": [{"productid": 126,"quantity": 1,"unit_price": 12.35 }] } -{"id": 150000888, "customerid": 18, "time": "2023-02-15T06:48:32.652Z", "items": [{"productid": 169,"quantity": 1,"unit_price": 5.23 },{"productid": 142,"quantity": 2,"unit_price": 6.33 }] } -{"id": 150000875, "customerid": 10, "time": "2023-02-15T07:37:11.874Z", "items": [{"productid": 53,"quantity": 1,"unit_price": 12.62 },{"productid": 82,"quantity": 1,"unit_price": 85.96 }] } -{"id": 150000879, "customerid": 29, "time": "2023-02-15T08:04:05.121Z", "items": [{"productid": 42,"quantity": 1,"unit_price": 5.37 }] } -{"id": 150000889, "customerid": 2, "time": "2023-02-15T10:46:53.983Z", "items": [{"productid": 68,"quantity": 2,"unit_price": 7.02 }] } -{"id": 150000882, "customerid": 3, "time": "2023-02-15T11:59:10.483Z", "items": [{"productid": 16,"quantity": 2,"unit_price": 18.64 },{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000886, "customerid": 22, "time": "2023-02-15T12:46:10.434Z", "items": [{"productid": 152,"quantity": 1,"unit_price": 11.28 ,"discount": 5.09 }] } -{"id": 150000872, "customerid": 14, "time": "2023-02-15T15:12:32.858Z", "items": [{"productid": 38,"quantity": 1,"unit_price": 6.74 ,"discount": 2.35 }] } -{"id": 150000871, "customerid": 16, "time": "2023-02-15T15:22:07.575Z", "items": [{"productid": 204,"quantity": 1,"unit_price": 8.20 ,"discount": 1.73 }] } -{"id": 150000874, "customerid": 27, "time": "2023-02-15T15:24:18.429Z", "items": [{"productid": 165,"quantity": 2,"unit_price": 41.83 }] } -{"id": 150000887, "customerid": 4, "time": "2023-02-15T15:56:53.981Z", "items": [{"productid": 30,"quantity": 1,"unit_price": 26.98 ,"discount": 9.54 }] } -{"id": 150000885, "customerid": 14, "time": "2023-02-15T16:46:50.408Z", "items": [{"productid": 134,"quantity": 2,"unit_price": 7.01 }] } -{"id": 150000880, "customerid": 13, "time": "2023-02-15T17:38:29.205Z", "items": [{"productid": 132,"quantity": 2,"unit_price": 10.21 }] } -{"id": 150000876, "customerid": 15, "time": "2023-02-15T19:44:39.642Z", "items": [{"productid": 127,"quantity": 1,"unit_price": 20.99 ,"discount": 10.44 },{"productid": 39,"quantity": 1,"unit_price": 12.38 ,"discount": 1.03 }] } -{"id": 150000883, "customerid": 9, "time": "2023-02-15T20:02:36.449Z", "items": [{"productid": 154,"quantity": 1,"unit_price": 42.85 }] } -{"id": 150000884, "customerid": 15, "time": "2023-02-15T20:46:41.765Z", "items": [{"productid": 137,"quantity": 1,"unit_price": 51.89 }] } -{"id": 150000896, "customerid": 7, "time": "2023-02-15T23:42:27.464Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 },{"productid": 186,"quantity": 1,"unit_price": 9.27 }] } -{"id": 150000890, "customerid": 1, "time": "2023-02-16T01:34:01.722Z", "items": [{"productid": 5,"quantity": 1,"unit_price": 5.43 },{"productid": 144,"quantity": 2,"unit_price": 18.59 }] } -{"id": 150000891, "customerid": 21, "time": "2023-02-16T02:43:33.842Z", "items": [{"productid": 104,"quantity": 1,"unit_price": 44.08 ,"discount": 3.76 }] } -{"id": 150000898, "customerid": 24, "time": "2023-02-16T03:57:18.720Z", "items": [{"productid": 161,"quantity": 1,"unit_price": 29.88 }] } -{"id": 150000893, "customerid": 11, "time": "2023-02-16T09:20:23.341Z", "items": [{"productid": 63,"quantity": 2,"unit_price": 8.34 },{"productid": 81,"quantity": 1,"unit_price": 44.14 }] } -{"id": 150000901, "customerid": 15, "time": "2023-02-16T09:45:17.396Z", "items": [{"productid": 52,"quantity": 2,"unit_price": 40.62 }] } -{"id": 150000894, "customerid": 17, "time": "2023-02-16T13:21:13.133Z", "items": [{"productid": 44,"quantity": 2,"unit_price": 20.42 ,"discount": 20.33 }] } -{"id": 150000892, "customerid": 5, "time": "2023-02-16T13:54:37.946Z", "items": [{"productid": 109,"quantity": 1,"unit_price": 10.64 }] } -{"id": 150000902, "customerid": 14, "time": "2023-02-16T14:04:51.954Z", "items": [{"productid": 15,"quantity": 1,"unit_price": 10.96 ,"discount": 5.07 }] } -{"id": 150000897, "customerid": 28, "time": "2023-02-16T16:55:51.138Z", "items": [{"productid": 54,"quantity": 1,"unit_price": 11.68 }] } -{"id": 150000900, "customerid": 24, "time": "2023-02-16T17:10:38.713Z", "items": [{"productid": 24,"quantity": 1,"unit_price": 5.02 }] } -{"id": 150000895, "customerid": 10, "time": "2023-02-16T18:00:04.826Z", "items": [{"productid": 153,"quantity": 1,"unit_price": 19.17 ,"discount": 5.66 }] } -{"id": 150000899, "customerid": 3, "time": "2023-02-16T21:29:41.853Z", "items": [{"productid": 169,"quantity": 1,"unit_price": 5.23 },{"productid": 49,"quantity": 1,"unit_price": 7.62 ,"discount": 0.57 }] } -{"id": 150000903, "customerid": 21, "time": "2023-02-16T22:26:35.909Z", "items": [{"productid": 14,"quantity": 1,"unit_price": 5.99 }] } -{"id": 150000906, "customerid": 11, "time": "2023-02-17T00:10:34.621Z", "items": [{"productid": 136,"quantity": 1,"unit_price": 26.65 }] } -{"id": 150000905, "customerid": 1, "time": "2023-02-17T02:27:25.627Z", "items": [{"productid": 160,"quantity": 1,"unit_price": 13.37 ,"discount": 1.44 }] } -{"id": 150000904, "customerid": 7, "time": "2023-02-17T09:39:40.298Z", "items": [{"productid": 123,"quantity": 1,"unit_price": 29.75 }] } -{"id": 150000909, "customerid": 9, "time": "2023-02-17T12:41:37.409Z", "items": [{"productid": 112,"quantity": 1,"unit_price": 17.31 ,"discount": 4.86 }] } -{"id": 150000907, "customerid": 15, "time": "2023-02-17T14:17:46.802Z", "items": [{"productid": 176,"quantity": 2,"unit_price": 7.79 }] } -{"id": 150000911, "customerid": 10, "time": "2023-02-17T20:23:14.722Z", "items": [{"productid": 77,"quantity": 1,"unit_price": 96.05 }] } -{"id": 150000908, "customerid": 30, "time": "2023-02-17T20:40:40.924Z", "items": [{"productid": 154,"quantity": 1,"unit_price": 42.85 ,"discount": 3.46 },{"productid": 172,"quantity": 1,"unit_price": 12.07 ,"discount": 3.29 }] } -{"id": 150000910, "customerid": 15, "time": "2023-02-17T21:25:35.099Z", "items": [{"productid": 12,"quantity": 2,"unit_price": 7.49 }] } -{"id": 150000916, "customerid": 6, "time": "2023-02-17T23:54:38.844Z", "items": [{"productid": 188,"quantity": 1,"unit_price": 35.21 ,"discount": 8.77 }] } -{"id": 150000929, "customerid": 30, "time": "2023-02-18T00:11:11.950Z", "items": [{"productid": 72,"quantity": 1,"unit_price": 11.75 },{"productid": 112,"quantity": 2,"unit_price": 17.31 ,"discount": 4.49 }] } -{"id": 150000921, "customerid": 13, "time": "2023-02-18T00:29:25.557Z", "items": [{"productid": 16,"quantity": 1,"unit_price": 18.64 }] } -{"id": 150000912, "customerid": 8, "time": "2023-02-18T01:24:44.892Z", "items": [{"productid": 86,"quantity": 2,"unit_price": 6.10 }] } -{"id": 150000932, "customerid": 7, "time": "2023-02-18T02:21:36.472Z", "items": [{"productid": 137,"quantity": 1,"unit_price": 51.89 },{"productid": 61,"quantity": 1,"unit_price": 19.00 ,"discount": 7.13 }] } -{"id": 150000931, "customerid": 1, "time": "2023-02-18T02:26:44.366Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 }] } -{"id": 150000918, "customerid": 26, "time": "2023-02-18T02:50:52.912Z", "items": [{"productid": 15,"quantity": 2,"unit_price": 10.96 }] } -{"id": 150000928, "customerid": 18, "time": "2023-02-18T04:32:43.181Z", "items": [{"productid": 25,"quantity": 2,"unit_price": 8.54 },{"productid": 7,"quantity": 1,"unit_price": 12.70 }] } -{"id": 150000933, "customerid": 12, "time": "2023-02-18T04:55:24.581Z", "items": [{"productid": 56,"quantity": 1,"unit_price": 5.47 }] } -{"id": 150000940, "customerid": 22, "time": "2023-02-18T05:20:53.884Z", "items": [{"productid": 10,"quantity": 2,"unit_price": 9.53 }] } -{"id": 150000941, "customerid": 26, "time": "2023-02-18T05:26:57.327Z", "items": [{"productid": 185,"quantity": 2,"unit_price": 7.89 ,"discount": 2.40 }] } -{"id": 150000926, "customerid": 21, "time": "2023-02-18T05:53:42.209Z", "items": [{"productid": 6,"quantity": 1,"unit_price": 8.66 }] } -{"id": 150000920, "customerid": 11, "time": "2023-02-18T06:35:06.301Z", "items": [{"productid": 96,"quantity": 2,"unit_price": 8.52 }] } -{"id": 150000935, "customerid": 8, "time": "2023-02-18T06:55:27.967Z", "items": [{"productid": 102,"quantity": 1,"unit_price": 11.60 }] } -{"id": 150000943, "customerid": 7, "time": "2023-02-18T07:19:12.455Z", "items": [{"productid": 187,"quantity": 1,"unit_price": 15.75 ,"discount": 5.90 }] } -{"id": 150000919, "customerid": 18, "time": "2023-02-18T10:16:51.576Z", "items": [{"productid": 176,"quantity": 1,"unit_price": 7.79 }] } -{"id": 150000914, "customerid": 12, "time": "2023-02-18T10:35:20.518Z", "items": [{"productid": 186,"quantity": 1,"unit_price": 9.27 ,"discount": 0.95 }] } -{"id": 150000936, "customerid": 13, "time": "2023-02-18T11:22:30.252Z", "items": [{"productid": 90,"quantity": 1,"unit_price": 7.94 }] } -{"id": 150000939, "customerid": 16, "time": "2023-02-18T11:56:49.593Z", "items": [{"productid": 88,"quantity": 1,"unit_price": 11.12 },{"productid": 10,"quantity": 1,"unit_price": 9.53 }] } -{"id": 150000927, "customerid": 22, "time": "2023-02-18T12:30:20.259Z", "items": [{"productid": 47,"quantity": 2,"unit_price": 12.30 },{"productid": 22,"quantity": 2,"unit_price": 19.89 }] } -{"id": 150000922, "customerid": 17, "time": "2023-02-18T13:05:47.413Z", "items": [{"productid": 30,"quantity": 2,"unit_price": 26.98 ,"discount": 25.84 },{"productid": 112,"quantity": 2,"unit_price": 17.31 },{"productid": 22,"quantity": 3,"unit_price": 19.89 ,"discount": 19.59 }] } -{"id": 150000930, "customerid": 9, "time": "2023-02-18T13:54:32.753Z", "items": [{"productid": 104,"quantity": 2,"unit_price": 44.08 }] } -{"id": 150000915, "customerid": 13, "time": "2023-02-18T14:04:32.708Z", "items": [{"productid": 71,"quantity": 1,"unit_price": 11.90 }] } -{"id": 150000913, "customerid": 22, "time": "2023-02-18T15:07:24.131Z", "items": [{"productid": 43,"quantity": 1,"unit_price": 9.13 ,"discount": 4.10 }] } -{"id": 150000923, "customerid": 6, "time": "2023-02-18T15:36:58.379Z", "items": [{"productid": 96,"quantity": 1,"unit_price": 8.52 }] } -{"id": 150000937, "customerid": 6, "time": "2023-02-18T16:18:21.957Z", "items": [{"productid": 38,"quantity": 2,"unit_price": 6.74 }] } -{"id": 150000925, "customerid": 29, "time": "2023-02-18T17:54:18.292Z", "items": [{"productid": 60,"quantity": 1,"unit_price": 11.18 ,"discount": 3.96 }] } -{"id": 150000938, "customerid": 6, "time": "2023-02-18T18:18:10.368Z", "items": [{"productid": 94,"quantity": 1,"unit_price": 5.03 ,"discount": 1.60 },{"productid": 96,"quantity": 2,"unit_price": 8.52 }] } -{"id": 150000924, "customerid": 10, "time": "2023-02-18T18:50:06.253Z", "items": [{"productid": 143,"quantity": 2,"unit_price": 10.93 }] } -{"id": 150000942, "customerid": 7, "time": "2023-02-18T18:59:43.296Z", "items": [{"productid": 149,"quantity": 2,"unit_price": 46.38 }] } -{"id": 150000934, "customerid": 20, "time": "2023-02-18T19:43:34.860Z", "items": [{"productid": 178,"quantity": 1,"unit_price": 6.11 }] } -{"id": 150000917, "customerid": 11, "time": "2023-02-18T21:44:42.325Z", "items": [{"productid": 139,"quantity": 1,"unit_price": 11.56 }] } -{"id": 150000950, "customerid": 20, "time": "2023-02-18T22:23:14.365Z", "items": [{"productid": 194,"quantity": 1,"unit_price": 6.77 },{"productid": 207,"quantity": 1,"unit_price": 17.50 }] } -{"id": 150000957, "customerid": 7, "time": "2023-02-18T23:10:02.054Z", "items": [{"productid": 13,"quantity": 1,"unit_price": 9.69 }] } -{"id": 150000953, "customerid": 2, "time": "2023-02-18T23:53:35.015Z", "items": [{"productid": 74,"quantity": 3,"unit_price": 12.98 ,"discount": 13.39 }] } -{"id": 150000961, "customerid": 25, "time": "2023-02-19T00:16:28.994Z", "items": [{"productid": 122,"quantity": 1,"unit_price": 13.31 ,"discount": 2.13 }] } -{"id": 150000959, "customerid": 23, "time": "2023-02-19T01:19:10.034Z", "items": [{"productid": 176,"quantity": 1,"unit_price": 7.79 }] } -{"id": 150000956, "customerid": 28, "time": "2023-02-19T03:28:47.250Z", "items": [{"productid": 2,"quantity": 2,"unit_price": 11.81 }] } -{"id": 150000945, "customerid": 17, "time": "2023-02-19T03:51:05.893Z", "items": [{"productid": 46,"quantity": 1,"unit_price": 6.31 ,"discount": 1.79 }] } -{"id": 150000955, "customerid": 12, "time": "2023-02-19T05:57:24.938Z", "items": [{"productid": 94,"quantity": 1,"unit_price": 5.03 }] } -{"id": 150000951, "customerid": 7, "time": "2023-02-19T07:37:58.316Z", "items": [{"productid": 39,"quantity": 2,"unit_price": 12.38 ,"discount": 9.83 }] } -{"id": 150000944, "customerid": 4, "time": "2023-02-19T09:33:58.540Z", "items": [{"productid": 97,"quantity": 1,"unit_price": 14.48 }] } -{"id": 150000949, "customerid": 26, "time": "2023-02-19T09:55:37.450Z", "items": [{"productid": 125,"quantity": 1,"unit_price": 8.93 }] } -{"id": 150000946, "customerid": 16, "time": "2023-02-19T10:30:58.318Z", "items": [{"productid": 114,"quantity": 1,"unit_price": 8.22 }] } -{"id": 150000947, "customerid": 15, "time": "2023-02-19T17:02:53.918Z", "items": [{"productid": 99,"quantity": 1,"unit_price": 9.21 }] } -{"id": 150000952, "customerid": 25, "time": "2023-02-19T18:21:54.474Z", "items": [{"productid": 41,"quantity": 1,"unit_price": 5.31 ,"discount": 0.62 },{"productid": 183,"quantity": 2,"unit_price": 11.46 ,"discount": 9.12 }] } -{"id": 150000948, "customerid": 22, "time": "2023-02-19T18:52:21.026Z", "items": [{"productid": 111,"quantity": 1,"unit_price": 10.18 ,"discount": 1.13 }] } -{"id": 150000958, "customerid": 6, "time": "2023-02-19T20:50:24.253Z", "items": [{"productid": 97,"quantity": 2,"unit_price": 14.48 ,"discount": 4.80 }] } -{"id": 150000960, "customerid": 21, "time": "2023-02-19T20:57:08.559Z", "items": [{"productid": 167,"quantity": 1,"unit_price": 6.56 }] } -{"id": 150000954, "customerid": 11, "time": "2023-02-19T21:47:44.879Z", "items": [{"productid": 59,"quantity": 1,"unit_price": 23.22 }] } -{"id": 150000977, "customerid": 28, "time": "2023-02-19T22:18:43.357Z", "items": [{"productid": 119,"quantity": 2,"unit_price": 6.36 },{"productid": 136,"quantity": 1,"unit_price": 26.65 }] } -{"id": 150000971, "customerid": 27, "time": "2023-02-20T00:15:50.514Z", "items": [{"productid": 42,"quantity": 1,"unit_price": 5.37 }] } -{"id": 150000972, "customerid": 21, "time": "2023-02-20T02:02:27.119Z", "items": [{"productid": 126,"quantity": 1,"unit_price": 12.35 ,"discount": 1.10 },{"productid": 111,"quantity": 1,"unit_price": 10.18 }] } -{"id": 150000962, "customerid": 18, "time": "2023-02-20T02:41:13.057Z", "items": [{"productid": 190,"quantity": 1,"unit_price": 9.81 },{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000966, "customerid": 25, "time": "2023-02-20T03:52:29.979Z", "items": [{"productid": 164,"quantity": 1,"unit_price": 18.71 }] } -{"id": 150000974, "customerid": 30, "time": "2023-02-20T05:44:53.592Z", "items": [{"productid": 117,"quantity": 1,"unit_price": 35.05 ,"discount": 9.66 }] } -{"id": 150000983, "customerid": 2, "time": "2023-02-20T06:25:15.669Z", "items": [{"productid": 36,"quantity": 2,"unit_price": 7.61 }] } -{"id": 150000976, "customerid": 20, "time": "2023-02-20T07:07:40.256Z", "items": [{"productid": 130,"quantity": 2,"unit_price": 10.02 ,"discount": 5.93 }] } -{"id": 150000981, "customerid": 24, "time": "2023-02-20T07:08:42.304Z", "items": [{"productid": 66,"quantity": 3,"unit_price": 5.62 }] } -{"id": 150000973, "customerid": 12, "time": "2023-02-20T07:47:18.741Z", "items": [{"productid": 50,"quantity": 2,"unit_price": 10.69 ,"discount": 3.01 },{"productid": 187,"quantity": 3,"unit_price": 15.75 ,"discount": 11.20 },{"productid": 31,"quantity": 2,"unit_price": 52.53 ,"discount": 44.81 }] } -{"id": 150000967, "customerid": 2, "time": "2023-02-20T08:03:23.863Z", "items": [{"productid": 53,"quantity": 2,"unit_price": 12.62 ,"discount": 11.19 }] } -{"id": 150000970, "customerid": 13, "time": "2023-02-20T10:21:47.505Z", "items": [{"productid": 153,"quantity": 2,"unit_price": 19.17 ,"discount": 14.89 }] } -{"id": 150000965, "customerid": 28, "time": "2023-02-20T10:34:04.313Z", "items": [{"productid": 106,"quantity": 1,"unit_price": 8.84 }] } -{"id": 150000968, "customerid": 18, "time": "2023-02-20T11:01:57.390Z", "items": [{"productid": 98,"quantity": 2,"unit_price": 32.37 ,"discount": 28.24 },{"productid": 144,"quantity": 2,"unit_price": 18.59 }] } -{"id": 150000969, "customerid": 14, "time": "2023-02-20T13:10:14.902Z", "items": [{"productid": 198,"quantity": 2,"unit_price": 6.75 ,"discount": 3.45 }] } -{"id": 150000982, "customerid": 9, "time": "2023-02-20T13:19:24.708Z", "items": [{"productid": 204,"quantity": 4,"unit_price": 8.20 }] } -{"id": 150000975, "customerid": 16, "time": "2023-02-20T14:12:21.342Z", "items": [{"productid": 53,"quantity": 1,"unit_price": 12.62 }] } -{"id": 150000985, "customerid": 4, "time": "2023-02-20T15:34:15.614Z", "items": [{"productid": 145,"quantity": 1,"unit_price": 41.55 }] } -{"id": 150000963, "customerid": 24, "time": "2023-02-20T15:56:38.294Z", "items": [{"productid": 94,"quantity": 1,"unit_price": 5.03 ,"discount": 0.38 }] } -{"id": 150000979, "customerid": 27, "time": "2023-02-20T18:21:35.740Z", "items": [{"productid": 15,"quantity": 2,"unit_price": 10.96 ,"discount": 3.52 }] } -{"id": 150000984, "customerid": 15, "time": "2023-02-20T19:41:33.003Z", "items": [{"productid": 83,"quantity": 2,"unit_price": 9.09 ,"discount": 1.99 }] } -{"id": 150000978, "customerid": 11, "time": "2023-02-20T20:14:47.478Z", "items": [{"productid": 144,"quantity": 1,"unit_price": 18.59 }] } -{"id": 150000964, "customerid": 7, "time": "2023-02-20T20:20:20.232Z", "items": [{"productid": 124,"quantity": 3,"unit_price": 57.94 }] } -{"id": 150000980, "customerid": 30, "time": "2023-02-20T20:30:19.956Z", "items": [{"productid": 59,"quantity": 1,"unit_price": 23.22 }] } -{"id": 150001012, "customerid": 6, "time": "2023-02-20T22:36:14.181Z", "items": [{"productid": 174,"quantity": 2,"unit_price": 10.71 ,"discount": 2.84 }] } -{"id": 150001000, "customerid": 14, "time": "2023-02-20T22:58:10.903Z", "items": [{"productid": 120,"quantity": 1,"unit_price": 10.88 ,"discount": 3.41 },{"productid": 56,"quantity": 2,"unit_price": 5.47 ,"discount": 4.96 }] } -{"id": 150001014, "customerid": 9, "time": "2023-02-21T00:07:37.990Z", "items": [{"productid": 54,"quantity": 1,"unit_price": 11.68 }] } -{"id": 150001007, "customerid": 11, "time": "2023-02-21T00:57:12.956Z", "items": [{"productid": 56,"quantity": 1,"unit_price": 5.47 }] } -{"id": 150000999, "customerid": 11, "time": "2023-02-21T02:15:06.285Z", "items": [{"productid": 99,"quantity": 2,"unit_price": 9.21 ,"discount": 6.93 }] } -{"id": 150000995, "customerid": 10, "time": "2023-02-21T03:08:13.004Z", "items": [{"productid": 83,"quantity": 1,"unit_price": 9.09 }] } -{"id": 150001004, "customerid": 19, "time": "2023-02-21T03:53:28.781Z", "items": [{"productid": 105,"quantity": 1,"unit_price": 10.44 ,"discount": 5.08 },{"productid": 149,"quantity": 2,"unit_price": 46.38 ,"discount": 39.31 }] } -{"id": 150000988, "customerid": 5, "time": "2023-02-21T04:23:13.842Z", "items": [{"productid": 142,"quantity": 1,"unit_price": 6.33 }] } -{"id": 150000987, "customerid": 7, "time": "2023-02-21T04:57:09.459Z", "items": [{"productid": 120,"quantity": 2,"unit_price": 10.88 },{"productid": 96,"quantity": 1,"unit_price": 8.52 }] } -{"id": 150000998, "customerid": 15, "time": "2023-02-21T04:59:46.090Z", "items": [{"productid": 52,"quantity": 2,"unit_price": 40.62 },{"productid": 76,"quantity": 2,"unit_price": 49.32 }] } -{"id": 150001005, "customerid": 20, "time": "2023-02-21T05:38:52.210Z", "items": [{"productid": 61,"quantity": 1,"unit_price": 19.00 }] } -{"id": 150001011, "customerid": 23, "time": "2023-02-21T06:22:33.560Z", "items": [{"productid": 116,"quantity": 1,"unit_price": 15.68 },{"productid": 93,"quantity": 1,"unit_price": 58.77 ,"discount": 15.97 }] } -{"id": 150001013, "customerid": 6, "time": "2023-02-21T06:50:10.893Z", "items": [{"productid": 37,"quantity": 2,"unit_price": 12.94 ,"discount": 8.43 }] } -{"id": 150000994, "customerid": 18, "time": "2023-02-21T06:50:51.285Z", "items": [{"productid": 88,"quantity": 1,"unit_price": 11.12 ,"discount": 3.74 }] } -{"id": 150000990, "customerid": 17, "time": "2023-02-21T08:08:29.539Z", "items": [{"productid": 11,"quantity": 1,"unit_price": 12.08 ,"discount": 0.62 },{"productid": 60,"quantity": 1,"unit_price": 11.18 ,"discount": 4.21 },{"productid": 28,"quantity": 1,"unit_price": 7.10 ,"discount": 1.01 }] } -{"id": 150001010, "customerid": 1, "time": "2023-02-21T10:06:30.605Z", "items": [{"productid": 17,"quantity": 1,"unit_price": 5.08 ,"discount": 1.69 }] } -{"id": 150000997, "customerid": 8, "time": "2023-02-21T10:59:26.776Z", "items": [{"productid": 124,"quantity": 1,"unit_price": 57.94 }] } -{"id": 150000996, "customerid": 6, "time": "2023-02-21T11:26:39.038Z", "items": [{"productid": 23,"quantity": 2,"unit_price": 8.87 ,"discount": 2.68 },{"productid": 99,"quantity": 1,"unit_price": 9.21 ,"discount": 4.09 }] } -{"id": 150001001, "customerid": 24, "time": "2023-02-21T12:48:18.232Z", "items": [{"productid": 5,"quantity": 1,"unit_price": 5.43 },{"productid": 45,"quantity": 1,"unit_price": 39.76 }] } -{"id": 150000991, "customerid": 1, "time": "2023-02-21T13:42:06.048Z", "items": [{"productid": 124,"quantity": 2,"unit_price": 57.94 }] } -{"id": 150001002, "customerid": 11, "time": "2023-02-21T14:11:02.114Z", "items": [{"productid": 137,"quantity": 1,"unit_price": 51.89 }] } -{"id": 150001006, "customerid": 15, "time": "2023-02-21T14:26:24.580Z", "items": [{"productid": 16,"quantity": 2,"unit_price": 18.64 },{"productid": 185,"quantity": 2,"unit_price": 7.89 ,"discount": 4.93 }] } -{"id": 150000992, "customerid": 26, "time": "2023-02-21T14:55:43.939Z", "items": [{"productid": 18,"quantity": 3,"unit_price": 10.01 ,"discount": 4.95 }] } -{"id": 150001009, "customerid": 6, "time": "2023-02-21T16:05:09.215Z", "items": [{"productid": 67,"quantity": 1,"unit_price": 8.28 }] } -{"id": 150000993, "customerid": 6, "time": "2023-02-21T16:34:29.767Z", "items": [{"productid": 204,"quantity": 1,"unit_price": 8.20 },{"productid": 206,"quantity": 1,"unit_price": 10.29 }] } -{"id": 150001008, "customerid": 19, "time": "2023-02-21T17:07:18.370Z", "items": [{"productid": 24,"quantity": 1,"unit_price": 5.02 }] } -{"id": 150000986, "customerid": 16, "time": "2023-02-21T18:43:09.852Z", "items": [{"productid": 16,"quantity": 1,"unit_price": 18.64 },{"productid": 189,"quantity": 2,"unit_price": 5.75 },{"productid": 55,"quantity": 1,"unit_price": 12.22 }] } -{"id": 150000989, "customerid": 8, "time": "2023-02-21T20:09:57.516Z", "items": [{"productid": 163,"quantity": 1,"unit_price": 11.01 }] } -{"id": 150001003, "customerid": 19, "time": "2023-02-21T20:21:33.575Z", "items": [{"productid": 143,"quantity": 1,"unit_price": 10.93 }] } diff --git a/retail-customer360-nutshop/nutshop-data/orderitems.schema.yml b/retail-customer360-nutshop/nutshop-data/orderitems.schema.yml deleted file mode 100644 index 6398bc91..00000000 --- a/retail-customer360-nutshop/nutshop-data/orderitems.schema.yml +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: "orders" -schema_version: "1" -partial_schema: false -columns: -- name: "id" - type: "BIGINT" - tests: - - "not_null" -- name: "customerid" - type: "BIGINT" - tests: - - "not_null" -- name: "time" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "items" - columns: - - name: "productid" - type: "BIGINT" - tests: - - "not_null" - - name: "quantity" - type: "BIGINT" - tests: - - "not_null" - - name: "unit_price" - type: "DOUBLE" - tests: - - "not_null" - - name: "discount" - type: "DOUBLE" - tests: - - "not_null" diff --git a/retail-customer360-nutshop/nutshop-data/orderitems.table.json b/retail-customer360-nutshop/nutshop-data/orderitems.table.json deleted file mode 100644 index b2d8eb88..00000000 --- a/retail-customer360-nutshop/nutshop-data/orderitems.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/orderitems.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["id", "time"], - "timestamp" : "time", - "watermark-millis" : "1" - } -} \ No newline at end of file diff --git a/retail-customer360-nutshop/nutshop-data/orders.jsonl b/retail-customer360-nutshop/nutshop-data/orders.jsonl deleted file mode 100644 index abaa46dc..00000000 --- a/retail-customer360-nutshop/nutshop-data/orders.jsonl +++ /dev/null @@ -1,1014 +0,0 @@ -{"id": 150000011, "customerid": 11, "time": "2023-01-02T22:22:58.525Z", "productid": 115, "quantity": 1, "unit_price": 9.22} -{"id": 150000005, "customerid": 6, "time": "2023-01-02T22:23:51.868Z", "productid": 113, "quantity": 1, "unit_price": 38.7, "discount": 7.75} -{"id": 150000013, "customerid": 28, "time": "2023-01-02T22:50:58.838Z", "productid": 18, "quantity": 1, "unit_price": 10.01, "discount": 4.81} -{"id": 150000022, "customerid": 12, "time": "2023-01-02T23:18:17.934Z", "productid": 59, "quantity": 1, "unit_price": 23.22, "discount": 9.4} -{"id": 150000015, "customerid": 4, "time": "2023-01-02T23:54:28.476Z", "productid": 101, "quantity": 1, "unit_price": 35.01} -{"id": 150000021, "customerid": 13, "time": "2023-01-03T00:35:12.294Z", "productid": 57, "quantity": 1, "unit_price": 6.11, "discount": 2.02} -{"id": 150000008, "customerid": 30, "time": "2023-01-03T02:26:52.748Z", "productid": 155, "quantity": 1, "unit_price": 83.44, "discount": 38.52} -{"id": 150000014, "customerid": 3, "time": "2023-01-03T02:53:02.123Z", "productid": 62, "quantity": 1, "unit_price": 42.47, "discount": 9.41} -{"id": 150000023, "customerid": 18, "time": "2023-01-03T04:54:43.118Z", "productid": 110, "quantity": 1, "unit_price": 5.64, "discount": 2.62} -{"id": 150000009, "customerid": 10, "time": "2023-01-03T05:05:36.956Z", "productid": 177, "quantity": 1, "unit_price": 8.7} -{"id": 150000020, "customerid": 30, "time": "2023-01-03T06:58:03.038Z", "productid": 180, "quantity": 1, "unit_price": 23.2, "discount": 4.38} -{"id": 150000003, "customerid": 26, "time": "2023-01-03T07:41:33.092Z", "productid": 141, "quantity": 1, "unit_price": 6.36} -{"id": 150000006, "customerid": 29, "time": "2023-01-03T07:58:05.708Z", "productid": 87, "quantity": 2, "unit_price": 12.05} -{"id": 150000004, "customerid": 26, "time": "2023-01-03T09:22:20.364Z", "productid": 174, "quantity": 1, "unit_price": 10.71} -{"id": 150000017, "customerid": 10, "time": "2023-01-03T11:21:07.625Z", "productid": 93, "quantity": 3, "unit_price": 58.77} -{"id": 150000012, "customerid": 13, "time": "2023-01-03T11:46:45.221Z", "productid": 207, "quantity": 2, "unit_price": 17.5} -{"id": 150000002, "customerid": 4, "time": "2023-01-03T11:59:39.659Z", "productid": 9, "quantity": 1, "unit_price": 15.41, "discount": 3.06} -{"id": 150000001, "customerid": 13, "time": "2023-01-03T13:08:50.269Z", "productid": 140, "quantity": 2, "unit_price": 25.83, "discount": 15.32} -{"id": 150000019, "customerid": 21, "time": "2023-01-03T14:23:57.743Z", "productid": 177, "quantity": 2, "unit_price": 8.7} -{"id": 150000010, "customerid": 10, "time": "2023-01-03T15:14:26.207Z", "productid": 150, "quantity": 2, "unit_price": 5.92} -{"id": 150000016, "customerid": 23, "time": "2023-01-03T15:48:34.469Z", "productid": 121, "quantity": 1, "unit_price": 7.83} -{"id": 150000007, "customerid": 5, "time": "2023-01-03T18:20:52.045Z", "productid": 168, "quantity": 1, "unit_price": 11.15, "discount": 0.7} -{"id": 150000024, "customerid": 14, "time": "2023-01-03T20:10:50.725Z", "productid": 21, "quantity": 1, "unit_price": 8.9} -{"id": 150000018, "customerid": 14, "time": "2023-01-03T20:14:48.817Z", "productid": 68, "quantity": 1, "unit_price": 7.02, "discount": 0.69} -{"id": 150000025, "customerid": 24, "time": "2023-01-03T21:32:30.798Z", "productid": 204, "quantity": 1, "unit_price": 8.2} -{"id": 150000031, "customerid": 23, "time": "2023-01-03T22:28:51.549Z", "productid": 83, "quantity": 1, "unit_price": 9.09} -{"id": 150000040, "customerid": 11, "time": "2023-01-04T04:12:08.182Z", "productid": 36, "quantity": 2, "unit_price": 7.61, "discount": 5.45} -{"id": 150000036, "customerid": 2, "time": "2023-01-04T04:26:41.425Z", "productid": 41, "quantity": 2, "unit_price": 5.31} -{"id": 150000034, "customerid": 4, "time": "2023-01-04T07:20:33.197Z", "productid": 133, "quantity": 1, "unit_price": 8.38} -{"id": 150000037, "customerid": 24, "time": "2023-01-04T10:12:36.113Z", "productid": 4, "quantity": 1, "unit_price": 8.01, "discount": 1.56} -{"id": 150000033, "customerid": 15, "time": "2023-01-04T10:40:11.932Z", "productid": 98, "quantity": 3, "unit_price": 32.37} -{"id": 150000027, "customerid": 28, "time": "2023-01-04T11:06:16.563Z", "productid": 113, "quantity": 1, "unit_price": 38.7, "discount": 4.58} -{"id": 150000026, "customerid": 15, "time": "2023-01-04T11:21:54.177Z", "productid": 78, "quantity": 1, "unit_price": 6.29, "discount": 1.56} -{"id": 150000032, "customerid": 24, "time": "2023-01-04T14:03:23.122Z", "productid": 177, "quantity": 1, "unit_price": 8.7} -{"id": 150000035, "customerid": 26, "time": "2023-01-04T15:38:24.454Z", "productid": 173, "quantity": 1, "unit_price": 20.52, "discount": 7.4} -{"id": 150000039, "customerid": 19, "time": "2023-01-04T16:15:15.669Z", "productid": 190, "quantity": 1, "unit_price": 9.81} -{"id": 150000038, "customerid": 17, "time": "2023-01-04T17:56:18.071Z", "productid": 2, "quantity": 1, "unit_price": 11.81} -{"id": 150000030, "customerid": 19, "time": "2023-01-04T18:09:41.515Z", "productid": 183, "quantity": 1, "unit_price": 11.46, "discount": 3.04} -{"id": 150000028, "customerid": 18, "time": "2023-01-04T18:53:50.879Z", "productid": 52, "quantity": 1, "unit_price": 40.62, "discount": 18.12} -{"id": 150000029, "customerid": 26, "time": "2023-01-04T20:26:36.325Z", "productid": 172, "quantity": 1, "unit_price": 12.07, "discount": 0.9} -{"id": 150000041, "customerid": 15, "time": "2023-01-04T21:18:19.266Z", "productid": 95, "quantity": 1, "unit_price": 8.15} -{"id": 150000074, "customerid": 8, "time": "2023-01-05T00:02:10.896Z", "productid": 135, "quantity": 1, "unit_price": 11.92, "discount": 0.87} -{"id": 150000044, "customerid": 13, "time": "2023-01-05T00:31:55.921Z", "productid": 48, "quantity": 1, "unit_price": 5.45} -{"id": 150000042, "customerid": 1, "time": "2023-01-05T01:26:16.193Z", "productid": 77, "quantity": 2, "unit_price": 96.05} -{"id": 150000072, "customerid": 11, "time": "2023-01-05T01:56:31.346Z", "productid": 6, "quantity": 1, "unit_price": 8.66, "discount": 1.02} -{"id": 150000050, "customerid": 1, "time": "2023-01-05T02:32:30.549Z", "productid": 122, "quantity": 1, "unit_price": 13.31} -{"id": 150000056, "customerid": 1, "time": "2023-01-05T04:40:50.570Z", "productid": 16, "quantity": 1, "unit_price": 18.64, "discount": 8.51} -{"id": 150000059, "customerid": 7, "time": "2023-01-05T05:05:15.045Z", "productid": 204, "quantity": 2, "unit_price": 8.2} -{"id": 150000043, "customerid": 13, "time": "2023-01-05T05:20:21.632Z", "productid": 46, "quantity": 2, "unit_price": 6.31} -{"id": 150000051, "customerid": 24, "time": "2023-01-05T05:42:42.371Z", "productid": 55, "quantity": 2, "unit_price": 12.22} -{"id": 150000073, "customerid": 20, "time": "2023-01-05T06:16:58.486Z", "productid": 47, "quantity": 3, "unit_price": 12.3} -{"id": 150000064, "customerid": 23, "time": "2023-01-05T06:51:14.244Z", "productid": 47, "quantity": 1, "unit_price": 12.3, "discount": 2.13} -{"id": 150000067, "customerid": 1, "time": "2023-01-05T07:22:48.807Z", "productid": 107, "quantity": 1, "unit_price": 15.03, "discount": 0.82} -{"id": 150000058, "customerid": 29, "time": "2023-01-05T08:07:13.497Z", "productid": 142, "quantity": 1, "unit_price": 6.33} -{"id": 150000054, "customerid": 9, "time": "2023-01-05T08:12:55.706Z", "productid": 166, "quantity": 1, "unit_price": 6.59, "discount": 1.44} -{"id": 150000069, "customerid": 20, "time": "2023-01-05T08:21:37.768Z", "productid": 75, "quantity": 1, "unit_price": 22.06, "discount": 4.38} -{"id": 150000046, "customerid": 8, "time": "2023-01-05T09:23:08.208Z", "productid": 34, "quantity": 2, "unit_price": 37.32} -{"id": 150000053, "customerid": 23, "time": "2023-01-05T09:24:31.781Z", "productid": 111, "quantity": 1, "unit_price": 10.18} -{"id": 150000068, "customerid": 26, "time": "2023-01-05T09:51:34.081Z", "productid": 183, "quantity": 2, "unit_price": 11.46} -{"id": 150000055, "customerid": 7, "time": "2023-01-05T10:44:44.346Z", "productid": 72, "quantity": 1, "unit_price": 11.75} -{"id": 150000071, "customerid": 26, "time": "2023-01-05T11:23:00.082Z", "productid": 73, "quantity": 1, "unit_price": 7.94, "discount": 3.16} -{"id": 150000052, "customerid": 4, "time": "2023-01-05T12:15:06.782Z", "productid": 161, "quantity": 1, "unit_price": 29.88} -{"id": 150000049, "customerid": 1, "time": "2023-01-05T12:18:46.190Z", "productid": 82, "quantity": 2, "unit_price": 85.96, "discount": 10.26} -{"id": 150000045, "customerid": 25, "time": "2023-01-05T14:19:00.016Z", "productid": 65, "quantity": 1, "unit_price": 10.28} -{"id": 150000065, "customerid": 2, "time": "2023-01-05T15:04:52.759Z", "productid": 27, "quantity": 1, "unit_price": 5.49} -{"id": 150000057, "customerid": 29, "time": "2023-01-05T15:26:40.066Z", "productid": 32, "quantity": 2, "unit_price": 9.82, "discount": 9.69} -{"id": 150000047, "customerid": 6, "time": "2023-01-05T15:30:38.213Z", "productid": 107, "quantity": 1, "unit_price": 15.03} -{"id": 150000066, "customerid": 7, "time": "2023-01-05T16:14:39.450Z", "productid": 9, "quantity": 1, "unit_price": 15.41} -{"id": 150000063, "customerid": 9, "time": "2023-01-05T17:13:37.414Z", "productid": 88, "quantity": 1, "unit_price": 11.12, "discount": 5.15} -{"id": 150000048, "customerid": 14, "time": "2023-01-05T17:36:55.571Z", "productid": 15, "quantity": 1, "unit_price": 10.96} -{"id": 150000062, "customerid": 21, "time": "2023-01-05T19:11:41.315Z", "productid": 52, "quantity": 1, "unit_price": 40.62, "discount": 19.49} -{"id": 150000060, "customerid": 25, "time": "2023-01-05T20:20:48.482Z", "productid": 110, "quantity": 1, "unit_price": 5.64} -{"id": 150000070, "customerid": 11, "time": "2023-01-05T22:03:18.458Z", "productid": 95, "quantity": 1, "unit_price": 8.15} -{"id": 150000061, "customerid": 22, "time": "2023-01-05T22:04:38.919Z", "productid": 24, "quantity": 1, "unit_price": 5.02, "discount": 0.92} -{"id": 150000076, "customerid": 11, "time": "2023-01-05T22:16:22.567Z", "productid": 54, "quantity": 1, "unit_price": 11.68, "discount": 3.99} -{"id": 150000078, "customerid": 14, "time": "2023-01-05T22:17:24.659Z", "productid": 198, "quantity": 2, "unit_price": 6.75, "discount": 1.82} -{"id": 150000111, "customerid": 8, "time": "2023-01-05T22:22:43.846Z", "productid": 61, "quantity": 2, "unit_price": 19.0, "discount": 6.28} -{"id": 150000103, "customerid": 8, "time": "2023-01-05T22:47:10.030Z", "productid": 181, "quantity": 1, "unit_price": 45.19, "discount": 9.42} -{"id": 150000100, "customerid": 6, "time": "2023-01-05T23:17:06.630Z", "productid": 14, "quantity": 3, "unit_price": 5.99, "discount": 6.83} -{"id": 150000094, "customerid": 27, "time": "2023-01-05T23:45:55.521Z", "productid": 100, "quantity": 3, "unit_price": 15.66, "discount": 14.15} -{"id": 150000098, "customerid": 25, "time": "2023-01-06T00:15:07.838Z", "productid": 140, "quantity": 1, "unit_price": 25.83} -{"id": 150000092, "customerid": 28, "time": "2023-01-06T01:42:23.166Z", "productid": 43, "quantity": 1, "unit_price": 9.13, "discount": 0.98} -{"id": 150000089, "customerid": 27, "time": "2023-01-06T01:51:42.840Z", "productid": 66, "quantity": 2, "unit_price": 5.62, "discount": 5.07} -{"id": 150000108, "customerid": 6, "time": "2023-01-06T02:52:19.754Z", "productid": 154, "quantity": 1, "unit_price": 42.85} -{"id": 150000096, "customerid": 30, "time": "2023-01-06T03:20:58.856Z", "productid": 204, "quantity": 1, "unit_price": 8.2, "discount": 3.62} -{"id": 150000107, "customerid": 30, "time": "2023-01-06T04:17:12.038Z", "productid": 113, "quantity": 1, "unit_price": 38.7} -{"id": 150000077, "customerid": 19, "time": "2023-01-06T05:06:18.067Z", "productid": 176, "quantity": 1, "unit_price": 7.79} -{"id": 150000093, "customerid": 6, "time": "2023-01-06T06:08:45.972Z", "productid": 41, "quantity": 1, "unit_price": 5.31} -{"id": 150000105, "customerid": 22, "time": "2023-01-06T06:11:34.932Z", "productid": 168, "quantity": 1, "unit_price": 11.15, "discount": 1.55} -{"id": 150000075, "customerid": 16, "time": "2023-01-06T06:13:21.949Z", "productid": 164, "quantity": 2, "unit_price": 18.71} -{"id": 150000081, "customerid": 26, "time": "2023-01-06T07:32:57.429Z", "productid": 31, "quantity": 1, "unit_price": 52.53, "discount": 4.63} -{"id": 150000090, "customerid": 22, "time": "2023-01-06T08:23:24.617Z", "productid": 29, "quantity": 2, "unit_price": 12.07} -{"id": 150000104, "customerid": 20, "time": "2023-01-06T08:29:05.870Z", "productid": 141, "quantity": 1, "unit_price": 6.36} -{"id": 150000085, "customerid": 8, "time": "2023-01-06T09:05:52.720Z", "productid": 57, "quantity": 1, "unit_price": 6.11} -{"id": 150000112, "customerid": 27, "time": "2023-01-06T10:10:24.485Z", "productid": 127, "quantity": 3, "unit_price": 20.99, "discount": 21.51} -{"id": 150000086, "customerid": 3, "time": "2023-01-06T10:32:48.377Z", "productid": 148, "quantity": 2, "unit_price": 20.75} -{"id": 150000110, "customerid": 9, "time": "2023-01-06T10:46:44.398Z", "productid": 76, "quantity": 1, "unit_price": 49.32} -{"id": 150000088, "customerid": 30, "time": "2023-01-06T10:48:54.062Z", "productid": 200, "quantity": 1, "unit_price": 25.64, "discount": 8.3} -{"id": 150000106, "customerid": 17, "time": "2023-01-06T12:26:25.347Z", "productid": 20, "quantity": 2, "unit_price": 5.24} -{"id": 150000087, "customerid": 10, "time": "2023-01-06T13:08:00.455Z", "productid": 30, "quantity": 1, "unit_price": 26.98, "discount": 8.51} -{"id": 150000099, "customerid": 28, "time": "2023-01-06T14:06:22.229Z", "productid": 185, "quantity": 1, "unit_price": 7.89} -{"id": 150000101, "customerid": 8, "time": "2023-01-06T14:09:00.724Z", "productid": 125, "quantity": 1, "unit_price": 8.93, "discount": 1.57} -{"id": 150000095, "customerid": 26, "time": "2023-01-06T14:32:05.163Z", "productid": 156, "quantity": 1, "unit_price": 8.0} -{"id": 150000084, "customerid": 29, "time": "2023-01-06T14:32:32.123Z", "productid": 117, "quantity": 1, "unit_price": 35.05} -{"id": 150000091, "customerid": 26, "time": "2023-01-06T16:33:43.174Z", "productid": 150, "quantity": 1, "unit_price": 5.92} -{"id": 150000079, "customerid": 21, "time": "2023-01-06T17:30:55.620Z", "productid": 186, "quantity": 1, "unit_price": 9.27} -{"id": 150000083, "customerid": 2, "time": "2023-01-06T17:52:31.581Z", "productid": 93, "quantity": 2, "unit_price": 58.77} -{"id": 150000109, "customerid": 7, "time": "2023-01-06T18:08:29.556Z", "productid": 60, "quantity": 2, "unit_price": 11.18} -{"id": 150000080, "customerid": 25, "time": "2023-01-06T18:17:37.010Z", "productid": 102, "quantity": 1, "unit_price": 11.6} -{"id": 150000097, "customerid": 16, "time": "2023-01-06T18:25:56.915Z", "productid": 195, "quantity": 1, "unit_price": 11.38} -{"id": 150000082, "customerid": 16, "time": "2023-01-06T21:38:14.810Z", "productid": 97, "quantity": 2, "unit_price": 14.48, "discount": 6.38} -{"id": 150000102, "customerid": 15, "time": "2023-01-06T22:11:40.086Z", "productid": 12, "quantity": 2, "unit_price": 7.49} -{"id": 150000142, "customerid": 27, "time": "2023-01-06T22:17:57.676Z", "productid": 105, "quantity": 1, "unit_price": 10.44} -{"id": 150000138, "customerid": 23, "time": "2023-01-06T23:06:30.109Z", "productid": 3, "quantity": 1, "unit_price": 26.39} -{"id": 150000144, "customerid": 18, "time": "2023-01-06T23:15:36.186Z", "productid": 92, "quantity": 1, "unit_price": 30.18, "discount": 3.89} -{"id": 150000122, "customerid": 16, "time": "2023-01-06T23:50:06.874Z", "productid": 5, "quantity": 2, "unit_price": 5.43, "discount": 3.79} -{"id": 150000145, "customerid": 14, "time": "2023-01-07T01:34:36.575Z", "productid": 147, "quantity": 1, "unit_price": 12.21} -{"id": 150000123, "customerid": 22, "time": "2023-01-07T02:37:47.850Z", "productid": 142, "quantity": 1, "unit_price": 6.33} -{"id": 150000140, "customerid": 2, "time": "2023-01-07T02:47:27.759Z", "productid": 37, "quantity": 2, "unit_price": 12.94, "discount": 8.41} -{"id": 150000126, "customerid": 22, "time": "2023-01-07T03:25:26.939Z", "productid": 54, "quantity": 1, "unit_price": 11.68} -{"id": 150000136, "customerid": 26, "time": "2023-01-07T03:46:28.634Z", "productid": 33, "quantity": 1, "unit_price": 16.69} -{"id": 150000117, "customerid": 18, "time": "2023-01-07T03:53:56.997Z", "productid": 195, "quantity": 2, "unit_price": 11.38, "discount": 7.45} -{"id": 150000114, "customerid": 10, "time": "2023-01-07T04:21:25.221Z", "productid": 47, "quantity": 2, "unit_price": 12.3, "discount": 3.05} -{"id": 150000131, "customerid": 13, "time": "2023-01-07T04:33:05.088Z", "productid": 155, "quantity": 2, "unit_price": 83.44} -{"id": 150000120, "customerid": 26, "time": "2023-01-07T04:58:11.757Z", "productid": 78, "quantity": 1, "unit_price": 6.29} -{"id": 150000143, "customerid": 1, "time": "2023-01-07T05:22:47.345Z", "productid": 54, "quantity": 1, "unit_price": 11.68} -{"id": 150000134, "customerid": 14, "time": "2023-01-07T05:47:12.306Z", "productid": 109, "quantity": 1, "unit_price": 10.64} -{"id": 150000128, "customerid": 9, "time": "2023-01-07T07:00:57.957Z", "productid": 207, "quantity": 1, "unit_price": 17.5, "discount": 5.44} -{"id": 150000113, "customerid": 29, "time": "2023-01-07T07:42:30.656Z", "productid": 164, "quantity": 1, "unit_price": 18.71} -{"id": 150000127, "customerid": 2, "time": "2023-01-07T08:15:06.848Z", "productid": 94, "quantity": 1, "unit_price": 5.03} -{"id": 150000146, "customerid": 16, "time": "2023-01-07T09:32:14.717Z", "productid": 28, "quantity": 1, "unit_price": 7.1} -{"id": 150000121, "customerid": 13, "time": "2023-01-07T09:56:46.625Z", "productid": 145, "quantity": 1, "unit_price": 41.55, "discount": 18.44} -{"id": 150000147, "customerid": 24, "time": "2023-01-07T10:29:02.296Z", "productid": 141, "quantity": 2, "unit_price": 6.36} -{"id": 150000137, "customerid": 16, "time": "2023-01-07T11:59:50.099Z", "productid": 185, "quantity": 1, "unit_price": 7.89} -{"id": 150000141, "customerid": 15, "time": "2023-01-07T12:13:20.026Z", "productid": 25, "quantity": 1, "unit_price": 8.54} -{"id": 150000130, "customerid": 16, "time": "2023-01-07T13:19:19.758Z", "productid": 138, "quantity": 1, "unit_price": 6.8} -{"id": 150000135, "customerid": 17, "time": "2023-01-07T14:13:01.591Z", "productid": 86, "quantity": 1, "unit_price": 6.1, "discount": 2.17} -{"id": 150000129, "customerid": 13, "time": "2023-01-07T14:21:11.287Z", "productid": 154, "quantity": 2, "unit_price": 42.85} -{"id": 150000125, "customerid": 14, "time": "2023-01-07T14:53:19.361Z", "productid": 106, "quantity": 1, "unit_price": 8.84} -{"id": 150000116, "customerid": 23, "time": "2023-01-07T15:26:12.529Z", "productid": 108, "quantity": 1, "unit_price": 33.6, "discount": 2.62} -{"id": 150000124, "customerid": 7, "time": "2023-01-07T16:42:00.804Z", "productid": 113, "quantity": 2, "unit_price": 38.7, "discount": 9.23} -{"id": 150000139, "customerid": 17, "time": "2023-01-07T18:27:57.344Z", "productid": 199, "quantity": 1, "unit_price": 11.47, "discount": 5.73} -{"id": 150000132, "customerid": 10, "time": "2023-01-07T18:30:14.434Z", "productid": 179, "quantity": 1, "unit_price": 10.38, "discount": 3.18} -{"id": 150000115, "customerid": 22, "time": "2023-01-07T18:41:32.284Z", "productid": 26, "quantity": 1, "unit_price": 19.08} -{"id": 150000133, "customerid": 6, "time": "2023-01-07T19:29:45.126Z", "productid": 174, "quantity": 2, "unit_price": 10.71} -{"id": 150000118, "customerid": 24, "time": "2023-01-07T20:00:08.214Z", "productid": 94, "quantity": 1, "unit_price": 5.03, "discount": 2.35} -{"id": 150000119, "customerid": 9, "time": "2023-01-07T21:29:49.562Z", "productid": 6, "quantity": 1, "unit_price": 8.66, "discount": 2.98} -{"id": 150000154, "customerid": 7, "time": "2023-01-07T22:14:48.911Z", "productid": 132, "quantity": 1, "unit_price": 10.21} -{"id": 150000164, "customerid": 23, "time": "2023-01-07T23:19:03.410Z", "productid": 78, "quantity": 2, "unit_price": 6.29, "discount": 3.1} -{"id": 150000170, "customerid": 6, "time": "2023-01-08T00:01:32.429Z", "productid": 63, "quantity": 1, "unit_price": 8.34, "discount": 0.74} -{"id": 150000152, "customerid": 22, "time": "2023-01-08T01:06:04.614Z", "productid": 103, "quantity": 2, "unit_price": 19.72} -{"id": 150000148, "customerid": 17, "time": "2023-01-08T01:48:49.913Z", "productid": 52, "quantity": 2, "unit_price": 40.62} -{"id": 150000169, "customerid": 12, "time": "2023-01-08T03:24:18.875Z", "productid": 129, "quantity": 1, "unit_price": 20.6} -{"id": 150000168, "customerid": 23, "time": "2023-01-08T03:52:32.308Z", "productid": 69, "quantity": 1, "unit_price": 8.65} -{"id": 150000165, "customerid": 24, "time": "2023-01-08T06:07:41.958Z", "productid": 46, "quantity": 1, "unit_price": 6.31, "discount": 0.66} -{"id": 150000163, "customerid": 7, "time": "2023-01-08T06:21:09.648Z", "productid": 26, "quantity": 3, "unit_price": 19.08} -{"id": 150000156, "customerid": 24, "time": "2023-01-08T09:10:50.235Z", "productid": 70, "quantity": 1, "unit_price": 10.76} -{"id": 150000167, "customerid": 17, "time": "2023-01-08T09:11:45.124Z", "productid": 106, "quantity": 1, "unit_price": 8.84} -{"id": 150000161, "customerid": 30, "time": "2023-01-08T09:35:06.969Z", "productid": 81, "quantity": 1, "unit_price": 44.14} -{"id": 150000157, "customerid": 18, "time": "2023-01-08T10:03:12.526Z", "productid": 75, "quantity": 2, "unit_price": 22.06, "discount": 3.0} -{"id": 150000150, "customerid": 14, "time": "2023-01-08T10:03:40.684Z", "productid": 45, "quantity": 1, "unit_price": 39.76} -{"id": 150000155, "customerid": 25, "time": "2023-01-08T10:40:15.249Z", "productid": 21, "quantity": 2, "unit_price": 8.9} -{"id": 150000151, "customerid": 2, "time": "2023-01-08T11:09:55.599Z", "productid": 98, "quantity": 2, "unit_price": 32.37} -{"id": 150000171, "customerid": 25, "time": "2023-01-08T13:57:14.750Z", "productid": 189, "quantity": 1, "unit_price": 5.75, "discount": 0.33} -{"id": 150000158, "customerid": 1, "time": "2023-01-08T14:14:22.978Z", "productid": 26, "quantity": 1, "unit_price": 19.08} -{"id": 150000162, "customerid": 4, "time": "2023-01-08T15:11:40.370Z", "productid": 97, "quantity": 1, "unit_price": 14.48, "discount": 4.11} -{"id": 150000160, "customerid": 20, "time": "2023-01-08T17:40:10.164Z", "productid": 14, "quantity": 1, "unit_price": 5.99} -{"id": 150000159, "customerid": 24, "time": "2023-01-08T18:00:10.166Z", "productid": 16, "quantity": 1, "unit_price": 18.64, "discount": 3.35} -{"id": 150000166, "customerid": 10, "time": "2023-01-08T18:42:51.201Z", "productid": 174, "quantity": 1, "unit_price": 10.71} -{"id": 150000153, "customerid": 7, "time": "2023-01-08T20:41:15.764Z", "productid": 156, "quantity": 1, "unit_price": 8.0} -{"id": 150000149, "customerid": 25, "time": "2023-01-08T21:24:33.518Z", "productid": 120, "quantity": 1, "unit_price": 10.88, "discount": 3.98} -{"id": 150000175, "customerid": 15, "time": "2023-01-08T22:47:50.092Z", "productid": 3, "quantity": 2, "unit_price": 26.39} -{"id": 150000179, "customerid": 11, "time": "2023-01-08T22:58:35.701Z", "productid": 13, "quantity": 1, "unit_price": 9.69} -{"id": 150000188, "customerid": 12, "time": "2023-01-09T01:50:32.128Z", "productid": 192, "quantity": 2, "unit_price": 14.07} -{"id": 150000189, "customerid": 2, "time": "2023-01-09T01:54:48.453Z", "productid": 178, "quantity": 2, "unit_price": 6.11, "discount": 1.79} -{"id": 150000178, "customerid": 13, "time": "2023-01-09T02:05:27.146Z", "productid": 54, "quantity": 2, "unit_price": 11.68, "discount": 6.03} -{"id": 150000181, "customerid": 19, "time": "2023-01-09T02:31:59.863Z", "productid": 62, "quantity": 2, "unit_price": 42.47, "discount": 16.13} -{"id": 150000177, "customerid": 27, "time": "2023-01-09T03:25:06.981Z", "productid": 68, "quantity": 3, "unit_price": 7.02} -{"id": 150000176, "customerid": 21, "time": "2023-01-09T04:49:47.462Z", "productid": 202, "quantity": 2, "unit_price": 14.7, "discount": 6.04} -{"id": 150000183, "customerid": 28, "time": "2023-01-09T05:33:35.896Z", "productid": 59, "quantity": 2, "unit_price": 23.22, "discount": 9.46} -{"id": 150000185, "customerid": 22, "time": "2023-01-09T06:11:34.942Z", "productid": 40, "quantity": 1, "unit_price": 7.91} -{"id": 150000195, "customerid": 23, "time": "2023-01-09T06:45:37.695Z", "productid": 17, "quantity": 1, "unit_price": 5.08, "discount": 0.63} -{"id": 150000174, "customerid": 13, "time": "2023-01-09T08:01:53.984Z", "productid": 192, "quantity": 2, "unit_price": 14.07, "discount": 2.85} -{"id": 150000187, "customerid": 4, "time": "2023-01-09T08:28:15.822Z", "productid": 79, "quantity": 2, "unit_price": 11.62} -{"id": 150000172, "customerid": 21, "time": "2023-01-09T08:58:28.790Z", "productid": 204, "quantity": 2, "unit_price": 8.2} -{"id": 150000182, "customerid": 3, "time": "2023-01-09T09:15:22.529Z", "productid": 164, "quantity": 2, "unit_price": 18.71, "discount": 18.64} -{"id": 150000194, "customerid": 16, "time": "2023-01-09T09:49:57.819Z", "productid": 97, "quantity": 1, "unit_price": 14.48} -{"id": 150000193, "customerid": 5, "time": "2023-01-09T10:16:23.053Z", "productid": 114, "quantity": 1, "unit_price": 8.22} -{"id": 150000186, "customerid": 26, "time": "2023-01-09T10:21:55.928Z", "productid": 49, "quantity": 2, "unit_price": 7.62, "discount": 6.59} -{"id": 150000184, "customerid": 29, "time": "2023-01-09T13:47:18.523Z", "productid": 134, "quantity": 1, "unit_price": 7.01} -{"id": 150000191, "customerid": 4, "time": "2023-01-09T14:53:39.884Z", "productid": 67, "quantity": 1, "unit_price": 8.28} -{"id": 150000192, "customerid": 29, "time": "2023-01-09T16:23:47.959Z", "productid": 184, "quantity": 1, "unit_price": 8.47, "discount": 4.18} -{"id": 150000190, "customerid": 17, "time": "2023-01-09T16:25:46.644Z", "productid": 127, "quantity": 1, "unit_price": 20.99, "discount": 1.51} -{"id": 150000180, "customerid": 25, "time": "2023-01-09T18:04:15.827Z", "productid": 150, "quantity": 1, "unit_price": 5.92, "discount": 0.78} -{"id": 150000173, "customerid": 19, "time": "2023-01-09T18:16:48.488Z", "productid": 125, "quantity": 2, "unit_price": 8.93} -{"id": 150000198, "customerid": 24, "time": "2023-01-09T23:51:48.994Z", "productid": 114, "quantity": 2, "unit_price": 8.22} -{"id": 150000197, "customerid": 14, "time": "2023-01-10T03:38:19.667Z", "productid": 80, "quantity": 2, "unit_price": 19.75} -{"id": 150000196, "customerid": 12, "time": "2023-01-10T21:17:18.795Z", "productid": 54, "quantity": 3, "unit_price": 11.68, "discount": 10.27} -{"id": 150000206, "customerid": 8, "time": "2023-01-10T23:07:54.082Z", "productid": 126, "quantity": 3, "unit_price": 12.35} -{"id": 150000205, "customerid": 1, "time": "2023-01-11T00:07:52.047Z", "productid": 11, "quantity": 1, "unit_price": 12.08} -{"id": 150000204, "customerid": 21, "time": "2023-01-11T04:06:37.293Z", "productid": 149, "quantity": 2, "unit_price": 46.38, "discount": 12.21} -{"id": 150000207, "customerid": 21, "time": "2023-01-11T06:26:05.243Z", "productid": 121, "quantity": 1, "unit_price": 7.83} -{"id": 150000202, "customerid": 1, "time": "2023-01-11T07:37:08.941Z", "productid": 24, "quantity": 1, "unit_price": 5.02, "discount": 1.02} -{"id": 150000200, "customerid": 2, "time": "2023-01-11T08:37:30.966Z", "productid": 162, "quantity": 2, "unit_price": 5.19} -{"id": 150000213, "customerid": 30, "time": "2023-01-11T09:38:37.027Z", "productid": 181, "quantity": 1, "unit_price": 45.19} -{"id": 150000208, "customerid": 5, "time": "2023-01-11T10:21:35.451Z", "productid": 26, "quantity": 1, "unit_price": 19.08, "discount": 2.83} -{"id": 150000199, "customerid": 5, "time": "2023-01-11T12:08:03.134Z", "productid": 165, "quantity": 2, "unit_price": 41.83} -{"id": 150000203, "customerid": 27, "time": "2023-01-11T12:26:18.939Z", "productid": 112, "quantity": 1, "unit_price": 17.31} -{"id": 150000211, "customerid": 7, "time": "2023-01-11T12:31:58.570Z", "productid": 139, "quantity": 2, "unit_price": 11.56, "discount": 3.92} -{"id": 150000214, "customerid": 15, "time": "2023-01-11T14:35:33.057Z", "productid": 82, "quantity": 1, "unit_price": 85.96} -{"id": 150000210, "customerid": 15, "time": "2023-01-11T18:37:32.002Z", "productid": 87, "quantity": 2, "unit_price": 12.05} -{"id": 150000212, "customerid": 24, "time": "2023-01-11T18:40:22.782Z", "productid": 146, "quantity": 1, "unit_price": 10.96, "discount": 4.87} -{"id": 150000209, "customerid": 10, "time": "2023-01-11T19:56:58.017Z", "productid": 146, "quantity": 1, "unit_price": 10.96} -{"id": 150000201, "customerid": 20, "time": "2023-01-11T20:18:47.667Z", "productid": 194, "quantity": 1, "unit_price": 6.77, "discount": 1.08} -{"id": 150000219, "customerid": 14, "time": "2023-01-12T02:11:14.484Z", "productid": 48, "quantity": 2, "unit_price": 5.45, "discount": 3.89} -{"id": 150000216, "customerid": 16, "time": "2023-01-12T02:14:40.345Z", "productid": 32, "quantity": 1, "unit_price": 9.82} -{"id": 150000235, "customerid": 20, "time": "2023-01-12T03:28:53.880Z", "productid": 25, "quantity": 1, "unit_price": 8.54} -{"id": 150000227, "customerid": 3, "time": "2023-01-12T04:21:24.950Z", "productid": 45, "quantity": 1, "unit_price": 39.76, "discount": 12.61} -{"id": 150000233, "customerid": 9, "time": "2023-01-12T04:51:13.016Z", "productid": 31, "quantity": 1, "unit_price": 52.53} -{"id": 150000228, "customerid": 8, "time": "2023-01-12T06:00:05.545Z", "productid": 12, "quantity": 2, "unit_price": 7.49} -{"id": 150000234, "customerid": 16, "time": "2023-01-12T06:44:16.275Z", "productid": 93, "quantity": 1, "unit_price": 58.77} -{"id": 150000226, "customerid": 15, "time": "2023-01-12T06:49:57.407Z", "productid": 84, "quantity": 3, "unit_price": 15.46} -{"id": 150000221, "customerid": 26, "time": "2023-01-12T07:18:18.240Z", "productid": 139, "quantity": 2, "unit_price": 11.56, "discount": 6.82} -{"id": 150000222, "customerid": 21, "time": "2023-01-12T07:25:34.515Z", "productid": 116, "quantity": 1, "unit_price": 15.68, "discount": 4.33} -{"id": 150000215, "customerid": 6, "time": "2023-01-12T07:35:51.523Z", "productid": 10, "quantity": 1, "unit_price": 9.53} -{"id": 150000218, "customerid": 11, "time": "2023-01-12T08:24:38.414Z", "productid": 109, "quantity": 1, "unit_price": 10.64, "discount": 4.39} -{"id": 150000231, "customerid": 5, "time": "2023-01-12T09:53:51.744Z", "productid": 115, "quantity": 2, "unit_price": 9.22} -{"id": 150000229, "customerid": 1, "time": "2023-01-12T10:00:01.699Z", "productid": 137, "quantity": 1, "unit_price": 51.89} -{"id": 150000225, "customerid": 1, "time": "2023-01-12T10:29:08.680Z", "productid": 66, "quantity": 1, "unit_price": 5.62, "discount": 1.26} -{"id": 150000223, "customerid": 21, "time": "2023-01-12T10:52:49.189Z", "productid": 135, "quantity": 1, "unit_price": 11.92} -{"id": 150000217, "customerid": 21, "time": "2023-01-12T12:43:15.388Z", "productid": 201, "quantity": 1, "unit_price": 8.65, "discount": 1.14} -{"id": 150000232, "customerid": 26, "time": "2023-01-12T13:31:23.868Z", "productid": 2, "quantity": 1, "unit_price": 11.81} -{"id": 150000230, "customerid": 13, "time": "2023-01-12T13:42:18.615Z", "productid": 139, "quantity": 1, "unit_price": 11.56} -{"id": 150000220, "customerid": 1, "time": "2023-01-12T19:34:54.393Z", "productid": 99, "quantity": 1, "unit_price": 9.21, "discount": 4.56} -{"id": 150000224, "customerid": 12, "time": "2023-01-12T20:41:25.554Z", "productid": 63, "quantity": 1, "unit_price": 8.34, "discount": 2.13} -{"id": 150000243, "customerid": 22, "time": "2023-01-12T22:25:18.705Z", "productid": 165, "quantity": 1, "unit_price": 41.83} -{"id": 150000238, "customerid": 14, "time": "2023-01-12T22:38:13.414Z", "productid": 135, "quantity": 1, "unit_price": 11.92, "discount": 1.84} -{"id": 150000255, "customerid": 26, "time": "2023-01-13T00:36:19.706Z", "productid": 25, "quantity": 1, "unit_price": 8.54} -{"id": 150000254, "customerid": 30, "time": "2023-01-13T01:11:25.136Z", "productid": 84, "quantity": 1, "unit_price": 15.46, "discount": 5.5} -{"id": 150000239, "customerid": 10, "time": "2023-01-13T02:20:48.413Z", "productid": 9, "quantity": 2, "unit_price": 15.41} -{"id": 150000257, "customerid": 21, "time": "2023-01-13T02:50:10.182Z", "productid": 105, "quantity": 1, "unit_price": 10.44, "discount": 1.92} -{"id": 150000258, "customerid": 13, "time": "2023-01-13T02:55:39.811Z", "productid": 1, "quantity": 2, "unit_price": 6.94, "discount": 5.09} -{"id": 150000237, "customerid": 7, "time": "2023-01-13T02:58:12.889Z", "productid": 168, "quantity": 2, "unit_price": 11.15} -{"id": 150000251, "customerid": 27, "time": "2023-01-13T03:12:45.081Z", "productid": 163, "quantity": 2, "unit_price": 11.01} -{"id": 150000248, "customerid": 18, "time": "2023-01-13T03:42:44.493Z", "productid": 133, "quantity": 1, "unit_price": 8.38, "discount": 3.88} -{"id": 150000236, "customerid": 17, "time": "2023-01-13T04:49:40.384Z", "productid": 163, "quantity": 3, "unit_price": 11.01} -{"id": 150000249, "customerid": 10, "time": "2023-01-13T05:16:07.728Z", "productid": 179, "quantity": 1, "unit_price": 10.38} -{"id": 150000260, "customerid": 25, "time": "2023-01-13T06:07:34.789Z", "productid": 190, "quantity": 1, "unit_price": 9.81} -{"id": 150000240, "customerid": 18, "time": "2023-01-13T06:17:24.792Z", "productid": 163, "quantity": 2, "unit_price": 11.01} -{"id": 150000256, "customerid": 16, "time": "2023-01-13T07:38:50.277Z", "productid": 191, "quantity": 1, "unit_price": 8.27} -{"id": 150000252, "customerid": 19, "time": "2023-01-13T07:52:53.747Z", "productid": 131, "quantity": 1, "unit_price": 6.01, "discount": 0.55} -{"id": 150000242, "customerid": 8, "time": "2023-01-13T08:31:30.691Z", "productid": 203, "quantity": 1, "unit_price": 6.18} -{"id": 150000259, "customerid": 28, "time": "2023-01-13T09:14:32.854Z", "productid": 78, "quantity": 1, "unit_price": 6.29} -{"id": 150000262, "customerid": 26, "time": "2023-01-13T10:44:29.978Z", "productid": 98, "quantity": 2, "unit_price": 32.37} -{"id": 150000253, "customerid": 6, "time": "2023-01-13T10:45:26.979Z", "productid": 125, "quantity": 1, "unit_price": 8.93, "discount": 0.54} -{"id": 150000261, "customerid": 14, "time": "2023-01-13T12:03:12.350Z", "productid": 103, "quantity": 1, "unit_price": 19.72, "discount": 1.93} -{"id": 150000246, "customerid": 19, "time": "2023-01-13T13:01:54.169Z", "productid": 159, "quantity": 1, "unit_price": 7.86} -{"id": 150000250, "customerid": 12, "time": "2023-01-13T14:36:47.205Z", "productid": 129, "quantity": 1, "unit_price": 20.6, "discount": 7.46} -{"id": 150000247, "customerid": 13, "time": "2023-01-13T17:27:51.602Z", "productid": 173, "quantity": 1, "unit_price": 20.52} -{"id": 150000241, "customerid": 20, "time": "2023-01-13T19:49:28.557Z", "productid": 78, "quantity": 1, "unit_price": 6.29} -{"id": 150000245, "customerid": 26, "time": "2023-01-13T19:59:57.169Z", "productid": 1, "quantity": 1, "unit_price": 6.94} -{"id": 150000244, "customerid": 18, "time": "2023-01-13T21:59:28.151Z", "productid": 95, "quantity": 1, "unit_price": 8.15} -{"id": 150000271, "customerid": 25, "time": "2023-01-13T23:02:18.341Z", "productid": 136, "quantity": 1, "unit_price": 26.65} -{"id": 150000268, "customerid": 12, "time": "2023-01-14T00:00:16.509Z", "productid": 151, "quantity": 2, "unit_price": 7.24, "discount": 6.11} -{"id": 150000272, "customerid": 11, "time": "2023-01-14T00:46:51.386Z", "productid": 110, "quantity": 2, "unit_price": 5.64} -{"id": 150000273, "customerid": 15, "time": "2023-01-14T01:03:59.641Z", "productid": 5, "quantity": 3, "unit_price": 5.43} -{"id": 150000278, "customerid": 29, "time": "2023-01-14T01:49:56.415Z", "productid": 167, "quantity": 1, "unit_price": 6.56, "discount": 2.46} -{"id": 150000276, "customerid": 18, "time": "2023-01-14T02:32:30.515Z", "productid": 123, "quantity": 1, "unit_price": 29.75} -{"id": 150000263, "customerid": 22, "time": "2023-01-14T03:04:23.834Z", "productid": 158, "quantity": 1, "unit_price": 30.42, "discount": 7.31} -{"id": 150000267, "customerid": 4, "time": "2023-01-14T03:58:35.804Z", "productid": 189, "quantity": 1, "unit_price": 5.75} -{"id": 150000275, "customerid": 10, "time": "2023-01-14T04:22:07.932Z", "productid": 137, "quantity": 2, "unit_price": 51.89, "discount": 15.44} -{"id": 150000265, "customerid": 2, "time": "2023-01-14T04:24:33.568Z", "productid": 73, "quantity": 2, "unit_price": 7.94, "discount": 6.51} -{"id": 150000281, "customerid": 18, "time": "2023-01-14T05:16:48.773Z", "productid": 71, "quantity": 1, "unit_price": 11.9} -{"id": 150000269, "customerid": 12, "time": "2023-01-14T06:57:11.475Z", "productid": 124, "quantity": 1, "unit_price": 57.94} -{"id": 150000274, "customerid": 13, "time": "2023-01-14T07:56:42.367Z", "productid": 194, "quantity": 2, "unit_price": 6.77} -{"id": 150000279, "customerid": 12, "time": "2023-01-14T10:29:44.363Z", "productid": 20, "quantity": 1, "unit_price": 5.24} -{"id": 150000280, "customerid": 2, "time": "2023-01-14T11:36:34.828Z", "productid": 163, "quantity": 2, "unit_price": 11.01} -{"id": 150000264, "customerid": 11, "time": "2023-01-14T14:26:33.920Z", "productid": 28, "quantity": 1, "unit_price": 7.1} -{"id": 150000266, "customerid": 8, "time": "2023-01-14T21:20:33.569Z", "productid": 137, "quantity": 1, "unit_price": 51.89} -{"id": 150000270, "customerid": 30, "time": "2023-01-14T21:25:47.864Z", "productid": 84, "quantity": 2, "unit_price": 15.46} -{"id": 150000277, "customerid": 3, "time": "2023-01-14T22:10:53.446Z", "productid": 198, "quantity": 1, "unit_price": 6.75, "discount": 1.18} -{"id": 150000294, "customerid": 3, "time": "2023-01-15T00:59:19.296Z", "productid": 179, "quantity": 1, "unit_price": 10.38} -{"id": 150000289, "customerid": 6, "time": "2023-01-15T02:01:31.735Z", "productid": 95, "quantity": 1, "unit_price": 8.15, "discount": 1.14} -{"id": 150000296, "customerid": 20, "time": "2023-01-15T02:23:30.980Z", "productid": 90, "quantity": 1, "unit_price": 7.94} -{"id": 150000291, "customerid": 18, "time": "2023-01-15T02:52:55.807Z", "productid": 99, "quantity": 1, "unit_price": 9.21} -{"id": 150000290, "customerid": 18, "time": "2023-01-15T03:06:25.092Z", "productid": 49, "quantity": 1, "unit_price": 7.62} -{"id": 150000299, "customerid": 20, "time": "2023-01-15T03:19:43.692Z", "productid": 106, "quantity": 2, "unit_price": 8.84} -{"id": 150000282, "customerid": 16, "time": "2023-01-15T03:52:54.321Z", "productid": 131, "quantity": 1, "unit_price": 6.01} -{"id": 150000302, "customerid": 5, "time": "2023-01-15T05:05:42.471Z", "productid": 23, "quantity": 1, "unit_price": 8.87} -{"id": 150000287, "customerid": 27, "time": "2023-01-15T06:01:01.169Z", "productid": 165, "quantity": 1, "unit_price": 41.83} -{"id": 150000301, "customerid": 25, "time": "2023-01-15T06:04:51.688Z", "productid": 109, "quantity": 1, "unit_price": 10.64, "discount": 4.55} -{"id": 150000300, "customerid": 30, "time": "2023-01-15T06:31:32.103Z", "productid": 68, "quantity": 2, "unit_price": 7.02} -{"id": 150000298, "customerid": 28, "time": "2023-01-15T08:14:07.521Z", "productid": 47, "quantity": 1, "unit_price": 12.3} -{"id": 150000293, "customerid": 5, "time": "2023-01-15T08:14:36.360Z", "productid": 58, "quantity": 2, "unit_price": 10.39, "discount": 5.82} -{"id": 150000288, "customerid": 9, "time": "2023-01-15T09:05:45.634Z", "productid": 25, "quantity": 1, "unit_price": 8.54} -{"id": 150000286, "customerid": 7, "time": "2023-01-15T09:56:41.252Z", "productid": 165, "quantity": 2, "unit_price": 41.83, "discount": 18.75} -{"id": 150000285, "customerid": 18, "time": "2023-01-15T13:47:16.125Z", "productid": 125, "quantity": 1, "unit_price": 8.93} -{"id": 150000295, "customerid": 7, "time": "2023-01-15T15:28:08.912Z", "productid": 110, "quantity": 1, "unit_price": 5.64} -{"id": 150000283, "customerid": 21, "time": "2023-01-15T17:37:09.249Z", "productid": 190, "quantity": 2, "unit_price": 9.81} -{"id": 150000292, "customerid": 6, "time": "2023-01-15T19:05:08.428Z", "productid": 178, "quantity": 1, "unit_price": 6.11} -{"id": 150000284, "customerid": 19, "time": "2023-01-15T20:41:38.771Z", "productid": 50, "quantity": 1, "unit_price": 10.69} -{"id": 150000297, "customerid": 23, "time": "2023-01-15T22:13:41.010Z", "productid": 122, "quantity": 1, "unit_price": 13.31, "discount": 2.71} -{"id": 150000303, "customerid": 17, "time": "2023-01-15T22:54:13.501Z", "productid": 81, "quantity": 1, "unit_price": 44.14, "discount": 17.85} -{"id": 150000314, "customerid": 13, "time": "2023-01-16T02:36:23.433Z", "productid": 109, "quantity": 1, "unit_price": 10.64, "discount": 3.69} -{"id": 150000307, "customerid": 17, "time": "2023-01-16T02:38:47.373Z", "productid": 53, "quantity": 1, "unit_price": 12.62} -{"id": 150000312, "customerid": 4, "time": "2023-01-16T06:29:35.976Z", "productid": 150, "quantity": 1, "unit_price": 5.92, "discount": 0.85} -{"id": 150000317, "customerid": 2, "time": "2023-01-16T07:48:21.741Z", "productid": 188, "quantity": 1, "unit_price": 35.21} -{"id": 150000305, "customerid": 21, "time": "2023-01-16T08:25:25.039Z", "productid": 196, "quantity": 1, "unit_price": 8.0, "discount": 1.49} -{"id": 150000316, "customerid": 29, "time": "2023-01-16T13:20:14.806Z", "productid": 112, "quantity": 2, "unit_price": 17.31} -{"id": 150000311, "customerid": 16, "time": "2023-01-16T14:57:33.189Z", "productid": 108, "quantity": 1, "unit_price": 33.6, "discount": 3.59} -{"id": 150000313, "customerid": 28, "time": "2023-01-16T18:26:40.228Z", "productid": 94, "quantity": 1, "unit_price": 5.03} -{"id": 150000308, "customerid": 5, "time": "2023-01-16T18:45:43.564Z", "productid": 71, "quantity": 2, "unit_price": 11.9} -{"id": 150000306, "customerid": 30, "time": "2023-01-16T19:15:58.315Z", "productid": 79, "quantity": 2, "unit_price": 11.62} -{"id": 150000315, "customerid": 20, "time": "2023-01-16T19:39:40.851Z", "productid": 85, "quantity": 1, "unit_price": 34.56} -{"id": 150000304, "customerid": 12, "time": "2023-01-16T20:50:12.740Z", "productid": 138, "quantity": 2, "unit_price": 6.8} -{"id": 150000309, "customerid": 7, "time": "2023-01-16T20:51:40.385Z", "productid": 176, "quantity": 1, "unit_price": 7.79} -{"id": 150000310, "customerid": 7, "time": "2023-01-16T21:15:30.136Z", "productid": 177, "quantity": 2, "unit_price": 8.7, "discount": 2.84} -{"id": 150000319, "customerid": 28, "time": "2023-01-17T00:04:25.582Z", "productid": 198, "quantity": 1, "unit_price": 6.75, "discount": 1.67} -{"id": 150000333, "customerid": 13, "time": "2023-01-17T02:43:48.173Z", "productid": 157, "quantity": 3, "unit_price": 13.61, "discount": 7.25} -{"id": 150000330, "customerid": 29, "time": "2023-01-17T04:00:05.842Z", "productid": 67, "quantity": 1, "unit_price": 8.28} -{"id": 150000321, "customerid": 22, "time": "2023-01-17T06:33:39.443Z", "productid": 175, "quantity": 1, "unit_price": 18.21} -{"id": 150000318, "customerid": 4, "time": "2023-01-17T06:58:32.886Z", "productid": 163, "quantity": 1, "unit_price": 11.01, "discount": 1.1} -{"id": 150000322, "customerid": 29, "time": "2023-01-17T08:02:35.707Z", "productid": 136, "quantity": 1, "unit_price": 26.65} -{"id": 150000325, "customerid": 22, "time": "2023-01-17T08:08:55.546Z", "productid": 152, "quantity": 2, "unit_price": 11.28, "discount": 6.89} -{"id": 150000334, "customerid": 3, "time": "2023-01-17T08:58:43.422Z", "productid": 126, "quantity": 1, "unit_price": 12.35} -{"id": 150000326, "customerid": 3, "time": "2023-01-17T11:34:36.660Z", "productid": 198, "quantity": 1, "unit_price": 6.75, "discount": 1.49} -{"id": 150000323, "customerid": 13, "time": "2023-01-17T16:00:15.159Z", "productid": 134, "quantity": 1, "unit_price": 7.01, "discount": 2.84} -{"id": 150000331, "customerid": 16, "time": "2023-01-17T17:40:35.865Z", "productid": 158, "quantity": 1, "unit_price": 30.42, "discount": 10.79} -{"id": 150000332, "customerid": 16, "time": "2023-01-17T18:03:12.153Z", "productid": 20, "quantity": 1, "unit_price": 5.24} -{"id": 150000329, "customerid": 9, "time": "2023-01-17T18:18:27.968Z", "productid": 45, "quantity": 1, "unit_price": 39.76} -{"id": 150000327, "customerid": 7, "time": "2023-01-17T18:50:37.076Z", "productid": 165, "quantity": 1, "unit_price": 41.83, "discount": 11.39} -{"id": 150000320, "customerid": 1, "time": "2023-01-17T19:00:51.083Z", "productid": 201, "quantity": 1, "unit_price": 8.65} -{"id": 150000328, "customerid": 25, "time": "2023-01-17T20:33:16.878Z", "productid": 164, "quantity": 1, "unit_price": 18.71} -{"id": 150000324, "customerid": 18, "time": "2023-01-17T20:52:38.682Z", "productid": 45, "quantity": 1, "unit_price": 39.76, "discount": 18.78} -{"id": 150000348, "customerid": 11, "time": "2023-01-17T22:22:31.465Z", "productid": 98, "quantity": 2, "unit_price": 32.37} -{"id": 150000347, "customerid": 8, "time": "2023-01-17T23:54:13.453Z", "productid": 29, "quantity": 2, "unit_price": 12.07} -{"id": 150000349, "customerid": 26, "time": "2023-01-18T00:29:09.438Z", "productid": 71, "quantity": 1, "unit_price": 11.9} -{"id": 150000335, "customerid": 10, "time": "2023-01-18T01:38:43.521Z", "productid": 45, "quantity": 1, "unit_price": 39.76} -{"id": 150000339, "customerid": 27, "time": "2023-01-18T04:00:16.181Z", "productid": 2, "quantity": 1, "unit_price": 11.81, "discount": 3.42} -{"id": 150000341, "customerid": 23, "time": "2023-01-18T04:26:53.394Z", "productid": 204, "quantity": 1, "unit_price": 8.2} -{"id": 150000345, "customerid": 18, "time": "2023-01-18T06:42:22.960Z", "productid": 191, "quantity": 1, "unit_price": 8.27, "discount": 2.74} -{"id": 150000346, "customerid": 18, "time": "2023-01-18T07:38:15.057Z", "productid": 180, "quantity": 1, "unit_price": 23.2} -{"id": 150000343, "customerid": 30, "time": "2023-01-18T07:41:20.550Z", "productid": 178, "quantity": 1, "unit_price": 6.11, "discount": 0.66} -{"id": 150000342, "customerid": 12, "time": "2023-01-18T09:32:57.805Z", "productid": 149, "quantity": 2, "unit_price": 46.38} -{"id": 150000340, "customerid": 20, "time": "2023-01-18T12:54:10.762Z", "productid": 38, "quantity": 1, "unit_price": 6.74} -{"id": 150000344, "customerid": 22, "time": "2023-01-18T12:56:54.406Z", "productid": 124, "quantity": 1, "unit_price": 57.94} -{"id": 150000338, "customerid": 19, "time": "2023-01-18T14:14:21.889Z", "productid": 132, "quantity": 1, "unit_price": 10.21, "discount": 1.71} -{"id": 150000336, "customerid": 10, "time": "2023-01-18T15:52:59.433Z", "productid": 45, "quantity": 1, "unit_price": 39.76, "discount": 9.93} -{"id": 150000337, "customerid": 22, "time": "2023-01-18T20:15:40.581Z", "productid": 189, "quantity": 1, "unit_price": 5.75} -{"id": 150000372, "customerid": 3, "time": "2023-01-18T22:26:30.311Z", "productid": 64, "quantity": 1, "unit_price": 14.18} -{"id": 150000357, "customerid": 20, "time": "2023-01-18T23:21:24.218Z", "productid": 166, "quantity": 1, "unit_price": 6.59} -{"id": 150000354, "customerid": 29, "time": "2023-01-19T02:42:05.855Z", "productid": 207, "quantity": 1, "unit_price": 17.5} -{"id": 150000358, "customerid": 19, "time": "2023-01-19T04:01:32.848Z", "productid": 159, "quantity": 2, "unit_price": 7.86} -{"id": 150000370, "customerid": 10, "time": "2023-01-19T04:08:55.080Z", "productid": 205, "quantity": 1, "unit_price": 8.0} -{"id": 150000371, "customerid": 11, "time": "2023-01-19T04:14:15.747Z", "productid": 141, "quantity": 1, "unit_price": 6.36} -{"id": 150000362, "customerid": 3, "time": "2023-01-19T05:16:09.205Z", "productid": 148, "quantity": 2, "unit_price": 20.75, "discount": 9.31} -{"id": 150000355, "customerid": 25, "time": "2023-01-19T05:16:33.762Z", "productid": 103, "quantity": 1, "unit_price": 19.72} -{"id": 150000366, "customerid": 17, "time": "2023-01-19T05:17:21.619Z", "productid": 139, "quantity": 1, "unit_price": 11.56} -{"id": 150000363, "customerid": 19, "time": "2023-01-19T05:41:34.095Z", "productid": 18, "quantity": 1, "unit_price": 10.01} -{"id": 150000361, "customerid": 7, "time": "2023-01-19T06:29:54.637Z", "productid": 85, "quantity": 1, "unit_price": 34.56} -{"id": 150000359, "customerid": 28, "time": "2023-01-19T06:49:26.745Z", "productid": 24, "quantity": 2, "unit_price": 5.02, "discount": 3.88} -{"id": 150000351, "customerid": 28, "time": "2023-01-19T06:58:11.304Z", "productid": 42, "quantity": 2, "unit_price": 5.37} -{"id": 150000369, "customerid": 6, "time": "2023-01-19T08:08:29.885Z", "productid": 183, "quantity": 2, "unit_price": 11.46} -{"id": 150000367, "customerid": 25, "time": "2023-01-19T08:43:56.272Z", "productid": 8, "quantity": 1, "unit_price": 9.06, "discount": 0.93} -{"id": 150000350, "customerid": 25, "time": "2023-01-19T10:51:42.936Z", "productid": 139, "quantity": 2, "unit_price": 11.56} -{"id": 150000365, "customerid": 21, "time": "2023-01-19T12:25:00.256Z", "productid": 192, "quantity": 1, "unit_price": 14.07} -{"id": 150000368, "customerid": 24, "time": "2023-01-19T13:48:09.889Z", "productid": 12, "quantity": 2, "unit_price": 7.49} -{"id": 150000356, "customerid": 8, "time": "2023-01-19T15:35:21.461Z", "productid": 72, "quantity": 1, "unit_price": 11.75} -{"id": 150000360, "customerid": 6, "time": "2023-01-19T17:36:50.675Z", "productid": 59, "quantity": 2, "unit_price": 23.22, "discount": 2.95} -{"id": 150000353, "customerid": 11, "time": "2023-01-19T17:39:05.911Z", "productid": 86, "quantity": 2, "unit_price": 6.1} -{"id": 150000364, "customerid": 8, "time": "2023-01-19T20:04:30.735Z", "productid": 38, "quantity": 2, "unit_price": 6.74, "discount": 5.58} -{"id": 150000352, "customerid": 23, "time": "2023-01-19T20:25:45.271Z", "productid": 35, "quantity": 1, "unit_price": 72.67, "discount": 33.41} -{"id": 150000377, "customerid": 25, "time": "2023-01-19T23:22:05.366Z", "productid": 13, "quantity": 1, "unit_price": 9.69, "discount": 1.04} -{"id": 150000386, "customerid": 18, "time": "2023-01-20T03:40:44.417Z", "productid": 15, "quantity": 1, "unit_price": 10.96, "discount": 4.79} -{"id": 150000380, "customerid": 2, "time": "2023-01-20T03:55:43.025Z", "productid": 19, "quantity": 3, "unit_price": 11.78, "discount": 8.76} -{"id": 150000375, "customerid": 14, "time": "2023-01-20T06:10:14.756Z", "productid": 111, "quantity": 1, "unit_price": 10.18, "discount": 4.14} -{"id": 150000382, "customerid": 14, "time": "2023-01-20T06:34:20.586Z", "productid": 2, "quantity": 1, "unit_price": 11.81} -{"id": 150000385, "customerid": 29, "time": "2023-01-20T10:37:33.393Z", "productid": 120, "quantity": 2, "unit_price": 10.88, "discount": 8.02} -{"id": 150000383, "customerid": 4, "time": "2023-01-20T11:38:47.155Z", "productid": 70, "quantity": 2, "unit_price": 10.76} -{"id": 150000379, "customerid": 13, "time": "2023-01-20T12:31:43.516Z", "productid": 175, "quantity": 1, "unit_price": 18.21, "discount": 1.52} -{"id": 150000374, "customerid": 21, "time": "2023-01-20T13:56:34.297Z", "productid": 63, "quantity": 1, "unit_price": 8.34} -{"id": 150000378, "customerid": 18, "time": "2023-01-20T14:11:16.314Z", "productid": 68, "quantity": 1, "unit_price": 7.02, "discount": 3.32} -{"id": 150000381, "customerid": 4, "time": "2023-01-20T15:09:04.317Z", "productid": 115, "quantity": 1, "unit_price": 9.22} -{"id": 150000384, "customerid": 15, "time": "2023-01-20T16:22:17.065Z", "productid": 177, "quantity": 1, "unit_price": 8.7} -{"id": 150000373, "customerid": 25, "time": "2023-01-20T20:48:07.087Z", "productid": 59, "quantity": 2, "unit_price": 23.22} -{"id": 150000376, "customerid": 11, "time": "2023-01-20T21:26:24.175Z", "productid": 110, "quantity": 1, "unit_price": 5.64} -{"id": 150000389, "customerid": 17, "time": "2023-01-21T01:12:28.365Z", "productid": 59, "quantity": 1, "unit_price": 23.22} -{"id": 150000395, "customerid": 11, "time": "2023-01-21T02:34:09.112Z", "productid": 65, "quantity": 1, "unit_price": 10.28} -{"id": 150000396, "customerid": 17, "time": "2023-01-21T04:26:17.083Z", "productid": 122, "quantity": 1, "unit_price": 13.31} -{"id": 150000388, "customerid": 21, "time": "2023-01-21T05:13:48.045Z", "productid": 40, "quantity": 2, "unit_price": 7.91} -{"id": 150000391, "customerid": 4, "time": "2023-01-21T05:30:21.656Z", "productid": 128, "quantity": 1, "unit_price": 12.12, "discount": 1.08} -{"id": 150000394, "customerid": 10, "time": "2023-01-21T06:42:18.947Z", "productid": 43, "quantity": 1, "unit_price": 9.13, "discount": 1.84} -{"id": 150000387, "customerid": 25, "time": "2023-01-21T09:27:02.915Z", "productid": 30, "quantity": 2, "unit_price": 26.98, "discount": 23.08} -{"id": 150000393, "customerid": 22, "time": "2023-01-21T10:43:31.931Z", "productid": 61, "quantity": 2, "unit_price": 19.0, "discount": 16.7} -{"id": 150000392, "customerid": 23, "time": "2023-01-21T12:06:10.186Z", "productid": 105, "quantity": 2, "unit_price": 10.44, "discount": 9.72} -{"id": 150000390, "customerid": 14, "time": "2023-01-21T14:11:09.146Z", "productid": 195, "quantity": 1, "unit_price": 11.38, "discount": 3.33} -{"id": 150000397, "customerid": 5, "time": "2023-01-21T14:39:37.779Z", "productid": 3, "quantity": 2, "unit_price": 26.39} -{"id": 150000410, "customerid": 24, "time": "2023-01-21T23:22:13.773Z", "productid": 173, "quantity": 2, "unit_price": 20.52} -{"id": 150000407, "customerid": 3, "time": "2023-01-22T00:13:18.339Z", "productid": 2, "quantity": 1, "unit_price": 11.81, "discount": 3.4} -{"id": 150000409, "customerid": 27, "time": "2023-01-22T00:14:47.612Z", "productid": 165, "quantity": 2, "unit_price": 41.83, "discount": 36.13} -{"id": 150000404, "customerid": 27, "time": "2023-01-22T08:06:49.396Z", "productid": 6, "quantity": 1, "unit_price": 8.66} -{"id": 150000398, "customerid": 27, "time": "2023-01-22T10:00:02.274Z", "productid": 27, "quantity": 1, "unit_price": 5.49, "discount": 1.74} -{"id": 150000406, "customerid": 28, "time": "2023-01-22T10:07:09.330Z", "productid": 186, "quantity": 1, "unit_price": 9.27, "discount": 2.66} -{"id": 150000399, "customerid": 1, "time": "2023-01-22T14:14:49.858Z", "productid": 117, "quantity": 2, "unit_price": 35.05, "discount": 15.54} -{"id": 150000405, "customerid": 7, "time": "2023-01-22T15:46:31.424Z", "productid": 201, "quantity": 2, "unit_price": 8.65} -{"id": 150000400, "customerid": 24, "time": "2023-01-22T16:48:42.242Z", "productid": 40, "quantity": 1, "unit_price": 7.91} -{"id": 150000408, "customerid": 27, "time": "2023-01-22T17:49:46.643Z", "productid": 116, "quantity": 1, "unit_price": 15.68} -{"id": 150000403, "customerid": 26, "time": "2023-01-22T19:38:04.409Z", "productid": 146, "quantity": 1, "unit_price": 10.96, "discount": 4.24} -{"id": 150000402, "customerid": 16, "time": "2023-01-22T20:11:01.552Z", "productid": 71, "quantity": 1, "unit_price": 11.9, "discount": 1.66} -{"id": 150000401, "customerid": 5, "time": "2023-01-22T21:07:44.864Z", "productid": 85, "quantity": 1, "unit_price": 34.56} -{"id": 150000424, "customerid": 20, "time": "2023-01-23T04:37:26.370Z", "productid": 60, "quantity": 2, "unit_price": 11.18, "discount": 7.82} -{"id": 150000412, "customerid": 11, "time": "2023-01-23T06:36:29.733Z", "productid": 33, "quantity": 1, "unit_price": 16.69, "discount": 0.86} -{"id": 150000414, "customerid": 2, "time": "2023-01-23T07:13:29.494Z", "productid": 175, "quantity": 1, "unit_price": 18.21} -{"id": 150000411, "customerid": 14, "time": "2023-01-23T08:03:17.955Z", "productid": 70, "quantity": 1, "unit_price": 10.76} -{"id": 150000422, "customerid": 14, "time": "2023-01-23T09:07:59.916Z", "productid": 178, "quantity": 1, "unit_price": 6.11} -{"id": 150000417, "customerid": 24, "time": "2023-01-23T09:34:42.366Z", "productid": 83, "quantity": 2, "unit_price": 9.09} -{"id": 150000423, "customerid": 15, "time": "2023-01-23T10:31:00.341Z", "productid": 181, "quantity": 2, "unit_price": 45.19} -{"id": 150000421, "customerid": 7, "time": "2023-01-23T11:47:50.206Z", "productid": 166, "quantity": 1, "unit_price": 6.59, "discount": 3.19} -{"id": 150000413, "customerid": 1, "time": "2023-01-23T12:04:52.456Z", "productid": 67, "quantity": 1, "unit_price": 8.28, "discount": 2.33} -{"id": 150000415, "customerid": 16, "time": "2023-01-23T13:17:51.540Z", "productid": 141, "quantity": 1, "unit_price": 6.36, "discount": 2.24} -{"id": 150000419, "customerid": 9, "time": "2023-01-23T14:46:58.577Z", "productid": 102, "quantity": 2, "unit_price": 11.6} -{"id": 150000418, "customerid": 3, "time": "2023-01-23T16:04:40.250Z", "productid": 66, "quantity": 1, "unit_price": 5.62} -{"id": 150000420, "customerid": 6, "time": "2023-01-23T19:02:18.957Z", "productid": 168, "quantity": 1, "unit_price": 11.15} -{"id": 150000416, "customerid": 8, "time": "2023-01-23T20:27:34.017Z", "productid": 17, "quantity": 1, "unit_price": 5.08, "discount": 0.83} -{"id": 150000437, "customerid": 19, "time": "2023-01-23T22:49:28.825Z", "productid": 41, "quantity": 1, "unit_price": 5.31} -{"id": 150000436, "customerid": 16, "time": "2023-01-24T01:14:45.498Z", "productid": 64, "quantity": 3, "unit_price": 14.18} -{"id": 150000435, "customerid": 7, "time": "2023-01-24T02:38:49.991Z", "productid": 190, "quantity": 2, "unit_price": 9.81, "discount": 8.19} -{"id": 150000438, "customerid": 11, "time": "2023-01-24T03:00:10.637Z", "productid": 200, "quantity": 1, "unit_price": 25.64} -{"id": 150000439, "customerid": 16, "time": "2023-01-24T03:44:36.964Z", "productid": 94, "quantity": 2, "unit_price": 5.03, "discount": 4.77} -{"id": 150000426, "customerid": 4, "time": "2023-01-24T04:28:05.956Z", "productid": 47, "quantity": 2, "unit_price": 12.3} -{"id": 150000429, "customerid": 28, "time": "2023-01-24T05:01:00.266Z", "productid": 85, "quantity": 1, "unit_price": 34.56} -{"id": 150000434, "customerid": 16, "time": "2023-01-24T06:42:33.901Z", "productid": 42, "quantity": 2, "unit_price": 5.37} -{"id": 150000441, "customerid": 6, "time": "2023-01-24T09:13:31.315Z", "productid": 184, "quantity": 1, "unit_price": 8.47} -{"id": 150000428, "customerid": 14, "time": "2023-01-24T10:12:36.992Z", "productid": 195, "quantity": 1, "unit_price": 11.38} -{"id": 150000440, "customerid": 4, "time": "2023-01-24T11:48:59.214Z", "productid": 117, "quantity": 1, "unit_price": 35.05} -{"id": 150000430, "customerid": 17, "time": "2023-01-24T14:17:26.236Z", "productid": 66, "quantity": 1, "unit_price": 5.62, "discount": 1.1} -{"id": 150000433, "customerid": 19, "time": "2023-01-24T14:29:50.785Z", "productid": 31, "quantity": 1, "unit_price": 52.53} -{"id": 150000431, "customerid": 3, "time": "2023-01-24T16:27:42.247Z", "productid": 112, "quantity": 2, "unit_price": 17.31, "discount": 8.85} -{"id": 150000442, "customerid": 23, "time": "2023-01-24T17:11:46.250Z", "productid": 133, "quantity": 1, "unit_price": 8.38} -{"id": 150000427, "customerid": 29, "time": "2023-01-24T18:12:31.840Z", "productid": 193, "quantity": 1, "unit_price": 31.44, "discount": 1.9} -{"id": 150000432, "customerid": 1, "time": "2023-01-24T19:09:20.079Z", "productid": 1, "quantity": 2, "unit_price": 6.94, "discount": 6.92} -{"id": 150000425, "customerid": 12, "time": "2023-01-24T19:30:34.098Z", "productid": 4, "quantity": 2, "unit_price": 8.01, "discount": 7.47} -{"id": 150000467, "customerid": 21, "time": "2023-01-24T22:22:46.385Z", "productid": 9, "quantity": 1, "unit_price": 15.41} -{"id": 150000471, "customerid": 28, "time": "2023-01-24T22:57:28.517Z", "productid": 6, "quantity": 1, "unit_price": 8.66} -{"id": 150000456, "customerid": 14, "time": "2023-01-24T23:23:41.682Z", "productid": 136, "quantity": 1, "unit_price": 26.65} -{"id": 150000451, "customerid": 7, "time": "2023-01-25T00:10:56.298Z", "productid": 96, "quantity": 1, "unit_price": 8.52, "discount": 1.84} -{"id": 150000463, "customerid": 2, "time": "2023-01-25T01:08:34.392Z", "productid": 181, "quantity": 1, "unit_price": 45.19} -{"id": 150000453, "customerid": 28, "time": "2023-01-25T01:20:39.212Z", "productid": 2, "quantity": 1, "unit_price": 11.81} -{"id": 150000460, "customerid": 19, "time": "2023-01-25T01:20:50.890Z", "productid": 81, "quantity": 1, "unit_price": 44.14} -{"id": 150000445, "customerid": 1, "time": "2023-01-25T01:56:16.226Z", "productid": 82, "quantity": 1, "unit_price": 85.96} -{"id": 150000466, "customerid": 13, "time": "2023-01-25T02:25:30.907Z", "productid": 114, "quantity": 2, "unit_price": 8.22, "discount": 6.57} -{"id": 150000450, "customerid": 2, "time": "2023-01-25T03:48:36.627Z", "productid": 99, "quantity": 1, "unit_price": 9.21} -{"id": 150000459, "customerid": 6, "time": "2023-01-25T05:25:05.106Z", "productid": 17, "quantity": 2, "unit_price": 5.08} -{"id": 150000454, "customerid": 30, "time": "2023-01-25T06:36:28.831Z", "productid": 168, "quantity": 1, "unit_price": 11.15, "discount": 5.14} -{"id": 150000464, "customerid": 17, "time": "2023-01-25T07:14:09.765Z", "productid": 39, "quantity": 1, "unit_price": 12.38, "discount": 5.9} -{"id": 150000465, "customerid": 10, "time": "2023-01-25T07:17:36.797Z", "productid": 189, "quantity": 1, "unit_price": 5.75} -{"id": 150000444, "customerid": 6, "time": "2023-01-25T11:11:49.918Z", "productid": 89, "quantity": 2, "unit_price": 7.1} -{"id": 150000452, "customerid": 10, "time": "2023-01-25T11:44:17.695Z", "productid": 151, "quantity": 2, "unit_price": 7.24, "discount": 2.41} -{"id": 150000447, "customerid": 25, "time": "2023-01-25T12:26:26.416Z", "productid": 70, "quantity": 2, "unit_price": 10.76} -{"id": 150000448, "customerid": 6, "time": "2023-01-25T13:08:47.682Z", "productid": 75, "quantity": 2, "unit_price": 22.06} -{"id": 150000457, "customerid": 28, "time": "2023-01-25T13:13:32.978Z", "productid": 125, "quantity": 1, "unit_price": 8.93} -{"id": 150000470, "customerid": 25, "time": "2023-01-25T13:24:43.971Z", "productid": 88, "quantity": 2, "unit_price": 11.12} -{"id": 150000473, "customerid": 22, "time": "2023-01-25T13:30:35.299Z", "productid": 72, "quantity": 2, "unit_price": 11.75} -{"id": 150000472, "customerid": 7, "time": "2023-01-25T14:10:26.327Z", "productid": 21, "quantity": 1, "unit_price": 8.9} -{"id": 150000461, "customerid": 14, "time": "2023-01-25T14:26:22.136Z", "productid": 108, "quantity": 2, "unit_price": 33.6, "discount": 5.24} -{"id": 150000468, "customerid": 10, "time": "2023-01-25T16:02:53.490Z", "productid": 56, "quantity": 3, "unit_price": 5.47, "discount": 2.36} -{"id": 150000458, "customerid": 1, "time": "2023-01-25T16:11:39.578Z", "productid": 125, "quantity": 2, "unit_price": 8.93} -{"id": 150000474, "customerid": 29, "time": "2023-01-25T16:28:17.731Z", "productid": 24, "quantity": 1, "unit_price": 5.02, "discount": 0.96} -{"id": 150000455, "customerid": 16, "time": "2023-01-25T16:57:40.179Z", "productid": 130, "quantity": 1, "unit_price": 10.02, "discount": 1.08} -{"id": 150000469, "customerid": 9, "time": "2023-01-25T17:21:30.807Z", "productid": 4, "quantity": 1, "unit_price": 8.01} -{"id": 150000443, "customerid": 10, "time": "2023-01-25T17:51:49.571Z", "productid": 102, "quantity": 1, "unit_price": 11.6} -{"id": 150000462, "customerid": 22, "time": "2023-01-25T17:57:49.694Z", "productid": 25, "quantity": 1, "unit_price": 8.54} -{"id": 150000449, "customerid": 26, "time": "2023-01-25T19:26:33.929Z", "productid": 109, "quantity": 3, "unit_price": 10.64} -{"id": 150000446, "customerid": 23, "time": "2023-01-25T20:18:48.337Z", "productid": 66, "quantity": 1, "unit_price": 5.62} -{"id": 150000485, "customerid": 26, "time": "2023-01-25T23:22:00.430Z", "productid": 29, "quantity": 2, "unit_price": 12.07, "discount": 10.02} -{"id": 150000480, "customerid": 22, "time": "2023-01-26T00:41:33.035Z", "productid": 107, "quantity": 1, "unit_price": 15.03, "discount": 5.7} -{"id": 150000481, "customerid": 12, "time": "2023-01-26T04:59:17.249Z", "productid": 27, "quantity": 3, "unit_price": 5.49, "discount": 0.85} -{"id": 150000476, "customerid": 4, "time": "2023-01-26T05:32:18.426Z", "productid": 174, "quantity": 2, "unit_price": 10.71} -{"id": 150000487, "customerid": 12, "time": "2023-01-26T05:53:11.608Z", "productid": 114, "quantity": 1, "unit_price": 8.22, "discount": 2.63} -{"id": 150000475, "customerid": 11, "time": "2023-01-26T08:43:49.756Z", "productid": 91, "quantity": 1, "unit_price": 13.5} -{"id": 150000490, "customerid": 23, "time": "2023-01-26T09:26:23.077Z", "productid": 84, "quantity": 1, "unit_price": 15.46, "discount": 1.17} -{"id": 150000484, "customerid": 28, "time": "2023-01-26T11:49:13.322Z", "productid": 82, "quantity": 1, "unit_price": 85.96, "discount": 4.38} -{"id": 150000486, "customerid": 27, "time": "2023-01-26T12:29:43.570Z", "productid": 99, "quantity": 2, "unit_price": 9.21} -{"id": 150000482, "customerid": 20, "time": "2023-01-26T13:49:15.836Z", "productid": 14, "quantity": 3, "unit_price": 5.99, "discount": 4.61} -{"id": 150000479, "customerid": 5, "time": "2023-01-26T18:22:33.151Z", "productid": 172, "quantity": 1, "unit_price": 12.07} -{"id": 150000478, "customerid": 20, "time": "2023-01-26T18:45:59.518Z", "productid": 109, "quantity": 1, "unit_price": 10.64} -{"id": 150000489, "customerid": 2, "time": "2023-01-26T20:45:32.651Z", "productid": 15, "quantity": 1, "unit_price": 10.96} -{"id": 150000477, "customerid": 15, "time": "2023-01-26T21:37:01.097Z", "productid": 158, "quantity": 1, "unit_price": 30.42} -{"id": 150000483, "customerid": 15, "time": "2023-01-26T21:45:42.319Z", "productid": 161, "quantity": 2, "unit_price": 29.88} -{"id": 150000488, "customerid": 8, "time": "2023-01-26T21:52:12.075Z", "productid": 120, "quantity": 2, "unit_price": 10.88, "discount": 5.53} -{"id": 150000497, "customerid": 21, "time": "2023-01-26T22:17:55.989Z", "productid": 90, "quantity": 1, "unit_price": 7.94} -{"id": 150000493, "customerid": 9, "time": "2023-01-27T00:54:38.080Z", "productid": 189, "quantity": 2, "unit_price": 5.75, "discount": 3.82} -{"id": 150000496, "customerid": 29, "time": "2023-01-27T01:25:42.483Z", "productid": 107, "quantity": 2, "unit_price": 15.03} -{"id": 150000501, "customerid": 9, "time": "2023-01-27T01:43:32.613Z", "productid": 104, "quantity": 1, "unit_price": 44.08} -{"id": 150000495, "customerid": 16, "time": "2023-01-27T03:31:11.817Z", "productid": 75, "quantity": 2, "unit_price": 22.06, "discount": 16.75} -{"id": 150000498, "customerid": 29, "time": "2023-01-27T05:44:35.748Z", "productid": 29, "quantity": 1, "unit_price": 12.07} -{"id": 150000492, "customerid": 17, "time": "2023-01-27T07:33:26.030Z", "productid": 36, "quantity": 2, "unit_price": 7.61} -{"id": 150000500, "customerid": 12, "time": "2023-01-27T11:33:14.410Z", "productid": 174, "quantity": 1, "unit_price": 10.71} -{"id": 150000494, "customerid": 15, "time": "2023-01-27T11:40:33.824Z", "productid": 70, "quantity": 2, "unit_price": 10.76} -{"id": 150000499, "customerid": 24, "time": "2023-01-27T15:36:45.479Z", "productid": 34, "quantity": 2, "unit_price": 37.32} -{"id": 150000491, "customerid": 24, "time": "2023-01-27T17:39:47.885Z", "productid": 155, "quantity": 1, "unit_price": 83.44} -{"id": 150000529, "customerid": 17, "time": "2023-01-27T22:21:32.460Z", "productid": 74, "quantity": 1, "unit_price": 12.98} -{"id": 150000525, "customerid": 11, "time": "2023-01-28T01:42:46.016Z", "productid": 100, "quantity": 1, "unit_price": 15.66} -{"id": 150000520, "customerid": 17, "time": "2023-01-28T01:48:43.310Z", "productid": 24, "quantity": 2, "unit_price": 5.02} -{"id": 150000503, "customerid": 20, "time": "2023-01-28T02:50:02.724Z", "productid": 47, "quantity": 2, "unit_price": 12.3} -{"id": 150000521, "customerid": 10, "time": "2023-01-28T03:26:18.243Z", "productid": 40, "quantity": 1, "unit_price": 7.91} -{"id": 150000507, "customerid": 14, "time": "2023-01-28T04:58:16.290Z", "productid": 75, "quantity": 1, "unit_price": 22.06} -{"id": 150000528, "customerid": 26, "time": "2023-01-28T05:30:31.266Z", "productid": 76, "quantity": 1, "unit_price": 49.32, "discount": 21.0} -{"id": 150000506, "customerid": 30, "time": "2023-01-28T05:33:18.839Z", "productid": 204, "quantity": 1, "unit_price": 8.2, "discount": 0.52} -{"id": 150000504, "customerid": 29, "time": "2023-01-28T05:48:02.119Z", "productid": 161, "quantity": 2, "unit_price": 29.88, "discount": 3.46} -{"id": 150000518, "customerid": 7, "time": "2023-01-28T06:54:17.402Z", "productid": 34, "quantity": 1, "unit_price": 37.32} -{"id": 150000527, "customerid": 4, "time": "2023-01-28T06:55:04.719Z", "productid": 32, "quantity": 1, "unit_price": 9.82} -{"id": 150000517, "customerid": 22, "time": "2023-01-28T08:01:44.908Z", "productid": 94, "quantity": 2, "unit_price": 5.03} -{"id": 150000526, "customerid": 24, "time": "2023-01-28T08:27:08.785Z", "productid": 111, "quantity": 4, "unit_price": 10.18} -{"id": 150000522, "customerid": 14, "time": "2023-01-28T08:50:48.835Z", "productid": 42, "quantity": 1, "unit_price": 5.37, "discount": 0.43} -{"id": 150000530, "customerid": 10, "time": "2023-01-28T08:54:10.009Z", "productid": 207, "quantity": 1, "unit_price": 17.5} -{"id": 150000511, "customerid": 10, "time": "2023-01-28T09:09:45.032Z", "productid": 6, "quantity": 1, "unit_price": 8.66, "discount": 2.46} -{"id": 150000508, "customerid": 19, "time": "2023-01-28T09:40:52.566Z", "productid": 207, "quantity": 1, "unit_price": 17.5} -{"id": 150000515, "customerid": 13, "time": "2023-01-28T10:33:01.148Z", "productid": 143, "quantity": 2, "unit_price": 10.93, "discount": 9.44} -{"id": 150000510, "customerid": 15, "time": "2023-01-28T10:39:22.082Z", "productid": 127, "quantity": 2, "unit_price": 20.99, "discount": 6.49} -{"id": 150000513, "customerid": 8, "time": "2023-01-28T10:44:02.743Z", "productid": 203, "quantity": 3, "unit_price": 6.18, "discount": 5.19} -{"id": 150000505, "customerid": 1, "time": "2023-01-28T16:19:03.474Z", "productid": 109, "quantity": 2, "unit_price": 10.64} -{"id": 150000519, "customerid": 12, "time": "2023-01-28T16:29:23.074Z", "productid": 121, "quantity": 1, "unit_price": 7.83, "discount": 0.83} -{"id": 150000502, "customerid": 7, "time": "2023-01-28T17:38:06.687Z", "productid": 64, "quantity": 2, "unit_price": 14.18} -{"id": 150000516, "customerid": 13, "time": "2023-01-28T17:39:26.920Z", "productid": 54, "quantity": 1, "unit_price": 11.68, "discount": 4.29} -{"id": 150000524, "customerid": 15, "time": "2023-01-28T20:02:31.662Z", "productid": 132, "quantity": 1, "unit_price": 10.21, "discount": 0.95} -{"id": 150000523, "customerid": 1, "time": "2023-01-28T20:12:44.668Z", "productid": 136, "quantity": 1, "unit_price": 26.65} -{"id": 150000512, "customerid": 28, "time": "2023-01-28T20:34:12.293Z", "productid": 55, "quantity": 1, "unit_price": 12.22} -{"id": 150000509, "customerid": 25, "time": "2023-01-28T21:15:58.274Z", "productid": 135, "quantity": 1, "unit_price": 11.92} -{"id": 150000514, "customerid": 5, "time": "2023-01-28T21:19:18.996Z", "productid": 82, "quantity": 1, "unit_price": 85.96, "discount": 23.07} -{"id": 150000537, "customerid": 12, "time": "2023-01-29T01:51:30.402Z", "productid": 105, "quantity": 1, "unit_price": 10.44, "discount": 3.57} -{"id": 150000539, "customerid": 3, "time": "2023-01-29T04:31:49.887Z", "productid": 12, "quantity": 1, "unit_price": 7.49} -{"id": 150000534, "customerid": 16, "time": "2023-01-29T08:01:21.228Z", "productid": 181, "quantity": 1, "unit_price": 45.19} -{"id": 150000531, "customerid": 14, "time": "2023-01-29T12:04:15.401Z", "productid": 13, "quantity": 1, "unit_price": 9.69, "discount": 2.65} -{"id": 150000535, "customerid": 6, "time": "2023-01-29T12:21:44.492Z", "productid": 17, "quantity": 2, "unit_price": 5.08, "discount": 3.0} -{"id": 150000533, "customerid": 12, "time": "2023-01-29T16:01:31.617Z", "productid": 84, "quantity": 2, "unit_price": 15.46, "discount": 12.54} -{"id": 150000536, "customerid": 3, "time": "2023-01-29T17:48:36.075Z", "productid": 123, "quantity": 1, "unit_price": 29.75, "discount": 13.73} -{"id": 150000538, "customerid": 28, "time": "2023-01-29T20:50:29.960Z", "productid": 112, "quantity": 1, "unit_price": 17.31} -{"id": 150000532, "customerid": 2, "time": "2023-01-29T22:09:05.237Z", "productid": 167, "quantity": 2, "unit_price": 6.56} -{"id": 150000555, "customerid": 12, "time": "2023-01-30T01:27:32.242Z", "productid": 73, "quantity": 1, "unit_price": 7.94} -{"id": 150000543, "customerid": 8, "time": "2023-01-30T01:36:48.913Z", "productid": 61, "quantity": 1, "unit_price": 19.0} -{"id": 150000554, "customerid": 8, "time": "2023-01-30T04:17:02.173Z", "productid": 143, "quantity": 1, "unit_price": 10.93, "discount": 1.05} -{"id": 150000556, "customerid": 20, "time": "2023-01-30T06:19:39.770Z", "productid": 32, "quantity": 1, "unit_price": 9.82} -{"id": 150000552, "customerid": 17, "time": "2023-01-30T08:07:23.809Z", "productid": 110, "quantity": 1, "unit_price": 5.64} -{"id": 150000546, "customerid": 10, "time": "2023-01-30T08:33:53.319Z", "productid": 199, "quantity": 1, "unit_price": 11.47} -{"id": 150000540, "customerid": 26, "time": "2023-01-30T09:11:14.588Z", "productid": 108, "quantity": 1, "unit_price": 33.6} -{"id": 150000553, "customerid": 14, "time": "2023-01-30T09:19:54.769Z", "productid": 58, "quantity": 1, "unit_price": 10.39} -{"id": 150000551, "customerid": 2, "time": "2023-01-30T09:58:31.794Z", "productid": 160, "quantity": 2, "unit_price": 13.37} -{"id": 150000544, "customerid": 24, "time": "2023-01-30T10:01:32.460Z", "productid": 47, "quantity": 1, "unit_price": 12.3} -{"id": 150000547, "customerid": 21, "time": "2023-01-30T11:59:57.188Z", "productid": 118, "quantity": 1, "unit_price": 12.95, "discount": 5.44} -{"id": 150000548, "customerid": 30, "time": "2023-01-30T14:50:47.818Z", "productid": 5, "quantity": 3, "unit_price": 5.43, "discount": 2.5} -{"id": 150000542, "customerid": 13, "time": "2023-01-30T15:44:55.855Z", "productid": 31, "quantity": 2, "unit_price": 52.53} -{"id": 150000549, "customerid": 5, "time": "2023-01-30T16:15:24.947Z", "productid": 190, "quantity": 1, "unit_price": 9.81} -{"id": 150000541, "customerid": 4, "time": "2023-01-30T16:52:22.847Z", "productid": 171, "quantity": 1, "unit_price": 19.89, "discount": 2.46} -{"id": 150000550, "customerid": 22, "time": "2023-01-30T19:19:26.833Z", "productid": 72, "quantity": 2, "unit_price": 11.75, "discount": 3.96} -{"id": 150000545, "customerid": 19, "time": "2023-01-30T22:09:33.553Z", "productid": 147, "quantity": 1, "unit_price": 12.21} -{"id": 150000573, "customerid": 9, "time": "2023-01-30T22:27:13.224Z", "productid": 5, "quantity": 1, "unit_price": 5.43} -{"id": 150000574, "customerid": 17, "time": "2023-01-30T22:47:18.880Z", "productid": 46, "quantity": 1, "unit_price": 6.31, "discount": 1.2} -{"id": 150000564, "customerid": 26, "time": "2023-01-31T00:09:41.974Z", "productid": 44, "quantity": 2, "unit_price": 20.42, "discount": 10.34} -{"id": 150000561, "customerid": 18, "time": "2023-01-31T00:59:55.093Z", "productid": 148, "quantity": 1, "unit_price": 20.75} -{"id": 150000562, "customerid": 26, "time": "2023-01-31T01:32:54.396Z", "productid": 55, "quantity": 1, "unit_price": 12.22} -{"id": 150000563, "customerid": 29, "time": "2023-01-31T02:35:38.649Z", "productid": 184, "quantity": 1, "unit_price": 8.47} -{"id": 150000570, "customerid": 30, "time": "2023-01-31T04:38:03.460Z", "productid": 190, "quantity": 1, "unit_price": 9.81} -{"id": 150000567, "customerid": 15, "time": "2023-01-31T05:14:02.911Z", "productid": 137, "quantity": 2, "unit_price": 51.89} -{"id": 150000571, "customerid": 28, "time": "2023-01-31T06:33:26.416Z", "productid": 146, "quantity": 1, "unit_price": 10.96, "discount": 3.29} -{"id": 150000576, "customerid": 1, "time": "2023-01-31T07:07:16.835Z", "productid": 191, "quantity": 2, "unit_price": 8.27} -{"id": 150000572, "customerid": 3, "time": "2023-01-31T09:19:30.234Z", "productid": 61, "quantity": 1, "unit_price": 19.0} -{"id": 150000575, "customerid": 19, "time": "2023-01-31T09:24:32.240Z", "productid": 88, "quantity": 3, "unit_price": 11.12} -{"id": 150000577, "customerid": 27, "time": "2023-01-31T10:26:54.096Z", "productid": 4, "quantity": 2, "unit_price": 8.01} -{"id": 150000559, "customerid": 5, "time": "2023-01-31T15:18:15.522Z", "productid": 80, "quantity": 1, "unit_price": 19.75} -{"id": 150000569, "customerid": 3, "time": "2023-01-31T15:34:29.323Z", "productid": 50, "quantity": 1, "unit_price": 10.69} -{"id": 150000560, "customerid": 21, "time": "2023-01-31T15:59:45.129Z", "productid": 97, "quantity": 1, "unit_price": 14.48} -{"id": 150000568, "customerid": 20, "time": "2023-01-31T17:40:59.857Z", "productid": 96, "quantity": 1, "unit_price": 8.52, "discount": 3.94} -{"id": 150000565, "customerid": 23, "time": "2023-01-31T19:13:06.074Z", "productid": 159, "quantity": 1, "unit_price": 7.86} -{"id": 150000557, "customerid": 13, "time": "2023-01-31T19:47:56.735Z", "productid": 74, "quantity": 1, "unit_price": 12.98} -{"id": 150000558, "customerid": 27, "time": "2023-01-31T21:39:28.948Z", "productid": 129, "quantity": 1, "unit_price": 20.6} -{"id": 150000566, "customerid": 26, "time": "2023-01-31T21:46:00.479Z", "productid": 45, "quantity": 1, "unit_price": 39.76} -{"id": 150000587, "customerid": 12, "time": "2023-01-31T23:32:14.337Z", "productid": 117, "quantity": 2, "unit_price": 35.05, "discount": 12.3} -{"id": 150000580, "customerid": 24, "time": "2023-02-01T00:39:34.192Z", "productid": 177, "quantity": 1, "unit_price": 8.7} -{"id": 150000578, "customerid": 2, "time": "2023-02-01T02:48:40.788Z", "productid": 104, "quantity": 3, "unit_price": 44.08, "discount": 61.19} -{"id": 150000581, "customerid": 4, "time": "2023-02-01T08:52:00.046Z", "productid": 127, "quantity": 1, "unit_price": 20.99} -{"id": 150000583, "customerid": 4, "time": "2023-02-01T11:00:32.731Z", "productid": 187, "quantity": 2, "unit_price": 15.75} -{"id": 150000584, "customerid": 19, "time": "2023-02-01T11:39:34.536Z", "productid": 79, "quantity": 1, "unit_price": 11.62} -{"id": 150000582, "customerid": 19, "time": "2023-02-01T18:26:43.785Z", "productid": 98, "quantity": 1, "unit_price": 32.37} -{"id": 150000586, "customerid": 4, "time": "2023-02-01T19:42:31.077Z", "productid": 67, "quantity": 1, "unit_price": 8.28} -{"id": 150000579, "customerid": 21, "time": "2023-02-01T20:28:41.477Z", "productid": 24, "quantity": 1, "unit_price": 5.02} -{"id": 150000585, "customerid": 24, "time": "2023-02-01T20:34:32.839Z", "productid": 56, "quantity": 1, "unit_price": 5.47} -{"id": 150000591, "customerid": 25, "time": "2023-02-01T22:32:14.368Z", "productid": 205, "quantity": 2, "unit_price": 8.0, "discount": 1.95} -{"id": 150000592, "customerid": 4, "time": "2023-02-01T22:54:10.989Z", "productid": 157, "quantity": 1, "unit_price": 13.61} -{"id": 150000612, "customerid": 23, "time": "2023-02-01T23:22:54.303Z", "productid": 127, "quantity": 1, "unit_price": 20.99} -{"id": 150000602, "customerid": 19, "time": "2023-02-02T02:02:21.896Z", "productid": 62, "quantity": 1, "unit_price": 42.47, "discount": 11.12} -{"id": 150000600, "customerid": 21, "time": "2023-02-02T02:17:18.585Z", "productid": 32, "quantity": 1, "unit_price": 9.82} -{"id": 150000611, "customerid": 7, "time": "2023-02-02T02:26:00.709Z", "productid": 152, "quantity": 1, "unit_price": 11.28} -{"id": 150000617, "customerid": 1, "time": "2023-02-02T04:51:00.894Z", "productid": 49, "quantity": 1, "unit_price": 7.62, "discount": 3.69} -{"id": 150000590, "customerid": 17, "time": "2023-02-02T05:19:08.648Z", "productid": 80, "quantity": 2, "unit_price": 19.75} -{"id": 150000607, "customerid": 23, "time": "2023-02-02T05:27:14.251Z", "productid": 101, "quantity": 1, "unit_price": 35.01} -{"id": 150000594, "customerid": 12, "time": "2023-02-02T05:44:29.822Z", "productid": 65, "quantity": 2, "unit_price": 10.28} -{"id": 150000620, "customerid": 19, "time": "2023-02-02T05:47:24.642Z", "productid": 81, "quantity": 3, "unit_price": 44.14, "discount": 19.8} -{"id": 150000614, "customerid": 13, "time": "2023-02-02T06:11:22.255Z", "productid": 47, "quantity": 1, "unit_price": 12.3, "discount": 3.29} -{"id": 150000619, "customerid": 8, "time": "2023-02-02T06:26:58.717Z", "productid": 57, "quantity": 2, "unit_price": 6.11, "discount": 3.01} -{"id": 150000610, "customerid": 7, "time": "2023-02-02T07:42:00.543Z", "productid": 81, "quantity": 1, "unit_price": 44.14, "discount": 9.36} -{"id": 150000603, "customerid": 11, "time": "2023-02-02T08:16:30.046Z", "productid": 57, "quantity": 2, "unit_price": 6.11} -{"id": 150000598, "customerid": 9, "time": "2023-02-02T08:52:06.279Z", "productid": 43, "quantity": 1, "unit_price": 9.13} -{"id": 150000601, "customerid": 6, "time": "2023-02-02T11:31:42.780Z", "productid": 39, "quantity": 2, "unit_price": 12.38} -{"id": 150000596, "customerid": 19, "time": "2023-02-02T13:21:23.870Z", "productid": 11, "quantity": 1, "unit_price": 12.08, "discount": 5.32} -{"id": 150000616, "customerid": 4, "time": "2023-02-02T15:14:57.631Z", "productid": 68, "quantity": 2, "unit_price": 7.02} -{"id": 150000606, "customerid": 16, "time": "2023-02-02T15:41:08.427Z", "productid": 30, "quantity": 1, "unit_price": 26.98, "discount": 12.57} -{"id": 150000605, "customerid": 8, "time": "2023-02-02T16:10:52.465Z", "productid": 76, "quantity": 1, "unit_price": 49.32, "discount": 2.65} -{"id": 150000604, "customerid": 21, "time": "2023-02-02T16:24:17.739Z", "productid": 170, "quantity": 1, "unit_price": 8.9, "discount": 0.86} -{"id": 150000588, "customerid": 26, "time": "2023-02-02T16:35:30.886Z", "productid": 105, "quantity": 1, "unit_price": 10.44, "discount": 3.77} -{"id": 150000593, "customerid": 30, "time": "2023-02-02T16:38:53.492Z", "productid": 174, "quantity": 2, "unit_price": 10.71} -{"id": 150000608, "customerid": 29, "time": "2023-02-02T18:25:29.157Z", "productid": 187, "quantity": 1, "unit_price": 15.75} -{"id": 150000595, "customerid": 15, "time": "2023-02-02T18:27:09.385Z", "productid": 102, "quantity": 2, "unit_price": 11.6, "discount": 11.05} -{"id": 150000613, "customerid": 23, "time": "2023-02-02T18:36:34.296Z", "productid": 71, "quantity": 1, "unit_price": 11.9} -{"id": 150000589, "customerid": 22, "time": "2023-02-02T19:13:49.884Z", "productid": 166, "quantity": 1, "unit_price": 6.59} -{"id": 150000599, "customerid": 4, "time": "2023-02-02T19:18:19.183Z", "productid": 16, "quantity": 1, "unit_price": 18.64, "discount": 5.91} -{"id": 150000597, "customerid": 19, "time": "2023-02-02T20:50:35.270Z", "productid": 109, "quantity": 1, "unit_price": 10.64} -{"id": 150000609, "customerid": 20, "time": "2023-02-02T21:25:38.369Z", "productid": 178, "quantity": 2, "unit_price": 6.11, "discount": 4.23} -{"id": 150000618, "customerid": 20, "time": "2023-02-02T22:03:31.459Z", "productid": 27, "quantity": 1, "unit_price": 5.49, "discount": 2.48} -{"id": 150000615, "customerid": 21, "time": "2023-02-02T22:12:10.045Z", "productid": 130, "quantity": 2, "unit_price": 10.02} -{"id": 150000628, "customerid": 19, "time": "2023-02-02T22:53:42.588Z", "productid": 154, "quantity": 1, "unit_price": 42.85} -{"id": 150000626, "customerid": 8, "time": "2023-02-02T23:43:01.696Z", "productid": 173, "quantity": 1, "unit_price": 20.52, "discount": 8.29} -{"id": 150000624, "customerid": 5, "time": "2023-02-02T23:55:12.218Z", "productid": 141, "quantity": 2, "unit_price": 6.36} -{"id": 150000622, "customerid": 24, "time": "2023-02-03T01:28:55.343Z", "productid": 117, "quantity": 1, "unit_price": 35.05} -{"id": 150000621, "customerid": 11, "time": "2023-02-03T03:55:37.131Z", "productid": 174, "quantity": 1, "unit_price": 10.71} -{"id": 150000634, "customerid": 6, "time": "2023-02-03T04:32:05.307Z", "productid": 26, "quantity": 2, "unit_price": 19.08} -{"id": 150000633, "customerid": 7, "time": "2023-02-03T06:38:04.943Z", "productid": 194, "quantity": 1, "unit_price": 6.77, "discount": 1.68} -{"id": 150000629, "customerid": 5, "time": "2023-02-03T08:09:51.619Z", "productid": 188, "quantity": 1, "unit_price": 35.21, "discount": 4.65} -{"id": 150000625, "customerid": 13, "time": "2023-02-03T09:06:26.290Z", "productid": 44, "quantity": 1, "unit_price": 20.42} -{"id": 150000623, "customerid": 28, "time": "2023-02-03T11:24:54.094Z", "productid": 25, "quantity": 1, "unit_price": 8.54} -{"id": 150000635, "customerid": 29, "time": "2023-02-03T12:29:20.776Z", "productid": 117, "quantity": 1, "unit_price": 35.05, "discount": 2.75} -{"id": 150000632, "customerid": 6, "time": "2023-02-03T16:01:23.142Z", "productid": 194, "quantity": 1, "unit_price": 6.77, "discount": 2.38} -{"id": 150000627, "customerid": 10, "time": "2023-02-03T16:13:57.761Z", "productid": 92, "quantity": 1, "unit_price": 30.18, "discount": 13.97} -{"id": 150000630, "customerid": 20, "time": "2023-02-03T20:35:15.766Z", "productid": 136, "quantity": 1, "unit_price": 26.65, "discount": 6.25} -{"id": 150000631, "customerid": 22, "time": "2023-02-03T22:11:52.982Z", "productid": 90, "quantity": 1, "unit_price": 7.94, "discount": 1.36} -{"id": 150000640, "customerid": 21, "time": "2023-02-03T22:23:15.136Z", "productid": 143, "quantity": 2, "unit_price": 10.93, "discount": 4.05} -{"id": 150000652, "customerid": 27, "time": "2023-02-03T22:24:48.002Z", "productid": 180, "quantity": 1, "unit_price": 23.2} -{"id": 150000655, "customerid": 26, "time": "2023-02-04T01:34:32.003Z", "productid": 162, "quantity": 1, "unit_price": 5.19} -{"id": 150000642, "customerid": 13, "time": "2023-02-04T02:08:03.821Z", "productid": 27, "quantity": 1, "unit_price": 5.49, "discount": 2.59} -{"id": 150000651, "customerid": 28, "time": "2023-02-04T02:53:23.485Z", "productid": 192, "quantity": 2, "unit_price": 14.07} -{"id": 150000639, "customerid": 22, "time": "2023-02-04T03:08:42.015Z", "productid": 55, "quantity": 1, "unit_price": 12.22} -{"id": 150000646, "customerid": 14, "time": "2023-02-04T05:06:05.755Z", "productid": 119, "quantity": 2, "unit_price": 6.36} -{"id": 150000653, "customerid": 27, "time": "2023-02-04T05:24:39Z", "productid": 199, "quantity": 1, "unit_price": 11.47} -{"id": 150000648, "customerid": 17, "time": "2023-02-04T06:31:52.831Z", "productid": 71, "quantity": 1, "unit_price": 11.9} -{"id": 150000658, "customerid": 1, "time": "2023-02-04T07:38:14.461Z", "productid": 95, "quantity": 1, "unit_price": 8.15, "discount": 1.15} -{"id": 150000641, "customerid": 3, "time": "2023-02-04T08:51:48.947Z", "productid": 193, "quantity": 2, "unit_price": 31.44} -{"id": 150000649, "customerid": 24, "time": "2023-02-04T09:41:25.270Z", "productid": 39, "quantity": 1, "unit_price": 12.38} -{"id": 150000636, "customerid": 10, "time": "2023-02-04T10:47:26.658Z", "productid": 31, "quantity": 1, "unit_price": 52.53} -{"id": 150000638, "customerid": 5, "time": "2023-02-04T11:00:42.839Z", "productid": 195, "quantity": 2, "unit_price": 11.38, "discount": 5.39} -{"id": 150000637, "customerid": 13, "time": "2023-02-04T11:48:40.860Z", "productid": 36, "quantity": 1, "unit_price": 7.61, "discount": 3.65} -{"id": 150000657, "customerid": 13, "time": "2023-02-04T15:43:54.728Z", "productid": 71, "quantity": 1, "unit_price": 11.9} -{"id": 150000659, "customerid": 29, "time": "2023-02-04T17:35:07.099Z", "productid": 77, "quantity": 1, "unit_price": 96.05} -{"id": 150000654, "customerid": 30, "time": "2023-02-04T17:36:27.634Z", "productid": 18, "quantity": 1, "unit_price": 10.01} -{"id": 150000647, "customerid": 6, "time": "2023-02-04T19:11:04.564Z", "productid": 90, "quantity": 1, "unit_price": 7.94, "discount": 1.33} -{"id": 150000656, "customerid": 13, "time": "2023-02-04T19:28:46.297Z", "productid": 134, "quantity": 2, "unit_price": 7.01} -{"id": 150000643, "customerid": 25, "time": "2023-02-04T20:00:40.652Z", "productid": 149, "quantity": 1, "unit_price": 46.38} -{"id": 150000650, "customerid": 21, "time": "2023-02-04T20:45:12.132Z", "productid": 155, "quantity": 1, "unit_price": 83.44, "discount": 8.82} -{"id": 150000644, "customerid": 29, "time": "2023-02-04T20:50:13.201Z", "productid": 128, "quantity": 1, "unit_price": 12.12, "discount": 2.4} -{"id": 150000645, "customerid": 23, "time": "2023-02-04T21:45:49.262Z", "productid": 202, "quantity": 2, "unit_price": 14.7} -{"id": 150000662, "customerid": 16, "time": "2023-02-04T22:34:20.767Z", "productid": 98, "quantity": 2, "unit_price": 32.37} -{"id": 150000666, "customerid": 28, "time": "2023-02-05T00:14:54.413Z", "productid": 145, "quantity": 2, "unit_price": 41.55} -{"id": 150000675, "customerid": 26, "time": "2023-02-05T05:20:04.091Z", "productid": 153, "quantity": 1, "unit_price": 19.17, "discount": 4.3} -{"id": 150000664, "customerid": 14, "time": "2023-02-05T07:16:58.922Z", "productid": 198, "quantity": 1, "unit_price": 6.75, "discount": 3.17} -{"id": 150000667, "customerid": 17, "time": "2023-02-05T09:40:24.602Z", "productid": 83, "quantity": 1, "unit_price": 9.09} -{"id": 150000673, "customerid": 19, "time": "2023-02-05T10:29:49.111Z", "productid": 58, "quantity": 3, "unit_price": 10.39} -{"id": 150000670, "customerid": 13, "time": "2023-02-05T11:58:09.925Z", "productid": 53, "quantity": 1, "unit_price": 12.62} -{"id": 150000660, "customerid": 22, "time": "2023-02-05T13:05:24.814Z", "productid": 152, "quantity": 1, "unit_price": 11.28, "discount": 2.88} -{"id": 150000668, "customerid": 12, "time": "2023-02-05T15:19:15.867Z", "productid": 178, "quantity": 2, "unit_price": 6.11} -{"id": 150000663, "customerid": 4, "time": "2023-02-05T15:29:39.600Z", "productid": 106, "quantity": 2, "unit_price": 8.84, "discount": 4.69} -{"id": 150000671, "customerid": 28, "time": "2023-02-05T16:37:41.536Z", "productid": 61, "quantity": 1, "unit_price": 19.0, "discount": 7.9} -{"id": 150000661, "customerid": 27, "time": "2023-02-05T17:17:28.986Z", "productid": 110, "quantity": 1, "unit_price": 5.64} -{"id": 150000669, "customerid": 12, "time": "2023-02-05T18:00:00.162Z", "productid": 45, "quantity": 2, "unit_price": 39.76} -{"id": 150000674, "customerid": 12, "time": "2023-02-05T20:22:50.178Z", "productid": 22, "quantity": 1, "unit_price": 19.89, "discount": 8.42} -{"id": 150000672, "customerid": 15, "time": "2023-02-05T20:59:39.940Z", "productid": 43, "quantity": 1, "unit_price": 9.13} -{"id": 150000665, "customerid": 21, "time": "2023-02-05T22:04:04.159Z", "productid": 122, "quantity": 2, "unit_price": 13.31, "discount": 12.5} -{"id": 150000692, "customerid": 24, "time": "2023-02-05T23:14:55.495Z", "productid": 191, "quantity": 1, "unit_price": 8.27} -{"id": 150000686, "customerid": 1, "time": "2023-02-06T00:43:25.387Z", "productid": 148, "quantity": 1, "unit_price": 20.75} -{"id": 150000687, "customerid": 13, "time": "2023-02-06T02:32:12.392Z", "productid": 174, "quantity": 1, "unit_price": 10.71} -{"id": 150000682, "customerid": 8, "time": "2023-02-06T04:39:26.314Z", "productid": 174, "quantity": 1, "unit_price": 10.71} -{"id": 150000697, "customerid": 6, "time": "2023-02-06T05:21:03.812Z", "productid": 156, "quantity": 1, "unit_price": 8.0} -{"id": 150000691, "customerid": 20, "time": "2023-02-06T06:46:35.341Z", "productid": 71, "quantity": 1, "unit_price": 11.9} -{"id": 150000683, "customerid": 24, "time": "2023-02-06T09:18:38.418Z", "productid": 13, "quantity": 2, "unit_price": 9.69} -{"id": 150000685, "customerid": 13, "time": "2023-02-06T09:26:01.293Z", "productid": 3, "quantity": 2, "unit_price": 26.39} -{"id": 150000696, "customerid": 20, "time": "2023-02-06T10:47:43.164Z", "productid": 82, "quantity": 1, "unit_price": 85.96, "discount": 22.15} -{"id": 150000681, "customerid": 30, "time": "2023-02-06T11:12:35.238Z", "productid": 142, "quantity": 1, "unit_price": 6.33} -{"id": 150000688, "customerid": 28, "time": "2023-02-06T11:55:34.384Z", "productid": 21, "quantity": 3, "unit_price": 8.9, "discount": 11.04} -{"id": 150000698, "customerid": 25, "time": "2023-02-06T13:31:40.806Z", "productid": 91, "quantity": 2, "unit_price": 13.5} -{"id": 150000677, "customerid": 11, "time": "2023-02-06T13:34:27.290Z", "productid": 66, "quantity": 2, "unit_price": 5.62} -{"id": 150000693, "customerid": 24, "time": "2023-02-06T14:04:16.156Z", "productid": 138, "quantity": 2, "unit_price": 6.8} -{"id": 150000678, "customerid": 4, "time": "2023-02-06T15:25:44.067Z", "productid": 163, "quantity": 1, "unit_price": 11.01} -{"id": 150000694, "customerid": 30, "time": "2023-02-06T16:27:37.198Z", "productid": 105, "quantity": 2, "unit_price": 10.44, "discount": 6.82} -{"id": 150000689, "customerid": 13, "time": "2023-02-06T16:34:25.717Z", "productid": 190, "quantity": 2, "unit_price": 9.81} -{"id": 150000676, "customerid": 21, "time": "2023-02-06T17:46:28.337Z", "productid": 61, "quantity": 1, "unit_price": 19.0, "discount": 6.76} -{"id": 150000700, "customerid": 29, "time": "2023-02-06T18:05:36.363Z", "productid": 130, "quantity": 1, "unit_price": 10.02} -{"id": 150000684, "customerid": 3, "time": "2023-02-06T19:09:16.986Z", "productid": 122, "quantity": 2, "unit_price": 13.31} -{"id": 150000699, "customerid": 11, "time": "2023-02-06T19:35:40.972Z", "productid": 81, "quantity": 1, "unit_price": 44.14} -{"id": 150000680, "customerid": 10, "time": "2023-02-06T19:56:37.154Z", "productid": 152, "quantity": 1, "unit_price": 11.28} -{"id": 150000695, "customerid": 5, "time": "2023-02-06T20:00:15.224Z", "productid": 105, "quantity": 1, "unit_price": 10.44} -{"id": 150000679, "customerid": 30, "time": "2023-02-06T21:45:16.516Z", "productid": 11, "quantity": 2, "unit_price": 12.08} -{"id": 150000690, "customerid": 17, "time": "2023-02-06T21:58:14.149Z", "productid": 161, "quantity": 1, "unit_price": 29.88} -{"id": 150000711, "customerid": 12, "time": "2023-02-06T22:44:26.694Z", "productid": 109, "quantity": 3, "unit_price": 10.64} -{"id": 150000719, "customerid": 18, "time": "2023-02-06T22:59:07.855Z", "productid": 39, "quantity": 1, "unit_price": 12.38} -{"id": 150000701, "customerid": 16, "time": "2023-02-07T00:50:08.442Z", "productid": 89, "quantity": 2, "unit_price": 7.1, "discount": 1.67} -{"id": 150000728, "customerid": 7, "time": "2023-02-07T00:51:15.419Z", "productid": 200, "quantity": 1, "unit_price": 25.64} -{"id": 150000726, "customerid": 22, "time": "2023-02-07T01:21:16.069Z", "productid": 37, "quantity": 1, "unit_price": 12.94} -{"id": 150000705, "customerid": 22, "time": "2023-02-07T03:24:15.019Z", "productid": 135, "quantity": 1, "unit_price": 11.92, "discount": 0.81} -{"id": 150000724, "customerid": 2, "time": "2023-02-07T03:55:00.446Z", "productid": 109, "quantity": 1, "unit_price": 10.64} -{"id": 150000708, "customerid": 22, "time": "2023-02-07T04:05:28.793Z", "productid": 23, "quantity": 1, "unit_price": 8.87, "discount": 0.96} -{"id": 150000709, "customerid": 20, "time": "2023-02-07T04:31:40.837Z", "productid": 40, "quantity": 1, "unit_price": 7.91, "discount": 2.0} -{"id": 150000715, "customerid": 21, "time": "2023-02-07T06:23:38.338Z", "productid": 67, "quantity": 2, "unit_price": 8.28, "discount": 3.11} -{"id": 150000725, "customerid": 25, "time": "2023-02-07T06:40:46.121Z", "productid": 10, "quantity": 1, "unit_price": 9.53, "discount": 4.41} -{"id": 150000710, "customerid": 14, "time": "2023-02-07T06:44:05.375Z", "productid": 94, "quantity": 1, "unit_price": 5.03} -{"id": 150000713, "customerid": 13, "time": "2023-02-07T07:26:43.296Z", "productid": 85, "quantity": 1, "unit_price": 34.56} -{"id": 150000722, "customerid": 24, "time": "2023-02-07T08:30:30.087Z", "productid": 65, "quantity": 1, "unit_price": 10.28} -{"id": 150000721, "customerid": 22, "time": "2023-02-07T08:35:06.966Z", "productid": 95, "quantity": 1, "unit_price": 8.15} -{"id": 150000717, "customerid": 30, "time": "2023-02-07T09:04:34.240Z", "productid": 167, "quantity": 2, "unit_price": 6.56} -{"id": 150000703, "customerid": 13, "time": "2023-02-07T12:04:28.507Z", "productid": 124, "quantity": 1, "unit_price": 57.94} -{"id": 150000712, "customerid": 25, "time": "2023-02-07T12:40:31.366Z", "productid": 19, "quantity": 1, "unit_price": 11.78, "discount": 3.97} -{"id": 150000720, "customerid": 29, "time": "2023-02-07T13:57:53.902Z", "productid": 134, "quantity": 2, "unit_price": 7.01, "discount": 4.4} -{"id": 150000723, "customerid": 30, "time": "2023-02-07T14:13:00.767Z", "productid": 159, "quantity": 1, "unit_price": 7.86} -{"id": 150000704, "customerid": 14, "time": "2023-02-07T15:34:25.560Z", "productid": 21, "quantity": 1, "unit_price": 8.9, "discount": 2.46} -{"id": 150000714, "customerid": 13, "time": "2023-02-07T15:52:24.484Z", "productid": 125, "quantity": 1, "unit_price": 8.93} -{"id": 150000702, "customerid": 15, "time": "2023-02-07T16:01:49.016Z", "productid": 163, "quantity": 1, "unit_price": 11.01, "discount": 1.08} -{"id": 150000716, "customerid": 9, "time": "2023-02-07T16:40:01.037Z", "productid": 193, "quantity": 1, "unit_price": 31.44} -{"id": 150000727, "customerid": 29, "time": "2023-02-07T16:41:28.959Z", "productid": 116, "quantity": 1, "unit_price": 15.68, "discount": 7.23} -{"id": 150000707, "customerid": 25, "time": "2023-02-07T17:29:11.975Z", "productid": 124, "quantity": 1, "unit_price": 57.94, "discount": 3.59} -{"id": 150000706, "customerid": 4, "time": "2023-02-07T20:24:06.450Z", "productid": 40, "quantity": 1, "unit_price": 7.91, "discount": 3.88} -{"id": 150000718, "customerid": 23, "time": "2023-02-07T21:20:08.591Z", "productid": 37, "quantity": 1, "unit_price": 12.94, "discount": 1.39} -{"id": 150000736, "customerid": 17, "time": "2023-02-07T23:13:52.727Z", "productid": 8, "quantity": 2, "unit_price": 9.06, "discount": 7.59} -{"id": 150000731, "customerid": 13, "time": "2023-02-08T03:41:14.595Z", "productid": 38, "quantity": 3, "unit_price": 6.74} -{"id": 150000740, "customerid": 17, "time": "2023-02-08T04:31:25.682Z", "productid": 14, "quantity": 2, "unit_price": 5.99} -{"id": 150000732, "customerid": 8, "time": "2023-02-08T06:11:25.413Z", "productid": 93, "quantity": 1, "unit_price": 58.77} -{"id": 150000729, "customerid": 12, "time": "2023-02-08T09:09:59.118Z", "productid": 24, "quantity": 2, "unit_price": 5.02} -{"id": 150000738, "customerid": 13, "time": "2023-02-08T09:19:05.218Z", "productid": 105, "quantity": 1, "unit_price": 10.44} -{"id": 150000739, "customerid": 16, "time": "2023-02-08T09:29:43.466Z", "productid": 67, "quantity": 1, "unit_price": 8.28} -{"id": 150000734, "customerid": 22, "time": "2023-02-08T11:28:17.118Z", "productid": 7, "quantity": 2, "unit_price": 12.7} -{"id": 150000735, "customerid": 18, "time": "2023-02-08T11:47:24.755Z", "productid": 130, "quantity": 1, "unit_price": 10.02, "discount": 2.07} -{"id": 150000730, "customerid": 16, "time": "2023-02-08T12:10:43.672Z", "productid": 45, "quantity": 1, "unit_price": 39.76} -{"id": 150000737, "customerid": 4, "time": "2023-02-08T12:39:19.636Z", "productid": 82, "quantity": 1, "unit_price": 85.96, "discount": 41.08} -{"id": 150000733, "customerid": 8, "time": "2023-02-08T16:30:08.775Z", "productid": 9, "quantity": 1, "unit_price": 15.41} -{"id": 150000741, "customerid": 11, "time": "2023-02-08T23:04:04.991Z", "productid": 88, "quantity": 1, "unit_price": 11.12} -{"id": 150000743, "customerid": 18, "time": "2023-02-08T23:47:35.280Z", "productid": 197, "quantity": 2, "unit_price": 9.22} -{"id": 150000748, "customerid": 12, "time": "2023-02-09T00:57:05.738Z", "productid": 115, "quantity": 1, "unit_price": 9.22} -{"id": 150000757, "customerid": 4, "time": "2023-02-09T01:13:27.162Z", "productid": 186, "quantity": 1, "unit_price": 9.27} -{"id": 150000758, "customerid": 8, "time": "2023-02-09T01:52:22.063Z", "productid": 46, "quantity": 1, "unit_price": 6.31, "discount": 3.14} -{"id": 150000756, "customerid": 10, "time": "2023-02-09T02:37:17.473Z", "productid": 89, "quantity": 2, "unit_price": 7.1} -{"id": 150000762, "customerid": 15, "time": "2023-02-09T03:24:36.574Z", "productid": 174, "quantity": 1, "unit_price": 10.71, "discount": 4.25} -{"id": 150000763, "customerid": 4, "time": "2023-02-09T03:42:45.889Z", "productid": 119, "quantity": 1, "unit_price": 6.36, "discount": 3.02} -{"id": 150000749, "customerid": 5, "time": "2023-02-09T05:33:14.352Z", "productid": 115, "quantity": 1, "unit_price": 9.22, "discount": 3.83} -{"id": 150000761, "customerid": 17, "time": "2023-02-09T07:20:47.039Z", "productid": 132, "quantity": 1, "unit_price": 10.21, "discount": 1.76} -{"id": 150000766, "customerid": 10, "time": "2023-02-09T07:46:56.063Z", "productid": 158, "quantity": 2, "unit_price": 30.42} -{"id": 150000760, "customerid": 17, "time": "2023-02-09T10:37:41.960Z", "productid": 86, "quantity": 2, "unit_price": 6.1} -{"id": 150000750, "customerid": 13, "time": "2023-02-09T11:04:35.617Z", "productid": 29, "quantity": 3, "unit_price": 12.07, "discount": 5.76} -{"id": 150000754, "customerid": 23, "time": "2023-02-09T12:35:00.974Z", "productid": 206, "quantity": 1, "unit_price": 10.29} -{"id": 150000747, "customerid": 16, "time": "2023-02-09T12:58:27.785Z", "productid": 105, "quantity": 1, "unit_price": 10.44} -{"id": 150000752, "customerid": 4, "time": "2023-02-09T13:07:17.460Z", "productid": 115, "quantity": 2, "unit_price": 9.22} -{"id": 150000765, "customerid": 14, "time": "2023-02-09T13:11:12.246Z", "productid": 134, "quantity": 1, "unit_price": 7.01} -{"id": 150000746, "customerid": 18, "time": "2023-02-09T13:37:05.281Z", "productid": 24, "quantity": 1, "unit_price": 5.02} -{"id": 150000744, "customerid": 16, "time": "2023-02-09T15:54:23.059Z", "productid": 120, "quantity": 1, "unit_price": 10.88} -{"id": 150000751, "customerid": 14, "time": "2023-02-09T18:28:02.790Z", "productid": 67, "quantity": 1, "unit_price": 8.28, "discount": 1.45} -{"id": 150000755, "customerid": 16, "time": "2023-02-09T18:59:06.216Z", "productid": 203, "quantity": 1, "unit_price": 6.18, "discount": 1.12} -{"id": 150000745, "customerid": 26, "time": "2023-02-09T19:01:26.475Z", "productid": 196, "quantity": 1, "unit_price": 8.0, "discount": 2.58} -{"id": 150000742, "customerid": 20, "time": "2023-02-09T19:23:14.626Z", "productid": 38, "quantity": 1, "unit_price": 6.74} -{"id": 150000764, "customerid": 27, "time": "2023-02-09T19:38:39.316Z", "productid": 89, "quantity": 1, "unit_price": 7.1} -{"id": 150000759, "customerid": 19, "time": "2023-02-09T21:59:14.603Z", "productid": 104, "quantity": 2, "unit_price": 44.08} -{"id": 150000753, "customerid": 8, "time": "2023-02-09T22:03:48.644Z", "productid": 85, "quantity": 1, "unit_price": 34.56} -{"id": 150000768, "customerid": 13, "time": "2023-02-10T02:06:17.667Z", "productid": 163, "quantity": 1, "unit_price": 11.01, "discount": 0.77} -{"id": 150000776, "customerid": 26, "time": "2023-02-10T03:22:45.232Z", "productid": 14, "quantity": 1, "unit_price": 5.99, "discount": 1.22} -{"id": 150000774, "customerid": 28, "time": "2023-02-10T04:31:23.704Z", "productid": 73, "quantity": 1, "unit_price": 7.94, "discount": 3.86} -{"id": 150000772, "customerid": 3, "time": "2023-02-10T06:19:29.437Z", "productid": 33, "quantity": 1, "unit_price": 16.69} -{"id": 150000771, "customerid": 1, "time": "2023-02-10T07:23:09.771Z", "productid": 108, "quantity": 1, "unit_price": 33.6, "discount": 3.39} -{"id": 150000769, "customerid": 12, "time": "2023-02-10T09:00:04.379Z", "productid": 66, "quantity": 2, "unit_price": 5.62} -{"id": 150000775, "customerid": 22, "time": "2023-02-10T10:15:42.017Z", "productid": 16, "quantity": 4, "unit_price": 18.64} -{"id": 150000773, "customerid": 24, "time": "2023-02-10T12:05:18.190Z", "productid": 46, "quantity": 1, "unit_price": 6.31, "discount": 2.02} -{"id": 150000767, "customerid": 1, "time": "2023-02-10T16:10:52.176Z", "productid": 206, "quantity": 1, "unit_price": 10.29} -{"id": 150000777, "customerid": 14, "time": "2023-02-10T19:07:57.077Z", "productid": 107, "quantity": 1, "unit_price": 15.03, "discount": 6.91} -{"id": 150000770, "customerid": 16, "time": "2023-02-10T20:53:42.757Z", "productid": 155, "quantity": 1, "unit_price": 83.44} -{"id": 150000794, "customerid": 8, "time": "2023-02-10T22:17:41.307Z", "productid": 141, "quantity": 2, "unit_price": 6.36, "discount": 4.65} -{"id": 150000793, "customerid": 22, "time": "2023-02-10T22:50:02.933Z", "productid": 178, "quantity": 1, "unit_price": 6.11} -{"id": 150000778, "customerid": 1, "time": "2023-02-10T23:17:31.303Z", "productid": 194, "quantity": 1, "unit_price": 6.77} -{"id": 150000801, "customerid": 3, "time": "2023-02-11T02:49:54.837Z", "productid": 108, "quantity": 2, "unit_price": 33.6, "discount": 14.87} -{"id": 150000798, "customerid": 24, "time": "2023-02-11T04:00:41.407Z", "productid": 48, "quantity": 1, "unit_price": 5.45, "discount": 2.25} -{"id": 150000785, "customerid": 23, "time": "2023-02-11T04:51:45.822Z", "productid": 37, "quantity": 3, "unit_price": 12.94, "discount": 3.09} -{"id": 150000784, "customerid": 13, "time": "2023-02-11T06:57:29.573Z", "productid": 116, "quantity": 1, "unit_price": 15.68} -{"id": 150000797, "customerid": 11, "time": "2023-02-11T07:29:25.422Z", "productid": 125, "quantity": 1, "unit_price": 8.93} -{"id": 150000781, "customerid": 15, "time": "2023-02-11T08:06:41.648Z", "productid": 39, "quantity": 1, "unit_price": 12.38} -{"id": 150000792, "customerid": 4, "time": "2023-02-11T08:42:20.193Z", "productid": 163, "quantity": 1, "unit_price": 11.01} -{"id": 150000786, "customerid": 16, "time": "2023-02-11T09:39:55.603Z", "productid": 143, "quantity": 1, "unit_price": 10.93, "discount": 4.73} -{"id": 150000789, "customerid": 3, "time": "2023-02-11T10:23:46.768Z", "productid": 31, "quantity": 1, "unit_price": 52.53} -{"id": 150000782, "customerid": 17, "time": "2023-02-11T11:22:03.450Z", "productid": 40, "quantity": 1, "unit_price": 7.91} -{"id": 150000787, "customerid": 10, "time": "2023-02-11T12:17:00.058Z", "productid": 65, "quantity": 2, "unit_price": 10.28, "discount": 2.85} -{"id": 150000800, "customerid": 3, "time": "2023-02-11T12:48:05.931Z", "productid": 136, "quantity": 1, "unit_price": 26.65} -{"id": 150000790, "customerid": 3, "time": "2023-02-11T13:13:53.829Z", "productid": 172, "quantity": 1, "unit_price": 12.07} -{"id": 150000796, "customerid": 25, "time": "2023-02-11T13:18:05.810Z", "productid": 40, "quantity": 1, "unit_price": 7.91} -{"id": 150000795, "customerid": 9, "time": "2023-02-11T13:55:02.524Z", "productid": 158, "quantity": 2, "unit_price": 30.42} -{"id": 150000783, "customerid": 20, "time": "2023-02-11T14:13:57.115Z", "productid": 151, "quantity": 1, "unit_price": 7.24} -{"id": 150000799, "customerid": 11, "time": "2023-02-11T16:57:42.749Z", "productid": 180, "quantity": 2, "unit_price": 23.2} -{"id": 150000779, "customerid": 19, "time": "2023-02-11T19:12:13.588Z", "productid": 100, "quantity": 2, "unit_price": 15.66} -{"id": 150000780, "customerid": 4, "time": "2023-02-11T20:48:44.116Z", "productid": 39, "quantity": 1, "unit_price": 12.38} -{"id": 150000791, "customerid": 14, "time": "2023-02-11T21:13:13.778Z", "productid": 182, "quantity": 2, "unit_price": 9.18, "discount": 1.82} -{"id": 150000788, "customerid": 17, "time": "2023-02-11T21:53:10.607Z", "productid": 28, "quantity": 2, "unit_price": 7.1, "discount": 6.69} -{"id": 150000831, "customerid": 22, "time": "2023-02-11T22:59:06.194Z", "productid": 171, "quantity": 2, "unit_price": 19.89, "discount": 14.72} -{"id": 150000822, "customerid": 29, "time": "2023-02-11T23:55:00.071Z", "productid": 174, "quantity": 1, "unit_price": 10.71} -{"id": 150000809, "customerid": 4, "time": "2023-02-12T00:33:23.020Z", "productid": 69, "quantity": 1, "unit_price": 8.65} -{"id": 150000805, "customerid": 5, "time": "2023-02-12T00:33:34.121Z", "productid": 19, "quantity": 1, "unit_price": 11.78} -{"id": 150000812, "customerid": 22, "time": "2023-02-12T01:48:03.428Z", "productid": 9, "quantity": 2, "unit_price": 15.41, "discount": 3.57} -{"id": 150000825, "customerid": 27, "time": "2023-02-12T02:06:00.910Z", "productid": 138, "quantity": 1, "unit_price": 6.8, "discount": 1.57} -{"id": 150000802, "customerid": 1, "time": "2023-02-12T02:21:05.523Z", "productid": 182, "quantity": 1, "unit_price": 9.18} -{"id": 150000816, "customerid": 4, "time": "2023-02-12T02:25:54.531Z", "productid": 127, "quantity": 1, "unit_price": 20.99} -{"id": 150000819, "customerid": 8, "time": "2023-02-12T04:07:46.343Z", "productid": 201, "quantity": 2, "unit_price": 8.65} -{"id": 150000813, "customerid": 29, "time": "2023-02-12T04:18:23.494Z", "productid": 163, "quantity": 1, "unit_price": 11.01, "discount": 2.15} -{"id": 150000828, "customerid": 23, "time": "2023-02-12T05:47:03.801Z", "productid": 194, "quantity": 2, "unit_price": 6.77} -{"id": 150000806, "customerid": 16, "time": "2023-02-12T05:54:48.370Z", "productid": 59, "quantity": 1, "unit_price": 23.22, "discount": 9.14} -{"id": 150000820, "customerid": 4, "time": "2023-02-12T06:17:20.343Z", "productid": 67, "quantity": 1, "unit_price": 8.28, "discount": 2.81} -{"id": 150000814, "customerid": 1, "time": "2023-02-12T06:17:45.033Z", "productid": 167, "quantity": 1, "unit_price": 6.56, "discount": 2.15} -{"id": 150000821, "customerid": 7, "time": "2023-02-12T06:26:13.998Z", "productid": 193, "quantity": 1, "unit_price": 31.44} -{"id": 150000810, "customerid": 16, "time": "2023-02-12T08:51:05.523Z", "productid": 87, "quantity": 3, "unit_price": 12.05, "discount": 9.31} -{"id": 150000824, "customerid": 7, "time": "2023-02-12T09:13:50.019Z", "productid": 173, "quantity": 2, "unit_price": 20.52, "discount": 6.85} -{"id": 150000833, "customerid": 2, "time": "2023-02-12T11:49:32.602Z", "productid": 20, "quantity": 1, "unit_price": 5.24} -{"id": 150000826, "customerid": 10, "time": "2023-02-12T12:27:18.310Z", "productid": 158, "quantity": 2, "unit_price": 30.42} -{"id": 150000817, "customerid": 1, "time": "2023-02-12T12:39:15.147Z", "productid": 91, "quantity": 1, "unit_price": 13.5} -{"id": 150000832, "customerid": 29, "time": "2023-02-12T12:50:59.839Z", "productid": 194, "quantity": 2, "unit_price": 6.77, "discount": 3.41} -{"id": 150000804, "customerid": 29, "time": "2023-02-12T13:28:14.425Z", "productid": 91, "quantity": 2, "unit_price": 13.5, "discount": 5.22} -{"id": 150000807, "customerid": 1, "time": "2023-02-12T14:01:43.702Z", "productid": 40, "quantity": 2, "unit_price": 7.91, "discount": 6.7} -{"id": 150000830, "customerid": 17, "time": "2023-02-12T14:22:17.204Z", "productid": 5, "quantity": 2, "unit_price": 5.43} -{"id": 150000827, "customerid": 9, "time": "2023-02-12T15:26:32.709Z", "productid": 145, "quantity": 1, "unit_price": 41.55} -{"id": 150000803, "customerid": 27, "time": "2023-02-12T16:43:32.742Z", "productid": 99, "quantity": 1, "unit_price": 9.21} -{"id": 150000815, "customerid": 3, "time": "2023-02-12T17:27:55.218Z", "productid": 127, "quantity": 1, "unit_price": 20.99} -{"id": 150000834, "customerid": 7, "time": "2023-02-12T17:47:49.795Z", "productid": 59, "quantity": 2, "unit_price": 23.22} -{"id": 150000829, "customerid": 6, "time": "2023-02-12T18:50:30.245Z", "productid": 30, "quantity": 1, "unit_price": 26.98} -{"id": 150000808, "customerid": 17, "time": "2023-02-12T19:03:53.361Z", "productid": 87, "quantity": 1, "unit_price": 12.05} -{"id": 150000823, "customerid": 4, "time": "2023-02-12T20:13:51.815Z", "productid": 60, "quantity": 2, "unit_price": 11.18} -{"id": 150000818, "customerid": 3, "time": "2023-02-12T20:54:06.835Z", "productid": 138, "quantity": 1, "unit_price": 6.8} -{"id": 150000811, "customerid": 11, "time": "2023-02-12T21:57:05.388Z", "productid": 186, "quantity": 2, "unit_price": 9.27} -{"id": 150000842, "customerid": 11, "time": "2023-02-12T23:16:58.453Z", "productid": 160, "quantity": 2, "unit_price": 13.37, "discount": 7.44} -{"id": 150000839, "customerid": 30, "time": "2023-02-12T23:55:04.067Z", "productid": 68, "quantity": 2, "unit_price": 7.02, "discount": 5.32} -{"id": 150000849, "customerid": 16, "time": "2023-02-13T01:49:20.744Z", "productid": 126, "quantity": 1, "unit_price": 12.35, "discount": 2.82} -{"id": 150000844, "customerid": 23, "time": "2023-02-13T04:28:38.468Z", "productid": 193, "quantity": 1, "unit_price": 31.44, "discount": 9.89} -{"id": 150000845, "customerid": 20, "time": "2023-02-13T06:21:49.246Z", "productid": 119, "quantity": 2, "unit_price": 6.36} -{"id": 150000835, "customerid": 28, "time": "2023-02-13T07:12:37.831Z", "productid": 3, "quantity": 2, "unit_price": 26.39} -{"id": 150000837, "customerid": 14, "time": "2023-02-13T09:59:34.226Z", "productid": 6, "quantity": 2, "unit_price": 8.66, "discount": 7.53} -{"id": 150000836, "customerid": 8, "time": "2023-02-13T10:38:50.718Z", "productid": 107, "quantity": 1, "unit_price": 15.03} -{"id": 150000850, "customerid": 26, "time": "2023-02-13T11:15:45.959Z", "productid": 150, "quantity": 1, "unit_price": 5.92, "discount": 0.49} -{"id": 150000838, "customerid": 26, "time": "2023-02-13T11:34:58.877Z", "productid": 21, "quantity": 1, "unit_price": 8.9, "discount": 3.83} -{"id": 150000846, "customerid": 11, "time": "2023-02-13T12:28:11.374Z", "productid": 59, "quantity": 1, "unit_price": 23.22} -{"id": 150000843, "customerid": 14, "time": "2023-02-13T12:29:47.657Z", "productid": 112, "quantity": 1, "unit_price": 17.31, "discount": 3.63} -{"id": 150000853, "customerid": 4, "time": "2023-02-13T15:28:27.467Z", "productid": 125, "quantity": 2, "unit_price": 8.93, "discount": 2.11} -{"id": 150000840, "customerid": 4, "time": "2023-02-13T17:28:08.881Z", "productid": 28, "quantity": 1, "unit_price": 7.1, "discount": 2.79} -{"id": 150000851, "customerid": 26, "time": "2023-02-13T18:10:51.253Z", "productid": 33, "quantity": 1, "unit_price": 16.69} -{"id": 150000847, "customerid": 6, "time": "2023-02-13T19:57:08.426Z", "productid": 134, "quantity": 1, "unit_price": 7.01, "discount": 0.63} -{"id": 150000848, "customerid": 1, "time": "2023-02-13T20:11:20.115Z", "productid": 58, "quantity": 1, "unit_price": 10.39} -{"id": 150000854, "customerid": 10, "time": "2023-02-13T20:49:49.189Z", "productid": 203, "quantity": 2, "unit_price": 6.18, "discount": 5.84} -{"id": 150000852, "customerid": 25, "time": "2023-02-13T21:24:59.840Z", "productid": 48, "quantity": 1, "unit_price": 5.45, "discount": 0.34} -{"id": 150000841, "customerid": 26, "time": "2023-02-13T21:51:38.160Z", "productid": 85, "quantity": 1, "unit_price": 34.56} -{"id": 150000856, "customerid": 8, "time": "2023-02-14T00:34:55.929Z", "productid": 103, "quantity": 1, "unit_price": 19.72} -{"id": 150000858, "customerid": 6, "time": "2023-02-14T01:11:21.806Z", "productid": 145, "quantity": 1, "unit_price": 41.55, "discount": 4.74} -{"id": 150000855, "customerid": 9, "time": "2023-02-14T06:34:29.790Z", "productid": 57, "quantity": 1, "unit_price": 6.11, "discount": 1.01} -{"id": 150000859, "customerid": 13, "time": "2023-02-14T06:46:56.587Z", "productid": 22, "quantity": 1, "unit_price": 19.89, "discount": 3.1} -{"id": 150000868, "customerid": 18, "time": "2023-02-14T08:10:02.063Z", "productid": 37, "quantity": 1, "unit_price": 12.94} -{"id": 150000863, "customerid": 30, "time": "2023-02-14T08:53:13.155Z", "productid": 157, "quantity": 1, "unit_price": 13.61} -{"id": 150000865, "customerid": 15, "time": "2023-02-14T08:53:34.950Z", "productid": 14, "quantity": 1, "unit_price": 5.99, "discount": 2.58} -{"id": 150000870, "customerid": 2, "time": "2023-02-14T13:33:08.083Z", "productid": 195, "quantity": 2, "unit_price": 11.38} -{"id": 150000866, "customerid": 6, "time": "2023-02-14T13:37:15.531Z", "productid": 168, "quantity": 1, "unit_price": 11.15} -{"id": 150000861, "customerid": 14, "time": "2023-02-14T13:52:29.050Z", "productid": 12, "quantity": 2, "unit_price": 7.49} -{"id": 150000869, "customerid": 20, "time": "2023-02-14T13:55:58.147Z", "productid": 38, "quantity": 2, "unit_price": 6.74} -{"id": 150000867, "customerid": 9, "time": "2023-02-14T15:25:10.909Z", "productid": 125, "quantity": 1, "unit_price": 8.93} -{"id": 150000860, "customerid": 27, "time": "2023-02-14T18:59:59.480Z", "productid": 161, "quantity": 1, "unit_price": 29.88, "discount": 2.43} -{"id": 150000857, "customerid": 22, "time": "2023-02-14T19:50:36.705Z", "productid": 102, "quantity": 2, "unit_price": 11.6} -{"id": 150000864, "customerid": 18, "time": "2023-02-14T20:06:12.200Z", "productid": 132, "quantity": 1, "unit_price": 10.21, "discount": 2.73} -{"id": 150000862, "customerid": 10, "time": "2023-02-14T21:50:31.923Z", "productid": 76, "quantity": 1, "unit_price": 49.32, "discount": 14.7} -{"id": 150000873, "customerid": 4, "time": "2023-02-14T22:25:01.129Z", "productid": 46, "quantity": 2, "unit_price": 6.31} -{"id": 150000881, "customerid": 22, "time": "2023-02-14T22:39:03.112Z", "productid": 64, "quantity": 1, "unit_price": 14.18} -{"id": 150000877, "customerid": 30, "time": "2023-02-14T23:46:00.554Z", "productid": 76, "quantity": 2, "unit_price": 49.32} -{"id": 150000878, "customerid": 12, "time": "2023-02-15T04:19:25.775Z", "productid": 126, "quantity": 1, "unit_price": 12.35} -{"id": 150000888, "customerid": 18, "time": "2023-02-15T06:48:32.652Z", "productid": 169, "quantity": 1, "unit_price": 5.23} -{"id": 150000875, "customerid": 10, "time": "2023-02-15T07:37:11.874Z", "productid": 53, "quantity": 1, "unit_price": 12.62} -{"id": 150000879, "customerid": 29, "time": "2023-02-15T08:04:05.121Z", "productid": 42, "quantity": 1, "unit_price": 5.37} -{"id": 150000889, "customerid": 2, "time": "2023-02-15T10:46:53.983Z", "productid": 68, "quantity": 2, "unit_price": 7.02} -{"id": 150000882, "customerid": 3, "time": "2023-02-15T11:59:10.483Z", "productid": 16, "quantity": 2, "unit_price": 18.64} -{"id": 150000886, "customerid": 22, "time": "2023-02-15T12:46:10.434Z", "productid": 152, "quantity": 1, "unit_price": 11.28, "discount": 5.09} -{"id": 150000872, "customerid": 14, "time": "2023-02-15T15:12:32.858Z", "productid": 38, "quantity": 1, "unit_price": 6.74, "discount": 2.35} -{"id": 150000871, "customerid": 16, "time": "2023-02-15T15:22:07.575Z", "productid": 204, "quantity": 1, "unit_price": 8.2, "discount": 1.73} -{"id": 150000874, "customerid": 27, "time": "2023-02-15T15:24:18.429Z", "productid": 165, "quantity": 2, "unit_price": 41.83} -{"id": 150000887, "customerid": 4, "time": "2023-02-15T15:56:53.981Z", "productid": 30, "quantity": 1, "unit_price": 26.98, "discount": 9.54} -{"id": 150000885, "customerid": 14, "time": "2023-02-15T16:46:50.408Z", "productid": 134, "quantity": 2, "unit_price": 7.01} -{"id": 150000880, "customerid": 13, "time": "2023-02-15T17:38:29.205Z", "productid": 132, "quantity": 2, "unit_price": 10.21} -{"id": 150000876, "customerid": 15, "time": "2023-02-15T19:44:39.642Z", "productid": 127, "quantity": 1, "unit_price": 20.99, "discount": 10.44} -{"id": 150000883, "customerid": 9, "time": "2023-02-15T20:02:36.449Z", "productid": 154, "quantity": 1, "unit_price": 42.85} -{"id": 150000884, "customerid": 15, "time": "2023-02-15T20:46:41.765Z", "productid": 137, "quantity": 1, "unit_price": 51.89} -{"id": 150000896, "customerid": 7, "time": "2023-02-15T23:42:27.464Z", "productid": 109, "quantity": 1, "unit_price": 10.64} -{"id": 150000890, "customerid": 1, "time": "2023-02-16T01:34:01.722Z", "productid": 5, "quantity": 1, "unit_price": 5.43} -{"id": 150000891, "customerid": 21, "time": "2023-02-16T02:43:33.842Z", "productid": 104, "quantity": 1, "unit_price": 44.08, "discount": 3.76} -{"id": 150000898, "customerid": 24, "time": "2023-02-16T03:57:18.720Z", "productid": 161, "quantity": 1, "unit_price": 29.88} -{"id": 150000893, "customerid": 11, "time": "2023-02-16T09:20:23.341Z", "productid": 63, "quantity": 2, "unit_price": 8.34} -{"id": 150000901, "customerid": 15, "time": "2023-02-16T09:45:17.396Z", "productid": 52, "quantity": 2, "unit_price": 40.62} -{"id": 150000894, "customerid": 17, "time": "2023-02-16T13:21:13.133Z", "productid": 44, "quantity": 2, "unit_price": 20.42, "discount": 20.33} -{"id": 150000892, "customerid": 5, "time": "2023-02-16T13:54:37.946Z", "productid": 109, "quantity": 1, "unit_price": 10.64} -{"id": 150000902, "customerid": 14, "time": "2023-02-16T14:04:51.954Z", "productid": 15, "quantity": 1, "unit_price": 10.96, "discount": 5.07} -{"id": 150000897, "customerid": 28, "time": "2023-02-16T16:55:51.138Z", "productid": 54, "quantity": 1, "unit_price": 11.68} -{"id": 150000900, "customerid": 24, "time": "2023-02-16T17:10:38.713Z", "productid": 24, "quantity": 1, "unit_price": 5.02} -{"id": 150000895, "customerid": 10, "time": "2023-02-16T18:00:04.826Z", "productid": 153, "quantity": 1, "unit_price": 19.17, "discount": 5.66} -{"id": 150000899, "customerid": 3, "time": "2023-02-16T21:29:41.853Z", "productid": 169, "quantity": 1, "unit_price": 5.23} -{"id": 150000903, "customerid": 21, "time": "2023-02-16T22:26:35.909Z", "productid": 14, "quantity": 1, "unit_price": 5.99} -{"id": 150000906, "customerid": 11, "time": "2023-02-17T00:10:34.621Z", "productid": 136, "quantity": 1, "unit_price": 26.65} -{"id": 150000905, "customerid": 1, "time": "2023-02-17T02:27:25.627Z", "productid": 160, "quantity": 1, "unit_price": 13.37, "discount": 1.44} -{"id": 150000904, "customerid": 7, "time": "2023-02-17T09:39:40.298Z", "productid": 123, "quantity": 1, "unit_price": 29.75} -{"id": 150000909, "customerid": 9, "time": "2023-02-17T12:41:37.409Z", "productid": 112, "quantity": 1, "unit_price": 17.31, "discount": 4.86} -{"id": 150000907, "customerid": 15, "time": "2023-02-17T14:17:46.802Z", "productid": 176, "quantity": 2, "unit_price": 7.79} -{"id": 150000911, "customerid": 10, "time": "2023-02-17T20:23:14.722Z", "productid": 77, "quantity": 1, "unit_price": 96.05} -{"id": 150000908, "customerid": 30, "time": "2023-02-17T20:40:40.924Z", "productid": 154, "quantity": 1, "unit_price": 42.85, "discount": 3.46} -{"id": 150000910, "customerid": 15, "time": "2023-02-17T21:25:35.099Z", "productid": 12, "quantity": 2, "unit_price": 7.49} -{"id": 150000916, "customerid": 6, "time": "2023-02-17T23:54:38.844Z", "productid": 188, "quantity": 1, "unit_price": 35.21, "discount": 8.77} -{"id": 150000929, "customerid": 30, "time": "2023-02-18T00:11:11.950Z", "productid": 72, "quantity": 1, "unit_price": 11.75} -{"id": 150000921, "customerid": 13, "time": "2023-02-18T00:29:25.557Z", "productid": 16, "quantity": 1, "unit_price": 18.64} -{"id": 150000912, "customerid": 8, "time": "2023-02-18T01:24:44.892Z", "productid": 86, "quantity": 2, "unit_price": 6.1} -{"id": 150000932, "customerid": 7, "time": "2023-02-18T02:21:36.472Z", "productid": 137, "quantity": 1, "unit_price": 51.89} -{"id": 150000931, "customerid": 1, "time": "2023-02-18T02:26:44.366Z", "productid": 67, "quantity": 1, "unit_price": 8.28} -{"id": 150000918, "customerid": 26, "time": "2023-02-18T02:50:52.912Z", "productid": 15, "quantity": 2, "unit_price": 10.96} -{"id": 150000928, "customerid": 18, "time": "2023-02-18T04:32:43.181Z", "productid": 25, "quantity": 2, "unit_price": 8.54} -{"id": 150000933, "customerid": 12, "time": "2023-02-18T04:55:24.581Z", "productid": 56, "quantity": 1, "unit_price": 5.47} -{"id": 150000940, "customerid": 22, "time": "2023-02-18T05:20:53.884Z", "productid": 10, "quantity": 2, "unit_price": 9.53} -{"id": 150000941, "customerid": 26, "time": "2023-02-18T05:26:57.327Z", "productid": 185, "quantity": 2, "unit_price": 7.89, "discount": 2.4} -{"id": 150000926, "customerid": 21, "time": "2023-02-18T05:53:42.209Z", "productid": 6, "quantity": 1, "unit_price": 8.66} -{"id": 150000920, "customerid": 11, "time": "2023-02-18T06:35:06.301Z", "productid": 96, "quantity": 2, "unit_price": 8.52} -{"id": 150000935, "customerid": 8, "time": "2023-02-18T06:55:27.967Z", "productid": 102, "quantity": 1, "unit_price": 11.6} -{"id": 150000943, "customerid": 7, "time": "2023-02-18T07:19:12.455Z", "productid": 187, "quantity": 1, "unit_price": 15.75, "discount": 5.9} -{"id": 150000919, "customerid": 18, "time": "2023-02-18T10:16:51.576Z", "productid": 176, "quantity": 1, "unit_price": 7.79} -{"id": 150000914, "customerid": 12, "time": "2023-02-18T10:35:20.518Z", "productid": 186, "quantity": 1, "unit_price": 9.27, "discount": 0.95} -{"id": 150000936, "customerid": 13, "time": "2023-02-18T11:22:30.252Z", "productid": 90, "quantity": 1, "unit_price": 7.94} -{"id": 150000939, "customerid": 16, "time": "2023-02-18T11:56:49.593Z", "productid": 88, "quantity": 1, "unit_price": 11.12} -{"id": 150000927, "customerid": 22, "time": "2023-02-18T12:30:20.259Z", "productid": 47, "quantity": 2, "unit_price": 12.3} -{"id": 150000922, "customerid": 17, "time": "2023-02-18T13:05:47.413Z", "productid": 30, "quantity": 2, "unit_price": 26.98, "discount": 25.84} -{"id": 150000930, "customerid": 9, "time": "2023-02-18T13:54:32.753Z", "productid": 104, "quantity": 2, "unit_price": 44.08} -{"id": 150000915, "customerid": 13, "time": "2023-02-18T14:04:32.708Z", "productid": 71, "quantity": 1, "unit_price": 11.9} -{"id": 150000913, "customerid": 22, "time": "2023-02-18T15:07:24.131Z", "productid": 43, "quantity": 1, "unit_price": 9.13, "discount": 4.1} -{"id": 150000923, "customerid": 6, "time": "2023-02-18T15:36:58.379Z", "productid": 96, "quantity": 1, "unit_price": 8.52} -{"id": 150000937, "customerid": 6, "time": "2023-02-18T16:18:21.957Z", "productid": 38, "quantity": 2, "unit_price": 6.74} -{"id": 150000925, "customerid": 29, "time": "2023-02-18T17:54:18.292Z", "productid": 60, "quantity": 1, "unit_price": 11.18, "discount": 3.96} -{"id": 150000938, "customerid": 6, "time": "2023-02-18T18:18:10.368Z", "productid": 94, "quantity": 1, "unit_price": 5.03, "discount": 1.6} -{"id": 150000924, "customerid": 10, "time": "2023-02-18T18:50:06.253Z", "productid": 143, "quantity": 2, "unit_price": 10.93} -{"id": 150000942, "customerid": 7, "time": "2023-02-18T18:59:43.296Z", "productid": 149, "quantity": 2, "unit_price": 46.38} -{"id": 150000934, "customerid": 20, "time": "2023-02-18T19:43:34.860Z", "productid": 178, "quantity": 1, "unit_price": 6.11} -{"id": 150000917, "customerid": 11, "time": "2023-02-18T21:44:42.325Z", "productid": 139, "quantity": 1, "unit_price": 11.56} -{"id": 150000950, "customerid": 20, "time": "2023-02-18T22:23:14.365Z", "productid": 194, "quantity": 1, "unit_price": 6.77} -{"id": 150000957, "customerid": 7, "time": "2023-02-18T23:10:02.054Z", "productid": 13, "quantity": 1, "unit_price": 9.69} -{"id": 150000953, "customerid": 2, "time": "2023-02-18T23:53:35.015Z", "productid": 74, "quantity": 3, "unit_price": 12.98, "discount": 13.39} -{"id": 150000961, "customerid": 25, "time": "2023-02-19T00:16:28.994Z", "productid": 122, "quantity": 1, "unit_price": 13.31, "discount": 2.13} -{"id": 150000959, "customerid": 23, "time": "2023-02-19T01:19:10.034Z", "productid": 176, "quantity": 1, "unit_price": 7.79} -{"id": 150000956, "customerid": 28, "time": "2023-02-19T03:28:47.250Z", "productid": 2, "quantity": 2, "unit_price": 11.81} -{"id": 150000945, "customerid": 17, "time": "2023-02-19T03:51:05.893Z", "productid": 46, "quantity": 1, "unit_price": 6.31, "discount": 1.79} -{"id": 150000955, "customerid": 12, "time": "2023-02-19T05:57:24.938Z", "productid": 94, "quantity": 1, "unit_price": 5.03} -{"id": 150000951, "customerid": 7, "time": "2023-02-19T07:37:58.316Z", "productid": 39, "quantity": 2, "unit_price": 12.38, "discount": 9.83} -{"id": 150000944, "customerid": 4, "time": "2023-02-19T09:33:58.540Z", "productid": 97, "quantity": 1, "unit_price": 14.48} -{"id": 150000949, "customerid": 26, "time": "2023-02-19T09:55:37.450Z", "productid": 125, "quantity": 1, "unit_price": 8.93} -{"id": 150000946, "customerid": 16, "time": "2023-02-19T10:30:58.318Z", "productid": 114, "quantity": 1, "unit_price": 8.22} -{"id": 150000947, "customerid": 15, "time": "2023-02-19T17:02:53.918Z", "productid": 99, "quantity": 1, "unit_price": 9.21} -{"id": 150000952, "customerid": 25, "time": "2023-02-19T18:21:54.474Z", "productid": 41, "quantity": 1, "unit_price": 5.31, "discount": 0.62} -{"id": 150000948, "customerid": 22, "time": "2023-02-19T18:52:21.026Z", "productid": 111, "quantity": 1, "unit_price": 10.18, "discount": 1.13} -{"id": 150000958, "customerid": 6, "time": "2023-02-19T20:50:24.253Z", "productid": 97, "quantity": 2, "unit_price": 14.48, "discount": 4.8} -{"id": 150000960, "customerid": 21, "time": "2023-02-19T20:57:08.559Z", "productid": 167, "quantity": 1, "unit_price": 6.56} -{"id": 150000954, "customerid": 11, "time": "2023-02-19T21:47:44.879Z", "productid": 59, "quantity": 1, "unit_price": 23.22} -{"id": 150000977, "customerid": 28, "time": "2023-02-19T22:18:43.357Z", "productid": 119, "quantity": 2, "unit_price": 6.36} -{"id": 150000971, "customerid": 27, "time": "2023-02-20T00:15:50.514Z", "productid": 42, "quantity": 1, "unit_price": 5.37} -{"id": 150000972, "customerid": 21, "time": "2023-02-20T02:02:27.119Z", "productid": 126, "quantity": 1, "unit_price": 12.35, "discount": 1.1} -{"id": 150000962, "customerid": 18, "time": "2023-02-20T02:41:13.057Z", "productid": 190, "quantity": 1, "unit_price": 9.81} -{"id": 150000966, "customerid": 25, "time": "2023-02-20T03:52:29.979Z", "productid": 164, "quantity": 1, "unit_price": 18.71} -{"id": 150000974, "customerid": 30, "time": "2023-02-20T05:44:53.592Z", "productid": 117, "quantity": 1, "unit_price": 35.05, "discount": 9.66} -{"id": 150000983, "customerid": 2, "time": "2023-02-20T06:25:15.669Z", "productid": 36, "quantity": 2, "unit_price": 7.61} -{"id": 150000976, "customerid": 20, "time": "2023-02-20T07:07:40.256Z", "productid": 130, "quantity": 2, "unit_price": 10.02, "discount": 5.93} -{"id": 150000981, "customerid": 24, "time": "2023-02-20T07:08:42.304Z", "productid": 66, "quantity": 3, "unit_price": 5.62} -{"id": 150000973, "customerid": 12, "time": "2023-02-20T07:47:18.741Z", "productid": 50, "quantity": 2, "unit_price": 10.69, "discount": 3.01} -{"id": 150000967, "customerid": 2, "time": "2023-02-20T08:03:23.863Z", "productid": 53, "quantity": 2, "unit_price": 12.62, "discount": 11.19} -{"id": 150000970, "customerid": 13, "time": "2023-02-20T10:21:47.505Z", "productid": 153, "quantity": 2, "unit_price": 19.17, "discount": 14.89} -{"id": 150000965, "customerid": 28, "time": "2023-02-20T10:34:04.313Z", "productid": 106, "quantity": 1, "unit_price": 8.84} -{"id": 150000968, "customerid": 18, "time": "2023-02-20T11:01:57.390Z", "productid": 98, "quantity": 2, "unit_price": 32.37, "discount": 28.24} -{"id": 150000969, "customerid": 14, "time": "2023-02-20T13:10:14.902Z", "productid": 198, "quantity": 2, "unit_price": 6.75, "discount": 3.45} -{"id": 150000982, "customerid": 9, "time": "2023-02-20T13:19:24.708Z", "productid": 204, "quantity": 4, "unit_price": 8.2} -{"id": 150000975, "customerid": 16, "time": "2023-02-20T14:12:21.342Z", "productid": 53, "quantity": 1, "unit_price": 12.62} -{"id": 150000985, "customerid": 4, "time": "2023-02-20T15:34:15.614Z", "productid": 145, "quantity": 1, "unit_price": 41.55} -{"id": 150000963, "customerid": 24, "time": "2023-02-20T15:56:38.294Z", "productid": 94, "quantity": 1, "unit_price": 5.03, "discount": 0.38} -{"id": 150000979, "customerid": 27, "time": "2023-02-20T18:21:35.740Z", "productid": 15, "quantity": 2, "unit_price": 10.96, "discount": 3.52} -{"id": 150000984, "customerid": 15, "time": "2023-02-20T19:41:33.003Z", "productid": 83, "quantity": 2, "unit_price": 9.09, "discount": 1.99} -{"id": 150000978, "customerid": 11, "time": "2023-02-20T20:14:47.478Z", "productid": 144, "quantity": 1, "unit_price": 18.59} -{"id": 150000964, "customerid": 7, "time": "2023-02-20T20:20:20.232Z", "productid": 124, "quantity": 3, "unit_price": 57.94} -{"id": 150000980, "customerid": 30, "time": "2023-02-20T20:30:19.956Z", "productid": 59, "quantity": 1, "unit_price": 23.22} -{"id": 150001012, "customerid": 6, "time": "2023-02-20T22:36:14.181Z", "productid": 174, "quantity": 2, "unit_price": 10.71, "discount": 2.84} -{"id": 150001000, "customerid": 14, "time": "2023-02-20T22:58:10.903Z", "productid": 120, "quantity": 1, "unit_price": 10.88, "discount": 3.41} -{"id": 150001014, "customerid": 9, "time": "2023-02-21T00:07:37.990Z", "productid": 54, "quantity": 1, "unit_price": 11.68} -{"id": 150001007, "customerid": 11, "time": "2023-02-21T00:57:12.956Z", "productid": 56, "quantity": 1, "unit_price": 5.47} -{"id": 150000999, "customerid": 11, "time": "2023-02-21T02:15:06.285Z", "productid": 99, "quantity": 2, "unit_price": 9.21, "discount": 6.93} -{"id": 150000995, "customerid": 10, "time": "2023-02-21T03:08:13.004Z", "productid": 83, "quantity": 1, "unit_price": 9.09} -{"id": 150001004, "customerid": 19, "time": "2023-02-21T03:53:28.781Z", "productid": 105, "quantity": 1, "unit_price": 10.44, "discount": 5.08} -{"id": 150000988, "customerid": 5, "time": "2023-02-21T04:23:13.842Z", "productid": 142, "quantity": 1, "unit_price": 6.33} -{"id": 150000987, "customerid": 7, "time": "2023-02-21T04:57:09.459Z", "productid": 120, "quantity": 2, "unit_price": 10.88} -{"id": 150000998, "customerid": 15, "time": "2023-02-21T04:59:46.090Z", "productid": 52, "quantity": 2, "unit_price": 40.62} -{"id": 150001005, "customerid": 20, "time": "2023-02-21T05:38:52.210Z", "productid": 61, "quantity": 1, "unit_price": 19.0} -{"id": 150001011, "customerid": 23, "time": "2023-02-21T06:22:33.560Z", "productid": 116, "quantity": 1, "unit_price": 15.68} -{"id": 150001013, "customerid": 6, "time": "2023-02-21T06:50:10.893Z", "productid": 37, "quantity": 2, "unit_price": 12.94, "discount": 8.43} -{"id": 150000994, "customerid": 18, "time": "2023-02-21T06:50:51.285Z", "productid": 88, "quantity": 1, "unit_price": 11.12, "discount": 3.74} -{"id": 150000990, "customerid": 17, "time": "2023-02-21T08:08:29.539Z", "productid": 11, "quantity": 1, "unit_price": 12.08, "discount": 0.62} -{"id": 150001010, "customerid": 1, "time": "2023-02-21T10:06:30.605Z", "productid": 17, "quantity": 1, "unit_price": 5.08, "discount": 1.69} -{"id": 150000997, "customerid": 8, "time": "2023-02-21T10:59:26.776Z", "productid": 124, "quantity": 1, "unit_price": 57.94} -{"id": 150000996, "customerid": 6, "time": "2023-02-21T11:26:39.038Z", "productid": 23, "quantity": 2, "unit_price": 8.87, "discount": 2.68} -{"id": 150001001, "customerid": 24, "time": "2023-02-21T12:48:18.232Z", "productid": 5, "quantity": 1, "unit_price": 5.43} -{"id": 150000991, "customerid": 1, "time": "2023-02-21T13:42:06.048Z", "productid": 124, "quantity": 2, "unit_price": 57.94} -{"id": 150001002, "customerid": 11, "time": "2023-02-21T14:11:02.114Z", "productid": 137, "quantity": 1, "unit_price": 51.89} -{"id": 150001006, "customerid": 15, "time": "2023-02-21T14:26:24.580Z", "productid": 16, "quantity": 2, "unit_price": 18.64} -{"id": 150000992, "customerid": 26, "time": "2023-02-21T14:55:43.939Z", "productid": 18, "quantity": 3, "unit_price": 10.01, "discount": 4.95} -{"id": 150001009, "customerid": 6, "time": "2023-02-21T16:05:09.215Z", "productid": 67, "quantity": 1, "unit_price": 8.28} -{"id": 150000993, "customerid": 6, "time": "2023-02-21T16:34:29.767Z", "productid": 204, "quantity": 1, "unit_price": 8.2} -{"id": 150001008, "customerid": 19, "time": "2023-02-21T17:07:18.370Z", "productid": 24, "quantity": 1, "unit_price": 5.02} -{"id": 150000986, "customerid": 16, "time": "2023-02-21T18:43:09.852Z", "productid": 16, "quantity": 1, "unit_price": 18.64} -{"id": 150000989, "customerid": 8, "time": "2023-02-21T20:09:57.516Z", "productid": 163, "quantity": 1, "unit_price": 11.01} -{"id": 150001003, "customerid": 19, "time": "2023-02-21T20:21:33.575Z", "productid": 143, "quantity": 1, "unit_price": 10.93} diff --git a/retail-customer360-nutshop/nutshop-data/orders.schema.yml b/retail-customer360-nutshop/nutshop-data/orders.schema.yml deleted file mode 100644 index 88d8651e..00000000 --- a/retail-customer360-nutshop/nutshop-data/orders.schema.yml +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: "orders" -schema_version: "1" -partial_schema: false -columns: -- name: "id" - type: "BIGINT" - tests: - - "not_null" -- name: "customerid" - type: "BIGINT" - tests: - - "not_null" -- name: "time" - type: "TIMESTAMP" - tests: - - "not_null" -- name: "productid" - type: "BIGINT" - tests: - - "not_null" -- name: "quantity" - type: "BIGINT" - tests: - - "not_null" -- name: "unit_price" - type: "DOUBLE" - tests: - - "not_null" -- name: "discount" - type: "DOUBLE" \ No newline at end of file diff --git a/retail-customer360-nutshop/nutshop-data/orders.table.json b/retail-customer360-nutshop/nutshop-data/orders.table.json deleted file mode 100644 index 572a7cff..00000000 --- a/retail-customer360-nutshop/nutshop-data/orders.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/orders.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["id", "time"], - "timestamp" : "time", - "watermark-millis" : "1" - } -} \ No newline at end of file diff --git a/retail-customer360-nutshop/nutshop-data/package.json b/retail-customer360-nutshop/nutshop-data/package.json deleted file mode 100644 index f59a47db..00000000 --- a/retail-customer360-nutshop/nutshop-data/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": "1", - "package": { - "name": "datasqrl.examples.retail", - "version": "0.5.5", - "variant": "default", - "latest": true, - "type": "source", - "license": "ASFv2", - "repository": "https://github.com/DataSQRL/datasqrl-examples/blob/main/retail-customer360-nutshop/nutshop-data", - "homepage": "https://github.com/DataSQRL/datasqrl-examples/blob/main/retail-customer360-nutshop/nutshop-data", - "description": "This data package is used by the Customer 360 (Retail) Example which demonstrates how to integrate data from multiple sources to create a comprehensive Customer 360 view. By combining customer data with orders and product information, we can offer customers a detailed look at their purchase history and enable analytics and search functionalities through a GraphQL API.", - "documentation": "https://github.com/DataSQRL/datasqrl-examples/blob/main/retail-customer360-nutshop/nutshop-data/README.md", - "topics": ["datasqrl", "example", "nutshop", "customer360", "customer", "360"] - } -} diff --git a/retail-customer360-nutshop/nutshop-data/products.jsonl b/retail-customer360-nutshop/nutshop-data/products.jsonl deleted file mode 100644 index 6822451a..00000000 --- a/retail-customer360-nutshop/nutshop-data/products.jsonl +++ /dev/null @@ -1,208 +0,0 @@ -{"id":1,"name":"coconut meat, dried (desiccated), creamed","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut meat","usda_id":168585,"updated":"2023-01-01T22:14:30.525Z"} -{"id":2,"name":"coconut meat, dried (desiccated), creamed","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"coconut meat","usda_id":168585,"updated":"2023-01-01T22:14:30.525Z"} -{"id":3,"name":"coconut meat, dried (desiccated), creamed","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"coconut meat","usda_id":168585,"updated":"2023-01-01T22:14:30.525Z"} -{"id":4,"name":"coconut meat, dried (desiccated), sweetened, shredded","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut meat","usda_id":168586,"updated":"2023-01-01T22:14:30.525Z"} -{"id":5,"name":"sisymbrium sp. seeds, whole, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sisymbrium sp. seeds","usda_id":168587,"updated":"2023-01-01T22:14:30.525Z"} -{"id":6,"name":"almond butter, plain, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almond butter","usda_id":168588,"updated":"2023-01-01T22:14:30.525Z"} -{"id":7,"name":"chestnuts, japanese, boiled and steamed","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":168589,"updated":"2023-01-01T22:14:30.525Z"} -{"id":8,"name":"chestnuts, japanese, roasted","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":168590,"updated":"2023-01-01T22:14:30.525Z"} -{"id":9,"name":"chestnuts, japanese, roasted","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"chestnuts","usda_id":168590,"updated":"2023-01-01T22:14:30.525Z"} -{"id":10,"name":"lotus seeds, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"lotus seeds","usda_id":168591,"updated":"2023-01-01T22:14:30.525Z"} -{"id":11,"name":"almonds, honey roasted, unblanched","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":168592,"updated":"2023-01-01T22:14:30.525Z"} -{"id":12,"name":"sunflower seed kernels, oil roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":168593,"updated":"2023-01-01T22:14:30.525Z"} -{"id":13,"name":"sunflower seed kernels, toasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":168594,"updated":"2023-01-01T22:14:30.525Z"} -{"id":14,"name":"sunflower seed butter, with salt added (Includes foods for USDA's Food Distribution Program)","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed butter","usda_id":168595,"updated":"2023-01-01T22:14:30.525Z"} -{"id":15,"name":"almonds, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":168596,"updated":"2023-01-01T22:14:30.525Z"} -{"id":16,"name":"almonds, dry roasted, with salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"almonds","usda_id":168596,"updated":"2023-01-01T22:14:30.525Z"} -{"id":17,"name":"cashew butter, plain, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"cashew butter","usda_id":168597,"updated":"2023-01-01T22:14:30.525Z"} -{"id":18,"name":"macadamia nuts, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"macadamia nuts","usda_id":168598,"updated":"2023-01-01T22:14:30.525Z"} -{"id":19,"name":"mixed nuts, dry roasted, with peanuts, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":168599,"updated":"2023-01-01T22:14:30.525Z"} -{"id":20,"name":"mixed nuts, oil roasted, with peanuts, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":168600,"updated":"2023-01-01T22:14:30.525Z"} -{"id":21,"name":"mixed nuts, oil roasted, with peanuts, with salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"mixed nuts","usda_id":168600,"updated":"2023-01-01T22:14:30.525Z"} -{"id":22,"name":"mixed nuts, oil roasted, with peanuts, with salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"mixed nuts","usda_id":168600,"updated":"2023-01-01T22:14:30.525Z"} -{"id":23,"name":"pumpkin and squash seeds, whole, roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"pumpkin and squash seeds","usda_id":168601,"updated":"2023-01-01T22:14:30.525Z"} -{"id":24,"name":"almonds, oil roasted, lightly salted","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":168602,"updated":"2023-01-01T22:14:30.525Z"} -{"id":25,"name":"almonds, oil roasted, lightly salted","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"almonds","usda_id":168602,"updated":"2023-01-01T22:14:30.525Z"} -{"id":26,"name":"almonds, oil roasted, lightly salted","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"almonds","usda_id":168602,"updated":"2023-01-01T22:14:30.525Z"} -{"id":27,"name":"almond butter, plain, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almond butter","usda_id":168603,"updated":"2023-01-01T22:14:30.525Z"} -{"id":28,"name":"sesame butter, tahini, type of kernels unspecified","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame butter","usda_id":168604,"updated":"2023-01-01T22:14:30.525Z"} -{"id":29,"name":"sesame butter, tahini, type of kernels unspecified","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"sesame butter","usda_id":168604,"updated":"2023-01-01T22:14:30.525Z"} -{"id":30,"name":"sesame butter, tahini, type of kernels unspecified","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"sesame butter","usda_id":168604,"updated":"2023-01-01T22:14:30.525Z"} -{"id":31,"name":"sesame butter, tahini, type of kernels unspecified","sizing":"10 lbs","weight_in_gram":4536,"type":"Seeds","category":"sesame butter","usda_id":168604,"updated":"2023-01-01T22:14:30.525Z"} -{"id":32,"name":"sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame butter","usda_id":169406,"updated":"2023-01-01T22:14:30.525Z"} -{"id":33,"name":"sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"sesame butter","usda_id":169406,"updated":"2023-01-01T22:14:30.525Z"} -{"id":34,"name":"sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"sesame butter","usda_id":169406,"updated":"2023-01-01T22:14:30.525Z"} -{"id":35,"name":"sesame butter, tahini, from unroasted kernels (non-chemically removed seed coat)","sizing":"10 lbs","weight_in_gram":4536,"type":"Seeds","category":"sesame butter","usda_id":169406,"updated":"2023-01-01T22:14:30.525Z"} -{"id":36,"name":"watermelon seed kernels, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"watermelon seed kernels","usda_id":169407,"updated":"2023-01-01T22:14:30.525Z"} -{"id":37,"name":"watermelon seed kernels, dried","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"watermelon seed kernels","usda_id":169407,"updated":"2023-01-01T22:14:30.525Z"} -{"id":38,"name":"chestnuts, japanese, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":169408,"updated":"2023-01-01T22:14:30.525Z"} -{"id":39,"name":"sesame butter, tahini, from raw and stone ground kernels","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame butter","usda_id":169410,"updated":"2023-01-01T22:14:30.525Z"} -{"id":40,"name":"sesame seed kernels, dried (decorticated)","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame seed kernels","usda_id":169412,"updated":"2023-01-01T22:14:30.525Z"} -{"id":41,"name":"chestnuts, japanese, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":169413,"updated":"2023-01-01T22:14:30.525Z"} -{"id":42,"name":"flaxseed","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"flaxseed","usda_id":169414,"updated":"2023-01-01T22:14:30.525Z"} -{"id":43,"name":"flaxseed","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"flaxseed","usda_id":169414,"updated":"2023-01-01T22:14:30.525Z"} -{"id":44,"name":"flaxseed","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"flaxseed","usda_id":169414,"updated":"2023-01-01T22:14:30.525Z"} -{"id":45,"name":"flaxseed","sizing":"10 lbs","weight_in_gram":4536,"type":"Seeds","category":"flaxseed","usda_id":169414,"updated":"2023-01-01T22:14:30.525Z"} -{"id":46,"name":"pumpkin and squash seed kernels, roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"pumpkin and squash seed kernels","usda_id":169415,"updated":"2023-01-01T22:14:30.525Z"} -{"id":47,"name":"sesame seed kernels, toasted, with salt added (decorticated)","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame seed kernels","usda_id":169416,"updated":"2023-01-01T22:14:30.525Z"} -{"id":48,"name":"sunflower seed kernels, from shell, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":169417,"updated":"2023-01-01T22:14:30.525Z"} -{"id":49,"name":"sunflower seed kernels, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":169418,"updated":"2023-01-01T22:14:30.525Z"} -{"id":50,"name":"almonds, oil roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":169419,"updated":"2023-01-01T22:14:30.525Z"} -{"id":51,"name":"almonds, oil roasted, with salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"almonds","usda_id":169419,"updated":"2023-01-01T22:14:30.525Z"} -{"id":52,"name":"almonds, oil roasted, with salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"almonds","usda_id":169419,"updated":"2023-01-01T22:14:30.525Z"} -{"id":53,"name":"almonds, oil roasted, with salt added, smoke flavor","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":169420,"updated":"2023-01-01T22:14:30.525Z"} -{"id":54,"name":"cashew nuts, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"cashew nuts","usda_id":169421,"updated":"2023-01-01T22:14:30.525Z"} -{"id":55,"name":"cashew nuts, oil roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"cashew nuts","usda_id":169422,"updated":"2023-01-01T22:14:30.525Z"} -{"id":56,"name":"mixed nuts, oil roasted, without peanuts, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":169423,"updated":"2023-01-01T22:14:30.525Z"} -{"id":57,"name":"pecans, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pecans","usda_id":169424,"updated":"2023-01-01T22:14:30.525Z"} -{"id":58,"name":"pecans, dry roasted, with salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"pecans","usda_id":169424,"updated":"2023-01-01T22:14:30.525Z"} -{"id":59,"name":"pecans, dry roasted, with salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"pecans","usda_id":169424,"updated":"2023-01-01T22:14:30.525Z"} -{"id":60,"name":"pecans, oil roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pecans","usda_id":169425,"updated":"2023-01-01T22:14:30.525Z"} -{"id":61,"name":"pecans, oil roasted, with salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"pecans","usda_id":169425,"updated":"2023-01-01T22:14:30.525Z"} -{"id":62,"name":"pecans, oil roasted, with salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"pecans","usda_id":169425,"updated":"2023-01-01T22:14:30.525Z"} -{"id":63,"name":"pistachio nuts, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pistachio nuts","usda_id":169426,"updated":"2023-01-01T22:14:30.525Z"} -{"id":64,"name":"pistachio nuts, dry roasted, with salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"pistachio nuts","usda_id":169426,"updated":"2023-01-01T22:14:30.525Z"} -{"id":65,"name":"mixed nuts, oil roasted, with peanuts, lightly salted","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":169427,"updated":"2023-01-01T22:14:30.525Z"} -{"id":66,"name":"mixed nuts, oil roasted, without peanuts, lightly salted","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":169428,"updated":"2023-01-01T22:14:30.525Z"} -{"id":67,"name":"breadfruit seeds, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"breadfruit seeds","usda_id":170144,"updated":"2023-01-01T22:14:30.525Z"} -{"id":68,"name":"breadfruit seeds, boiled","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"breadfruit seeds","usda_id":170145,"updated":"2023-01-01T22:14:30.525Z"} -{"id":69,"name":"hemp seed, hulled","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"hemp seed","usda_id":170148,"updated":"2023-01-01T22:14:30.525Z"} -{"id":70,"name":"lotus seeds, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"lotus seeds","usda_id":170149,"updated":"2023-01-01T22:14:30.525Z"} -{"id":71,"name":"sesame seeds, whole, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame seeds","usda_id":170150,"updated":"2023-01-01T22:14:30.525Z"} -{"id":72,"name":"sesame seeds, whole, roasted and toasted","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame seeds","usda_id":170151,"updated":"2023-01-01T22:14:30.525Z"} -{"id":73,"name":"sesame seed kernels, toasted, without salt added (decorticated)","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame seed kernels","usda_id":170152,"updated":"2023-01-01T22:14:30.525Z"} -{"id":74,"name":"sunflower seed kernels, toasted, without salt","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":170154,"updated":"2023-01-01T22:14:30.525Z"} -{"id":75,"name":"sunflower seed kernels, toasted, without salt","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"sunflower seed kernels","usda_id":170154,"updated":"2023-01-01T22:14:30.525Z"} -{"id":76,"name":"sunflower seed kernels, toasted, without salt","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"sunflower seed kernels","usda_id":170154,"updated":"2023-01-01T22:14:30.525Z"} -{"id":77,"name":"sunflower seed kernels, toasted, without salt","sizing":"10 lbs","weight_in_gram":4536,"type":"Seeds","category":"sunflower seed kernels","usda_id":170154,"updated":"2023-01-01T22:14:30.525Z"} -{"id":78,"name":"sunflower seed butter, without salt","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed butter","usda_id":170155,"updated":"2023-01-01T22:14:30.525Z"} -{"id":79,"name":"acorns, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"acorns","usda_id":170157,"updated":"2023-01-01T22:14:30.525Z"} -{"id":80,"name":"acorns, raw","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"acorns","usda_id":170157,"updated":"2023-01-01T22:14:30.525Z"} -{"id":81,"name":"acorns, raw","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"acorns","usda_id":170157,"updated":"2023-01-01T22:14:30.525Z"} -{"id":82,"name":"acorns, raw","sizing":"10 lbs","weight_in_gram":4536,"type":"Nuts","category":"acorns","usda_id":170157,"updated":"2023-01-01T22:14:30.525Z"} -{"id":83,"name":"almonds, dry roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":170158,"updated":"2023-01-01T22:14:30.525Z"} -{"id":84,"name":"almonds, dry roasted, without salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"almonds","usda_id":170158,"updated":"2023-01-01T22:14:30.525Z"} -{"id":85,"name":"almonds, dry roasted, without salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"almonds","usda_id":170158,"updated":"2023-01-01T22:14:30.525Z"} -{"id":86,"name":"almonds, oil roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":170159,"updated":"2023-01-01T22:14:30.525Z"} -{"id":87,"name":"almond paste","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almond paste","usda_id":170160,"updated":"2023-01-01T22:14:30.525Z"} -{"id":88,"name":"beechnuts, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"beechnuts","usda_id":170161,"updated":"2023-01-01T22:14:30.525Z"} -{"id":89,"name":"cashew nuts, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"cashew nuts","usda_id":170162,"updated":"2023-01-01T22:14:30.525Z"} -{"id":90,"name":"cashew butter, plain, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"cashew butter","usda_id":170163,"updated":"2023-01-01T22:14:30.525Z"} -{"id":91,"name":"cashew butter, plain, without salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"cashew butter","usda_id":170163,"updated":"2023-01-01T22:14:30.525Z"} -{"id":92,"name":"cashew butter, plain, without salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"cashew butter","usda_id":170163,"updated":"2023-01-01T22:14:30.525Z"} -{"id":93,"name":"cashew butter, plain, without salt added","sizing":"10 lbs","weight_in_gram":4536,"type":"Nuts","category":"cashew butter","usda_id":170163,"updated":"2023-01-01T22:14:30.525Z"} -{"id":94,"name":"chestnuts, chinese, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170164,"updated":"2023-01-01T22:14:30.525Z"} -{"id":95,"name":"chestnuts, chinese, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170165,"updated":"2023-01-01T22:14:30.525Z"} -{"id":96,"name":"chestnuts, chinese, boiled and steamed","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170166,"updated":"2023-01-01T22:14:30.525Z"} -{"id":97,"name":"chestnuts, chinese, boiled and steamed","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"chestnuts","usda_id":170166,"updated":"2023-01-01T22:14:30.525Z"} -{"id":98,"name":"chestnuts, chinese, boiled and steamed","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"chestnuts","usda_id":170166,"updated":"2023-01-01T22:14:30.525Z"} -{"id":99,"name":"chestnuts, european, dried, peeled","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170167,"updated":"2023-01-01T22:14:30.525Z"} -{"id":100,"name":"chestnuts, european, dried, peeled","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"chestnuts","usda_id":170167,"updated":"2023-01-01T22:14:30.525Z"} -{"id":101,"name":"chestnuts, european, dried, peeled","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"chestnuts","usda_id":170167,"updated":"2023-01-01T22:14:30.525Z"} -{"id":102,"name":"chestnuts, european, boiled and steamed","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170168,"updated":"2023-01-01T22:14:30.525Z"} -{"id":103,"name":"chestnuts, european, boiled and steamed","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"chestnuts","usda_id":170168,"updated":"2023-01-01T22:14:30.525Z"} -{"id":104,"name":"chestnuts, european, boiled and steamed","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"chestnuts","usda_id":170168,"updated":"2023-01-01T22:14:30.525Z"} -{"id":105,"name":"coconut meat, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut meat","usda_id":170169,"updated":"2023-01-01T22:14:30.525Z"} -{"id":106,"name":"coconut meat, dried (desiccated), not sweetened","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut meat","usda_id":170170,"updated":"2023-01-01T22:14:30.525Z"} -{"id":107,"name":"coconut meat, dried (desiccated), not sweetened","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"coconut meat","usda_id":170170,"updated":"2023-01-01T22:14:30.525Z"} -{"id":108,"name":"coconut meat, dried (desiccated), not sweetened","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"coconut meat","usda_id":170170,"updated":"2023-01-01T22:14:30.525Z"} -{"id":109,"name":"coconut cream, canned, sweetened","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut cream","usda_id":170171,"updated":"2023-01-01T22:14:30.525Z"} -{"id":110,"name":"ginkgo nuts, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"ginkgo nuts","usda_id":170175,"updated":"2023-01-01T22:14:30.525Z"} -{"id":111,"name":"ginkgo nuts, canned","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"ginkgo nuts","usda_id":170176,"updated":"2023-01-01T22:14:30.525Z"} -{"id":112,"name":"ginkgo nuts, canned","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"ginkgo nuts","usda_id":170176,"updated":"2023-01-01T22:14:30.525Z"} -{"id":113,"name":"ginkgo nuts, canned","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"ginkgo nuts","usda_id":170176,"updated":"2023-01-01T22:14:30.525Z"} -{"id":114,"name":"hickorynuts, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"hickorynuts","usda_id":170177,"updated":"2023-01-01T22:14:30.525Z"} -{"id":115,"name":"macadamia nuts, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"macadamia nuts","usda_id":170178,"updated":"2023-01-01T22:14:30.525Z"} -{"id":116,"name":"macadamia nuts, raw","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"macadamia nuts","usda_id":170178,"updated":"2023-01-01T22:14:30.525Z"} -{"id":117,"name":"macadamia nuts, raw","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"macadamia nuts","usda_id":170178,"updated":"2023-01-01T22:14:30.525Z"} -{"id":118,"name":"macadamia nuts, dry roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"macadamia nuts","usda_id":170179,"updated":"2023-01-01T22:14:30.525Z"} -{"id":119,"name":"mixed nuts, dry roasted, with peanuts, salt added, CHOSEN ROASTER","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":170181,"updated":"2023-01-01T22:14:30.525Z"} -{"id":120,"name":"pecans","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pecans","usda_id":170182,"updated":"2023-01-01T22:14:30.525Z"} -{"id":121,"name":"pecans, dry roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pecans","usda_id":170183,"updated":"2023-01-01T22:14:30.525Z"} -{"id":122,"name":"pecans, dry roasted, without salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"pecans","usda_id":170183,"updated":"2023-01-01T22:14:30.525Z"} -{"id":123,"name":"pecans, dry roasted, without salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"pecans","usda_id":170183,"updated":"2023-01-01T22:14:30.525Z"} -{"id":124,"name":"pecans, dry roasted, without salt added","sizing":"10 lbs","weight_in_gram":4536,"type":"Nuts","category":"pecans","usda_id":170183,"updated":"2023-01-01T22:14:30.525Z"} -{"id":125,"name":"pistachio nuts, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pistachio nuts","usda_id":170184,"updated":"2023-01-01T22:14:30.525Z"} -{"id":126,"name":"pistachio nuts, dry roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pistachio nuts","usda_id":170185,"updated":"2023-01-01T22:14:30.525Z"} -{"id":127,"name":"pistachio nuts, dry roasted, without salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"pistachio nuts","usda_id":170185,"updated":"2023-01-01T22:14:30.525Z"} -{"id":128,"name":"walnuts, black, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"walnuts","usda_id":170186,"updated":"2023-01-01T22:14:30.525Z"} -{"id":129,"name":"walnuts, black, dried","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"walnuts","usda_id":170186,"updated":"2023-01-01T22:14:30.525Z"} -{"id":130,"name":"walnuts, english","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"walnuts","usda_id":170187,"updated":"2023-01-01T22:14:30.525Z"} -{"id":131,"name":"pumpkin and squash seeds, whole, roasted, without salt","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"pumpkin and squash seeds","usda_id":170188,"updated":"2023-01-01T22:14:30.525Z"} -{"id":132,"name":"pumpkin and squash seeds, whole, roasted, without salt","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"pumpkin and squash seeds","usda_id":170188,"updated":"2023-01-01T22:14:30.525Z"} -{"id":133,"name":"sesame butter, tahini, from roasted and toasted kernels (most common type)","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame butter","usda_id":170189,"updated":"2023-01-01T22:14:30.525Z"} -{"id":134,"name":"chestnuts, european, roasted","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170190,"updated":"2023-01-01T22:14:30.525Z"} -{"id":135,"name":"chestnuts, european, roasted","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"chestnuts","usda_id":170190,"updated":"2023-01-01T22:14:30.525Z"} -{"id":136,"name":"chestnuts, european, roasted","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"chestnuts","usda_id":170190,"updated":"2023-01-01T22:14:30.525Z"} -{"id":137,"name":"chestnuts, european, roasted","sizing":"10 lbs","weight_in_gram":4536,"type":"Nuts","category":"chestnuts","usda_id":170190,"updated":"2023-01-01T22:14:30.525Z"} -{"id":138,"name":"sesame butter, paste","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sesame butter","usda_id":170191,"updated":"2023-01-01T22:14:30.525Z"} -{"id":139,"name":"sesame butter, paste","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"sesame butter","usda_id":170191,"updated":"2023-01-01T22:14:30.525Z"} -{"id":140,"name":"sesame butter, paste","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"sesame butter","usda_id":170191,"updated":"2023-01-01T22:14:30.525Z"} -{"id":141,"name":"breadnut tree seeds, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"breadnut tree seeds","usda_id":170552,"updated":"2023-01-01T22:14:30.525Z"} -{"id":142,"name":"breadnut tree seeds, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"breadnut tree seeds","usda_id":170553,"updated":"2023-01-01T22:14:30.525Z"} -{"id":143,"name":"chia seeds, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"chia seeds","usda_id":170554,"updated":"2023-01-01T22:14:30.525Z"} -{"id":144,"name":"chia seeds, dried","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"chia seeds","usda_id":170554,"updated":"2023-01-01T22:14:30.525Z"} -{"id":145,"name":"chia seeds, dried","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"chia seeds","usda_id":170554,"updated":"2023-01-01T22:14:30.525Z"} -{"id":146,"name":"pumpkin and squash seed kernels, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"pumpkin and squash seed kernels","usda_id":170556,"updated":"2023-01-01T22:14:30.525Z"} -{"id":147,"name":"pumpkin and squash seed kernels, roasted, without salt","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"pumpkin and squash seed kernels","usda_id":170557,"updated":"2023-01-01T22:14:30.525Z"} -{"id":148,"name":"pumpkin and squash seed kernels, roasted, without salt","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"pumpkin and squash seed kernels","usda_id":170557,"updated":"2023-01-01T22:14:30.525Z"} -{"id":149,"name":"pumpkin and squash seed kernels, roasted, without salt","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"pumpkin and squash seed kernels","usda_id":170557,"updated":"2023-01-01T22:14:30.525Z"} -{"id":150,"name":"safflower seed kernels, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"safflower seed kernels","usda_id":170558,"updated":"2023-01-01T22:14:30.525Z"} -{"id":151,"name":"sunflower seed kernels, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":170562,"updated":"2023-01-01T22:14:30.525Z"} -{"id":152,"name":"sunflower seed kernels, dry roasted, without salt","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":170563,"updated":"2023-01-01T22:14:30.525Z"} -{"id":153,"name":"sunflower seed kernels, dry roasted, without salt","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"sunflower seed kernels","usda_id":170563,"updated":"2023-01-01T22:14:30.525Z"} -{"id":154,"name":"sunflower seed kernels, dry roasted, without salt","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"sunflower seed kernels","usda_id":170563,"updated":"2023-01-01T22:14:30.525Z"} -{"id":155,"name":"sunflower seed kernels, dry roasted, without salt","sizing":"10 lbs","weight_in_gram":4536,"type":"Seeds","category":"sunflower seed kernels","usda_id":170563,"updated":"2023-01-01T22:14:30.525Z"} -{"id":156,"name":"sunflower seed kernels, oil roasted, without salt","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"sunflower seed kernels","usda_id":170564,"updated":"2023-01-01T22:14:30.525Z"} -{"id":157,"name":"sunflower seed kernels, oil roasted, without salt","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"sunflower seed kernels","usda_id":170564,"updated":"2023-01-01T22:14:30.525Z"} -{"id":158,"name":"sunflower seed kernels, oil roasted, without salt","sizing":"5 lbs","weight_in_gram":2268,"type":"Seeds","category":"sunflower seed kernels","usda_id":170564,"updated":"2023-01-01T22:14:30.525Z"} -{"id":159,"name":"acorns, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"acorns","usda_id":170565,"updated":"2023-01-01T22:14:30.525Z"} -{"id":160,"name":"acorns, dried","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"acorns","usda_id":170565,"updated":"2023-01-01T22:14:30.525Z"} -{"id":161,"name":"acorns, dried","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"acorns","usda_id":170565,"updated":"2023-01-01T22:14:30.525Z"} -{"id":162,"name":"almonds","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":170567,"updated":"2023-01-01T22:14:30.525Z"} -{"id":163,"name":"almonds, blanched","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"almonds","usda_id":170568,"updated":"2023-01-01T22:14:30.525Z"} -{"id":164,"name":"almonds, blanched","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"almonds","usda_id":170568,"updated":"2023-01-01T22:14:30.525Z"} -{"id":165,"name":"almonds, blanched","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"almonds","usda_id":170568,"updated":"2023-01-01T22:14:30.525Z"} -{"id":166,"name":"brazilnuts, dried, unblanched","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"brazilnuts","usda_id":170569,"updated":"2023-01-01T22:14:30.525Z"} -{"id":167,"name":"butternuts, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"butternuts","usda_id":170570,"updated":"2023-01-01T22:14:30.525Z"} -{"id":168,"name":"butternuts, dried","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"butternuts","usda_id":170570,"updated":"2023-01-01T22:14:30.525Z"} -{"id":169,"name":"cashew nuts, dry roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"cashew nuts","usda_id":170571,"updated":"2023-01-01T22:14:30.525Z"} -{"id":170,"name":"cashew nuts, dry roasted, without salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"cashew nuts","usda_id":170571,"updated":"2023-01-01T22:14:30.525Z"} -{"id":171,"name":"cashew nuts, dry roasted, without salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"cashew nuts","usda_id":170571,"updated":"2023-01-01T22:14:30.525Z"} -{"id":172,"name":"cashew nuts, oil roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"cashew nuts","usda_id":170572,"updated":"2023-01-01T22:14:30.525Z"} -{"id":173,"name":"cashew nuts, oil roasted, without salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"cashew nuts","usda_id":170572,"updated":"2023-01-01T22:14:30.525Z"} -{"id":174,"name":"chestnuts, chinese, roasted","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170573,"updated":"2023-01-01T22:14:30.525Z"} -{"id":175,"name":"chestnuts, chinese, roasted","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"chestnuts","usda_id":170573,"updated":"2023-01-01T22:14:30.525Z"} -{"id":176,"name":"chestnuts, european, raw, unpeeled","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170574,"updated":"2023-01-01T22:14:30.525Z"} -{"id":177,"name":"chestnuts, european, raw, peeled","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170575,"updated":"2023-01-01T22:14:30.525Z"} -{"id":178,"name":"chestnuts, european, dried, unpeeled","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"chestnuts","usda_id":170576,"updated":"2023-01-01T22:14:30.525Z"} -{"id":179,"name":"chestnuts, european, dried, unpeeled","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"chestnuts","usda_id":170576,"updated":"2023-01-01T22:14:30.525Z"} -{"id":180,"name":"chestnuts, european, dried, unpeeled","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"chestnuts","usda_id":170576,"updated":"2023-01-01T22:14:30.525Z"} -{"id":181,"name":"chestnuts, european, dried, unpeeled","sizing":"10 lbs","weight_in_gram":4536,"type":"Nuts","category":"chestnuts","usda_id":170576,"updated":"2023-01-01T22:14:30.525Z"} -{"id":182,"name":"coconut meat, dried (desiccated), sweetened, flaked, packaged","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut meat","usda_id":170577,"updated":"2023-01-01T22:14:30.525Z"} -{"id":183,"name":"coconut meat, dried (desiccated), sweetened, flaked, canned","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut meat","usda_id":170578,"updated":"2023-01-01T22:14:30.525Z"} -{"id":184,"name":"coconut meat, dried (desiccated), toasted","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"coconut meat","usda_id":170579,"updated":"2023-01-01T22:14:30.525Z"} -{"id":185,"name":"hazelnuts or filberts","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"hazelnuts or filberts","usda_id":170581,"updated":"2023-01-01T22:14:30.525Z"} -{"id":186,"name":"hazelnuts or filberts, blanched","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"hazelnuts or filberts","usda_id":170582,"updated":"2023-01-01T22:14:30.525Z"} -{"id":187,"name":"hazelnuts or filberts, blanched","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"hazelnuts or filberts","usda_id":170582,"updated":"2023-01-01T22:14:30.525Z"} -{"id":188,"name":"hazelnuts or filberts, blanched","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"hazelnuts or filberts","usda_id":170582,"updated":"2023-01-01T22:14:30.525Z"} -{"id":189,"name":"hazelnuts or filberts, dry roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"hazelnuts or filberts","usda_id":170583,"updated":"2023-01-01T22:14:30.525Z"} -{"id":190,"name":"ginkgo nuts, raw","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"ginkgo nuts","usda_id":170584,"updated":"2023-01-01T22:14:30.525Z"} -{"id":191,"name":"mixed nuts, dry roasted, with peanuts, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":170585,"updated":"2023-01-01T22:14:30.525Z"} -{"id":192,"name":"mixed nuts, dry roasted, with peanuts, without salt added","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"mixed nuts","usda_id":170585,"updated":"2023-01-01T22:14:30.525Z"} -{"id":193,"name":"mixed nuts, dry roasted, with peanuts, without salt added","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"mixed nuts","usda_id":170585,"updated":"2023-01-01T22:14:30.525Z"} -{"id":194,"name":"mixed nuts, oil roasted, with peanuts, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":170587,"updated":"2023-01-01T22:14:30.525Z"} -{"id":195,"name":"mixed nuts, oil roasted, without peanuts, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"mixed nuts","usda_id":170588,"updated":"2023-01-01T22:14:30.525Z"} -{"id":196,"name":"pecans, oil roasted, without salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pecans","usda_id":170589,"updated":"2023-01-01T22:14:30.525Z"} -{"id":197,"name":"pilinuts, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pilinuts","usda_id":170590,"updated":"2023-01-01T22:14:30.525Z"} -{"id":198,"name":"pine nuts, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pine nuts","usda_id":170591,"updated":"2023-01-01T22:14:30.525Z"} -{"id":199,"name":"pine nuts, dried","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"pine nuts","usda_id":170591,"updated":"2023-01-01T22:14:30.525Z"} -{"id":200,"name":"pine nuts, dried","sizing":"5 lbs","weight_in_gram":2268,"type":"Nuts","category":"pine nuts","usda_id":170591,"updated":"2023-01-01T22:14:30.525Z"} -{"id":201,"name":"pine nuts, pinyon, dried","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"pine nuts","usda_id":170592,"updated":"2023-01-01T22:14:30.525Z"} -{"id":202,"name":"pine nuts, pinyon, dried","sizing":"2 lbs","weight_in_gram":907,"type":"Nuts","category":"pine nuts","usda_id":170592,"updated":"2023-01-01T22:14:30.525Z"} -{"id":203,"name":"walnuts, glazed","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"walnuts","usda_id":170593,"updated":"2023-01-01T22:14:30.525Z"} -{"id":204,"name":"walnuts, dry roasted, with salt added","sizing":"1 lbs","weight_in_gram":454,"type":"Nuts","category":"walnuts","usda_id":170594,"updated":"2023-01-01T22:14:30.525Z"} -{"id":205,"name":"breadfruit seeds, roasted","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"breadfruit seeds","usda_id":170595,"updated":"2023-01-01T22:14:30.525Z"} -{"id":206,"name":"cottonseed kernels, roasted (glandless)","sizing":"1 lbs","weight_in_gram":454,"type":"Seeds","category":"cottonseed kernels","usda_id":170596,"updated":"2023-01-01T22:14:30.525Z"} -{"id":207,"name":"cottonseed kernels, roasted (glandless)","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"cottonseed kernels","usda_id":170596,"updated":"2023-01-01T22:14:30.525Z"} -{"id":207,"name":"cottonseed kernels, roasted (gland-less)","sizing":"2 lbs","weight_in_gram":907,"type":"Seeds","category":"cottonseed kernels","usda_id":170596,"updated":"2023-02-22T20:21:33.575Z"} \ No newline at end of file diff --git a/retail-customer360-nutshop/nutshop-data/products.schema.yml b/retail-customer360-nutshop/nutshop-data/products.schema.yml deleted file mode 100644 index 6ef469c4..00000000 --- a/retail-customer360-nutshop/nutshop-data/products.schema.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -name: "products" -schema_version: "1" -partial_schema: false -columns: -- name: "id" - type: "BIGINT" - tests: - - "not_null" -- name: "name" - type: "STRING" - tests: - - "not_null" -- name: "sizing" - type: "STRING" - tests: - - "not_null" -- name: "weight_in_gram" - type: "BIGINT" - tests: - - "not_null" -- name: "type" - type: "STRING" - tests: - - "not_null" -- name: "category" - type: "STRING" - tests: - - "not_null" -- name: "usda_id" - type: "BIGINT" - tests: - - "not_null" -- name: "updated" - type: "TIMESTAMP" - tests: - - "not_null" diff --git a/retail-customer360-nutshop/nutshop-data/products.table.json b/retail-customer360-nutshop/nutshop-data/products.table.json deleted file mode 100644 index 81349ee9..00000000 --- a/retail-customer360-nutshop/nutshop-data/products.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/products.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["id", "updated"], - "timestamp" : "updated", - "watermark-millis" : "1" - } -} \ No newline at end of file diff --git a/retail-customer360-nutshop/snapshots/CustomerPurchaseTest.snapshot b/retail-customer360-nutshop/snapshots/CustomerPurchaseTest.snapshot deleted file mode 100644 index bf4da055..00000000 --- a/retail-customer360-nutshop/snapshots/CustomerPurchaseTest.snapshot +++ /dev/null @@ -1 +0,0 @@ -{"data":{"CustomerPurchaseTest":[{"id":1.0,"productid":1.0,"num":1.0},{"id":1.0,"productid":5.0,"num":1.0},{"id":1.0,"productid":11.0,"num":1.0},{"id":1.0,"productid":16.0,"num":1.0},{"id":1.0,"productid":17.0,"num":1.0},{"id":1.0,"productid":24.0,"num":1.0},{"id":1.0,"productid":26.0,"num":1.0},{"id":1.0,"productid":36.0,"num":1.0},{"id":1.0,"productid":40.0,"num":1.0},{"id":1.0,"productid":49.0,"num":1.0}]}} \ No newline at end of file From dd08eae7e9e5341e3bebd643c18d099f6a1ddfba Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 15:27:46 -0700 Subject: [PATCH 08/23] updating example data and snapshots for logistics --- logistics-shipping-geodata/README.md | 318 +----------------- .../snapshots/CustomerTest.snapshot | 2 +- .../snapshots/ShipmentTest.snapshot | 2 +- .../tables/customer.jsonl | 30 +- .../tables/shipment.jsonl | 100 +++--- .../tables/shipment_location.jsonl | 200 +++++------ .../tables/vehicle.jsonl | 8 +- .../tables/vehicle_status.jsonl | 110 +++--- 8 files changed, 227 insertions(+), 543 deletions(-) diff --git a/logistics-shipping-geodata/README.md b/logistics-shipping-geodata/README.md index 504d6e14..edb717e7 100644 --- a/logistics-shipping-geodata/README.md +++ b/logistics-shipping-geodata/README.md @@ -3,325 +3,9 @@ This example demonstrates DataSQRL's capabilities by replicating shipment delivery in Manhattan. It serves as an ideal use-case for streaming, showcasing real-time shipment tracking. Monitor and manage shipments as they move through the city and answer queries like the number of shipments per -customer and their current locations. Amazingly, all of this is achieved in just 22 lines of code, +customer and their current locations. Amazingly, all of this is achieved in just 33 lines of code, imports included. How cool is that? -## How to run this example - -We are going to build a data pipeline that aggregates shipment data. -With DataSQRL, you can implement the entire data pipeline in a single SQL script. - -1. Create a new folder for the data pipeline: -```bash -mkdir logistics; cd logistics -``` - -2. Then create a new file called logistics.sqrl and copy-paste the following SQL code: -```sql -IMPORT datasqrl.examples.logistics.tables.Customer; -IMPORT datasqrl.examples.logistics.tables.Shipment; -IMPORT datasqrl.examples.logistics.tables.Vehicle; -IMPORT datasqrl.examples.logistics.tables.Shipment_Location; -IMPORT datasqrl.examples.logistics.tables.Vehicle_Status; - - --- Turn the Customer and Shipment CDC change streams to a state tables. -Customer := DISTINCT Customer ON id ORDER BY lastUpdated DESC; -Shipment := DISTINCT Shipment ON id ORDER BY lastUpdated DESC; - --- Create a relationship between the two. -Customer.shipments := JOIN Shipment s ON s.customerId = @.id; - --- Add a statistics field to the customer to indicate how many shipments they have. -Customer.statistics := SELECT count(*) shipment_count FROM @ JOIN @.shipments; - --- Create relationship to shipment locations. -Shipment.locations := JOIN Shipment_Location l ON l.shipmentId = @.id ORDER BY l.timestamp DESC; - --- Create relationship to vehicle statuses. -Shipment_Location.vehicle_statuses := JOIN Vehicle_Status s ON s.vehicleId = @.vehicleId ORDER BY s.timestamp DESC; -``` - -3. Then create a new file called logistics.graphql and copy-paste the following graphql code: -```graphql -type Customer { - id: Float! - lastUpdated: DateTime! - email: String! - phone: String! - shipments(limit: Int = 10, offset: Int = 0): [Shipment!] - statistics(limit: Int = 10, offset: Int = 0): [statistics!] -} - -"An RFC-3339 compliant DateTime Scalar" -scalar DateTime - -type Query { - Shipment(id: Float, limit: Int = 10, offset: Int = 0): [Shipment!] - Shipment_Location(limit: Int = 10, offset: Int = 0): [Shipment_Location!] - Vehicle(limit: Int = 10, offset: Int = 0): [Vehicle!] - Vehicle_Status(limit: Int = 10, offset: Int = 0): [Vehicle_Status!] - Customer(email: String, id: Float, limit: Int = 10, offset: Int = 0): [Customer!] -} - -type Shipment { - id: Float! - lastUpdated: DateTime! - origin: String! - lat: Float! - lon: Float! - weight: Float! - estimatedDelivery: DateTime! - customerId: Float! - locations(limit: Int = 10, offset: Int = 0): [Shipment_Location!] -} - -type Shipment_Location { - timestamp: DateTime! - shipmentId: Float! - vehicleId: Float! - vehicle_statuses(limit: Int = 10, offset: Int = 0): [Vehicle_Status!] -} - -type Vehicle { - id: Float! - type: String! - capacity: Float! -} - -type Vehicle_Status { - timestamp: DateTime! - lat: Float! - lon: Float! - vehicleId: Float! -} - -type statistics { - shipment_count: Float! - parent: Customer! -} -``` - -4. Compile the SQL script to an integrated data pipeline: -```bash -docker run -it --rm -v $PWD:/build datasqrl/cmd:v0.5.5 compile logistics.sqrl logistics.graphqls -``` - -5. By default, DataSQRL uses docker to run data pipelines locally. Start the pipeline with docker compose: -```bash -(cd build/deploy; docker compose up --build) -``` - -6. Once you are done, hit CTRL-C and take down the pipeline containers with: -```bash -docker compose down -v -``` - -## Exploring the Pipeline - -Now that you've successfully compiled and started the pipeline, let's explore its capabilities. - -### Understanding the Input Data - -First, let's examine the input data you will be working with, located in the `data` folder: - -#### Customers - -Typically, customer data might reside in a relational database management system (RDBMS) in a -real-world scenario. In a streaming context, we simulate changes via Change Data Capture (CDC), -where each record represents a data modification. While the initial data does not include changes, -feel free to experiment by adding a new record to `data/customer.jsonl` to see how the -system reacts. - -```json -... -{"id": 2, "lastUpdated": "2024-04-17T09:00:50.838300", "email": "ljohnson@example.org", "phone": "001-291-828-3417x6473"} -{"id": 3, "lastUpdated": "2024-04-16T23:25:53.025920", "email": "kevinmitchell@example.net", "phone": "825.323.1139"} -{"id": 4, "lastUpdated": "2024-04-16T22:23:29.183022", "email": "griffinjessica@example.net", "phone": "+1-291-441-8408x37087"} -... -``` - -#### Shipments - -Here, each shipment's estimatedDelivery time, along with its delivery coordinates (`lat` and `lon`), -has been pre-calculated: - -```json -... -{"id": 24, "lastUpdated": "2024-04-17T22:57:26.347579", "origin": "Myanmar", "lat": 40.8701354, "lon": -73.9170165, "weight": 2.1, "estimatedDelivery": "2024-04-23T22:21:00.203370", "customerId": 7} -{"id": 25, "lastUpdated": "2024-04-17T16:16:59.714234", "origin": "Vanuatu", "lat": 40.7143955, "lon": -74.0005026, "weight": 3.9, "estimatedDelivery": "2024-04-23T22:54:33.043504", "customerId": 14} -{"id": 26, "lastUpdated": "2024-04-18T08:25:50.095937", "origin": "Martinique", "lat": 40.8115152, "lon": -73.9349267, "weight": 6.0, "estimatedDelivery": "2024-04-23T22:32:36.206061", "customerId": 4} -{"id": 27, "lastUpdated": "2024-04-17T22:34:32.917568", "origin": "Armenia", "lat": 40.7140166, "lon": -74.0044302, "weight": 8.3, "estimatedDelivery": "2024-04-23T23:12:46.687424", "customerId": 6} -{"id": 28, "lastUpdated": "2024-04-17T20:59:47.006159", "origin": "Cook Islands", "lat": 40.7219848, "lon": -74.0082309, "weight": 0.8, "estimatedDelivery": "2024-04-23T23:32:49.375996", "customerId": 10} -... -``` - -#### Vehicle - -This model covers the details of 4 vehicles involved in delivery. A heavy truck acts as a regional -transporter, delivering shipments to a distribution center in Manhattan, where they are subsequently -picked up by three different trucks aimed at distinct parts of Manhattan (north, center, south). - -```json -{"id": 0, "lastUpdated": "2024-04-17T12:27:07.832982", "type": "HEAVY_TRUCK", "capacity": 289} -{"id": 1, "lastUpdated": "2024-04-17T12:27:07.832983", "type": "BOX_TRUCK", "capacity": 288} -{"id": 2, "lastUpdated": "2024-04-17T12:27:07.832984", "type": "BOX_TRUCK", "capacity": 183} -{"id": 3, "lastUpdated": "2024-04-17T12:27:07.832985", "type": "CARGO_VAN", "capacity": 173} -``` - -#### Shipment location - -This stream tracks the current vehicle holding a specific shipment. Once a shipment is loaded to a -vehicle a shipment location event is emitted. - -```json -... -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 25, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 26, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 27, "vehicleId": 1} -... -``` - -#### Vehicle status - -This data stream provides real-time location updates for each vehicle. - -```json -... -{"timestamp": "2024-04-23T22:28:21.095515", "lat": 40.8024528, "lon": -73.9388372, "vehicleId": 2} -{"timestamp": "2024-04-23T22:39:18.690515", "lat": 40.7194555, "lon": -73.994384, "vehicleId": 1} -{"timestamp": "2024-04-23T22:40:26.138515", "lat": 40.8701354, "lon": -73.9170165, "vehicleId": 3} -{"timestamp": "2024-04-23T22:55:11.794515", "lat": 40.7143955, "lon": -74.0005026, "vehicleId": 1} -{"timestamp": "2024-04-23T22:55:17.755515", "lat": 40.8115152, "lon": -73.9349267, "vehicleId": 2} -{"timestamp": "2024-04-23T23:04:21.859515", "lat": 40.7140166, "lon": -74.0044302, "vehicleId": 1} -... -``` - -### Performing Queries with GraphQL - -Navigate to http://localhost:8888/graphiql/ and execute the following GraphQL queries to interact -with our simulation. - -#### How many shipments does a customer have? - -The following GraphQL query provides insight into the total number of shipments associated with a -specific customer, in this case, customer with `id: 4`. Additionally, the query returns the email -address of the customer, enhancing the ease of identification. Refer to the `logistics.graphqls` -file for details on all available fields you can query. - -```graphql -{ - Customer(id: 4) { - email, - statistics { - shipment_count - } - } -} -``` - -#### Expected Response - -Below is a sample response which shows that the customer identified by the -email `griffinjessica@example.net` has two ongoing shipments. - -```json -{ - "data": { - "Customer": [ - { - "email": "griffinjessica@example.net", - "statistics": [ - { - "shipment_count": 2 - } - ] - } - ] - } -} -``` - -#### What are the customer's shipments, and what is their latest location? - -For more detailed tracking, this GraphQL query extends the information returned about each shipment -for a specified customer (ID 4 in this example). This query not only provides details such as the -shipment weight and estimated delivery time but also includes the latest known location (`lat` and -`lon`) of the vehicle carrying each shipment, which can be particularly useful for plotting these -locations on a map. - -```graphql -{ - Customer(id: 4) { - email, - shipments { - weight, - estimatedDelivery, - locations(limit: 1) { - vehicleId, - vehicle_statuses(limit: 1) { - timestamp - lat, - lon - } - } - } - } -} -``` - -#### Response Example - -Below is what the response might look like, showing detailed tracking information for each shipment. -Note the precise coordinates and timestamps indicating the most recent status update for each -vehicle. - -```json -{ - "data": { - "Customer": [ - { - "email": "griffinjessica@example.net", - "shipments": [ - { - "weight": 9.9, - "estimatedDelivery": "2024-04-23T22:43:29.035Z", - "locations": [ - { - "vehicleId": 1, - "vehicle_statuses": [ - { - "timestamp": "2024-04-24T01:16:29.794Z", - "lat": 40.7124667, - "lon": -73.9777769 - } - ] - } - ] - }, - { - "weight": 6, - "estimatedDelivery": "2024-04-23T22:32:36.206Z", - "locations": [ - { - "vehicleId": 2, - "vehicle_statuses": [ - { - "timestamp": "2024-04-24T03:58:00.498Z", - "lat": 40.7583508, - "lon": -74.0038049 - } - ] - } - ] - } - ] - } - ] - } -} -``` - ## Regenerate test data Normally, there is no need to regenerate the test data if you are using pre-configured sets. diff --git a/logistics-shipping-geodata/snapshots/CustomerTest.snapshot b/logistics-shipping-geodata/snapshots/CustomerTest.snapshot index 3ac55aaf..95ebbc41 100644 --- a/logistics-shipping-geodata/snapshots/CustomerTest.snapshot +++ b/logistics-shipping-geodata/snapshots/CustomerTest.snapshot @@ -1 +1 @@ -{"data":{"CustomerTest":[{"id":9.0,"lastUpdated":"2024-04-18T04:05:34.259Z","email":"marknavarro@example.net","phone":"(269)252-9292x357"},{"id":7.0,"lastUpdated":"2024-04-18T03:06:00.004Z","email":"uoneal@example.com","phone":"001-907-315-0469x10408"},{"id":8.0,"lastUpdated":"2024-04-18T03:00:25.686Z","email":"nvaughn@example.org","phone":"+1-435-671-8184x80953"},{"id":14.0,"lastUpdated":"2024-04-18T02:49:24.524Z","email":"blackwellcarolyn@example.net","phone":"(348)590-5204"},{"id":0.0,"lastUpdated":"2024-04-18T02:27:07.832Z","email":"blakecarter@example.org","phone":"001-400-806-1284x265"}]}} \ No newline at end of file +{"data":{"CustomerTest":[{"id":9,"lastUpdated":"2024-04-17T21:05:34.259Z","email":"marknavarro@example.net","phone":"(269)252-9292x357"},{"id":7,"lastUpdated":"2024-04-17T20:06:00.004Z","email":"uoneal@example.com","phone":"001-907-315-0469x10408"},{"id":8,"lastUpdated":"2024-04-17T20:00:25.686Z","email":"nvaughn@example.org","phone":"+1-435-671-8184x80953"},{"id":14,"lastUpdated":"2024-04-17T19:49:24.528Z","email":"blackwellcarolyn@example.net","phone":"(348)590-5204"},{"id":0,"lastUpdated":"2024-04-17T19:27:07.832Z","email":"blakecarter@example.org","phone":"001-400-806-1284x265"}]}} \ No newline at end of file diff --git a/logistics-shipping-geodata/snapshots/ShipmentTest.snapshot b/logistics-shipping-geodata/snapshots/ShipmentTest.snapshot index a2fc075a..a6cbfff4 100644 --- a/logistics-shipping-geodata/snapshots/ShipmentTest.snapshot +++ b/logistics-shipping-geodata/snapshots/ShipmentTest.snapshot @@ -1 +1 @@ -{"data":{"ShipmentTest":[{"id":48.0,"lastUpdated":"2024-04-19T04:01:45.732Z","origin":"Mozambique","lat":40.7634277,"lon":-73.9927007,"weight":4.8,"estimatedDelivery":"2024-04-24T17:56:25.774Z","customerId":13.0},{"id":12.0,"lastUpdated":"2024-04-19T03:16:13.270Z","origin":"Portugal","lat":40.8432615,"lon":-73.9439858,"weight":0.8,"estimatedDelivery":"2024-04-24T11:25:31.049Z","customerId":9.0},{"id":30.0,"lastUpdated":"2024-04-19T03:07:44.567Z","origin":"Namibia","lat":40.8026735,"lon":-73.949123,"weight":7,"estimatedDelivery":"2024-04-24T13:53:03.483Z","customerId":11.0},{"id":2.0,"lastUpdated":"2024-04-19T03:01:38.756Z","origin":"New Zealand","lat":40.8217442,"lon":-73.9568342,"weight":6.6,"estimatedDelivery":"2024-04-24T09:13:49.483Z","customerId":8.0},{"id":23.0,"lastUpdated":"2024-04-19T02:57:47.494Z","origin":"Wallis and Futuna","lat":40.7194555,"lon":-73.994384,"weight":9.9,"estimatedDelivery":"2024-04-24T12:43:29.035Z","customerId":4.0}]}} \ No newline at end of file +{"data":{"ShipmentTest":[{"id":48,"lastUpdated":"2024-04-18T21:01:45.732Z","origin":"Mozambique","lat":40.7634277,"lon":-73.9927007,"weight":4.8,"estimatedDelivery":"2024-04-24T10:56:25.774Z","customerId":13},{"id":12,"lastUpdated":"2024-04-18T20:16:13.260Z","origin":"Portugal","lat":40.8432615,"lon":-73.9439858,"weight":0.8,"estimatedDelivery":"2024-04-24T04:25:31.049Z","customerId":9},{"id":30,"lastUpdated":"2024-04-18T20:07:44.567Z","origin":"Namibia","lat":40.8026735,"lon":-73.949123,"weight":7,"estimatedDelivery":"2024-04-24T06:53:03.483Z","customerId":11},{"id":2,"lastUpdated":"2024-04-18T20:01:38.756Z","origin":"New Zealand","lat":40.8217442,"lon":-73.9568342,"weight":6.6,"estimatedDelivery":"2024-04-24T02:13:49.483Z","customerId":8},{"id":23,"lastUpdated":"2024-04-18T19:57:47.494Z","origin":"Wallis and Futuna","lat":40.7194555,"lon":-73.994384,"weight":9.9,"estimatedDelivery":"2024-04-24T05:43:29.035Z","customerId":4}]}} \ No newline at end of file diff --git a/logistics-shipping-geodata/tables/customer.jsonl b/logistics-shipping-geodata/tables/customer.jsonl index 10f331f7..94d1cd78 100644 --- a/logistics-shipping-geodata/tables/customer.jsonl +++ b/logistics-shipping-geodata/tables/customer.jsonl @@ -1,15 +1,15 @@ -{"id": 0, "lastUpdated": "2024-04-17T12:27:07.832981", "email": "blakecarter@example.org", "phone": "001-400-806-1284x265"} -{"id": 1, "lastUpdated": "2024-04-16T18:49:01.700766", "email": "ryanking@example.net", "phone": "001-260-513-6261x6714"} -{"id": 2, "lastUpdated": "2024-04-17T09:00:50.838300", "email": "ljohnson@example.org", "phone": "001-291-828-3417x6473"} -{"id": 3, "lastUpdated": "2024-04-16T23:25:53.025920", "email": "kevinmitchell@example.net", "phone": "825.323.1139"} -{"id": 4, "lastUpdated": "2024-04-16T22:23:29.183022", "email": "griffinjessica@example.net", "phone": "+1-291-441-8408x37087"} -{"id": 5, "lastUpdated": "2024-04-16T17:37:40.347180", "email": "gsmith@example.org", "phone": "476.920.6260x720"} -{"id": 6, "lastUpdated": "2024-04-16T17:29:53.721591", "email": "rholland@example.org", "phone": "(857)801-6220"} -{"id": 7, "lastUpdated": "2024-04-17T13:06:00.004930", "email": "uoneal@example.com", "phone": "001-907-315-0469x10408"} -{"id": 8, "lastUpdated": "2024-04-17T13:00:25.686852", "email": "nvaughn@example.org", "phone": "+1-435-671-8184x80953"} -{"id": 9, "lastUpdated": "2024-04-17T14:05:34.259516", "email": "marknavarro@example.net", "phone": "(269)252-9292x357"} -{"id": 10, "lastUpdated": "2024-04-17T10:55:22.556162", "email": "beasleynathaniel@example.com", "phone": "001-515-725-5335x55446"} -{"id": 11, "lastUpdated": "2024-04-16T14:54:56.603113", "email": "monica01@example.com", "phone": "644-559-9280"} -{"id": 12, "lastUpdated": "2024-04-17T04:37:45.694586", "email": "joneslauren@example.com", "phone": "5436419237"} -{"id": 13, "lastUpdated": "2024-04-17T01:17:00.097257", "email": "imeyer@example.com", "phone": "998-491-1626x17546"} -{"id": 14, "lastUpdated": "2024-04-17T12:49:24.524258", "email": "blackwellcarolyn@example.net", "phone": "(348)590-5204"} +{"id": 0, "lastUpdated": "2024-04-17T12:27:07.832Z", "email": "blakecarter@example.org", "phone": "001-400-806-1284x265"} +{"id": 1, "lastUpdated": "2024-04-16T18:49:01.700Z", "email": "ryanking@example.net", "phone": "001-260-513-6261x6714"} +{"id": 2, "lastUpdated": "2024-04-17T09:00:50.838Z", "email": "ljohnson@example.org", "phone": "001-291-828-3417x6473"} +{"id": 3, "lastUpdated": "2024-04-16T23:25:53.025Z", "email": "kevinmitchell@example.net", "phone": "825.323.1139"} +{"id": 4, "lastUpdated": "2024-04-16T22:23:29.183Z", "email": "griffinjessica@example.net", "phone": "+1-291-441-8408x37087"} +{"id": 5, "lastUpdated": "2024-04-16T17:37:40.347Z", "email": "gsmith@example.org", "phone": "476.920.6260x720"} +{"id": 6, "lastUpdated": "2024-04-16T17:29:53.721Z", "email": "rholland@example.org", "phone": "(857)801-6220"} +{"id": 7, "lastUpdated": "2024-04-17T13:06:00.004Z", "email": "uoneal@example.com", "phone": "001-907-315-0469x10408"} +{"id": 8, "lastUpdated": "2024-04-17T13:00:25.686Z", "email": "nvaughn@example.org", "phone": "+1-435-671-8184x80953"} +{"id": 9, "lastUpdated": "2024-04-17T14:05:34.259Z", "email": "marknavarro@example.net", "phone": "(269)252-9292x357"} +{"id": 10, "lastUpdated": "2024-04-17T10:55:22.552Z", "email": "beasleynathaniel@example.com", "phone": "001-515-725-5335x55446"} +{"id": 11, "lastUpdated": "2024-04-16T14:54:56.603Z", "email": "monica01@example.com", "phone": "644-559-9280"} +{"id": 12, "lastUpdated": "2024-04-17T04:37:45.696Z", "email": "joneslauren@example.com", "phone": "5436419237"} +{"id": 13, "lastUpdated": "2024-04-17T01:17:00.097Z", "email": "imeyer@example.com", "phone": "998-491-1626x17546"} +{"id": 14, "lastUpdated": "2024-04-17T12:49:24.528Z", "email": "blackwellcarolyn@example.net", "phone": "(348)590-5204"} diff --git a/logistics-shipping-geodata/tables/shipment.jsonl b/logistics-shipping-geodata/tables/shipment.jsonl index fc4fc00e..8004cc24 100644 --- a/logistics-shipping-geodata/tables/shipment.jsonl +++ b/logistics-shipping-geodata/tables/shipment.jsonl @@ -1,50 +1,50 @@ -{"id": 0, "lastUpdated": "2024-04-17T23:38:27.078324", "origin": "Bangladesh", "lat": 40.7600241, "lon": -73.9629046, "weight": 4.7, "estimatedDelivery": "2024-04-23T18:18:10.437163", "customerId": 7} -{"id": 1, "lastUpdated": "2024-04-18T04:41:56.132214", "origin": "Portugal", "lat": 40.7710664, "lon": -73.9596511, "weight": 0.2, "estimatedDelivery": "2024-04-23T18:41:35.514122", "customerId": 2} -{"id": 2, "lastUpdated": "2024-04-18T13:01:38.756824", "origin": "New Zealand", "lat": 40.8217442, "lon": -73.9568342, "weight": 6.6, "estimatedDelivery": "2024-04-23T19:13:49.483376", "customerId": 8} -{"id": 3, "lastUpdated": "2024-04-18T11:03:12.398238", "origin": "Belize", "lat": 40.8217009, "lon": -73.9529081, "weight": 7.0, "estimatedDelivery": "2024-04-23T19:58:38.256010", "customerId": 8} -{"id": 4, "lastUpdated": "2024-04-17T16:37:16.962208", "origin": "Cameroon", "lat": 40.7484072, "lon": -73.9804936, "weight": 0.6, "estimatedDelivery": "2024-04-23T20:19:01.924105", "customerId": 0} -{"id": 5, "lastUpdated": "2024-04-18T11:54:19.822082", "origin": "Cook Islands", "lat": 40.7433005, "lon": -73.9840243, "weight": 4.7, "estimatedDelivery": "2024-04-23T20:30:35.114713", "customerId": 10} -{"id": 6, "lastUpdated": "2024-04-18T02:57:52.765541", "origin": "Moldova", "lat": 40.8277777, "lon": -73.9496148, "weight": 4.9, "estimatedDelivery": "2024-04-23T19:41:46.103563", "customerId": 14} -{"id": 7, "lastUpdated": "2024-04-18T05:54:29.397061", "origin": "Fiji", "lat": 40.7452501, "lon": -73.984794, "weight": 9.7, "estimatedDelivery": "2024-04-23T20:20:33.959979", "customerId": 3} -{"id": 8, "lastUpdated": "2024-04-18T08:41:52.818432", "origin": "Saint Vincent and the Grenadines", "lat": 40.7475458, "lon": -73.9883326, "weight": 9.1, "estimatedDelivery": "2024-04-23T20:17:45.938546", "customerId": 12} -{"id": 9, "lastUpdated": "2024-04-17T21:33:08.772422", "origin": "Algeria", "lat": 40.8344225, "lon": -73.9476826, "weight": 6.9, "estimatedDelivery": "2024-04-23T20:07:09.822735", "customerId": 5} -{"id": 10, "lastUpdated": "2024-04-18T02:51:09.457330", "origin": "Heard Island and McDonald Islands", "lat": 40.752317, "lon": -73.985947, "weight": 2.6, "estimatedDelivery": "2024-04-23T20:06:02.896876", "customerId": 10} -{"id": 11, "lastUpdated": "2024-04-17T21:30:16.375209", "origin": "Austria", "lat": 40.843223, "lon": -73.939177, "weight": 9.2, "estimatedDelivery": "2024-04-23T20:57:13.521921", "customerId": 0} -{"id": 12, "lastUpdated": "2024-04-18T13:16:13.270660", "origin": "Portugal", "lat": 40.8432615, "lon": -73.9439858, "weight": 0.8, "estimatedDelivery": "2024-04-23T21:25:31.049065", "customerId": 9} -{"id": 13, "lastUpdated": "2024-04-18T09:29:45.533548", "origin": "Bahamas", "lat": 40.7869316, "lon": -73.9312194, "weight": 2.0, "estimatedDelivery": "2024-04-23T21:24:56.491867", "customerId": 14} -{"id": 14, "lastUpdated": "2024-04-17T15:37:34.146517", "origin": "Sweden", "lat": 40.7507922, "lon": -74.0056246, "weight": 1.0, "estimatedDelivery": "2024-04-23T20:59:17.375605", "customerId": 11} -{"id": 15, "lastUpdated": "2024-04-17T23:39:45.675584", "origin": "Nigeria", "lat": 40.8490274, "lon": -73.9411425, "weight": 8.5, "estimatedDelivery": "2024-04-23T21:10:15.663517", "customerId": 5} -{"id": 16, "lastUpdated": "2024-04-17T21:12:47.401933", "origin": "Paraguay", "lat": 40.84552, "lon": -73.934686, "weight": 9.7, "estimatedDelivery": "2024-04-23T21:06:51.663873", "customerId": 8} -{"id": 17, "lastUpdated": "2024-04-18T03:28:52.633487", "origin": "Morocco", "lat": 40.7404441, "lon": -74.0019879, "weight": 3.0, "estimatedDelivery": "2024-04-23T21:07:14.912539", "customerId": 3} -{"id": 18, "lastUpdated": "2024-04-17T14:43:47.170463", "origin": "Pakistan", "lat": 40.7299869, "lon": -74.0004979, "weight": 2.2, "estimatedDelivery": "2024-04-23T22:22:37.714410", "customerId": 14} -{"id": 19, "lastUpdated": "2024-04-17T21:39:02.101357", "origin": "Guadeloupe", "lat": 40.8634187, "lon": -73.9300194, "weight": 0.8, "estimatedDelivery": "2024-04-23T21:54:34.656958", "customerId": 3} -{"id": 20, "lastUpdated": "2024-04-18T06:12:52.570421", "origin": "Italy", "lat": 40.8006925, "lon": -73.9319786, "weight": 4.1, "estimatedDelivery": "2024-04-23T22:08:03.005593", "customerId": 6} -{"id": 21, "lastUpdated": "2024-04-18T11:22:47.289865", "origin": "Chad", "lat": 40.725008, "lon": -73.999345, "weight": 5.7, "estimatedDelivery": "2024-04-23T22:40:34.978469", "customerId": 14} -{"id": 22, "lastUpdated": "2024-04-17T16:06:30.247930", "origin": "Haiti", "lat": 40.8024528, "lon": -73.9388372, "weight": 9.0, "estimatedDelivery": "2024-04-23T21:59:01.820081", "customerId": 8} -{"id": 23, "lastUpdated": "2024-04-18T12:57:47.494517", "origin": "Wallis and Futuna", "lat": 40.7194555, "lon": -73.994384, "weight": 9.9, "estimatedDelivery": "2024-04-23T22:43:29.035548", "customerId": 4} -{"id": 24, "lastUpdated": "2024-04-17T22:57:26.347579", "origin": "Myanmar", "lat": 40.8701354, "lon": -73.9170165, "weight": 2.1, "estimatedDelivery": "2024-04-23T22:21:00.203370", "customerId": 7} -{"id": 25, "lastUpdated": "2024-04-17T16:16:59.714234", "origin": "Vanuatu", "lat": 40.7143955, "lon": -74.0005026, "weight": 3.9, "estimatedDelivery": "2024-04-23T22:54:33.043504", "customerId": 14} -{"id": 26, "lastUpdated": "2024-04-18T08:25:50.095937", "origin": "Martinique", "lat": 40.8115152, "lon": -73.9349267, "weight": 6.0, "estimatedDelivery": "2024-04-23T22:32:36.206061", "customerId": 4} -{"id": 27, "lastUpdated": "2024-04-17T22:34:32.917568", "origin": "Armenia", "lat": 40.7140166, "lon": -74.0044302, "weight": 8.3, "estimatedDelivery": "2024-04-23T23:12:46.687424", "customerId": 6} -{"id": 28, "lastUpdated": "2024-04-17T20:59:47.006159", "origin": "Cook Islands", "lat": 40.7219848, "lon": -74.0082309, "weight": 0.8, "estimatedDelivery": "2024-04-23T23:32:49.375996", "customerId": 10} -{"id": 29, "lastUpdated": "2024-04-18T03:14:38.561570", "origin": "Philippines", "lat": 40.8082629, "lon": -73.9487406, "weight": 5.6, "estimatedDelivery": "2024-04-23T23:03:16.277807", "customerId": 5} -{"id": 30, "lastUpdated": "2024-04-18T13:07:44.567549", "origin": "Namibia", "lat": 40.8026735, "lon": -73.949123, "weight": 7.0, "estimatedDelivery": "2024-04-23T23:53:03.483624", "customerId": 11} -{"id": 31, "lastUpdated": "2024-04-18T03:29:10.578463", "origin": "Palau", "lat": 40.7059044, "lon": -74.0132703, "weight": 1.6, "estimatedDelivery": "2024-04-23T23:32:04.489005", "customerId": 5} -{"id": 32, "lastUpdated": "2024-04-17T17:08:00.914610", "origin": "Tajikistan", "lat": 40.8039853, "lon": -73.9603251, "weight": 4.6, "estimatedDelivery": "2024-04-24T00:34:52.668109", "customerId": 12} -{"id": 33, "lastUpdated": "2024-04-17T22:16:24.094977", "origin": "Uruguay", "lat": 40.7077288, "lon": -74.0082757, "weight": 0.3, "estimatedDelivery": "2024-04-24T00:37:42.951362", "customerId": 6} -{"id": 34, "lastUpdated": "2024-04-18T01:59:03.078777", "origin": "Seychelles", "lat": 40.7108044, "lon": -74.0034015, "weight": 7.1, "estimatedDelivery": "2024-04-24T00:43:41.017081", "customerId": 2} -{"id": 35, "lastUpdated": "2024-04-18T05:51:15.839636", "origin": "Turks and Caicos Islands", "lat": 40.7985815, "lon": -73.9731448, "weight": 1.4, "estimatedDelivery": "2024-04-24T00:34:41.039555", "customerId": 11} -{"id": 36, "lastUpdated": "2024-04-18T11:57:36.804528", "origin": "Tanzania", "lat": 40.7144213, "lon": -73.9921353, "weight": 0.2, "estimatedDelivery": "2024-04-24T01:03:41.769433", "customerId": 5} -{"id": 37, "lastUpdated": "2024-04-18T11:28:59.383624", "origin": "Falkland Islands (Malvinas)", "lat": 40.7908085, "lon": -73.9744941, "weight": 2.4, "estimatedDelivery": "2024-04-24T00:42:52.329736", "customerId": 5} -{"id": 38, "lastUpdated": "2024-04-18T06:02:43.338143", "origin": "Marshall Islands", "lat": 40.7883, "lon": -73.9787, "weight": 1.6, "estimatedDelivery": "2024-04-24T01:26:12.720708", "customerId": 7} -{"id": 39, "lastUpdated": "2024-04-17T22:19:44.205874", "origin": "Chile", "lat": 40.7124667, "lon": -73.9777769, "weight": 6.1, "estimatedDelivery": "2024-04-24T00:56:48.774937", "customerId": 1} -{"id": 40, "lastUpdated": "2024-04-17T18:25:21.696273", "origin": "Somalia", "lat": 40.7845451, "lon": -73.9736127, "weight": 4.1, "estimatedDelivery": "2024-04-24T01:12:42.098244", "customerId": 0} -{"id": 41, "lastUpdated": "2024-04-17T23:49:16.869122", "origin": "Switzerland", "lat": 40.7837916, "lon": -73.9838929, "weight": 1.6, "estimatedDelivery": "2024-04-24T01:39:46.599118", "customerId": 3} -{"id": 42, "lastUpdated": "2024-04-17T23:11:46.621650", "origin": "Northern Mariana Islands", "lat": 40.7717854, "lon": -73.9792016, "weight": 5.7, "estimatedDelivery": "2024-04-24T02:12:47.195066", "customerId": 1} -{"id": 43, "lastUpdated": "2024-04-18T02:42:37.103993", "origin": "Sudan", "lat": 40.7711608, "lon": -73.9796589, "weight": 2.5, "estimatedDelivery": "2024-04-24T02:25:06.379041", "customerId": 5} -{"id": 44, "lastUpdated": "2024-04-18T03:05:32.816546", "origin": "Chad", "lat": 40.7623991, "lon": -73.9786085, "weight": 0.5, "estimatedDelivery": "2024-04-24T02:26:41.623105", "customerId": 14} -{"id": 45, "lastUpdated": "2024-04-18T10:39:31.837111", "origin": "Gibraltar", "lat": 40.7647981, "lon": -73.9842688, "weight": 6.0, "estimatedDelivery": "2024-04-24T02:28:20.102277", "customerId": 0} -{"id": 46, "lastUpdated": "2024-04-17T18:02:57.504992", "origin": "Turkmenistan", "lat": 40.766548, "lon": -73.9904253, "weight": 3.3, "estimatedDelivery": "2024-04-24T03:29:05.831285", "customerId": 3} -{"id": 47, "lastUpdated": "2024-04-18T00:53:18.140034", "origin": "Turkmenistan", "lat": 40.7646863, "lon": -73.9917852, "weight": 3.1, "estimatedDelivery": "2024-04-24T03:30:25.538121", "customerId": 5} -{"id": 48, "lastUpdated": "2024-04-18T14:01:45.732876", "origin": "Mozambique", "lat": 40.7634277, "lon": -73.9927007, "weight": 4.8, "estimatedDelivery": "2024-04-24T03:56:25.774379", "customerId": 13} -{"id": 49, "lastUpdated": "2024-04-17T20:48:04.235310", "origin": "Togo", "lat": 40.7583508, "lon": -74.0038049, "weight": 7.2, "estimatedDelivery": "2024-04-24T04:20:18.389940", "customerId": 6} +{"id": 0, "lastUpdated": "2024-04-17T23:38:27.078Z", "origin": "Bangladesh", "lat": 40.7600241, "lon": -73.9629046, "weight": 4.7, "estimatedDelivery": "2024-04-23T18:18:10.437Z", "customerId": 7} +{"id": 1, "lastUpdated": "2024-04-18T04:41:56.132Z", "origin": "Portugal", "lat": 40.7710664, "lon": -73.9596511, "weight": 0.2, "estimatedDelivery": "2024-04-23T18:41:35.514Z", "customerId": 2} +{"id": 2, "lastUpdated": "2024-04-18T13:01:38.756Z", "origin": "New Zealand", "lat": 40.8217442, "lon": -73.9568342, "weight": 6.6, "estimatedDelivery": "2024-04-23T19:13:49.483Z", "customerId": 8} +{"id": 3, "lastUpdated": "2024-04-18T11:03:12.398Z", "origin": "Belize", "lat": 40.8217009, "lon": -73.9529081, "weight": 7.0, "estimatedDelivery": "2024-04-23T19:58:38.256Z", "customerId": 8} +{"id": 4, "lastUpdated": "2024-04-17T16:37:16.968Z", "origin": "Cameroon", "lat": 40.7484072, "lon": -73.9804936, "weight": 0.6, "estimatedDelivery": "2024-04-23T20:19:01.924Z", "customerId": 0} +{"id": 5, "lastUpdated": "2024-04-18T11:54:19.822Z", "origin": "Cook Islands", "lat": 40.7433005, "lon": -73.9840243, "weight": 4.7, "estimatedDelivery": "2024-04-23T20:30:35.114Z", "customerId": 10} +{"id": 6, "lastUpdated": "2024-04-18T02:57:52.761Z", "origin": "Moldova", "lat": 40.8277777, "lon": -73.9496148, "weight": 4.9, "estimatedDelivery": "2024-04-23T19:41:46.103Z", "customerId": 14} +{"id": 7, "lastUpdated": "2024-04-18T05:54:29.391Z", "origin": "Fiji", "lat": 40.7452501, "lon": -73.984794, "weight": 9.7, "estimatedDelivery": "2024-04-23T20:20:33.959Z", "customerId": 3} +{"id": 8, "lastUpdated": "2024-04-18T08:41:52.812Z", "origin": "Saint Vincent and the Grenadines", "lat": 40.7475458, "lon": -73.9883326, "weight": 9.1, "estimatedDelivery": "2024-04-23T20:17:45.938Z", "customerId": 12} +{"id": 9, "lastUpdated": "2024-04-17T21:33:08.772Z", "origin": "Algeria", "lat": 40.8344225, "lon": -73.9476826, "weight": 6.9, "estimatedDelivery": "2024-04-23T20:07:09.822Z", "customerId": 5} +{"id": 10, "lastUpdated": "2024-04-18T02:51:09.430Z", "origin": "Heard Island and McDonald Islands", "lat": 40.752317, "lon": -73.985947, "weight": 2.6, "estimatedDelivery": "2024-04-23T20:06:02.896Z", "customerId": 10} +{"id": 11, "lastUpdated": "2024-04-17T21:30:16.309Z", "origin": "Austria", "lat": 40.843223, "lon": -73.939177, "weight": 9.2, "estimatedDelivery": "2024-04-23T20:57:13.521Z", "customerId": 0} +{"id": 12, "lastUpdated": "2024-04-18T13:16:13.260Z", "origin": "Portugal", "lat": 40.8432615, "lon": -73.9439858, "weight": 0.8, "estimatedDelivery": "2024-04-23T21:25:31.049Z", "customerId": 9} +{"id": 13, "lastUpdated": "2024-04-18T09:29:45.548Z", "origin": "Bahamas", "lat": 40.7869316, "lon": -73.9312194, "weight": 2.0, "estimatedDelivery": "2024-04-23T21:24:56.491Z", "customerId": 14} +{"id": 14, "lastUpdated": "2024-04-17T15:37:34.117Z", "origin": "Sweden", "lat": 40.7507922, "lon": -74.0056246, "weight": 1.0, "estimatedDelivery": "2024-04-23T20:59:17.375Z", "customerId": 11} +{"id": 15, "lastUpdated": "2024-04-17T23:39:45.684Z", "origin": "Nigeria", "lat": 40.8490274, "lon": -73.9411425, "weight": 8.5, "estimatedDelivery": "2024-04-23T21:10:15.663Z", "customerId": 5} +{"id": 16, "lastUpdated": "2024-04-17T21:12:47.401Z", "origin": "Paraguay", "lat": 40.84552, "lon": -73.934686, "weight": 9.7, "estimatedDelivery": "2024-04-23T21:06:51.663Z", "customerId": 8} +{"id": 17, "lastUpdated": "2024-04-18T03:28:52.633Z", "origin": "Morocco", "lat": 40.7404441, "lon": -74.0019879, "weight": 3.0, "estimatedDelivery": "2024-04-23T21:07:14.912Z", "customerId": 3} +{"id": 18, "lastUpdated": "2024-04-17T14:43:47.170Z", "origin": "Pakistan", "lat": 40.7299869, "lon": -74.0004979, "weight": 2.2, "estimatedDelivery": "2024-04-23T22:22:37.714Z", "customerId": 14} +{"id": 19, "lastUpdated": "2024-04-17T21:39:02.101Z", "origin": "Guadeloupe", "lat": 40.8634187, "lon": -73.9300194, "weight": 0.8, "estimatedDelivery": "2024-04-23T21:54:34.656Z", "customerId": 3} +{"id": 20, "lastUpdated": "2024-04-18T06:12:52.570Z", "origin": "Italy", "lat": 40.8006925, "lon": -73.9319786, "weight": 4.1, "estimatedDelivery": "2024-04-23T22:08:03.005Z", "customerId": 6} +{"id": 21, "lastUpdated": "2024-04-18T11:22:47.289Z", "origin": "Chad", "lat": 40.725008, "lon": -73.999345, "weight": 5.7, "estimatedDelivery": "2024-04-23T22:40:34.978Z", "customerId": 14} +{"id": 22, "lastUpdated": "2024-04-17T16:06:30.247Z", "origin": "Haiti", "lat": 40.8024528, "lon": -73.9388372, "weight": 9.0, "estimatedDelivery": "2024-04-23T21:59:01.820Z", "customerId": 8} +{"id": 23, "lastUpdated": "2024-04-18T12:57:47.494Z", "origin": "Wallis and Futuna", "lat": 40.7194555, "lon": -73.994384, "weight": 9.9, "estimatedDelivery": "2024-04-23T22:43:29.035Z", "customerId": 4} +{"id": 24, "lastUpdated": "2024-04-17T22:57:26.347Z", "origin": "Myanmar", "lat": 40.8701354, "lon": -73.9170165, "weight": 2.1, "estimatedDelivery": "2024-04-23T22:21:00.203Z", "customerId": 7} +{"id": 25, "lastUpdated": "2024-04-17T16:16:59.714Z", "origin": "Vanuatu", "lat": 40.7143955, "lon": -74.0005026, "weight": 3.9, "estimatedDelivery": "2024-04-23T22:54:33.043Z", "customerId": 14} +{"id": 26, "lastUpdated": "2024-04-18T08:25:50.095Z", "origin": "Martinique", "lat": 40.8115152, "lon": -73.9349267, "weight": 6.0, "estimatedDelivery": "2024-04-23T22:32:36.206Z", "customerId": 4} +{"id": 27, "lastUpdated": "2024-04-17T22:34:32.917Z", "origin": "Armenia", "lat": 40.7140166, "lon": -74.0044302, "weight": 8.3, "estimatedDelivery": "2024-04-23T23:12:46.687Z", "customerId": 6} +{"id": 28, "lastUpdated": "2024-04-17T20:59:47.006Z", "origin": "Cook Islands", "lat": 40.7219848, "lon": -74.0082309, "weight": 0.8, "estimatedDelivery": "2024-04-23T23:32:49.375Z", "customerId": 10} +{"id": 29, "lastUpdated": "2024-04-18T03:14:38.561Z", "origin": "Philippines", "lat": 40.8082629, "lon": -73.9487406, "weight": 5.6, "estimatedDelivery": "2024-04-23T23:03:16.277Z", "customerId": 5} +{"id": 30, "lastUpdated": "2024-04-18T13:07:44.567Z", "origin": "Namibia", "lat": 40.8026735, "lon": -73.949123, "weight": 7.0, "estimatedDelivery": "2024-04-23T23:53:03.483Z", "customerId": 11} +{"id": 31, "lastUpdated": "2024-04-18T03:29:10.578Z", "origin": "Palau", "lat": 40.7059044, "lon": -74.0132703, "weight": 1.6, "estimatedDelivery": "2024-04-23T23:32:04.489Z", "customerId": 5} +{"id": 32, "lastUpdated": "2024-04-17T17:08:00.914Z", "origin": "Tajikistan", "lat": 40.8039853, "lon": -73.9603251, "weight": 4.6, "estimatedDelivery": "2024-04-24T00:34:52.668Z", "customerId": 12} +{"id": 33, "lastUpdated": "2024-04-17T22:16:24.094Z", "origin": "Uruguay", "lat": 40.7077288, "lon": -74.0082757, "weight": 0.3, "estimatedDelivery": "2024-04-24T00:37:42.951Z", "customerId": 6} +{"id": 34, "lastUpdated": "2024-04-18T01:59:03.078Z", "origin": "Seychelles", "lat": 40.7108044, "lon": -74.0034015, "weight": 7.1, "estimatedDelivery": "2024-04-24T00:43:41.017Z", "customerId": 2} +{"id": 35, "lastUpdated": "2024-04-18T05:51:15.839Z", "origin": "Turks and Caicos Islands", "lat": 40.7985815, "lon": -73.9731448, "weight": 1.4, "estimatedDelivery": "2024-04-24T00:34:41.039Z", "customerId": 11} +{"id": 36, "lastUpdated": "2024-04-18T11:57:36.804Z", "origin": "Tanzania", "lat": 40.7144213, "lon": -73.9921353, "weight": 0.2, "estimatedDelivery": "2024-04-24T01:03:41.769Z", "customerId": 5} +{"id": 37, "lastUpdated": "2024-04-18T11:28:59.383Z", "origin": "Falkland Islands (Malvinas)", "lat": 40.7908085, "lon": -73.9744941, "weight": 2.4, "estimatedDelivery": "2024-04-24T00:42:52.329Z", "customerId": 5} +{"id": 38, "lastUpdated": "2024-04-18T06:02:43.338Z", "origin": "Marshall Islands", "lat": 40.7883, "lon": -73.9787, "weight": 1.6, "estimatedDelivery": "2024-04-24T01:26:12.720Z", "customerId": 7} +{"id": 39, "lastUpdated": "2024-04-17T22:19:44.205Z", "origin": "Chile", "lat": 40.7124667, "lon": -73.9777769, "weight": 6.1, "estimatedDelivery": "2024-04-24T00:56:48.774Z", "customerId": 1} +{"id": 40, "lastUpdated": "2024-04-17T18:25:21.696Z", "origin": "Somalia", "lat": 40.7845451, "lon": -73.9736127, "weight": 4.1, "estimatedDelivery": "2024-04-24T01:12:42.098Z", "customerId": 0} +{"id": 41, "lastUpdated": "2024-04-17T23:49:16.869Z", "origin": "Switzerland", "lat": 40.7837916, "lon": -73.9838929, "weight": 1.6, "estimatedDelivery": "2024-04-24T01:39:46.599Z", "customerId": 3} +{"id": 42, "lastUpdated": "2024-04-17T23:11:46.621Z", "origin": "Northern Mariana Islands", "lat": 40.7717854, "lon": -73.9792016, "weight": 5.7, "estimatedDelivery": "2024-04-24T02:12:47.195Z", "customerId": 1} +{"id": 43, "lastUpdated": "2024-04-18T02:42:37.103Z", "origin": "Sudan", "lat": 40.7711608, "lon": -73.9796589, "weight": 2.5, "estimatedDelivery": "2024-04-24T02:25:06.379Z", "customerId": 5} +{"id": 44, "lastUpdated": "2024-04-18T03:05:32.816Z", "origin": "Chad", "lat": 40.7623991, "lon": -73.9786085, "weight": 0.5, "estimatedDelivery": "2024-04-24T02:26:41.623Z", "customerId": 14} +{"id": 45, "lastUpdated": "2024-04-18T10:39:31.837Z", "origin": "Gibraltar", "lat": 40.7647981, "lon": -73.9842688, "weight": 6.0, "estimatedDelivery": "2024-04-24T02:28:20.102Z", "customerId": 0} +{"id": 46, "lastUpdated": "2024-04-17T18:02:57.504Z", "origin": "Turkmenistan", "lat": 40.766548, "lon": -73.9904253, "weight": 3.3, "estimatedDelivery": "2024-04-24T03:29:05.831Z", "customerId": 3} +{"id": 47, "lastUpdated": "2024-04-18T00:53:18.140Z", "origin": "Turkmenistan", "lat": 40.7646863, "lon": -73.9917852, "weight": 3.1, "estimatedDelivery": "2024-04-24T03:30:25.538Z", "customerId": 5} +{"id": 48, "lastUpdated": "2024-04-18T14:01:45.732Z", "origin": "Mozambique", "lat": 40.7634277, "lon": -73.9927007, "weight": 4.8, "estimatedDelivery": "2024-04-24T03:56:25.774Z", "customerId": 13} +{"id": 49, "lastUpdated": "2024-04-17T20:48:04.235Z", "origin": "Togo", "lat": 40.7583508, "lon": -74.0038049, "weight": 7.2, "estimatedDelivery": "2024-04-24T04:20:18.389Z", "customerId": 6} diff --git a/logistics-shipping-geodata/tables/shipment_location.jsonl b/logistics-shipping-geodata/tables/shipment_location.jsonl index 0c7adbac..867e8c23 100644 --- a/logistics-shipping-geodata/tables/shipment_location.jsonl +++ b/logistics-shipping-geodata/tables/shipment_location.jsonl @@ -1,100 +1,100 @@ -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 0, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 1, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 2, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 3, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 4, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 5, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 6, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 7, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 8, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 9, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 10, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 11, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 12, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 13, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 14, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 15, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 16, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 17, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 18, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 19, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 20, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 21, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 22, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 23, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 24, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 25, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 26, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 27, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 28, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 29, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 30, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 31, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 32, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 33, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 34, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 35, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 36, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 37, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 38, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 39, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 40, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 41, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 42, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 43, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 44, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 45, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 46, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 47, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 48, "vehicleId": 0} -{"timestamp": "2024-04-23T14:09:21.251515", "shipmentId": 49, "vehicleId": 0} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 0, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 1, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 2, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 3, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 4, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 5, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 6, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 7, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 8, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 9, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 10, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 11, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 12, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 13, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 14, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 15, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 16, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 17, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 18, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 19, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 20, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 21, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 22, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 23, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 24, "vehicleId": 3} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 25, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 26, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 27, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 28, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 29, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 30, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 31, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 32, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 33, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 34, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 35, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 36, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 37, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 38, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 39, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 40, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 41, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 42, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 43, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 44, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 45, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 46, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 47, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 48, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "shipmentId": 49, "vehicleId": 2} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 0, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 1, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 2, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 3, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 4, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 5, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 6, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 7, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 8, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 9, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 10, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 11, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 12, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 13, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 14, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 15, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 16, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 17, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 18, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 19, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 20, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 21, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 22, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 23, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 24, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 25, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 26, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 27, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 28, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 29, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 30, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 31, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 32, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 33, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 34, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 35, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 36, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 37, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 38, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 39, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 40, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 41, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 42, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 43, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 44, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 45, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 46, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 47, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 48, "vehicleId": 0} +{"timestamp": "2024-04-23T14:09:21.251Z", "shipmentId": 49, "vehicleId": 0} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 0, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 1, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 2, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 3, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 4, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 5, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 6, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 7, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 8, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 9, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 10, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 11, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 12, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 13, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 14, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 15, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 16, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 17, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 18, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 19, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 20, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 21, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 22, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 23, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 24, "vehicleId": 3} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 25, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 26, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 27, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 28, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 29, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 30, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 31, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 32, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 33, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 34, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 35, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 36, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 37, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 38, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 39, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 40, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 41, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 42, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 43, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 44, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 45, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 46, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 47, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 48, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "shipmentId": 49, "vehicleId": 2} diff --git a/logistics-shipping-geodata/tables/vehicle.jsonl b/logistics-shipping-geodata/tables/vehicle.jsonl index 642f5d7f..7584b0cb 100644 --- a/logistics-shipping-geodata/tables/vehicle.jsonl +++ b/logistics-shipping-geodata/tables/vehicle.jsonl @@ -1,4 +1,4 @@ -{"id": 0, "lastUpdated": "2024-04-17T12:27:07.832982", "type": "HEAVY_TRUCK", "capacity": 289} -{"id": 1, "lastUpdated": "2024-04-17T12:27:07.832983", "type": "BOX_TRUCK", "capacity": 288} -{"id": 2, "lastUpdated": "2024-04-17T12:27:07.832984", "type": "BOX_TRUCK", "capacity": 183} -{"id": 3, "lastUpdated": "2024-04-17T12:27:07.832985", "type": "CARGO_VAN", "capacity": 173} +{"id": 0, "lastUpdated": "2024-04-17T12:27:07.832Z", "type": "HEAVY_TRUCK", "capacity": 289} +{"id": 1, "lastUpdated": "2024-04-17T12:27:07.832Z", "type": "BOX_TRUCK", "capacity": 288} +{"id": 2, "lastUpdated": "2024-04-17T12:27:07.832Z", "type": "BOX_TRUCK", "capacity": 183} +{"id": 3, "lastUpdated": "2024-04-17T12:27:07.832Z", "type": "CARGO_VAN", "capacity": 173} diff --git a/logistics-shipping-geodata/tables/vehicle_status.jsonl b/logistics-shipping-geodata/tables/vehicle_status.jsonl index 184fae94..70da320b 100644 --- a/logistics-shipping-geodata/tables/vehicle_status.jsonl +++ b/logistics-shipping-geodata/tables/vehicle_status.jsonl @@ -1,55 +1,55 @@ -{"timestamp": "2024-04-23T14:09:21.251515", "lat": 40.8497, "lon": -73.943, "vehicleId": 0} -{"timestamp": "2024-04-23T17:26:11.220515", "lat": 40.7883, "lon": -73.9787, "vehicleId": 0} -{"timestamp": "2024-04-23T18:26:11.220515", "lat": 40.7883, "lon": -73.9787, "vehicleId": 1} -{"timestamp": "2024-04-23T18:26:11.220515", "lat": 40.7883, "lon": -73.9787, "vehicleId": 2} -{"timestamp": "2024-04-23T18:26:11.220515", "lat": 40.7883, "lon": -73.9787, "vehicleId": 3} -{"timestamp": "2024-04-23T18:34:51.134515", "lat": 40.7600241, "lon": -73.9629046, "vehicleId": 2} -{"timestamp": "2024-04-23T19:03:52.090515", "lat": 40.7710664, "lon": -73.9596511, "vehicleId": 2} -{"timestamp": "2024-04-23T19:38:36.615515", "lat": 40.8217442, "lon": -73.9568342, "vehicleId": 3} -{"timestamp": "2024-04-23T19:52:34.985515", "lat": 40.8217009, "lon": -73.9529081, "vehicleId": 3} -{"timestamp": "2024-04-23T19:53:08.404515", "lat": 40.7484072, "lon": -73.9804936, "vehicleId": 1} -{"timestamp": "2024-04-23T20:03:59.691515", "lat": 40.7433005, "lon": -73.9840243, "vehicleId": 1} -{"timestamp": "2024-04-23T20:06:06.109515", "lat": 40.8277777, "lon": -73.9496148, "vehicleId": 3} -{"timestamp": "2024-04-23T20:09:19.764515", "lat": 40.7452501, "lon": -73.984794, "vehicleId": 1} -{"timestamp": "2024-04-23T20:17:01.971515", "lat": 40.7475458, "lon": -73.9883326, "vehicleId": 1} -{"timestamp": "2024-04-23T20:22:08.179515", "lat": 40.8344225, "lon": -73.9476826, "vehicleId": 3} -{"timestamp": "2024-04-23T20:27:42.717515", "lat": 40.752317, "lon": -73.985947, "vehicleId": 1} -{"timestamp": "2024-04-23T20:45:17.478515", "lat": 40.843223, "lon": -73.939177, "vehicleId": 3} -{"timestamp": "2024-04-23T21:02:54.795515", "lat": 40.8432615, "lon": -73.9439858, "vehicleId": 3} -{"timestamp": "2024-04-23T21:06:06.742515", "lat": 40.7869316, "lon": -73.9312194, "vehicleId": 2} -{"timestamp": "2024-04-23T21:08:39.467515", "lat": 40.7507922, "lon": -74.0056246, "vehicleId": 1} -{"timestamp": "2024-04-23T21:18:21.938515", "lat": 40.8490274, "lon": -73.9411425, "vehicleId": 3} -{"timestamp": "2024-04-23T21:31:47.422515", "lat": 40.84552, "lon": -73.934686, "vehicleId": 3} -{"timestamp": "2024-04-23T21:37:05.856515", "lat": 40.7404441, "lon": -74.0019879, "vehicleId": 1} -{"timestamp": "2024-04-23T22:04:56.177515", "lat": 40.7299869, "lon": -74.0004979, "vehicleId": 1} -{"timestamp": "2024-04-23T22:10:01.913515", "lat": 40.8634187, "lon": -73.9300194, "vehicleId": 3} -{"timestamp": "2024-04-23T22:15:21.775515", "lat": 40.8006925, "lon": -73.9319786, "vehicleId": 2} -{"timestamp": "2024-04-23T22:20:37.333515", "lat": 40.725008, "lon": -73.999345, "vehicleId": 1} -{"timestamp": "2024-04-23T22:28:21.095515", "lat": 40.8024528, "lon": -73.9388372, "vehicleId": 2} -{"timestamp": "2024-04-23T22:39:18.690515", "lat": 40.7194555, "lon": -73.994384, "vehicleId": 1} -{"timestamp": "2024-04-23T22:40:26.138515", "lat": 40.8701354, "lon": -73.9170165, "vehicleId": 3} -{"timestamp": "2024-04-23T22:55:11.794515", "lat": 40.7143955, "lon": -74.0005026, "vehicleId": 1} -{"timestamp": "2024-04-23T22:55:17.755515", "lat": 40.8115152, "lon": -73.9349267, "vehicleId": 2} -{"timestamp": "2024-04-23T23:04:21.859515", "lat": 40.7140166, "lon": -74.0044302, "vehicleId": 1} -{"timestamp": "2024-04-23T23:22:59.705515", "lat": 40.7219848, "lon": -74.0082309, "vehicleId": 1} -{"timestamp": "2024-04-23T23:25:07.045515", "lat": 40.8082629, "lon": -73.9487406, "vehicleId": 2} -{"timestamp": "2024-04-23T23:41:46.822515", "lat": 40.8026735, "lon": -73.949123, "vehicleId": 2} -{"timestamp": "2024-04-24T00:00:50.846515", "lat": 40.7059044, "lon": -74.0132703, "vehicleId": 1} -{"timestamp": "2024-04-24T00:09:07.756515", "lat": 40.8039853, "lon": -73.9603251, "vehicleId": 2} -{"timestamp": "2024-04-24T00:15:17.953515", "lat": 40.7077288, "lon": -74.0082757, "vehicleId": 1} -{"timestamp": "2024-04-24T00:25:33.236515", "lat": 40.7108044, "lon": -74.0034015, "vehicleId": 1} -{"timestamp": "2024-04-24T00:40:07.864515", "lat": 40.7985815, "lon": -73.9731448, "vehicleId": 2} -{"timestamp": "2024-04-24T00:52:32.847515", "lat": 40.7144213, "lon": -73.9921353, "vehicleId": 1} -{"timestamp": "2024-04-24T00:58:54.840515", "lat": 40.7908085, "lon": -73.9744941, "vehicleId": 2} -{"timestamp": "2024-04-24T01:10:41.613515", "lat": 40.7883, "lon": -73.9787, "vehicleId": 2} -{"timestamp": "2024-04-24T01:16:29.794515", "lat": 40.7124667, "lon": -73.9777769, "vehicleId": 1} -{"timestamp": "2024-04-24T01:22:29.245515", "lat": 40.7845451, "lon": -73.9736127, "vehicleId": 2} -{"timestamp": "2024-04-24T01:41:51.206515", "lat": 40.7837916, "lon": -73.9838929, "vehicleId": 2} -{"timestamp": "2024-04-24T02:09:48.207515", "lat": 40.7717854, "lon": -73.9792016, "vehicleId": 2} -{"timestamp": "2024-04-24T02:11:07.622515", "lat": 40.7711608, "lon": -73.9796589, "vehicleId": 2} -{"timestamp": "2024-04-24T02:35:33.932515", "lat": 40.7623991, "lon": -73.9786085, "vehicleId": 2} -{"timestamp": "2024-04-24T02:50:04.738515", "lat": 40.7647981, "lon": -73.9842688, "vehicleId": 2} -{"timestamp": "2024-04-24T03:03:14.009515", "lat": 40.766548, "lon": -73.9904253, "vehicleId": 2} -{"timestamp": "2024-04-24T03:16:16.433515", "lat": 40.7646863, "lon": -73.9917852, "vehicleId": 2} -{"timestamp": "2024-04-24T03:30:38.426515", "lat": 40.7634277, "lon": -73.9927007, "vehicleId": 2} -{"timestamp": "2024-04-24T03:58:00.498515", "lat": 40.7583508, "lon": -74.0038049, "vehicleId": 2} +{"timestamp": "2024-04-23T14:09:21.251Z", "lat": 40.8497, "lon": -73.943, "vehicleId": 0} +{"timestamp": "2024-04-23T17:26:11.220Z", "lat": 40.7883, "lon": -73.9787, "vehicleId": 0} +{"timestamp": "2024-04-23T18:26:11.220Z", "lat": 40.7883, "lon": -73.9787, "vehicleId": 1} +{"timestamp": "2024-04-23T18:26:11.220Z", "lat": 40.7883, "lon": -73.9787, "vehicleId": 2} +{"timestamp": "2024-04-23T18:26:11.220Z", "lat": 40.7883, "lon": -73.9787, "vehicleId": 3} +{"timestamp": "2024-04-23T18:34:51.134Z", "lat": 40.7600241, "lon": -73.9629046, "vehicleId": 2} +{"timestamp": "2024-04-23T19:03:52.090Z", "lat": 40.7710664, "lon": -73.9596511, "vehicleId": 2} +{"timestamp": "2024-04-23T19:38:36.615Z", "lat": 40.8217442, "lon": -73.9568342, "vehicleId": 3} +{"timestamp": "2024-04-23T19:52:34.985Z", "lat": 40.8217009, "lon": -73.9529081, "vehicleId": 3} +{"timestamp": "2024-04-23T19:53:08.404Z", "lat": 40.7484072, "lon": -73.9804936, "vehicleId": 1} +{"timestamp": "2024-04-23T20:03:59.691Z", "lat": 40.7433005, "lon": -73.9840243, "vehicleId": 1} +{"timestamp": "2024-04-23T20:06:06.109Z", "lat": 40.8277777, "lon": -73.9496148, "vehicleId": 3} +{"timestamp": "2024-04-23T20:09:19.764Z", "lat": 40.7452501, "lon": -73.984794, "vehicleId": 1} +{"timestamp": "2024-04-23T20:17:01.971Z", "lat": 40.7475458, "lon": -73.9883326, "vehicleId": 1} +{"timestamp": "2024-04-23T20:22:08.179Z", "lat": 40.8344225, "lon": -73.9476826, "vehicleId": 3} +{"timestamp": "2024-04-23T20:27:42.717Z", "lat": 40.752317, "lon": -73.985947, "vehicleId": 1} +{"timestamp": "2024-04-23T20:45:17.478Z", "lat": 40.843223, "lon": -73.939177, "vehicleId": 3} +{"timestamp": "2024-04-23T21:02:54.795Z", "lat": 40.8432615, "lon": -73.9439858, "vehicleId": 3} +{"timestamp": "2024-04-23T21:06:06.742Z", "lat": 40.7869316, "lon": -73.9312194, "vehicleId": 2} +{"timestamp": "2024-04-23T21:08:39.467Z", "lat": 40.7507922, "lon": -74.0056246, "vehicleId": 1} +{"timestamp": "2024-04-23T21:18:21.938Z", "lat": 40.8490274, "lon": -73.9411425, "vehicleId": 3} +{"timestamp": "2024-04-23T21:31:47.422Z", "lat": 40.84552, "lon": -73.934686, "vehicleId": 3} +{"timestamp": "2024-04-23T21:37:05.856Z", "lat": 40.7404441, "lon": -74.0019879, "vehicleId": 1} +{"timestamp": "2024-04-23T22:04:56.177Z", "lat": 40.7299869, "lon": -74.0004979, "vehicleId": 1} +{"timestamp": "2024-04-23T22:10:01.913Z", "lat": 40.8634187, "lon": -73.9300194, "vehicleId": 3} +{"timestamp": "2024-04-23T22:15:21.775Z", "lat": 40.8006925, "lon": -73.9319786, "vehicleId": 2} +{"timestamp": "2024-04-23T22:20:37.333Z", "lat": 40.725008, "lon": -73.999345, "vehicleId": 1} +{"timestamp": "2024-04-23T22:28:21.095Z", "lat": 40.8024528, "lon": -73.9388372, "vehicleId": 2} +{"timestamp": "2024-04-23T22:39:18.690Z", "lat": 40.7194555, "lon": -73.994384, "vehicleId": 1} +{"timestamp": "2024-04-23T22:40:26.138Z", "lat": 40.8701354, "lon": -73.9170165, "vehicleId": 3} +{"timestamp": "2024-04-23T22:55:11.794Z", "lat": 40.7143955, "lon": -74.0005026, "vehicleId": 1} +{"timestamp": "2024-04-23T22:55:17.755Z", "lat": 40.8115152, "lon": -73.9349267, "vehicleId": 2} +{"timestamp": "2024-04-23T23:04:21.859Z", "lat": 40.7140166, "lon": -74.0044302, "vehicleId": 1} +{"timestamp": "2024-04-23T23:22:59.705Z", "lat": 40.7219848, "lon": -74.0082309, "vehicleId": 1} +{"timestamp": "2024-04-23T23:25:07.045Z", "lat": 40.8082629, "lon": -73.9487406, "vehicleId": 2} +{"timestamp": "2024-04-23T23:41:46.822Z", "lat": 40.8026735, "lon": -73.949123, "vehicleId": 2} +{"timestamp": "2024-04-24T00:00:50.846Z", "lat": 40.7059044, "lon": -74.0132703, "vehicleId": 1} +{"timestamp": "2024-04-24T00:09:07.756Z", "lat": 40.8039853, "lon": -73.9603251, "vehicleId": 2} +{"timestamp": "2024-04-24T00:15:17.953Z", "lat": 40.7077288, "lon": -74.0082757, "vehicleId": 1} +{"timestamp": "2024-04-24T00:25:33.236Z", "lat": 40.7108044, "lon": -74.0034015, "vehicleId": 1} +{"timestamp": "2024-04-24T00:40:07.864Z", "lat": 40.7985815, "lon": -73.9731448, "vehicleId": 2} +{"timestamp": "2024-04-24T00:52:32.847Z", "lat": 40.7144213, "lon": -73.9921353, "vehicleId": 1} +{"timestamp": "2024-04-24T00:58:54.840Z", "lat": 40.7908085, "lon": -73.9744941, "vehicleId": 2} +{"timestamp": "2024-04-24T01:10:41.613Z", "lat": 40.7883, "lon": -73.9787, "vehicleId": 2} +{"timestamp": "2024-04-24T01:16:29.794Z", "lat": 40.7124667, "lon": -73.9777769, "vehicleId": 1} +{"timestamp": "2024-04-24T01:22:29.245Z", "lat": 40.7845451, "lon": -73.9736127, "vehicleId": 2} +{"timestamp": "2024-04-24T01:41:51.206Z", "lat": 40.7837916, "lon": -73.9838929, "vehicleId": 2} +{"timestamp": "2024-04-24T02:09:48.207Z", "lat": 40.7717854, "lon": -73.9792016, "vehicleId": 2} +{"timestamp": "2024-04-24T02:11:07.622Z", "lat": 40.7711608, "lon": -73.9796589, "vehicleId": 2} +{"timestamp": "2024-04-24T02:35:33.932Z", "lat": 40.7623991, "lon": -73.9786085, "vehicleId": 2} +{"timestamp": "2024-04-24T02:50:04.738Z", "lat": 40.7647981, "lon": -73.9842688, "vehicleId": 2} +{"timestamp": "2024-04-24T03:03:14.009Z", "lat": 40.766548, "lon": -73.9904253, "vehicleId": 2} +{"timestamp": "2024-04-24T03:16:16.433Z", "lat": 40.7646863, "lon": -73.9917852, "vehicleId": 2} +{"timestamp": "2024-04-24T03:30:38.426Z", "lat": 40.7634277, "lon": -73.9927007, "vehicleId": 2} +{"timestamp": "2024-04-24T03:58:00.498Z", "lat": 40.7583508, "lon": -74.0038049, "vehicleId": 2} From 6eab2e970722876687b5fb6c17ca355d70769f7e Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 15:28:39 -0700 Subject: [PATCH 09/23] remove sensor data package --- sensors-getting-started/README.md | 26 ------------------ sensors-getting-started/package.json | 16 ----------- .../sensorreading.schema.yml | 21 -------------- .../sensorreading.table.json | 14 ---------- sensors-getting-started/sensorreading.tar.gz | Bin 149993 -> 0 bytes 5 files changed, 77 deletions(-) delete mode 100644 sensors-getting-started/README.md delete mode 100644 sensors-getting-started/package.json delete mode 100644 sensors-getting-started/sensorreading.schema.yml delete mode 100644 sensors-getting-started/sensorreading.table.json delete mode 100644 sensors-getting-started/sensorreading.tar.gz diff --git a/sensors-getting-started/README.md b/sensors-getting-started/README.md deleted file mode 100644 index 2841f772..00000000 --- a/sensors-getting-started/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# Data Package for the Sensors Example - -This data package is used by the Sensors (Getting Started) example which demonstrates DataSQRL's capabilities by -building a sensor metrics data pipeline. It serves as an ideal use case for real-time data aggregation, showcasing how -sensor readings can be processed to monitor environmental changes such as temperature and humidity. In this example, -we will compute the maximum temperature from sensors in just a few SQL queries. -All of this is achieved in less than 15 lines of code, including imports! - -## Data Overview - -The data used in this example represents sensor readings and is provided in CSV format. -Each record contains a sensorid, a timestamp (time), and corresponding temperature and humidity readings. -Here is a sample of the input data: - -| sensorid | time | temperature | humidity | -| -------- | ------------------------- | ---------------------- | -------- | -| 0 | 2024-04-04 00:00:00.000Z | 21.792012246728603 | 93.0 | -| 1 | 2024-04-04 00:00:00.000Z | 28.1723170944317 | 42.0 | -| 2 | 2024-04-04 00:00:00.000Z | 7.9208043131776975 | 32.0 | -| 3 | 2024-04-04 00:00:00.000Z | 20.97774650879999 | 0.0 | -| 4 | 2024-04-04 00:00:00.000Z | 10.531277579045298 | 71.0 | - -## Additional Resources - -For further details on how this package works check out our detailed -[Sensor Data Tutorial](http://www.datasqrl.com/docs/getting-started/quickstart/) tutorial. diff --git a/sensors-getting-started/package.json b/sensors-getting-started/package.json deleted file mode 100644 index 0b60f7e5..00000000 --- a/sensors-getting-started/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": "1", - "package": { - "name": "datasqrl.examples.sensors", - "version": "0.5.5", - "variant": "default", - "latest": true, - "type": "source", - "license": "ASFv2", - "repository": "https://github.com/DataSQRL/datasqrl-examples/tree/main/sensors-getting-started", - "homepage": "https://www.datasqrl.com/docs/getting-started/quickstart/", - "description": "This data package is used by the Sensors (Getting Started) example which demonstrates DataSQRL's capabilities by building a sensor metrics data pipeline. It serves as an ideal use case for real-time data aggregation, showcasing how sensor readings can be processed to monitor environmental changes such as temperature and humidity.", - "documentation": "https://github.com/DataSQRL/datasqrl-examples/tree/main/sensors-getting-started/README.md", - "topics": ["datasqrl", "example", "sensors", "metrics"] - } -} \ No newline at end of file diff --git a/sensors-getting-started/sensorreading.schema.yml b/sensors-getting-started/sensorreading.schema.yml deleted file mode 100644 index e2d4e160..00000000 --- a/sensors-getting-started/sensorreading.schema.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: "sensorreading" -schema_version: "1" -partial_schema: false -columns: -- name: "sensorid" - type: "INTEGER" - tests: - - "not_null" -- name: "time" - type: "DATETIME" - tests: - - "not_null" -- name: "temperature" - type: "FLOAT" - tests: - - "not_null" -- name: "humidity" - type: "FLOAT" - tests: - - "not_null" diff --git a/sensors-getting-started/sensorreading.table.json b/sensors-getting-started/sensorreading.table.json deleted file mode 100644 index 49a9ef7b..00000000 --- a/sensors-getting-started/sensorreading.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "csv", - "path" : "${DATA_PATH}/sensorreading.csv", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["sensorid", "time"], - "timestamp" : "time", - "watermark-millis" : "1" - } -} diff --git a/sensors-getting-started/sensorreading.tar.gz b/sensors-getting-started/sensorreading.tar.gz deleted file mode 100644 index 83c275c6e79c240d380be85f5e3c55d836893d73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 149993 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 KVgJhGDsYycnT_W+}u24pS)DNI>~J8cs=>5 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 From 0ed065ffe1d8ff02c3a86c87bfadc949cd32dbb3 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 15:51:34 -0700 Subject: [PATCH 10/23] updated law enforcement example --- law-enforcement/baseball-card-local.json | 3 +- law-enforcement/baseball_card.sqrl | 93 ++++++++++++------- law-enforcement/data-dev/bolo.table.json | 15 --- law-enforcement/data-dev/bolo.table.sql | 9 ++ law-enforcement/data-dev/driver.table.json | 15 --- law-enforcement/data-dev/driver.table.sql | 9 ++ law-enforcement/data-dev/vehicle.table.json | 15 --- law-enforcement/data-dev/vehicle.table.sql | 9 ++ law-enforcement/data-dev/warrant.table.json | 15 --- law-enforcement/data-dev/warrant.table.sql | 9 ++ .../snapshots/BolosWATest.snapshot | 2 +- .../snapshots/WarrantsTest.snapshot | 2 +- 12 files changed, 98 insertions(+), 98 deletions(-) delete mode 100644 law-enforcement/data-dev/bolo.table.json create mode 100644 law-enforcement/data-dev/bolo.table.sql delete mode 100644 law-enforcement/data-dev/driver.table.json create mode 100644 law-enforcement/data-dev/driver.table.sql delete mode 100644 law-enforcement/data-dev/vehicle.table.json create mode 100644 law-enforcement/data-dev/vehicle.table.sql delete mode 100644 law-enforcement/data-dev/warrant.table.json create mode 100644 law-enforcement/data-dev/warrant.table.sql diff --git a/law-enforcement/baseball-card-local.json b/law-enforcement/baseball-card-local.json index a34af187..f01d8703 100644 --- a/law-enforcement/baseball-card-local.json +++ b/law-enforcement/baseball-card-local.json @@ -3,8 +3,7 @@ "enabled-engines": ["vertx", "postgres", "kafka", "flink"], "profiles": ["datasqrl.profile.default"], "script": { - "main": "baseball_card.sqrl", - "graphql": "baseball_card.graphqls" + "main": "baseball_card.sqrl" }, "values" : { "flink-config": { diff --git a/law-enforcement/baseball_card.sqrl b/law-enforcement/baseball_card.sqrl index 0a3c093e..fb5894bf 100644 --- a/law-enforcement/baseball_card.sqrl +++ b/law-enforcement/baseball_card.sqrl @@ -1,51 +1,72 @@ -IMPORT data.Driver; -IMPORT data.Vehicle; +IMPORT data.Driver AS _DriverUpdates; +IMPORT data.Vehicle AS _VehicleUpdates; +/*+no_query */ IMPORT data.Warrant; +/*+no_query */ IMPORT data.Bolo; -Driver := DISTINCT Driver ON driver_id ORDER BY last_updated DESC; -Vehicle := DISTINCT Vehicle ON vehicle_id ORDER BY last_updated DESC; - -Driver.warrants := JOIN Warrant w ON w.person_id = @.driver_id ORDER BY issue_date DESC; -Driver.vehicles := JOIN Vehicle v ON v.owner_driver_id = @.driver_id; -Vehicle.driver := JOIN Driver d ON @.owner_driver_id = d.driver_id; +/** + Retrieves driver information using their license number. + */ +/*+query_by_all(license_number) */ +Driver := DISTINCT _DriverUpdates ON driver_id ORDER BY last_updated DESC; +/** + Retrieves vehicle details using the registration number. + */ +/*+query_by_all(registration_number) */ +Vehicle := DISTINCT _VehicleUpdates ON vehicle_id ORDER BY last_updated DESC; + +Driver.warrants := SELECT * FROM Warrant w WHERE w.person_id = this.driver_id ORDER BY issue_date DESC; +Driver.vehicles := SELECT * FROM Vehicle v WHERE v.owner_driver_id = this.driver_id; +Vehicle.driver := SELECT * FROM Driver d WHERE this.owner_driver_id = d.driver_id LIMIT 1; _EnrichedBolo := SELECT b.bolo_id, b.vehicle_id, b.issue_date, b.status, b.last_updated, - v.make, v.model, v.year, v.registration_state, v.registration_number, + v.make, v.model, v.`year`, v.registration_state, v.registration_number, d.license_state, d.driver_id FROM Bolo b - TEMPORAL JOIN Vehicle v ON b.vehicle_id = v.vehicle_id - TEMPORAL JOIN Driver d ON d.driver_id = v.owner_driver_id; + JOIN Vehicle FOR SYSTEM_TIME AS OF b.last_updated v ON b.vehicle_id = v.vehicle_id + JOIN Driver FOR SYSTEM_TIME AS OF b.last_updated d ON d.driver_id = v.owner_driver_id; --EXPORT _EnrichedBolo TO logger.Bolo; - +/** + Fetches Bolo details for all vehicles that match the given make and (optional) model. + */ +/*+query_by_any(make, model) */ BoloDetails := DISTINCT _EnrichedBolo ON bolo_id ORDER BY last_updated DESC; -BoloDetails.vehicle := JOIN Vehicle v ON v.vehicle_id = @.vehicle_id; -BoloDetails.driver := JOIN Driver d ON d.driver_id = @.driver_id; - -Driver.bolos := JOIN BoloDetails b ON b.driver_id = @.driver_id ORDER BY issue_date DESC; -Vehicle.bolos := JOIN BoloDetails b ON b.vehicle_id = @.vehicle_id ORDER BY issue_date DESC; - - - - - +BoloDetails.vehicle := SELECT * FROM Vehicle v WHERE v.vehicle_id = this.vehicle_id LIMIT 1; +BoloDetails.driver := SELECT * FROM Driver d WHERE d.driver_id = this.driver_id LIMIT 1; +Driver.bolos := SELECT * FROM BoloDetails b WHERE b.driver_id = this.driver_id ORDER BY issue_date DESC; +Vehicle.bolos := SELECT * FROM BoloDetails b WHERE b.vehicle_id = this.vehicle_id ORDER BY issue_date DESC; /* Analytics */ +/** +Fetches statistics on warrants issued by state filtered by their status. +The status of the warrant must be one of: active, urgent, closed, suspended. + */ +/*+query_by_any(status) */ WarrantsByState := SELECT state_of_issuance AS state, warrant_status AS status, COUNT(1) as num_warrants - FROM Warrant GROUP BY state, status ORDER BY state ASC, status ASC; + FROM Warrant GROUP BY state_of_issuance, warrant_status ORDER BY state ASC, status ASC; +/** + Fetches statistics on warrants by crime + */ WarrantsByCrime := SELECT crime_description AS crime, COUNT(1) as num_warrants FROM Warrant WHERE warrant_status = 'active' OR warrant_status = 'urgent' - GROUP BY crime ORDER BY crime ASC; - -IMPORT time.endOfWeek; - -BolosByWeekState := SELECT endOfWeek(last_updated) AS week, + GROUP BY crime_description ORDER BY crime ASC; + +/** + Fetches Bolo (be on the lookout) statistics by week filtered by state. It returns the data ordered + by week starting from the most recent and going backwards from there. + The state argument must be a valid two-letter abbreviation of a US state (e.g. CA, WA) + */ +/*+query_by_any(state) */ +BolosByWeekState := SELECT window_time AS week, registration_state AS state, COUNT(1) as num_bolos - FROM _EnrichedBolo GROUP BY week, state ORDER BY week DESC, state ASC; + FROM TABLE(TUMBLE(TABLE _EnrichedBolo, DESCRIPTOR(`last_updated`), INTERVAL '7' DAY)) + GROUP BY registration_state, window_start, window_end, window_time + ORDER BY window_time DESC, state ASC; /*+ test */ @@ -57,15 +78,19 @@ WarrantsTest := SELECT warrant_status, COUNT(1) AS num_warrants - - /* License plate tracking and alerting */ -IMPORT baseball_card.Tracking; +/*+no_query*/ +CREATE TABLE Tracking ( + plate STRING NOT NULL, + latitude decimal(8,3) NOT NULL, + longitude decimal(8,3) NOT NULL, + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' +); -Vehicle.tracking := JOIN Tracking t ON t.plate = @.registration_number ORDER BY t.event_time DESC; +Vehicle.tracking := SELECT * FROM Tracking t WHERE t.plate = this.registration_number ORDER BY t.event_time DESC; -TrackingAlert := SELECT b.*, t.latitude, t.longitude FROM Tracking t +TrackingAlert := SUBSCRIBE SELECT b.*, t.latitude, t.longitude FROM Tracking t INNER JOIN _EnrichedBolo b ON b.registration_number = t.plate WHERE b.status = 'active' AND b.last_updated < t.event_time AND b.last_updated + INTERVAL 60 DAYS >= t.event_time; diff --git a/law-enforcement/data-dev/bolo.table.json b/law-enforcement/data-dev/bolo.table.json deleted file mode 100644 index 75761239..00000000 --- a/law-enforcement/data-dev/bolo.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/bolo.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "bolo_id", "last_updated" ], - "timestamp" : "last_updated", - "watermark-millis" : 0 - } -} \ No newline at end of file diff --git a/law-enforcement/data-dev/bolo.table.sql b/law-enforcement/data-dev/bolo.table.sql new file mode 100644 index 00000000..9f31b46b --- /dev/null +++ b/law-enforcement/data-dev/bolo.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Bolo ( + PRIMARY KEY (`bolo_id`, `last_updated`) NOT ENFORCED, + WATERMARK FOR `last_updated` AS `last_updated` +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/bolo.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/law-enforcement/data-dev/driver.table.json b/law-enforcement/data-dev/driver.table.json deleted file mode 100644 index ef9bff18..00000000 --- a/law-enforcement/data-dev/driver.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/driver.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "driver_id", "last_updated" ], - "timestamp" : "last_updated", - "watermark-millis" : 0 - } -} \ No newline at end of file diff --git a/law-enforcement/data-dev/driver.table.sql b/law-enforcement/data-dev/driver.table.sql new file mode 100644 index 00000000..9eca829a --- /dev/null +++ b/law-enforcement/data-dev/driver.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Driver ( + PRIMARY KEY (`driver_id`, `last_updated`) NOT ENFORCED, + WATERMARK FOR `last_updated` AS `last_updated` - INTERVAL '0' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/driver.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/law-enforcement/data-dev/vehicle.table.json b/law-enforcement/data-dev/vehicle.table.json deleted file mode 100644 index 6717f2d1..00000000 --- a/law-enforcement/data-dev/vehicle.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/vehicle.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "vehicle_id", "last_updated" ], - "timestamp" : "last_updated", - "watermark-millis" : 0 - } -} \ No newline at end of file diff --git a/law-enforcement/data-dev/vehicle.table.sql b/law-enforcement/data-dev/vehicle.table.sql new file mode 100644 index 00000000..31dd8e32 --- /dev/null +++ b/law-enforcement/data-dev/vehicle.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Vehicle ( + PRIMARY KEY (`vehicle_id`, `last_updated`) NOT ENFORCED, + WATERMARK FOR `last_updated` AS `last_updated` - INTERVAL '0' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/vehicle.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' +); \ No newline at end of file diff --git a/law-enforcement/data-dev/warrant.table.json b/law-enforcement/data-dev/warrant.table.json deleted file mode 100644 index aa74865b..00000000 --- a/law-enforcement/data-dev/warrant.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/warrant.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "warrant_id", "last_updated" ], - "timestamp" : "last_updated", - "watermark-millis" : 0 - } -} \ No newline at end of file diff --git a/law-enforcement/data-dev/warrant.table.sql b/law-enforcement/data-dev/warrant.table.sql new file mode 100644 index 00000000..4ab167d0 --- /dev/null +++ b/law-enforcement/data-dev/warrant.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Warrant ( + PRIMARY KEY (`warrant_id`, `last_updated`) NOT ENFORCED, + WATERMARK FOR `last_updated` AS `last_updated` - INTERVAL '0' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/warrant.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/law-enforcement/snapshots/BolosWATest.snapshot b/law-enforcement/snapshots/BolosWATest.snapshot index 63f24b29..e57a4b84 100644 --- a/law-enforcement/snapshots/BolosWATest.snapshot +++ b/law-enforcement/snapshots/BolosWATest.snapshot @@ -1 +1 @@ -{"data":{"BolosWATest":[{"week":"2024-11-07T15:59:59.999Z","state":"WA","num_bolos":6.0},{"week":"2024-10-31T13:59:59.999Z","state":"WA","num_bolos":3.0},{"week":"2024-10-17T13:59:59.999Z","state":"WA","num_bolos":2.0},{"week":"2024-10-10T13:59:59.999Z","state":"WA","num_bolos":4.0},{"week":"2024-09-26T13:59:59.999Z","state":"WA","num_bolos":5.0},{"week":"2024-09-19T13:59:59.999Z","state":"WA","num_bolos":2.0},{"week":"2024-09-12T13:59:59.999Z","state":"WA","num_bolos":2.0},{"week":"2024-09-05T13:59:59.999Z","state":"WA","num_bolos":3.0},{"week":"2024-08-29T13:59:59.999Z","state":"WA","num_bolos":1.0},{"week":"2024-08-22T13:59:59.999Z","state":"WA","num_bolos":2.0}]}} \ No newline at end of file +{"data":{"BolosWATest":[{"week":"2024-11-07T15:59:59.999Z","state":"WA","num_bolos":6},{"week":"2024-10-31T13:59:59.999Z","state":"WA","num_bolos":3},{"week":"2024-10-17T13:59:59.999Z","state":"WA","num_bolos":2},{"week":"2024-10-10T13:59:59.999Z","state":"WA","num_bolos":4},{"week":"2024-09-26T13:59:59.999Z","state":"WA","num_bolos":5},{"week":"2024-09-19T13:59:59.999Z","state":"WA","num_bolos":2},{"week":"2024-09-12T13:59:59.999Z","state":"WA","num_bolos":2},{"week":"2024-09-05T13:59:59.999Z","state":"WA","num_bolos":3},{"week":"2024-08-29T13:59:59.999Z","state":"WA","num_bolos":1},{"week":"2024-08-22T13:59:59.999Z","state":"WA","num_bolos":2}]}} \ No newline at end of file diff --git a/law-enforcement/snapshots/WarrantsTest.snapshot b/law-enforcement/snapshots/WarrantsTest.snapshot index d3be8795..9d20bb45 100644 --- a/law-enforcement/snapshots/WarrantsTest.snapshot +++ b/law-enforcement/snapshots/WarrantsTest.snapshot @@ -1 +1 @@ -{"data":{"WarrantsTest":[{"warrant_status":"active","num_warrants":361.0},{"warrant_status":"closed","num_warrants":211.0},{"warrant_status":"suspended","num_warrants":202.0},{"warrant_status":"urgent","num_warrants":214.0}]}} \ No newline at end of file +{"data":{"WarrantsTest":[{"warrant_status":"active","num_warrants":361},{"warrant_status":"closed","num_warrants":211},{"warrant_status":"suspended","num_warrants":202},{"warrant_status":"urgent","num_warrants":214}]}} \ No newline at end of file From 95f2e77e9631b9fbd9f9143cdc5f3f517f9bd05f Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 16:21:05 -0700 Subject: [PATCH 11/23] updated iot example to 0.6 --- .../sensor-api/addreadings.table.sql | 6 + .../sensor-local/addreadings.schema.yml | 17 -- .../sensor-local/addreadings.table.json | 14 -- .../addreadings.jsonl | 0 .../sensor-testing/addreadings.table.sql | 10 ++ iot-sensor-metrics/sensors-api.sqrl | 35 ---- iot-sensor-metrics/sensors.graphqls | 98 ----------- iot-sensor-metrics/sensors.sqrl | 50 +++--- .../snapshots/SensorHighTempTest.snapshot | 2 +- .../snapshots/SensorMaxTempTest.snapshot | 2 +- .../test/addreading1-mutation.graphql | 17 -- .../test/addreading2-mutation.graphql | 26 --- .../test/readingsbytemp-query.graphql | 6 - law-enforcement/schema.graphqls | 156 ++++++++++++++++++ 14 files changed, 201 insertions(+), 238 deletions(-) create mode 100644 iot-sensor-metrics/sensor-api/addreadings.table.sql delete mode 100644 iot-sensor-metrics/sensor-local/addreadings.schema.yml delete mode 100644 iot-sensor-metrics/sensor-local/addreadings.table.json rename iot-sensor-metrics/{sensor-local => sensor-testing}/addreadings.jsonl (100%) create mode 100644 iot-sensor-metrics/sensor-testing/addreadings.table.sql delete mode 100644 iot-sensor-metrics/sensors-api.sqrl delete mode 100644 iot-sensor-metrics/sensors.graphqls delete mode 100644 iot-sensor-metrics/test/addreading1-mutation.graphql delete mode 100644 iot-sensor-metrics/test/addreading2-mutation.graphql delete mode 100644 iot-sensor-metrics/test/readingsbytemp-query.graphql create mode 100644 law-enforcement/schema.graphqls diff --git a/iot-sensor-metrics/sensor-api/addreadings.table.sql b/iot-sensor-metrics/sensor-api/addreadings.table.sql new file mode 100644 index 00000000..6adab3dc --- /dev/null +++ b/iot-sensor-metrics/sensor-api/addreadings.table.sql @@ -0,0 +1,6 @@ +CREATE TABLE AddReadings ( + sensorid INT NOT NULL, + temperature decimal(8,2) NOT NULL, + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp', + WATERMARK FOR `event_time` AS `event_time` - INTERVAL '0.001' SECOND +); \ No newline at end of file diff --git a/iot-sensor-metrics/sensor-local/addreadings.schema.yml b/iot-sensor-metrics/sensor-local/addreadings.schema.yml deleted file mode 100644 index a9662194..00000000 --- a/iot-sensor-metrics/sensor-local/addreadings.schema.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: "sensors" -schema_version: "1" -partial_schema: false -columns: -- name: "sensorid" - type: "BIGINT" - tests: - - "not_null" -- name: "temperature" - type: "FLOAT" - tests: - - "not_null" -- name: "event_time" - type: "TIMESTAMP" - tests: - - "not_null" diff --git a/iot-sensor-metrics/sensor-local/addreadings.table.json b/iot-sensor-metrics/sensor-local/addreadings.table.json deleted file mode 100644 index 767da5fb..00000000 --- a/iot-sensor-metrics/sensor-local/addreadings.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/addreadings.jsonl", - "connector" : "filesystem" - }, - "table" : { - "type" : "source", - "primary-key" : ["sensorid", "temperature"], - "timestamp" : "event_time", - "watermark-millis" : "1" - } - } \ No newline at end of file diff --git a/iot-sensor-metrics/sensor-local/addreadings.jsonl b/iot-sensor-metrics/sensor-testing/addreadings.jsonl similarity index 100% rename from iot-sensor-metrics/sensor-local/addreadings.jsonl rename to iot-sensor-metrics/sensor-testing/addreadings.jsonl diff --git a/iot-sensor-metrics/sensor-testing/addreadings.table.sql b/iot-sensor-metrics/sensor-testing/addreadings.table.sql new file mode 100644 index 00000000..fe4a8a9b --- /dev/null +++ b/iot-sensor-metrics/sensor-testing/addreadings.table.sql @@ -0,0 +1,10 @@ +CREATE TABLE AddReadings ( + sensorid INT NOT NULL, + temperature decimal(8,2) NOT NULL, + event_time TIMESTAMP_LTZ(3) NOT NULL, + WATERMARK FOR `event_time` AS `event_time` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/addreadings.jsonl', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/iot-sensor-metrics/sensors-api.sqrl b/iot-sensor-metrics/sensors-api.sqrl deleted file mode 100644 index d24c0983..00000000 --- a/iot-sensor-metrics/sensors-api.sqrl +++ /dev/null @@ -1,35 +0,0 @@ -/* IMPORT sensors.AddReading AS SensorReading; */ -IMPORT sensors.AddReading AS SensorReading; - -/* Provide query endpoint for readings by temperature */ -ReadingsAboveTemp(@temp: Int) := SELECT * FROM SensorReading WHERE temperature > @temp ORDER BY event_time DESC; - -/* Produce an alert stream for high temperatures */ -HighTemp := SELECT * FROM SensorReading WHERE temperature > 100; - -/* Get max temperature in last minute per sensor */ -SensorMaxTempLastMinute := SELECT sensorid, max(temperature) as maxTemp, max(event_time) as last_updated - FROM SensorReading - WHERE event_time >= now() - INTERVAL 1 MINUTE - GROUP BY sensorid; - -/* Get the max temperature overall per sensor */ -SensorMaxTemp := SELECT sensorid, max(temperature) as maxTemp, max(event_time) as last_updated - FROM SensorReading - GROUP BY sensorid; - -/* =======TEST CASES======== */ - -/*+test */ -SensorHighTempTest := SELECT COUNT(*) as num, AVG(temperature) as avg_temp FROM HighTemp; - -/*+test */ -SensorMaxTempTest := SELECT sensorid, maxTemp FROM SensorMaxTemp ORDER BY sensorid DESC; - -/* ======= CHAT AGENT HISTORY ==== */ - -/* Part 3: Integrate Chat Agent */ -IMPORT sensors.InternalSaveChatMessage; - -InternalGetChatMessages := SELECT c.role, c.content, c.name, c.functionCall, c.customerid, c.event_time AS timestamp, - c._uuid AS uuid FROM InternalSaveChatMessage c ORDER BY timestamp DESC; diff --git a/iot-sensor-metrics/sensors.graphqls b/iot-sensor-metrics/sensors.graphqls deleted file mode 100644 index 95e286d8..00000000 --- a/iot-sensor-metrics/sensors.graphqls +++ /dev/null @@ -1,98 +0,0 @@ -scalar DateTime - -type Query { - """ - Returns the sensor temperature readings for each second by most recent for a given sensor id - """ - SensorReading( - "The id of the sensor" - sensorid: Int!, - "The number of readings (one per second) to return" - limit: Int = 10, - offset: Int = 0 - ): [SensorReading!] - - """ - Returns all sensor temperature readings above the given temperature - """ - ReadingsAboveTemp( - temp: Float!, - limit: Int = 10 - ): [SensorReading!] - - """ - Returns the maximum temperature recorded by each sensor in the last minute - """ - SensorMaxTempLastMinute( - "The id of the sensor. If left empty, returns max temperature for all sensors." - sensorid: Int, - "The number sensors to return max temperature for" - limit: Int = 10, - offset: Int = 0 - ): [SensorMaxTemp!] - - """ - Returns the maximum temperature recorded by each sensor - """ - SensorMaxTemp( - "The id of the sensor. If left empty, returns max temperature for all sensors." - sensorid: Int, - "The number sensors to return max temperature for" - limit: Int = 10, - offset: Int = 0 - ): [SensorMaxTemp!] - - InternalGetChatMessages( - customerid: Int!, - limit: Int = 10, - offset: Int = 0 - ): [CustomerChatMessage!] -} - -type SensorReading { - sensorid: Int! - temperature: Float! - event_time: DateTime! -} - -type SensorMaxTemp { - sensorid: Int! - maxTemp: Float! - last_updated: DateTime! -} - -type CustomerChatMessage { - role: String! - content: String! - name: String - functionCall: String - customerid: Int! - timestamp: String! - uuid: String! -} - -type Subscription { - HighTemp(sensorid: Int!): SensorReading -} - -type Mutation { - AddReading(metric: ReadingInput!): SensorReading - InternalSaveChatMessage(message: ChatMessageInput!): CreatedChatMessage -} - -input ReadingInput { - sensorid: Int! - temperature: Float! -} - -input ChatMessageInput { - role: String! - content: String! - name: String - functionCall: String - customerid: Int -} - -type CreatedChatMessage { - event_time: String! -} \ No newline at end of file diff --git a/iot-sensor-metrics/sensors.sqrl b/iot-sensor-metrics/sensors.sqrl index c49a1604..dd921a7d 100644 --- a/iot-sensor-metrics/sensors.sqrl +++ b/iot-sensor-metrics/sensors.sqrl @@ -1,19 +1,33 @@ -/* IMPORT sensors.AddReading AS SensorReading; */ -IMPORT sensor-local.AddReadings AS SensorReading; - -/* Provide query endpoint for readings by temperature */ -ReadingsAboveTemp(@temp: Int) := SELECT * FROM SensorReading WHERE temperature > @temp ORDER BY event_time DESC; +/** + Comment out the first line and uncomment the second to ingest sensor readings from the API + */ +/*+no_query*/ +IMPORT sensor-testing.AddReadings AS SensorReading; +--IMPORT sensor-api.AddReadings AS SensorReading; + +/** + Returns all sensor temperature readings above the given temperature +*/ +ReadingsAboveTemp(temp INT NOT NULL) := SELECT * FROM SensorReading WHERE temperature > :temp ORDER BY event_time DESC; /* Produce an alert stream for high temperatures */ -HighTemp := SELECT * FROM SensorReading WHERE temperature > 100; - -/* Get max temperature in last minute per sensor */ -SensorMaxTempLastMinute := SELECT sensorid, max(temperature) as maxTemp, max(event_time) as last_updated - FROM SensorReading - WHERE event_time >= now() - INTERVAL 1 MINUTE - GROUP BY sensorid; +HighTemp := SUBSCRIBE SELECT * FROM SensorReading WHERE temperature > 100; + +/* A sliding time window for the max temperature */ +_SensorSlidingMaxTemp := SELECT sensorid, window_time, MAX(temperature) AS maxTemp, MAX(event_time) AS lastUpdated + FROM TABLE(HOP(TABLE SensorReading, DESCRIPTOR(event_time), + INTERVAL '10' SECOND, -- slide interval + INTERVAL '5' MINUTE -- window size + )) + GROUP BY sensorid, window_start, window_end, window_time; + +/** + Returns the maximum temperature recorded by each sensor in the last 5 minutes +*/ +/*+query_by_all(sensorid) */ +SensorMaxTempLastMinute := DISTINCT _SensorSlidingMaxTemp ON sensorid ORDER BY window_time DESC; -/* Get the max temperature overall per sensor */ +/** Returns the maximum temperature recorded by each sensor */ SensorMaxTemp := SELECT sensorid, max(temperature) as maxTemp, max(event_time) as last_updated FROM SensorReading GROUP BY sensorid; @@ -26,13 +40,3 @@ SensorHighTempTest := SELECT COUNT(*) as num, AVG(temperature) as avg_temp FROM /*+test */ SensorMaxTempTest := SELECT sensorid, maxTemp FROM SensorMaxTemp ORDER BY sensorid DESC; -/* ======= CHAT AGENT HISTORY ==== */ - -/* Part 3: Integrate Chat Agent */ -/* -FIXME commented out as there is no InternalSaveChatMessage inside sensor-local -IMPORT sensors.InternalSaveChatMessage; - -InternalGetChatMessages := SELECT c.role, c.content, c.name, c.functionCall, c.customerid, c.event_time AS timestamp, - c._uuid AS uuid FROM InternalSaveChatMessage c ORDER BY timestamp DESC; -*/ diff --git a/iot-sensor-metrics/snapshots/SensorHighTempTest.snapshot b/iot-sensor-metrics/snapshots/SensorHighTempTest.snapshot index 9b45d415..f5a4484f 100644 --- a/iot-sensor-metrics/snapshots/SensorHighTempTest.snapshot +++ b/iot-sensor-metrics/snapshots/SensorHighTempTest.snapshot @@ -1 +1 @@ -{"data":{"SensorHighTempTest":[{"num":5.0,"avg_temp":106}]}} \ No newline at end of file +{"data":{"SensorHighTempTest":[{"num":5,"avg_temp":106.0}]}} \ No newline at end of file diff --git a/iot-sensor-metrics/snapshots/SensorMaxTempTest.snapshot b/iot-sensor-metrics/snapshots/SensorMaxTempTest.snapshot index acac1725..3cabbb99 100644 --- a/iot-sensor-metrics/snapshots/SensorMaxTempTest.snapshot +++ b/iot-sensor-metrics/snapshots/SensorMaxTempTest.snapshot @@ -1 +1 @@ -{"data":{"SensorMaxTempTest":[{"sensorid":5.0,"maxTemp":82.3},{"sensorid":3.0,"maxTemp":112.3},{"sensorid":2.0,"maxTemp":110.1},{"sensorid":1.0,"maxTemp":101.5}]}} \ No newline at end of file +{"data":{"SensorMaxTempTest":[{"sensorid":5,"maxTemp":82.3},{"sensorid":3,"maxTemp":112.3},{"sensorid":2,"maxTemp":110.1},{"sensorid":1,"maxTemp":101.5}]}} \ No newline at end of file diff --git a/iot-sensor-metrics/test/addreading1-mutation.graphql b/iot-sensor-metrics/test/addreading1-mutation.graphql deleted file mode 100644 index ee02a2b9..00000000 --- a/iot-sensor-metrics/test/addreading1-mutation.graphql +++ /dev/null @@ -1,17 +0,0 @@ -mutation { - AddReading1: AddReading(metric: {sensorid: 1, temperature: 101.5}) { - sensorid - } - AddReading2: AddReading(metric: {sensorid: 2, temperature: 80.5}) { - sensorid - } - AddReading3: AddReading(metric: {sensorid: 3, temperature: 60.2}) { - sensorid - } - AddReading4: AddReading(metric: {sensorid: 2, temperature: 105.7}) { - sensorid - } - AddReading5: AddReading(metric: {sensorid: 1, temperature: 73.4}) { - sensorid - } -} \ No newline at end of file diff --git a/iot-sensor-metrics/test/addreading2-mutation.graphql b/iot-sensor-metrics/test/addreading2-mutation.graphql deleted file mode 100644 index 5fc5aec7..00000000 --- a/iot-sensor-metrics/test/addreading2-mutation.graphql +++ /dev/null @@ -1,26 +0,0 @@ -mutation { - AddReading1: AddReading(metric: {sensorid: 1, temperature: 13.5}) { - sensorid - } - AddReading2: AddReading(metric: {sensorid: 2, temperature: 110.1}) { - sensorid - } - AddReading3: AddReading(metric: {sensorid: 3, temperature: 88.5}) { - sensorid - } - AddReading4: AddReading(metric: {sensorid: 2, temperature: 14.7}) { - sensorid - } - AddReading5: AddReading(metric: {sensorid: 1, temperature: 100.4}) { - sensorid - } - AddReading6: AddReading(metric: {sensorid: 3, temperature: 112.3}) { - sensorid - } - AddReading7: AddReading(metric: {sensorid: 2, temperature: 12.7}) { - sensorid - } - AddReading8: AddReading(metric: {sensorid: 1, temperature: 43.2}) { - sensorid - } -} \ No newline at end of file diff --git a/iot-sensor-metrics/test/readingsbytemp-query.graphql b/iot-sensor-metrics/test/readingsbytemp-query.graphql deleted file mode 100644 index a1ddc162..00000000 --- a/iot-sensor-metrics/test/readingsbytemp-query.graphql +++ /dev/null @@ -1,6 +0,0 @@ -query { - ReadingsAboveTemp(temp: 101) { - sensorid - temperature - } -} \ No newline at end of file diff --git a/law-enforcement/schema.graphqls b/law-enforcement/schema.graphqls new file mode 100644 index 00000000..aa6f352b --- /dev/null +++ b/law-enforcement/schema.graphqls @@ -0,0 +1,156 @@ +type Bolo { + bolo_id: String! + vehicle_id: String! + issue_date: DateTime! + status: String! + last_updated: DateTime! +} + +type BoloDetails { + bolo_id: String! + vehicle_id: String! + issue_date: DateTime! + status: String! + last_updated: DateTime! + make: String! + model: String! + year: GraphQLBigInteger! + registration_state: String! + registration_number: String! + license_state: String! + driver_id: String! + driver: Driver + vehicle: Vehicle +} + +type BolosByWeekState { + week: DateTime! + state: String! + num_bolos: GraphQLBigInteger! +} + +"An RFC-3339 compliant DateTime Scalar" +scalar DateTime + +type Driver { + driver_id: String! + first_name: String! + last_name: String! + license_number: String! + license_state: String! + date_of_birth: String! + license_status: String! + license_expiry_date: DateTime! + last_updated: DateTime! + bolos(limit: Int = 10, offset: Int = 0): [BoloDetails!] + vehicles(limit: Int = 10, offset: Int = 0): [Vehicle!] + warrants(limit: Int = 10, offset: Int = 0): [Warrant!] +} + +"An arbitrary precision signed integer" +scalar GraphQLBigInteger + +type Mutation { + Tracking(event: TrackingInput!): TrackingResultOutput! +} + +type Query { + Bolo(limit: Int = 10, offset: Int = 0): [Bolo!] + "Fetches Bolo details for all vehicles that match the given make and (optional) model." + BoloDetails(make: String!, model: String!, limit: Int = 10, offset: Int = 0): [BoloDetails!] + """ + Fetches Bolo (be on the lookout) statistics by week filtered by state. It returns the data ordered + by week starting from the most recent and going backwards from there. + The state argument must be a valid two-letter abbreviation of a US state (e.g. CA, WA) + """ + BolosByWeekState(state: String!, limit: Int = 10, offset: Int = 0): [BolosByWeekState!] + "Retrieves driver information using their license number." + Driver(license_number: String!, limit: Int = 10, offset: Int = 0): [Driver!] + "Retrieves vehicle details using the registration number." + Vehicle(registration_number: String!, limit: Int = 10, offset: Int = 0): [Vehicle!] + Warrant(limit: Int = 10, offset: Int = 0): [Warrant!] + "Fetches statistics on warrants by crime" + WarrantsByCrime(limit: Int = 10, offset: Int = 0): [WarrantsByCrime!] + """ + Fetches statistics on warrants issued by state filtered by their status. + The status of the warrant must be one of: active, urgent, closed, suspended. + """ + WarrantsByState(status: String!, limit: Int = 10, offset: Int = 0): [WarrantsByState!] +} + +type Subscription { + TrackingAlert: TrackingAlert +} + +type Tracking { + plate: String! + latitude: Float! + longitude: Float! + event_time: DateTime! +} + +type TrackingAlert { + bolo_id: String! + vehicle_id: String! + issue_date: DateTime! + status: String! + last_updated: DateTime! + make: String! + model: String! + year: GraphQLBigInteger! + registration_state: String! + registration_number: String! + license_state: String! + driver_id: String! + latitude: Float! + longitude: Float! +} + +input TrackingInput { + plate: String! + latitude: Float! + longitude: Float! +} + +type TrackingResultOutput { + plate: String! + latitude: Float! + longitude: Float! + event_time: DateTime! +} + +type Vehicle { + vehicle_id: String! + registration_number: String! + registration_state: String! + registration_expiry: DateTime! + make: String! + model: String! + year: GraphQLBigInteger! + owner_driver_id: String! + last_updated: DateTime! + bolos(limit: Int = 10, offset: Int = 0): [BoloDetails!] + driver: Driver + tracking(limit: Int = 10, offset: Int = 0): [Tracking!] +} + +type Warrant { + warrant_id: String! + person_id: String! + warrant_status: String! + crime_description: String! + state_of_issuance: String! + issue_date: DateTime! + last_updated: DateTime! +} + +type WarrantsByCrime { + crime: String! + num_warrants: GraphQLBigInteger! +} + +type WarrantsByState { + state: String! + status: String! + num_warrants: GraphQLBigInteger! +} From 78ba28aff0dc668702bfed92b8b36b96422f381a Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 16:50:58 -0700 Subject: [PATCH 12/23] updated test cases for sensor --- .github/workflows/build.yml | 16 +- iot-sensor-metrics/sensor-api.json | 19 ++ iot-sensor-metrics/sensor-static.json | 19 ++ .../addreadings.jsonl | 0 .../addreadings.table.sql | 0 iot-sensor-metrics/sensors.sqrl | 6 +- .../SensorHighTempTest.snapshot | 0 .../snapshots-api/SensorMaxTempTest.snapshot | 1 + .../addreading1-mutation.snapshot | 1 + .../addreading2-mutation.snapshot | 1 + .../hightemp_subscription.snapshot | 1 + .../readingsbytemp-query.snapshot | 1 + .../SensorMaxTempTest.snapshot | 0 .../test-api/addreading1-mutation.graphql | 17 ++ .../test-api/addreading2-mutation.graphql | 26 ++ .../test-api/hightemp_subscription.graphql | 6 + .../test-api/readingsbytemp-query.graphql | 6 + law-enforcement/baseball-card-local.json | 1 - law-enforcement/baseball_card.graphqls | 234 ------------------ law-enforcement/schema.graphqls | 156 ------------ 20 files changed, 105 insertions(+), 406 deletions(-) create mode 100644 iot-sensor-metrics/sensor-api.json create mode 100644 iot-sensor-metrics/sensor-static.json rename iot-sensor-metrics/{sensor-testing => sensor-static}/addreadings.jsonl (100%) rename iot-sensor-metrics/{sensor-testing => sensor-static}/addreadings.table.sql (100%) rename iot-sensor-metrics/{snapshots => snapshots-api}/SensorHighTempTest.snapshot (100%) create mode 100644 iot-sensor-metrics/snapshots-api/SensorMaxTempTest.snapshot create mode 100644 iot-sensor-metrics/snapshots-api/addreading1-mutation.snapshot create mode 100644 iot-sensor-metrics/snapshots-api/addreading2-mutation.snapshot create mode 100644 iot-sensor-metrics/snapshots-api/hightemp_subscription.snapshot create mode 100644 iot-sensor-metrics/snapshots-api/readingsbytemp-query.snapshot rename iot-sensor-metrics/{snapshots => snapshots-static}/SensorMaxTempTest.snapshot (100%) create mode 100644 iot-sensor-metrics/test-api/addreading1-mutation.graphql create mode 100644 iot-sensor-metrics/test-api/addreading2-mutation.graphql create mode 100644 iot-sensor-metrics/test-api/hightemp_subscription.graphql create mode 100644 iot-sensor-metrics/test-api/readingsbytemp-query.graphql delete mode 100644 law-enforcement/baseball_card.graphqls delete mode 100644 law-enforcement/schema.graphqls diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a87b81d8..4003ba11 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,17 +36,13 @@ jobs: - example: iot-sensor path: iot-sensor-metrics test_commands: | - test sensors.sqrl --snapshot snapshots + test -c sensor-static.json --snapshot snapshots-static + test -c sensor-api.json --tests test-api --snapshot snapshots-api - - example: retail - path: retail-customer360-nutshop - test_commands: | - test customer360.sqrl --snapshot snapshots - - - example: recommendation - path: clickstream-ai-recommendation - test_commands: | - test -c package.json --snapshot snapshots +# - example: recommendation +# path: clickstream-ai-recommendation +# test_commands: | +# test -c package.json --snapshot snapshots - example: law path: law-enforcement diff --git a/iot-sensor-metrics/sensor-api.json b/iot-sensor-metrics/sensor-api.json new file mode 100644 index 00000000..168fea13 --- /dev/null +++ b/iot-sensor-metrics/sensor-api.json @@ -0,0 +1,19 @@ +{ + "version": "1", + "enabled-engines": ["vertx", "postgres", "kafka", "flink"], + "script": { + "main": "sensors.sqrl" + }, + "values" : { + "flink-config": { + "table.exec.source.idle-timeout": "1000 ms" + } + }, + "dependencies": [{ + "sensor-data": { + "name": "sensor-api", + "version": "1", + "variant": "dev" + } + }] +} \ No newline at end of file diff --git a/iot-sensor-metrics/sensor-static.json b/iot-sensor-metrics/sensor-static.json new file mode 100644 index 00000000..c3db0583 --- /dev/null +++ b/iot-sensor-metrics/sensor-static.json @@ -0,0 +1,19 @@ +{ + "version": "1", + "enabled-engines": ["vertx", "postgres", "kafka", "flink"], + "script": { + "main": "sensors.sqrl" + }, + "values" : { + "flink-config": { + "table.exec.source.idle-timeout": "1000 ms" + } + }, + "dependencies": [{ + "sensor-data": { + "name": "sensor-static", + "version": "1", + "variant": "dev" + } + }] +} \ No newline at end of file diff --git a/iot-sensor-metrics/sensor-testing/addreadings.jsonl b/iot-sensor-metrics/sensor-static/addreadings.jsonl similarity index 100% rename from iot-sensor-metrics/sensor-testing/addreadings.jsonl rename to iot-sensor-metrics/sensor-static/addreadings.jsonl diff --git a/iot-sensor-metrics/sensor-testing/addreadings.table.sql b/iot-sensor-metrics/sensor-static/addreadings.table.sql similarity index 100% rename from iot-sensor-metrics/sensor-testing/addreadings.table.sql rename to iot-sensor-metrics/sensor-static/addreadings.table.sql diff --git a/iot-sensor-metrics/sensors.sqrl b/iot-sensor-metrics/sensors.sqrl index dd921a7d..23d860b3 100644 --- a/iot-sensor-metrics/sensors.sqrl +++ b/iot-sensor-metrics/sensors.sqrl @@ -1,9 +1,5 @@ -/** - Comment out the first line and uncomment the second to ingest sensor readings from the API - */ /*+no_query*/ -IMPORT sensor-testing.AddReadings AS SensorReading; ---IMPORT sensor-api.AddReadings AS SensorReading; +IMPORT sensor-data.AddReadings AS SensorReading; /** Returns all sensor temperature readings above the given temperature diff --git a/iot-sensor-metrics/snapshots/SensorHighTempTest.snapshot b/iot-sensor-metrics/snapshots-api/SensorHighTempTest.snapshot similarity index 100% rename from iot-sensor-metrics/snapshots/SensorHighTempTest.snapshot rename to iot-sensor-metrics/snapshots-api/SensorHighTempTest.snapshot diff --git a/iot-sensor-metrics/snapshots-api/SensorMaxTempTest.snapshot b/iot-sensor-metrics/snapshots-api/SensorMaxTempTest.snapshot new file mode 100644 index 00000000..44267585 --- /dev/null +++ b/iot-sensor-metrics/snapshots-api/SensorMaxTempTest.snapshot @@ -0,0 +1 @@ +{"data":{"SensorMaxTempTest":[{"sensorid":3,"maxTemp":112.3},{"sensorid":2,"maxTemp":110.1},{"sensorid":1,"maxTemp":101.5}]}} \ No newline at end of file diff --git a/iot-sensor-metrics/snapshots-api/addreading1-mutation.snapshot b/iot-sensor-metrics/snapshots-api/addreading1-mutation.snapshot new file mode 100644 index 00000000..7cc442a4 --- /dev/null +++ b/iot-sensor-metrics/snapshots-api/addreading1-mutation.snapshot @@ -0,0 +1 @@ +{"data":{"AddReading1":{"sensorid":1},"AddReading2":{"sensorid":2},"AddReading3":{"sensorid":3},"AddReading4":{"sensorid":2},"AddReading5":{"sensorid":1}}} \ No newline at end of file diff --git a/iot-sensor-metrics/snapshots-api/addreading2-mutation.snapshot b/iot-sensor-metrics/snapshots-api/addreading2-mutation.snapshot new file mode 100644 index 00000000..0c57ea72 --- /dev/null +++ b/iot-sensor-metrics/snapshots-api/addreading2-mutation.snapshot @@ -0,0 +1 @@ +{"data":{"AddReading1":{"temperature":13.5},"AddReading2":{"temperature":110.1},"AddReading3":{"temperature":88.5},"AddReading4":{"temperature":14.7},"AddReading5":{"temperature":100.4},"AddReading6":{"temperature":112.3},"AddReading7":{"temperature":12.7},"AddReading8":{"temperature":43.2}}} \ No newline at end of file diff --git a/iot-sensor-metrics/snapshots-api/hightemp_subscription.snapshot b/iot-sensor-metrics/snapshots-api/hightemp_subscription.snapshot new file mode 100644 index 00000000..2af6f04c --- /dev/null +++ b/iot-sensor-metrics/snapshots-api/hightemp_subscription.snapshot @@ -0,0 +1 @@ +[{"data":{"HighTemp":{"sensorid":1,"temperature":100.4}}},{"data":{"HighTemp":{"sensorid":1,"temperature":101.5}}},{"data":{"HighTemp":{"sensorid":2,"temperature":105.7}}},{"data":{"HighTemp":{"sensorid":2,"temperature":110.1}}},{"data":{"HighTemp":{"sensorid":3,"temperature":112.3}}}] \ No newline at end of file diff --git a/iot-sensor-metrics/snapshots-api/readingsbytemp-query.snapshot b/iot-sensor-metrics/snapshots-api/readingsbytemp-query.snapshot new file mode 100644 index 00000000..63c5da31 --- /dev/null +++ b/iot-sensor-metrics/snapshots-api/readingsbytemp-query.snapshot @@ -0,0 +1 @@ +{"data":{"ReadingsAboveTemp":[{"sensorid":2,"temperature":105.7},{"sensorid":1,"temperature":101.5},{"sensorid":3,"temperature":112.3},{"sensorid":2,"temperature":110.1}]}} \ No newline at end of file diff --git a/iot-sensor-metrics/snapshots/SensorMaxTempTest.snapshot b/iot-sensor-metrics/snapshots-static/SensorMaxTempTest.snapshot similarity index 100% rename from iot-sensor-metrics/snapshots/SensorMaxTempTest.snapshot rename to iot-sensor-metrics/snapshots-static/SensorMaxTempTest.snapshot diff --git a/iot-sensor-metrics/test-api/addreading1-mutation.graphql b/iot-sensor-metrics/test-api/addreading1-mutation.graphql new file mode 100644 index 00000000..19efc083 --- /dev/null +++ b/iot-sensor-metrics/test-api/addreading1-mutation.graphql @@ -0,0 +1,17 @@ +mutation { + AddReading1: SensorReading(event: {sensorid: 1, temperature: 101.5}) { + sensorid + } + AddReading2: SensorReading(event: {sensorid: 2, temperature: 80.5}) { + sensorid + } + AddReading3: SensorReading(event: {sensorid: 3, temperature: 60.2}) { + sensorid + } + AddReading4: SensorReading(event: {sensorid: 2, temperature: 105.7}) { + sensorid + } + AddReading5: SensorReading(event: {sensorid: 1, temperature: 73.4}) { + sensorid + } +} \ No newline at end of file diff --git a/iot-sensor-metrics/test-api/addreading2-mutation.graphql b/iot-sensor-metrics/test-api/addreading2-mutation.graphql new file mode 100644 index 00000000..1af1769d --- /dev/null +++ b/iot-sensor-metrics/test-api/addreading2-mutation.graphql @@ -0,0 +1,26 @@ +mutation { + AddReading1: SensorReading(event: {sensorid: 1, temperature: 13.5}) { + temperature + } + AddReading2: SensorReading(event: {sensorid: 2, temperature: 110.1}) { + temperature + } + AddReading3: SensorReading(event: {sensorid: 3, temperature: 88.5}) { + temperature + } + AddReading4: SensorReading(event: {sensorid: 2, temperature: 14.7}) { + temperature + } + AddReading5: SensorReading(event: {sensorid: 1, temperature: 100.4}) { + temperature + } + AddReading6: SensorReading(event: {sensorid: 3, temperature: 112.3}) { + temperature + } + AddReading7: SensorReading(event: {sensorid: 2, temperature: 12.7}) { + temperature + } + AddReading8: SensorReading(event: {sensorid: 1, temperature: 43.2}) { + temperature + } +} \ No newline at end of file diff --git a/iot-sensor-metrics/test-api/hightemp_subscription.graphql b/iot-sensor-metrics/test-api/hightemp_subscription.graphql new file mode 100644 index 00000000..1a8ddc8c --- /dev/null +++ b/iot-sensor-metrics/test-api/hightemp_subscription.graphql @@ -0,0 +1,6 @@ +subscription { + HighTemp { + sensorid + temperature + } +} \ No newline at end of file diff --git a/iot-sensor-metrics/test-api/readingsbytemp-query.graphql b/iot-sensor-metrics/test-api/readingsbytemp-query.graphql new file mode 100644 index 00000000..a1ddc162 --- /dev/null +++ b/iot-sensor-metrics/test-api/readingsbytemp-query.graphql @@ -0,0 +1,6 @@ +query { + ReadingsAboveTemp(temp: 101) { + sensorid + temperature + } +} \ No newline at end of file diff --git a/law-enforcement/baseball-card-local.json b/law-enforcement/baseball-card-local.json index f01d8703..3e2e9e44 100644 --- a/law-enforcement/baseball-card-local.json +++ b/law-enforcement/baseball-card-local.json @@ -1,7 +1,6 @@ { "version": "1", "enabled-engines": ["vertx", "postgres", "kafka", "flink"], - "profiles": ["datasqrl.profile.default"], "script": { "main": "baseball_card.sqrl" }, diff --git a/law-enforcement/baseball_card.graphqls b/law-enforcement/baseball_card.graphqls deleted file mode 100644 index 7a8d5cf1..00000000 --- a/law-enforcement/baseball_card.graphqls +++ /dev/null @@ -1,234 +0,0 @@ -"An RFC-3339 compliant DateTime Scalar" -scalar DateTime - - -type Query { - """ - Fetches Bolo details with specified vehicle characteristics. - """ - BoloDetails( - """ - The make of the vehicle (e.g., Ford, Toyota). - """ - make: String!, - - """ - The model of the vehicle. - """ - model: String, - - """ - The maximum number of results to return. Defaults to 10. - """ - limit: Int = 10, - - """ - The number of results to skip before starting to return results. Defaults to 0. - """ - offset: Int = 0 - ): [BoloDetails!] - - """ - Retrieves driver information using their license number. - """ - Driver( - """ - The license number of the driver. - """ - license_number: String!, - - """ - The maximum number of results to return. Defaults to 10. - """ - limit: Int = 10, - - """ - The number of results to skip before starting to return results. Defaults to 0. - """ - offset: Int = 0 - ): [Driver!] - - """ - Retrieves vehicle details using the registration number. - """ - Vehicle( - """ - The registration number of the vehicle, i.e. the license plate number. - """ - registration_number: String!, - - """ - The maximum number of results to return. Defaults to 10. - """ - limit: Int = 10, - - """ - The number of results to skip before starting to return results. Defaults to 0. - """ - offset: Int = 0 - ): [Vehicle!] - - """ - Fetches statistics on warrants filtered by the type of crime. - """ - WarrantsByCrime( - """ - The type of crime. - """ - crime: String, - - limit: Int = 100, - offset: Int = 0 - ): [WarrantsByCrime!] - - """ - Fetches statistics on warrants issued by state filtered by their status. - """ - WarrantsByState( - """ - The status of the warrant (one of: active, urgent, closed, suspended). - """ - status: String, - - limit: Int = 100, - - offset: Int = 0 - ): [WarrantsByState!] - - """ - Fetches Bolo (be on the lookout) statistics by week filtered by state. It returns the data ordered - by week starting from the most recent and going backwards from there. - """ - BolosByWeekState( - """ - The state for which Bolos are to be fetched abbreviated to two uppercase letters (e.g. WA, CA). - """ - state: String, - - """ - The maximum number of results to return. Defaults to 100. Set to the number of past weeks to return - multiplied by the number of states. - """ - limit: Int = 100, - - """ - The number of results to skip before starting to return results. Defaults to 0. - """ - offset: Int = 0 - ): [BolosByWeekState!] -} - -type BoloDetails { - bolo_id: String! - vehicle_id: String! - issue_date: DateTime! - status: String! - last_updated: DateTime! - make: String! - model: String! - year: Float! - registration_state: String! - registration_number: String! - license_state: String! - driver_id: String! - -} - -type BolosByWeekState { - week: DateTime! - state: String! - num_bolos: Float! -} - -type Driver { - driver_id: String! - first_name: String! - last_name: String! - license_number: String! - license_state: String! - date_of_birth: String! - license_status: String! - license_expiry_date: DateTime! - last_updated: DateTime! - bolos(limit: Int = 10, offset: Int = 0): [BoloDetails!] - vehicles(limit: Int = 10, offset: Int = 0): [Vehicle!] - warrants(limit: Int = 10, offset: Int = 0): [Warrant!] -} - -type Vehicle { - vehicle_id: String! - registration_number: String! - registration_state: String! - registration_expiry: DateTime! - make: String! - model: String! - year: Float! - owner_driver_id: String! - last_updated: DateTime! - bolos(limit: Int = 10, offset: Int = 0): [BoloDetails!] - tracking(limit: Int = 10, offset: Int = 0): [Tracking!] -} - -type Warrant { - warrant_id: String! - person_id: String! - warrant_status: String! - crime_description: String! - state_of_issuance: String! - issue_date: DateTime! - last_updated: DateTime! -} - -type WarrantsByCrime { - crime: String! - num_warrants: Float! -} - -type WarrantsByState { - state: String! - status: String! - num_warrants: Float! -} - - -type Tracking { - latitude: Float! - longitude: Float! - event_time: DateTime! -} - -type Mutation { - Tracking(encounter: TrackingInput!): TrackingCreated -} - -input TrackingInput { - plate: String! - latitude: Float! - longitude: Float! -} - -type TrackingCreated { - _uuid: String! - plate: String! -} - -type Subscription { - TrackingAlert: TrackingAlert -} - -type TrackingAlert { - bolo_id: String! - vehicle_id: String! - issue_date: DateTime! - status: String! - last_updated: DateTime! - make: String! - model: String! - year: Float! - registration_state: String! - registration_number: String! - license_state: String! - driver_id: String! - latitude: Float! - longitude: Float! -} \ No newline at end of file diff --git a/law-enforcement/schema.graphqls b/law-enforcement/schema.graphqls deleted file mode 100644 index aa6f352b..00000000 --- a/law-enforcement/schema.graphqls +++ /dev/null @@ -1,156 +0,0 @@ -type Bolo { - bolo_id: String! - vehicle_id: String! - issue_date: DateTime! - status: String! - last_updated: DateTime! -} - -type BoloDetails { - bolo_id: String! - vehicle_id: String! - issue_date: DateTime! - status: String! - last_updated: DateTime! - make: String! - model: String! - year: GraphQLBigInteger! - registration_state: String! - registration_number: String! - license_state: String! - driver_id: String! - driver: Driver - vehicle: Vehicle -} - -type BolosByWeekState { - week: DateTime! - state: String! - num_bolos: GraphQLBigInteger! -} - -"An RFC-3339 compliant DateTime Scalar" -scalar DateTime - -type Driver { - driver_id: String! - first_name: String! - last_name: String! - license_number: String! - license_state: String! - date_of_birth: String! - license_status: String! - license_expiry_date: DateTime! - last_updated: DateTime! - bolos(limit: Int = 10, offset: Int = 0): [BoloDetails!] - vehicles(limit: Int = 10, offset: Int = 0): [Vehicle!] - warrants(limit: Int = 10, offset: Int = 0): [Warrant!] -} - -"An arbitrary precision signed integer" -scalar GraphQLBigInteger - -type Mutation { - Tracking(event: TrackingInput!): TrackingResultOutput! -} - -type Query { - Bolo(limit: Int = 10, offset: Int = 0): [Bolo!] - "Fetches Bolo details for all vehicles that match the given make and (optional) model." - BoloDetails(make: String!, model: String!, limit: Int = 10, offset: Int = 0): [BoloDetails!] - """ - Fetches Bolo (be on the lookout) statistics by week filtered by state. It returns the data ordered - by week starting from the most recent and going backwards from there. - The state argument must be a valid two-letter abbreviation of a US state (e.g. CA, WA) - """ - BolosByWeekState(state: String!, limit: Int = 10, offset: Int = 0): [BolosByWeekState!] - "Retrieves driver information using their license number." - Driver(license_number: String!, limit: Int = 10, offset: Int = 0): [Driver!] - "Retrieves vehicle details using the registration number." - Vehicle(registration_number: String!, limit: Int = 10, offset: Int = 0): [Vehicle!] - Warrant(limit: Int = 10, offset: Int = 0): [Warrant!] - "Fetches statistics on warrants by crime" - WarrantsByCrime(limit: Int = 10, offset: Int = 0): [WarrantsByCrime!] - """ - Fetches statistics on warrants issued by state filtered by their status. - The status of the warrant must be one of: active, urgent, closed, suspended. - """ - WarrantsByState(status: String!, limit: Int = 10, offset: Int = 0): [WarrantsByState!] -} - -type Subscription { - TrackingAlert: TrackingAlert -} - -type Tracking { - plate: String! - latitude: Float! - longitude: Float! - event_time: DateTime! -} - -type TrackingAlert { - bolo_id: String! - vehicle_id: String! - issue_date: DateTime! - status: String! - last_updated: DateTime! - make: String! - model: String! - year: GraphQLBigInteger! - registration_state: String! - registration_number: String! - license_state: String! - driver_id: String! - latitude: Float! - longitude: Float! -} - -input TrackingInput { - plate: String! - latitude: Float! - longitude: Float! -} - -type TrackingResultOutput { - plate: String! - latitude: Float! - longitude: Float! - event_time: DateTime! -} - -type Vehicle { - vehicle_id: String! - registration_number: String! - registration_state: String! - registration_expiry: DateTime! - make: String! - model: String! - year: GraphQLBigInteger! - owner_driver_id: String! - last_updated: DateTime! - bolos(limit: Int = 10, offset: Int = 0): [BoloDetails!] - driver: Driver - tracking(limit: Int = 10, offset: Int = 0): [Tracking!] -} - -type Warrant { - warrant_id: String! - person_id: String! - warrant_status: String! - crime_description: String! - state_of_issuance: String! - issue_date: DateTime! - last_updated: DateTime! -} - -type WarrantsByCrime { - crime: String! - num_warrants: GraphQLBigInteger! -} - -type WarrantsByState { - state: String! - status: String! - num_warrants: GraphQLBigInteger! -} From e03b482a9eddffa4c5a95660a5c3e9396f8efb56 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 17:10:50 -0700 Subject: [PATCH 13/23] updated nullability and snapshot --- finance-credit-card-chatbot/creditcard-analytics.sqrl | 2 +- finance-credit-card-chatbot/creditcard-rewards.graphqls | 6 +++--- finance-credit-card-chatbot/creditcard-rewards.sqrl | 2 +- .../snapshots-static/SensorHighTempTest.snapshot | 1 + 4 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 iot-sensor-metrics/snapshots-static/SensorHighTempTest.snapshot diff --git a/finance-credit-card-chatbot/creditcard-analytics.sqrl b/finance-credit-card-chatbot/creditcard-analytics.sqrl index 3639ee39..afca9a5e 100644 --- a/finance-credit-card-chatbot/creditcard-analytics.sqrl +++ b/finance-credit-card-chatbot/creditcard-analytics.sqrl @@ -47,7 +47,7 @@ CREATE TABLE InternalSaveChatMessage ( name STRING, functionCall STRING, customerId INT, - event_time TIMESTAMP_LTZ(3) METADATA FROM 'timestamp' + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' ); /*+query_by_all(customerId) */ diff --git a/finance-credit-card-chatbot/creditcard-rewards.graphqls b/finance-credit-card-chatbot/creditcard-rewards.graphqls index dbf74f23..36c2061d 100644 --- a/finance-credit-card-chatbot/creditcard-rewards.graphqls +++ b/finance-credit-card-chatbot/creditcard-rewards.graphqls @@ -73,9 +73,9 @@ type Subscription { } type CustomerRewards { - transactionId: Float! + transactionId: GraphQLBigInteger! customerId: GraphQLBigInteger! - cardNo: Float! + cardNo: GraphQLBigInteger! cardType: String! time: DateTime! amount: Float! @@ -96,7 +96,7 @@ type TotalReward { } type PotentialRewards { - transactionId: Float! + transactionId: GraphQLBigInteger! customerId: GraphQLBigInteger! rewardCardType: String! time: DateTime! diff --git a/finance-credit-card-chatbot/creditcard-rewards.sqrl b/finance-credit-card-chatbot/creditcard-rewards.sqrl index e6bf5b03..bf73833c 100644 --- a/finance-credit-card-chatbot/creditcard-rewards.sqrl +++ b/finance-credit-card-chatbot/creditcard-rewards.sqrl @@ -79,7 +79,7 @@ CREATE TABLE InternalSaveChatMessage ( name STRING, functionCall STRING, customerId INT, - event_time TIMESTAMP_LTZ(3) METADATA FROM 'timestamp' + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' ); /*+query_by_all(customerId) */ diff --git a/iot-sensor-metrics/snapshots-static/SensorHighTempTest.snapshot b/iot-sensor-metrics/snapshots-static/SensorHighTempTest.snapshot new file mode 100644 index 00000000..f5a4484f --- /dev/null +++ b/iot-sensor-metrics/snapshots-static/SensorHighTempTest.snapshot @@ -0,0 +1 @@ +{"data":{"SensorHighTempTest":[{"num":5,"avg_temp":106.0}]}} \ No newline at end of file From b5bd4eb44a0674bb65aaae2ced80477523f76aec Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 21:28:44 -0700 Subject: [PATCH 14/23] updated healthcare test --- .github/workflows/build.yml | 5 +- healthcare-study-monitoring/joinExamples.sqrl | 3 +- .../masterdata-local/metadata.table.sql | 9 +++ ...a.table.json => metadata.table.sql.backup} | 0 .../observationgroup.table.json | 15 ---- .../observationgroup.table.sql | 9 +++ .../masterdata-local/patients.table.json | 15 ---- .../masterdata-local/patients.table.sql | 9 +++ .../sensorplacements.table.json | 15 ---- .../sensorplacements.table.sql | 9 +++ .../metrics-api/clinicalindicator.table.sql | 5 ++ .../clinicalIndicator.table.json | 23 ------ .../metrics-kafka/clinicalIndicator.table.sql | 11 +++ .../clinicalindicator.table.json | 20 ------ .../metrics-local/clinicalindicator.table.sql | 9 +++ healthcare-study-monitoring/schema.graphqls | 71 +++++++++++++++++++ .../sink-kafka/enrichedIndicator.table.json | 14 ---- .../sink-kafka/enrichedIndicator.table.sql | 12 ++++ .../sink-local/enrichedIndicator.table.json | 12 ---- .../sink-local/enrichedIndicator.table.sql | 8 +++ .../IndicatorAlertsTest.snapshot | 2 +- .../patientsAndMetrics.snapshot | 2 +- .../Above70Test.snapshot | 2 +- .../InvalidMetricTest.snapshot | 2 +- .../snapshots-study-stream/TotalTest.snapshot | 2 +- .../study_analytics.sqrl | 40 +++++------ healthcare-study-monitoring/study_api.sqrl | 37 +++++----- .../study_api_run_package.json | 19 +++++ .../study_api_test_package.json | 10 ++- .../study_create_api.sqrl | 30 -------- healthcare-study-monitoring/study_stream.sqrl | 14 ++-- .../patientsAndMetrics.graphql | 0 .../sensor-api/addreadings.table.sql | 3 +- 33 files changed, 238 insertions(+), 199 deletions(-) create mode 100644 healthcare-study-monitoring/masterdata-local/metadata.table.sql rename healthcare-study-monitoring/masterdata-local/{metadata.table.json => metadata.table.sql.backup} (100%) delete mode 100644 healthcare-study-monitoring/masterdata-local/observationgroup.table.json create mode 100644 healthcare-study-monitoring/masterdata-local/observationgroup.table.sql delete mode 100644 healthcare-study-monitoring/masterdata-local/patients.table.json create mode 100644 healthcare-study-monitoring/masterdata-local/patients.table.sql delete mode 100644 healthcare-study-monitoring/masterdata-local/sensorplacements.table.json create mode 100644 healthcare-study-monitoring/masterdata-local/sensorplacements.table.sql create mode 100644 healthcare-study-monitoring/metrics-api/clinicalindicator.table.sql delete mode 100644 healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.json create mode 100644 healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.sql delete mode 100644 healthcare-study-monitoring/metrics-local/clinicalindicator.table.json create mode 100644 healthcare-study-monitoring/metrics-local/clinicalindicator.table.sql create mode 100644 healthcare-study-monitoring/schema.graphqls delete mode 100644 healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.json create mode 100644 healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.sql delete mode 100644 healthcare-study-monitoring/sink-local/enrichedIndicator.table.json create mode 100644 healthcare-study-monitoring/sink-local/enrichedIndicator.table.sql create mode 100644 healthcare-study-monitoring/study_api_run_package.json delete mode 100644 healthcare-study-monitoring/study_create_api.sqrl rename healthcare-study-monitoring/{tests-api => tests-study-api}/patientsAndMetrics.graphql (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4003ba11..d730a80e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,9 +24,10 @@ jobs: path: healthcare-study-monitoring test_commands: | test -c study_analytics_package.json study_analytics.sqrl --snapshot snapshots-study-analytics - test -c study_api_test_package.json --tests tests-api --snapshot snapshots-study-api + test -c study_api_test_package.json --tests tests-study-api --snapshot snapshots-study-api test -c study_stream_local_package.json study_stream.sqrl --snapshot snapshots-study-stream - compile study_create_api.sqrl + compile -c study_stream_kafka_package.json + compile -c study_analytics_snowflake_package.json - example: logistics path: logistics-shipping-geodata diff --git a/healthcare-study-monitoring/joinExamples.sqrl b/healthcare-study-monitoring/joinExamples.sqrl index 72df0b2c..51e9df36 100644 --- a/healthcare-study-monitoring/joinExamples.sqrl +++ b/healthcare-study-monitoring/joinExamples.sqrl @@ -3,9 +3,10 @@ IMPORT masterdata-local.SensorPlacements; SensorsDedup := DISTINCT SensorPlacements ON sensorId ORDER BY placedTimestamp DESC; +/*+primary_key(sensorId, timestamp) */ -- MyJoin := SELECT * FROM ClinicalIndicator i JOIN SensorPlacements s ON i.sensorId = s.sensorId; MyJoin := SELECT * FROM ClinicalIndicator i INNER JOIN SensorsDedup s ON i.sensorId = s.sensorId; --- MyJoin := SELECT * FROM ClinicalIndicator i TEMPORAL JOIN SensorsDedup s ON i.sensorId = s.sensorId; +-- MyJoin := SELECT * FROM ClinicalIndicator i JOIN SensorsDedup FOR SYSTEM_TIME AS OF i.`timestamp` s ON ON i.sensorId = s.sensorId; MyJoinSubset := SELECT * FROM MyJoin WHERE sensorId = 10; diff --git a/healthcare-study-monitoring/masterdata-local/metadata.table.sql b/healthcare-study-monitoring/masterdata-local/metadata.table.sql new file mode 100644 index 00000000..2d7a4074 --- /dev/null +++ b/healthcare-study-monitoring/masterdata-local/metadata.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Metadata ( + PRIMARY KEY (`metadataId`, `lastUpdated`) NOT ENFORCED, + WATERMARK FOR `lastUpdated` AS `lastUpdated` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/metadata.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/healthcare-study-monitoring/masterdata-local/metadata.table.json b/healthcare-study-monitoring/masterdata-local/metadata.table.sql.backup similarity index 100% rename from healthcare-study-monitoring/masterdata-local/metadata.table.json rename to healthcare-study-monitoring/masterdata-local/metadata.table.sql.backup diff --git a/healthcare-study-monitoring/masterdata-local/observationgroup.table.json b/healthcare-study-monitoring/masterdata-local/observationgroup.table.json deleted file mode 100644 index a8a08c57..00000000 --- a/healthcare-study-monitoring/masterdata-local/observationgroup.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/observationgroup.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "groupId", "createdDate" ], - "timestamp" : "createdDate", - "watermark-millis" : 1 - } -} \ No newline at end of file diff --git a/healthcare-study-monitoring/masterdata-local/observationgroup.table.sql b/healthcare-study-monitoring/masterdata-local/observationgroup.table.sql new file mode 100644 index 00000000..474eff65 --- /dev/null +++ b/healthcare-study-monitoring/masterdata-local/observationgroup.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE ObservationGroup ( + PRIMARY KEY (`groupId`, `createdDate`) NOT ENFORCED, + WATERMARK FOR `createdDate` AS `createdDate` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/observationgroup.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/healthcare-study-monitoring/masterdata-local/patients.table.json b/healthcare-study-monitoring/masterdata-local/patients.table.json deleted file mode 100644 index b639af25..00000000 --- a/healthcare-study-monitoring/masterdata-local/patients.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/patients.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "patientId", "lastUpdated" ], - "timestamp" : "lastUpdated", - "watermark-millis" : 1 - } -} \ No newline at end of file diff --git a/healthcare-study-monitoring/masterdata-local/patients.table.sql b/healthcare-study-monitoring/masterdata-local/patients.table.sql new file mode 100644 index 00000000..62d1e3b8 --- /dev/null +++ b/healthcare-study-monitoring/masterdata-local/patients.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE Patients ( + PRIMARY KEY (`patientId`, `lastUpdated`) NOT ENFORCED, + WATERMARK FOR `lastUpdated` AS `lastUpdated` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/patients.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' +); \ No newline at end of file diff --git a/healthcare-study-monitoring/masterdata-local/sensorplacements.table.json b/healthcare-study-monitoring/masterdata-local/sensorplacements.table.json deleted file mode 100644 index 76af0beb..00000000 --- a/healthcare-study-monitoring/masterdata-local/sensorplacements.table.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/sensorplacements.jsonl", - "source.monitor-interval" : "10 min", - "connector" : "filesystem" - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "eventId"], - "timestamp" : "placedTimestamp", - "watermark-millis" : 1 - } -} \ No newline at end of file diff --git a/healthcare-study-monitoring/masterdata-local/sensorplacements.table.sql b/healthcare-study-monitoring/masterdata-local/sensorplacements.table.sql new file mode 100644 index 00000000..e1ee2c4b --- /dev/null +++ b/healthcare-study-monitoring/masterdata-local/sensorplacements.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE SensorPlacements ( + PRIMARY KEY (`eventId`) NOT ENFORCED, + WATERMARK FOR `placedTimestamp` AS `placedTimestamp` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/sensorplacements.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/healthcare-study-monitoring/metrics-api/clinicalindicator.table.sql b/healthcare-study-monitoring/metrics-api/clinicalindicator.table.sql new file mode 100644 index 00000000..6d7080f0 --- /dev/null +++ b/healthcare-study-monitoring/metrics-api/clinicalindicator.table.sql @@ -0,0 +1,5 @@ +CREATE TABLE ClinicalIndicator ( + sensorId BIGINT NOT NULL, + metric DOUBLE NOT NULL, + `timestamp` TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' +); \ No newline at end of file diff --git a/healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.json b/healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.json deleted file mode 100644 index f9315325..00000000 --- a/healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 1, - "flink" : { - "connector" : "kafka", - "topic": "indicators", - "properties.bootstrap.servers": "${PROPERTIES_BOOTSTRAP_SERVERS}", - "properties.group.id": "mygroup", - "scan.startup.mode": "earliest-offset", - "format" : "flexible-json" - }, - "metadata" : { - "timestamp" : { - "attribute": "timestamp", - "type": "TIMESTAMP_WITH_LOCAL_TIME_ZONE(3)" - } - }, - "table" : { - "type" : "source", - "primary-key" : [ "sensorId", "timestamp" ], - "timestamp" : "timestamp", - "watermark-millis" : 1 - } -} \ No newline at end of file diff --git a/healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.sql b/healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.sql new file mode 100644 index 00000000..94d8fb4e --- /dev/null +++ b/healthcare-study-monitoring/metrics-kafka/clinicalIndicator.table.sql @@ -0,0 +1,11 @@ +CREATE TABLE Indicators ( + `timestamp` TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp', + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '0.001' SECOND +) WITH ( + 'connector' = 'kafka', + 'topic' = 'indicators', + 'properties.bootstrap.servers' = '${PROPERTIES_BOOTSTRAP_SERVERS}', + 'properties.group.id' = 'mygroup', + 'scan.startup.mode' = 'earliest-offset', + 'format' = 'flexible-json' + ); \ No newline at end of file diff --git a/healthcare-study-monitoring/metrics-local/clinicalindicator.table.json b/healthcare-study-monitoring/metrics-local/clinicalindicator.table.json deleted file mode 100644 index c476ba02..00000000 --- a/healthcare-study-monitoring/metrics-local/clinicalindicator.table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/clinicalindicator.jsonl", - "source.monitor-interval": "10 min", - "connector" : "filesystem" - }, - "metadata" : { - "timestamp" : { - "attribute" : "time.EpochMilliToTimestamp(time)" - } - }, - "version" : 1, - "table" : { - "type" : "source", - "primary-key" : [ "sensorId", "time" ], - "timestamp" : "timestamp", - "watermark-millis" : 1 - } -} \ No newline at end of file diff --git a/healthcare-study-monitoring/metrics-local/clinicalindicator.table.sql b/healthcare-study-monitoring/metrics-local/clinicalindicator.table.sql new file mode 100644 index 00000000..1b84aac0 --- /dev/null +++ b/healthcare-study-monitoring/metrics-local/clinicalindicator.table.sql @@ -0,0 +1,9 @@ +CREATE TABLE ClinicalIndicator ( + `timestamp` AS TO_TIMESTAMP_LTZ(`time`,3), + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '0.001' SECOND +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/clinicalindicator.jsonl', + 'source.monitor-interval' = '10 min', + 'connector' = 'filesystem' + ); \ No newline at end of file diff --git a/healthcare-study-monitoring/schema.graphqls b/healthcare-study-monitoring/schema.graphqls new file mode 100644 index 00000000..ebbc62d3 --- /dev/null +++ b/healthcare-study-monitoring/schema.graphqls @@ -0,0 +1,71 @@ +type AddClinicalData { + sensorId: GraphQLBigInteger! + metric: Float! + timestamp: DateTime! +} + +input AddClinicalDataInput { + sensorId: GraphQLBigInteger! + metric: Float! +} + +type AddClinicalDataResultOutput { + sensorId: GraphQLBigInteger! + metric: Float! + timestamp: DateTime! +} + +"An RFC-3339 compliant DateTime Scalar" +scalar DateTime + +"An arbitrary precision signed integer" +scalar GraphQLBigInteger + +type IndicatorAlerts { + sensorId: GraphQLBigInteger! + metric: Float! + timestamp: DateTime! + sensorId0: GraphQLBigInteger! + patientId: GraphQLBigInteger! + metadataId: GraphQLBigInteger! + eventId: String! + placedTimestamp: DateTime! + metadataId0: GraphQLBigInteger! + name: String! + lowRange: Float! + highRange: Float! + lastUpdated: DateTime! +} + +type Mutation { + AddClinicalData(event: AddClinicalDataInput!): AddClinicalDataResultOutput! +} + +type PatientMetricsHourly { + patientId: GraphQLBigInteger! + timeHour: DateTime! + metadataId: GraphQLBigInteger! + name: String! + avgMetric: Float! +} + +type Patients { + patientId: GraphQLBigInteger! + studyId: GraphQLBigInteger! + name: String! + bloodGroup: String + dateOfBirth: String + diagnosis: String + lastUpdated: DateTime! + metrics(limit: Int = 10, offset: Int = 0): [PatientMetricsHourly!] +} + +type Query { + AddClinicalData(limit: Int = 10, offset: Int = 0): [AddClinicalData!] + Patients(patientId: GraphQLBigInteger!, limit: Int = 10, offset: Int = 0): [Patients!] + PatientsByName(name: String!, limit: Int = 10, offset: Int = 0): [Patients!] +} + +type Subscription { + IndicatorAlerts: IndicatorAlerts +} diff --git a/healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.json b/healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.json deleted file mode 100644 index 48900f5c..00000000 --- a/healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "connector" : "kafka", - "topic": "enrichedindicators", - "properties.bootstrap.servers": "${PROPERTIES_BOOTSTRAP_SERVERS}", - "properties.group.id": "mygroup", - "scan.startup.mode": "earliest-offset", - "format" : "flexible-json" - }, - "table" : { - "type" : "sink" - } -} \ No newline at end of file diff --git a/healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.sql b/healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.sql new file mode 100644 index 00000000..a896b8a8 --- /dev/null +++ b/healthcare-study-monitoring/sink-kafka/enrichedIndicator.table.sql @@ -0,0 +1,12 @@ +CREATE TABLE EnrichedIndicators ( + WATERMARK FOR `timestamp` AS `timestamp` - INTERVAL '5' SECOND +) WITH ( + 'connector' = 'kafka', + 'topic' = 'enrichedindicators', + 'properties.bootstrap.servers' = '${PROPERTIES_BOOTSTRAP_SERVERS}', + 'properties.group.id' = 'mygroup', + 'scan.startup.mode' = 'earliest-offset', + 'value.format' = 'flexible-json', + 'key.format' = 'raw', + 'key.fields' = 'patientId' +); \ No newline at end of file diff --git a/healthcare-study-monitoring/sink-local/enrichedIndicator.table.json b/healthcare-study-monitoring/sink-local/enrichedIndicator.table.json deleted file mode 100644 index 8b682285..00000000 --- a/healthcare-study-monitoring/sink-local/enrichedIndicator.table.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": 1, - "flink" : { - "format" : "flexible-json", - "path" : "${DATA_PATH}/sink/enrichedIndicator/", - "connector" : "filesystem", - "flexible-json.timestamp-format.standard": "ISO-8601" - }, - "table" : { - "type" : "sink" - } -} \ No newline at end of file diff --git a/healthcare-study-monitoring/sink-local/enrichedIndicator.table.sql b/healthcare-study-monitoring/sink-local/enrichedIndicator.table.sql new file mode 100644 index 00000000..0d96172e --- /dev/null +++ b/healthcare-study-monitoring/sink-local/enrichedIndicator.table.sql @@ -0,0 +1,8 @@ +CREATE TABLE EnrichedIndicator ( + PRIMARY KEY (patientId) NOT ENFORCED +) WITH ( + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/sink/enrichedIndicator/', + 'connector' = 'filesystem', + 'flexible-json.timestamp-format.standard' = 'ISO-8601' + ); \ No newline at end of file diff --git a/healthcare-study-monitoring/snapshots-study-api/IndicatorAlertsTest.snapshot b/healthcare-study-monitoring/snapshots-study-api/IndicatorAlertsTest.snapshot index 038dd1e9..dc83fc6c 100644 --- a/healthcare-study-monitoring/snapshots-study-api/IndicatorAlertsTest.snapshot +++ b/healthcare-study-monitoring/snapshots-study-api/IndicatorAlertsTest.snapshot @@ -1 +1 @@ -{"data":{"IndicatorAlertsTest":[{"sensorId":1.0,"numAlerts":1.0},{"sensorId":2.0,"numAlerts":1.0},{"sensorId":3.0,"numAlerts":2.0},{"sensorId":6.0,"numAlerts":2.0},{"sensorId":7.0,"numAlerts":2.0},{"sensorId":9.0,"numAlerts":1.0},{"sensorId":10.0,"numAlerts":3.0},{"sensorId":11.0,"numAlerts":2.0},{"sensorId":12.0,"numAlerts":2.0},{"sensorId":13.0,"numAlerts":1.0}]}} \ No newline at end of file +{"data":{"IndicatorAlertsTest":[{"sensorId":1,"numAlerts":1},{"sensorId":2,"numAlerts":1},{"sensorId":3,"numAlerts":2},{"sensorId":6,"numAlerts":2},{"sensorId":7,"numAlerts":2},{"sensorId":9,"numAlerts":1},{"sensorId":10,"numAlerts":3},{"sensorId":11,"numAlerts":2},{"sensorId":12,"numAlerts":2},{"sensorId":13,"numAlerts":1}]}} \ No newline at end of file diff --git a/healthcare-study-monitoring/snapshots-study-api/patientsAndMetrics.snapshot b/healthcare-study-monitoring/snapshots-study-api/patientsAndMetrics.snapshot index c5721af5..ade6a06c 100644 --- a/healthcare-study-monitoring/snapshots-study-api/patientsAndMetrics.snapshot +++ b/healthcare-study-monitoring/snapshots-study-api/patientsAndMetrics.snapshot @@ -1 +1 @@ -{"data":{"Patients":[{"name":"Taylor Kling","bloodGroup":"A-","dateOfBirth":"1984-10-02","diagnosis":"Down syndrome","metrics":[{"timeHour":"2024-09-16T11:59:59.999Z","metadataId":3.0,"name":"Arm numbness (paresthesias) Marker","avgMetric":66.10060308},{"timeHour":"2024-09-16T10:59:59.999Z","metadataId":3.0,"name":"Arm numbness (paresthesias) Marker","avgMetric":67.02037663},{"timeHour":"2024-09-16T09:59:59.999Z","metadataId":3.0,"name":"Arm numbness (paresthesias) Marker","avgMetric":66.35969065},{"timeHour":"2024-09-16T08:59:59.999Z","metadataId":3.0,"name":"Arm numbness (paresthesias) Marker","avgMetric":67.69669745},{"timeHour":"2024-09-16T07:59:59.999Z","metadataId":3.0,"name":"Arm numbness (paresthesias) Marker","avgMetric":65.89280589}]}]}} \ No newline at end of file +{"data":{"Patients":[{"name":"Taylor Kling","bloodGroup":"A-","dateOfBirth":"1984-10-02","diagnosis":"Down syndrome","metrics":[{"timeHour":"2024-09-16T11:59:59.999Z","metadataId":3,"name":"Arm numbness (paresthesias) Marker","avgMetric":66.10060308},{"timeHour":"2024-09-16T10:59:59.999Z","metadataId":3,"name":"Arm numbness (paresthesias) Marker","avgMetric":67.02037663},{"timeHour":"2024-09-16T09:59:59.999Z","metadataId":3,"name":"Arm numbness (paresthesias) Marker","avgMetric":66.35969065},{"timeHour":"2024-09-16T08:59:59.999Z","metadataId":3,"name":"Arm numbness (paresthesias) Marker","avgMetric":67.69669745},{"timeHour":"2024-09-16T07:59:59.999Z","metadataId":3,"name":"Arm numbness (paresthesias) Marker","avgMetric":65.89280589}]}]}} \ No newline at end of file diff --git a/healthcare-study-monitoring/snapshots-study-stream/Above70Test.snapshot b/healthcare-study-monitoring/snapshots-study-stream/Above70Test.snapshot index 1e3e3a8f..06330ff5 100644 --- a/healthcare-study-monitoring/snapshots-study-stream/Above70Test.snapshot +++ b/healthcare-study-monitoring/snapshots-study-stream/Above70Test.snapshot @@ -1 +1 @@ -{"data":{"Above70Test":[{"above70metric":5343.0}]}} \ No newline at end of file +{"data":{"Above70Test":[{"above70metric":5343}]}} \ No newline at end of file diff --git a/healthcare-study-monitoring/snapshots-study-stream/InvalidMetricTest.snapshot b/healthcare-study-monitoring/snapshots-study-stream/InvalidMetricTest.snapshot index e26582fc..80e35fef 100644 --- a/healthcare-study-monitoring/snapshots-study-stream/InvalidMetricTest.snapshot +++ b/healthcare-study-monitoring/snapshots-study-stream/InvalidMetricTest.snapshot @@ -1 +1 @@ -{"data":{"InvalidMetricTest":[{"sensorId":35.0,"time":1.72644858E12,"metric":-18.02896124,"timestamp":"2024-09-16T08:03:00.000Z","sensorId0":35.0,"patientId":8.0,"metadataId":20.0,"eventId":"9937b290-f7f8-495f-b63c-6398d200c3d7","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":20.0,"name":"Pain in the ear Marker","lowRange":2,"highRange":118,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":14.0,"time":1.72645296E12,"metric":-0.42880497,"timestamp":"2024-09-16T09:16:00.000Z","sensorId0":14.0,"patientId":10.0,"metadataId":12.0,"eventId":"449e2b9c-d68b-4d9f-afc9-328b7ca142c9","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":12.0,"name":"Mouth ulcers Marker","lowRange":1,"highRange":35,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":27.0,"time":1.72645608E12,"metric":-2.10630192,"timestamp":"2024-09-16T10:08:00.000Z","sensorId0":27.0,"patientId":13.0,"metadataId":6.0,"eventId":"33559ac7-1d71-48de-bee2-e77ed1f1e420","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":6.0,"name":"Vomiting coffee ground material Marker","lowRange":9,"highRange":107,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":34.0,"time":1.72645854E12,"metric":-0.12347204,"timestamp":"2024-09-16T10:49:00.000Z","sensorId0":34.0,"patientId":14.0,"metadataId":13.0,"eventId":"0b1f82a6-8fab-4db8-a669-20724a61caba","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":13.0,"name":"Pain in the ear Marker","lowRange":0,"highRange":2,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":36.0,"time":1.72646286E12,"metric":-0.00271993,"timestamp":"2024-09-16T12:01:00.000Z","sensorId0":36.0,"patientId":28.0,"metadataId":13.0,"eventId":"89c197c0-8fd1-4295-84fa-50ed69c834aa","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":13.0,"name":"Pain in the ear Marker","lowRange":0,"highRange":2,"lastUpdated":"2024-09-15T07:00:00.000Z"}]}} \ No newline at end of file +{"data":{"InvalidMetricTest":[{"sensorId":35,"time":1726448580000,"metric":-18.02896124,"timestamp":"2024-09-16T08:03:00.000Z","sensorId0":35,"patientId":8,"metadataId":20,"eventId":"9937b290-f7f8-495f-b63c-6398d200c3d7","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":20,"name":"Pain in the ear Marker","lowRange":2,"highRange":118,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":14,"time":1726452960000,"metric":-0.42880497,"timestamp":"2024-09-16T09:16:00.000Z","sensorId0":14,"patientId":10,"metadataId":12,"eventId":"449e2b9c-d68b-4d9f-afc9-328b7ca142c9","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":12,"name":"Mouth ulcers Marker","lowRange":1,"highRange":35,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":27,"time":1726456080000,"metric":-2.10630192,"timestamp":"2024-09-16T10:08:00.000Z","sensorId0":27,"patientId":13,"metadataId":6,"eventId":"33559ac7-1d71-48de-bee2-e77ed1f1e420","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":6,"name":"Vomiting coffee ground material Marker","lowRange":9,"highRange":107,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":34,"time":1726458540000,"metric":-0.12347204,"timestamp":"2024-09-16T10:49:00.000Z","sensorId0":34,"patientId":14,"metadataId":13,"eventId":"0b1f82a6-8fab-4db8-a669-20724a61caba","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":13,"name":"Pain in the ear Marker","lowRange":0,"highRange":2,"lastUpdated":"2024-09-15T07:00:00.000Z"},{"sensorId":36,"time":1726462860000,"metric":-0.00271993,"timestamp":"2024-09-16T12:01:00.000Z","sensorId0":36,"patientId":28,"metadataId":13,"eventId":"89c197c0-8fd1-4295-84fa-50ed69c834aa","placedTimestamp":"2024-09-15T07:00:00.000Z","metadataId0":13,"name":"Pain in the ear Marker","lowRange":0,"highRange":2,"lastUpdated":"2024-09-15T07:00:00.000Z"}]}} \ No newline at end of file diff --git a/healthcare-study-monitoring/snapshots-study-stream/TotalTest.snapshot b/healthcare-study-monitoring/snapshots-study-stream/TotalTest.snapshot index 15dcead1..3e41638d 100644 --- a/healthcare-study-monitoring/snapshots-study-stream/TotalTest.snapshot +++ b/healthcare-study-monitoring/snapshots-study-stream/TotalTest.snapshot @@ -1 +1 @@ -{"data":{"TotalTest":[{"total_num":21540.0}]}} \ No newline at end of file +{"data":{"TotalTest":[{"total_num":21540}]}} \ No newline at end of file diff --git a/healthcare-study-monitoring/study_analytics.sqrl b/healthcare-study-monitoring/study_analytics.sqrl index ba92b3cc..92e60f3b 100644 --- a/healthcare-study-monitoring/study_analytics.sqrl +++ b/healthcare-study-monitoring/study_analytics.sqrl @@ -1,32 +1,30 @@ -IMPORT metrics-local.ClinicalIndicator; -IMPORT masterdata-local.*; +IMPORT metrics-local.ClinicalIndicator AS _ClinicalIndicator; +IMPORT masterdata-local.* AS _CDC_; -_SensorPlacements := DISTINCT SensorPlacements ON sensorId ORDER BY placedTimestamp DESC; -_Metadata := DISTINCT Metadata ON metadataId ORDER BY lastUpdated DESC; -_Patients := DISTINCT Patients ON patientId ORDER BY lastUpdated DESC; +_SensorPlacements := DISTINCT _CDC_sensorplacements ON sensorId ORDER BY placedTimestamp DESC; +_Metadata := DISTINCT _CDC_metadata ON metadataId ORDER BY lastUpdated DESC; +_Patients := DISTINCT _CDC_patients ON patientId ORDER BY lastUpdated DESC; -_EnrichedIndicators := SELECT * FROM ClinicalIndicator m - TEMPORAL JOIN _SensorPlacements p ON m.sensorId = p.sensorid - TEMPORAL JOIN _Metadata d ON d.metadataId = p.metadataId - TEMPORAL JOIN _Patients pt ON p.patientId = pt.patientId; - -IMPORT time.endOfHour; +_EnrichedIndicators := SELECT * FROM _ClinicalIndicator m + JOIN _SensorPlacements FOR SYSTEM_TIME AS OF m.`timestamp` p ON m.sensorId = p.sensorId + JOIN _Metadata FOR SYSTEM_TIME AS OF m.`timestamp` d ON d.metadataId = p.metadataId + JOIN _Patients FOR SYSTEM_TIME AS OF m.`timestamp` pt ON p.patientId = pt.patientId; /*+partition_key(studyId) */ -_PatientMetricsHourly := SELECT studyId, patientId, endOfHour(timestamp) AS timeHour, metadataId, name, +_PatientMetricsHourly := SELECT studyId, patientId, window_time AS timeHour, metadataId, name, avg(metric) as avgMetric - FROM _EnrichedIndicators - GROUP BY studyId, patientId, timeHour, metadataId, name; + FROM TABLE(TUMBLE(TABLE _EnrichedIndicators, DESCRIPTOR(`timestamp`), INTERVAL '1' HOUR)) + GROUP BY studyId, patientId, metadataId, name, window_start, window_end, window_time; -_ObservationGroup := DISTINCT ObservationGroup ON groupId ORDER BY createdDate DESC; +_ObservationGroup := DISTINCT _CDC_observationgroup ON groupId ORDER BY createdDate DESC; -/*+partition_key */ -_ObservationGroupMembership := SELECT groupID, groupName, studyId, p.patientId FROM _ObservationGroup g JOIN g.patients p; +/*+primary_key(groupId, patientId), partition_key */ +_ObservationGroupMembership := SELECT groupId, groupName, studyId, p.patientId FROM _ObservationGroup g CROSS JOIN UNNEST(g.patients) p(patientId); -ObservationAggregate := SELECT groupID, timeHour, metadataId, name, MIN(avgMetric) AS minMetric, MAX(avgMetric) AS maxMetric +ObservationAggregate := SELECT groupId, timeHour, metadataId, name, MIN(avgMetric) AS minMetric, MAX(avgMetric) AS maxMetric FROM _PatientMetricsHourly p JOIN _ObservationGroupMembership o ON p.studyId = o.studyId AND p.patientId = o.patientId - GROUP BY groupID, timeHour, metadataId, name; + GROUP BY groupId, timeHour, metadataId, name; /*+test */ -ObservationAggregateTest := SELECT groupID, timeHour, metadataId, COUNT(1) AS num FROM ObservationAggregate - GROUP BY groupID, timeHour, metadataId ORDER BY groupID ASC, timeHour DESC, metadataId ASC; +ObservationAggregateTest := SELECT groupId, timeHour, metadataId, COUNT(1) AS num FROM ObservationAggregate + GROUP BY groupId, timeHour, metadataId ORDER BY groupId ASC, timeHour DESC, metadataId ASC; diff --git a/healthcare-study-monitoring/study_api.sqrl b/healthcare-study-monitoring/study_api.sqrl index 26665f2a..2ef57db3 100644 --- a/healthcare-study-monitoring/study_api.sqrl +++ b/healthcare-study-monitoring/study_api.sqrl @@ -1,14 +1,17 @@ -IMPORT metrics-local.ClinicalIndicator; -IMPORT masterdata-local.*; +/*+no_query */ +IMPORT metrics.ClinicalIndicator AS AddClinicalData; +IMPORT masterdata-local.* AS _CDC_; -SensorPlacements := DISTINCT SensorPlacements ON sensorId ORDER BY placedTimestamp DESC; -Metadata := DISTINCT Metadata ON metadataId ORDER BY lastUpdated DESC; +_ClinicalIndicator := SELECT sensorId, metric, `timestamp` FROM AddClinicalData; -EnrichedIndicators := SELECT * FROM ClinicalIndicator m - TEMPORAL JOIN SensorPlacements p ON m.sensorId = p.sensorid - TEMPORAL JOIN Metadata d ON d.metadataId = p.metadataId; +_SensorPlacements := DISTINCT _CDC_sensorplacements ON sensorId ORDER BY placedTimestamp DESC; +_Metadata := DISTINCT _CDC_metadata ON metadataId ORDER BY lastUpdated DESC; -IndicatorAlerts := SELECT * FROM EnrichedIndicators +_EnrichedIndicators := SELECT * FROM _ClinicalIndicator m + JOIN _SensorPlacements FOR SYSTEM_TIME AS OF m.`timestamp` p ON m.sensorId = p.sensorId + JOIN _Metadata FOR SYSTEM_TIME AS OF m.`timestamp` d ON d.metadataId = p.metadataId; + +IndicatorAlerts := SUBSCRIBE SELECT * FROM _EnrichedIndicators WHERE metric < lowRange OR metric > highRange; /*+test */ @@ -17,16 +20,18 @@ IndicatorAlertsTest := SELECT sensorId, COUNT(metric) AS numAlerts FROM Indicato EXPORT IndicatorAlerts TO logger.Alert; -IMPORT time.endOfHour; - -PatientMetricsHourly := SELECT patientId, endOfHour(timestamp) AS timeHour, metadataId, name, +/*+no_query */ +PatientMetricsHourly := SELECT patientId, window_time AS timeHour, metadataId, name, avg(metric) as avgMetric - FROM EnrichedIndicators - GROUP BY patientId, timeHour, metadataId, name; + FROM TABLE(TUMBLE(TABLE _EnrichedIndicators, DESCRIPTOR(`timestamp`), INTERVAL '1' HOUR)) + GROUP BY patientId, metadataId, name, window_start, window_end, window_time; /*+test */ PatientMetricsHourlyTest := SELECT timeHour, name, avgMetric FROM PatientMetricsHourly - WHERE patientId = 5 ORDER BY timeHour DESC, name ASC; + WHERE patientId = 5 ORDER BY timeHour DESC, name ASC; + +/*+query_by_any(patientId) */ +Patients := DISTINCT _CDC_patients ON patientId ORDER BY lastUpdated DESC; +Patients.metrics := SELECT * FROM PatientMetricsHourly m WHERE m.patientId = this.patientId ORDER BY m.timeHour DESC, m.name ASC; -Patients := DISTINCT Patients ON patientId ORDER BY lastUpdated DESC; -Patients.metrics := JOIN PatientMetricsHourly m ON m.patientId = @.patientId ORDER BY m.timeHour DESC, m.name ASC; \ No newline at end of file +PatientsByName(name STRING NOT NULL) := SELECT * FROM Patients WHERE name = :name; \ No newline at end of file diff --git a/healthcare-study-monitoring/study_api_run_package.json b/healthcare-study-monitoring/study_api_run_package.json new file mode 100644 index 00000000..848a715a --- /dev/null +++ b/healthcare-study-monitoring/study_api_run_package.json @@ -0,0 +1,19 @@ +{ + "version": "1", + "script": { + "main": "study_api.sqrl" + }, + "values" : { + "flink-config": { + "table.exec.source.idle-timeout": "1000 ms" + } + }, + "dependencies": [ + { + "metrics": { + "name": "metrics-api", + "version": "1", + "variant": "dev" + } + }] +} \ No newline at end of file diff --git a/healthcare-study-monitoring/study_api_test_package.json b/healthcare-study-monitoring/study_api_test_package.json index 776dc201..2d3122c5 100644 --- a/healthcare-study-monitoring/study_api_test_package.json +++ b/healthcare-study-monitoring/study_api_test_package.json @@ -10,5 +10,13 @@ }, "test-runner": { "delay-sec": 200 - } + }, + "dependencies": [ + { + "metrics": { + "name": "metrics-local", + "version": "1", + "variant": "dev" + } + }] } \ No newline at end of file diff --git a/healthcare-study-monitoring/study_create_api.sqrl b/healthcare-study-monitoring/study_create_api.sqrl deleted file mode 100644 index 06294bc3..00000000 --- a/healthcare-study-monitoring/study_create_api.sqrl +++ /dev/null @@ -1,30 +0,0 @@ -IMPORT masterdata-local.*; - -CREATE TABLE ClinicalIndicator ( - sensorId BIGINT NOT NULL, - metric DOUBLE NOT NULL -); - -ClinicalIndicator := SELECT _uuid, sensorId, metric, event_time AS timestamp FROM ClinicalIndicator; - -SensorPlacements := DISTINCT SensorPlacements ON sensorId ORDER BY placedTimestamp DESC; -Metadata := DISTINCT Metadata ON metadataId ORDER BY lastUpdated DESC; - -EnrichedIndicators := SELECT * FROM ClinicalIndicator m - TEMPORAL JOIN SensorPlacements p ON m.sensorId = p.sensorid - TEMPORAL JOIN Metadata d ON d.metadataId = p.metadataId; - -IndicatorAlerts := SELECT * FROM EnrichedIndicators - WHERE metric < lowRange OR metric > highRange; - -EXPORT IndicatorAlerts TO logger.Alert; - -IMPORT time.endOfHour; - -PatientMetricsHourly := SELECT patientId, endOfHour(timestamp) AS timeHour, metadataId, name, - avg(metric) as avgMetric - FROM EnrichedIndicators - GROUP BY patientId, timeHour, metadataId, name; - -Patients := DISTINCT Patients ON patientId ORDER BY lastUpdated DESC; -Patients.metrics := JOIN PatientMetricsHourly m ON m.patientId = @.patientId ORDER BY m.timeHour DESC, m.name ASC; \ No newline at end of file diff --git a/healthcare-study-monitoring/study_stream.sqrl b/healthcare-study-monitoring/study_stream.sqrl index 06d0b647..35e1f383 100644 --- a/healthcare-study-monitoring/study_stream.sqrl +++ b/healthcare-study-monitoring/study_stream.sqrl @@ -1,13 +1,13 @@ IMPORT metrics.ClinicalIndicator; -IMPORT masterdata.SensorPlacements; -IMPORT masterdata.Metadata; +IMPORT masterdata.SensorPlacements AS _CDC_SensorPlacements; +IMPORT masterdata.Metadata AS _CDC_Metadata; -SensorPlacements := DISTINCT SensorPlacements ON sensorId ORDER BY placedTimestamp DESC; -Metadata := DISTINCT Metadata ON metadataId ORDER BY lastUpdated DESC; +SensorPlacements := DISTINCT _CDC_SensorPlacements ON sensorId ORDER BY placedTimestamp DESC; +Metadata := DISTINCT _CDC_Metadata ON metadataId ORDER BY lastUpdated DESC; EnrichedIndicators := SELECT * FROM ClinicalIndicator m - TEMPORAL JOIN SensorPlacements p ON m.sensorId = p.sensorid - TEMPORAL JOIN Metadata d ON d.metadataId = p.metadataId; + JOIN SensorPlacements FOR SYSTEM_TIME AS OF m.`timestamp` p ON m.sensorId = p.sensorId + JOIN Metadata FOR SYSTEM_TIME AS OF m.`timestamp` d ON d.metadataId = p.metadataId; EXPORT EnrichedIndicators TO sink.EnrichedIndicator; @@ -18,4 +18,4 @@ TotalTest := SELECT COUNT(1) AS total_num FROM EnrichedIndicators; Above70Test := SELECT COUNT(1) AS above70metric FROM EnrichedIndicators WHERE metric > 70; /*+test */ -InvalidMetricTest := SELECT * FROM EnrichedIndicators WHERE metric < 0 ORDER BY timestamp ASC; +InvalidMetricTest := SELECT * FROM EnrichedIndicators WHERE metric < 0 ORDER BY `timestamp` ASC; diff --git a/healthcare-study-monitoring/tests-api/patientsAndMetrics.graphql b/healthcare-study-monitoring/tests-study-api/patientsAndMetrics.graphql similarity index 100% rename from healthcare-study-monitoring/tests-api/patientsAndMetrics.graphql rename to healthcare-study-monitoring/tests-study-api/patientsAndMetrics.graphql diff --git a/iot-sensor-metrics/sensor-api/addreadings.table.sql b/iot-sensor-metrics/sensor-api/addreadings.table.sql index 6adab3dc..d4238073 100644 --- a/iot-sensor-metrics/sensor-api/addreadings.table.sql +++ b/iot-sensor-metrics/sensor-api/addreadings.table.sql @@ -1,6 +1,5 @@ CREATE TABLE AddReadings ( sensorid INT NOT NULL, temperature decimal(8,2) NOT NULL, - event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp', - WATERMARK FOR `event_time` AS `event_time` - INTERVAL '0.001' SECOND + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' ); \ No newline at end of file From 0582bbdbe98dd228b20a835d2e22de424e77c37a Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 22:04:46 -0700 Subject: [PATCH 15/23] update snapshot for healthcare --- .github/workflows/build.yml | 5 ----- .../ObservationAggregateTest.snapshot | 1 - healthcare-study-monitoring/study_analytics.sqrl | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d730a80e..8b7831dc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,11 +40,6 @@ jobs: test -c sensor-static.json --snapshot snapshots-static test -c sensor-api.json --tests test-api --snapshot snapshots-api -# - example: recommendation -# path: clickstream-ai-recommendation -# test_commands: | -# test -c package.json --snapshot snapshots - - example: law path: law-enforcement test_commands: | diff --git a/healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot b/healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot deleted file mode 100644 index 6c5d5740..00000000 --- a/healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot +++ /dev/null @@ -1 +0,0 @@ -{"data":{"ObservationAggregateTest":[{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":1.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":2.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":3.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":5.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":9.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":12.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":17.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":20.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T10:59:59.999Z","metadataId":1.0,"num":1.0},{"groupID":1.0,"timeHour":"2024-09-16T10:59:59.999Z","metadataId":2.0,"num":1.0}]}} \ No newline at end of file diff --git a/healthcare-study-monitoring/study_analytics.sqrl b/healthcare-study-monitoring/study_analytics.sqrl index 92e60f3b..bfb9062f 100644 --- a/healthcare-study-monitoring/study_analytics.sqrl +++ b/healthcare-study-monitoring/study_analytics.sqrl @@ -10,7 +10,7 @@ _EnrichedIndicators := SELECT * FROM _ClinicalIndicator m JOIN _Metadata FOR SYSTEM_TIME AS OF m.`timestamp` d ON d.metadataId = p.metadataId JOIN _Patients FOR SYSTEM_TIME AS OF m.`timestamp` pt ON p.patientId = pt.patientId; -/*+partition_key(studyId) */ +/*+primary_key(studyId, patientId, metadataId, name, timeHour), partition_key(studyId) */ _PatientMetricsHourly := SELECT studyId, patientId, window_time AS timeHour, metadataId, name, avg(metric) as avgMetric FROM TABLE(TUMBLE(TABLE _EnrichedIndicators, DESCRIPTOR(`timestamp`), INTERVAL '1' HOUR)) From 8a512314f5003dad13d6255284e902fca52fff59 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Thu, 10 Apr 2025 22:04:55 -0700 Subject: [PATCH 16/23] update snapshot for healthcare --- .../snapshots-study-analytics/ObservationAggregateTest.snapshot | 1 + 1 file changed, 1 insertion(+) create mode 100644 healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot diff --git a/healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot b/healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot new file mode 100644 index 00000000..ec249398 --- /dev/null +++ b/healthcare-study-monitoring/snapshots-study-analytics/ObservationAggregateTest.snapshot @@ -0,0 +1 @@ +{"data":{"ObservationAggregateTest":[{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":1,"num":1},{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":2,"num":1},{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":3,"num":1},{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":5,"num":1},{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":9,"num":1},{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":12,"num":1},{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":17,"num":1},{"groupId":1,"timeHour":"2024-09-16T11:59:59.999Z","metadataId":20,"num":1},{"groupId":1,"timeHour":"2024-09-16T10:59:59.999Z","metadataId":1,"num":1},{"groupId":1,"timeHour":"2024-09-16T10:59:59.999Z","metadataId":2,"num":1}]}} \ No newline at end of file From e2717a62c21c4ad6bd6afa8bcefb92d9b2a58990 Mon Sep 17 00:00:00 2001 From: Marvin Froeder Date: Fri, 11 Apr 2025 14:03:56 -0300 Subject: [PATCH 17/23] Separated action to build examples running on sqrl 0.5.10 Signed-off-by: Marvin Froeder --- .github/workflows/build-v5.yml | 80 ++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .github/workflows/build-v5.yml diff --git a/.github/workflows/build-v5.yml b/.github/workflows/build-v5.yml new file mode 100644 index 00000000..e9011882 --- /dev/null +++ b/.github/workflows/build-v5.yml @@ -0,0 +1,80 @@ +name: Build and test DataSQRL Examples on sqrl v0.5 + +on: + push: + branches: [ "main" ] + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + timeout-minutes: 30 + + strategy: + fail-fast: false + matrix: + include: + - example: recommendation + path: clickstream-ai-recommendation + test_commands: | + test -c package.json --snapshot snapshots + + env: + TZ: 'America/Los_Angeles' + SQRL_VERSION: 'v0.5.10' + + steps: + - uses: actions/checkout@v4 + + - name: Setup Timezone + uses: szenius/set-timezone@v1.1 + with: + timezoneLinux: "America/Los_Angeles" + + - name: Pull SQRL Docker image + run: docker pull datasqrl/cmd:${{ env.SQRL_VERSION }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Run ${{ matrix.example }} Tests + working-directory: ${{ matrix.path }} + run: | + if [ -z "${{ matrix.test_commands }}" ]; then + echo "No test commands specified for ${{ matrix.example }}" + exit 1 + fi + + while IFS= read -r cmd; do + echo "Running: $cmd" + docker run -i -p 8888:8888 -p 8081:8081 -p 9092:9092 --rm -v $PWD:/build datasqrl/cmd:${SQRL_VERSION} $cmd + done <<< "${{ matrix.test_commands }}" + + - name: Write Dockerfile + run: | + cat < ${{ matrix.path }}/Dockerfile + FROM datasqrl/cmd:${SQRL_VERSION} + + ENV TZ="UTC" + + COPY . /build + WORKDIR /build + EOF + + - name: Publish ${{ matrix.example }} + uses: docker/build-push-action@v3 + with: + context: ./${{ matrix.path }} + file: ./${{ matrix.path }}/Dockerfile + push: true + tags: datasqrl/examples:${{ matrix.example }} + platforms: linux/amd64,linux/arm64 From 398f3db7c9dba1ebd4b24699a7ef991b7ba856b1 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Fri, 18 Apr 2025 10:57:32 -0700 Subject: [PATCH 18/23] package update and utility script --- .../study_stream_kafka_package.json | 4 +- util/yml2sql.py | 92 +++++++++++++++++++ 2 files changed, 94 insertions(+), 2 deletions(-) create mode 100644 util/yml2sql.py diff --git a/healthcare-study-monitoring/study_stream_kafka_package.json b/healthcare-study-monitoring/study_stream_kafka_package.json index c7f89d35..de0eee06 100644 --- a/healthcare-study-monitoring/study_stream_kafka_package.json +++ b/healthcare-study-monitoring/study_stream_kafka_package.json @@ -10,7 +10,7 @@ }, "create-topics" : ["indicators", "enrichedindicators"] }, - "dependencies": [{ + "dependencies": { "metrics" : { "name": "metrics-kafka", "version": "1", @@ -26,5 +26,5 @@ "version": "1", "variant": "dev" } - }] + } } \ No newline at end of file diff --git a/util/yml2sql.py b/util/yml2sql.py new file mode 100644 index 00000000..c7936bee --- /dev/null +++ b/util/yml2sql.py @@ -0,0 +1,92 @@ +import os +from openai import OpenAI +import argparse + + +PROMPT_STRING = """Convert a given yml schema definition to a SQL CREATE TABLE statement. +STRING, FLOAT, DOUBLE are valid SQL datatypes - use as is. Convert TIMESTAMP to TIMESTAMP_LTZ(3). +_uuid and event_time columns are special and annotated with METADATA as shown below. +Here is an example of a yml schema definition and the SQL file to convert to: +==YML== +--- +name: "promoteToMain" +schema_version: "1" +partial_schema: false +columns: +- name: "_uuid" + type: "STRING" + tests: + - "not_null" +- name: "deploymentId" + type: "STRING" + tests: + - "not_null" +- name: "projectId" + type: "STRING" + tests: + - "not_null" +- name: "userId" + type: "STRING" + tests: + - "not_null" +- name: "event_time" + type: "TIMESTAMP" + tests: + - "not_null" +==SQL== +CREATE TABLE PromoteToMain ( + _uuid STRING NOT NULL METADATA FROM 'uuid', + deploymentId STRING NOT NULL, + projectId STRING NOT NULL, + userId STRING NOT NULL, + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' +); +== +Apply this transformation to the following config file and produce a text output without markdown syntax or escaping that only contains the result: +""" + +def process_files(directory, openai_key): + client = OpenAI( + api_key=openai_key, + ) + for root, _, files in os.walk(directory): + for file in files: + if file.endswith('.schema.yml'): + file_path = os.path.join(root, file) + + # Read the contents of the file + with open(file_path, 'r') as f: + content = f.read() + + print("Converting: " + file_path) + + # Append PROMPT_STRING to the content + appended_content = content + PROMPT_STRING + + # Send the appended content to OpenAI + response = client.chat.completions.create( + model="gpt-4o", + messages=[ + { + "role": "user", + "content": appended_content, + }, + ], + max_tokens=2048 + ) + new_content = response.choices[0].message.content + + # Replace the original file content + new_file_path = file_path + '.sql' + with open(new_file_path, 'w') as f: + f.write(new_content) + +def parse_arguments(): + parser = argparse.ArgumentParser(description='Converting YAML to SQL files with OpenAI.') + parser.add_argument('directory', type=str, help='The directory to process') + parser.add_argument('openai_key', type=str, help='The OpenAI API key') + return parser.parse_args() + +if __name__ == '__main__': + args = parse_arguments() + process_files(args.directory, args.openai_key) \ No newline at end of file From 6fc3b3fab49bef1fdf8f58af939cebd376eebcda Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Mon, 5 May 2025 22:27:53 -0700 Subject: [PATCH 19/23] update readmes --- .github/workflows/build.yml | 2 +- README.md | 41 ++++++++++-------------- finance-credit-card-chatbot/README.md | 27 +++++----------- healthcare-study-monitoring/README.md | 41 ++++++++---------------- iot-sensor-metrics/README.md | 42 ++++++------------------- law-enforcement/README.md | 1 + logistics-shipping-geodata/README.md | 5 +++ logistics-shipping-geodata/package.json | 16 ---------- user-defined-function/README.md | 4 +-- 9 files changed, 55 insertions(+), 124 deletions(-) delete mode 100644 logistics-shipping-geodata/package.json diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b7831dc..f2b94c03 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: env: TZ: 'America/Los_Angeles' - SQRL_VERSION: 'ee61b3f' + SQRL_VERSION: 'latest' steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 67485e07..bb771847 100644 --- a/README.md +++ b/README.md @@ -3,51 +3,42 @@ This is a repository for real world [DataSQRL](https://github.com/DataSQRL/sqrl) use cases and examples. * **[Finance Credit Card Chatbot](finance-credit-card-chatbot/)**: Build a data pipeline that enriches and analyzes credit card transaction in real time and feeds the data into a GenAI chatbot to answer customer's questions about their transactions and spending. The extended example shows how to build a credit card rewards program and GenAI agent that sells credit cards. +* **[Healthcare Study](healthcare-study-monitoring/)**: Build a data pipeline for enriching healthcare data and querying it in realtime through an API, for data analytics in Iceberg, and publishing it to Kafka. +* **[Law Enforcement](law-enforcement)**: Build a realtime data pipeline for capturing and tracking warrants and Bolos. +* **[Oil & Gas IoT Automation Agent](oil-gas-agent-automation)**: Build a realtime data enrichment pipeline that triggers an agent to analyze abnormal events for automated troubleshooting. * **[Clickstream AI Recommendation](clickstream-ai-recommendation/)**: Build a personalized recommendation engine based on clickstream data and vector content embeddings generated by an LLM. * **[IoT Sensor Metrics](iot-sensor-metrics/)**: Build an event-driven microservice that ingests sensor metrics, processes them in realtime, and produces alerts and dashboards for users. * **[Logistics Shipping](logistics-shipping-geodata/)**: Build a data pipeline that processes logistics data to provide real-time tracking and shipment information for customers. -* **[Retail Nutshop](retail-customer360-nutshop/)**: Build a realtime Customer 360 application for an online shop with personalized recommendations. * **[User Defined Function](user-defined-function/)**: This small tutorial shows how to include your call a custom function in your SQRL script. ## Running the Examples ### Prerequisites -Running these examples requires the DataSQRL compiler. The easiest way to run the DataSQRL compiler is in Docker. This requires that you have a [recent version of Docker](https://docs.docker.com/get-docker/) installed on your machine. +To compile and run these examples with DataSQRL you need to have a [recent version of Docker](https://docs.docker.com/get-docker/) installed on your machine. -### Compiling Examples +### Running & Compiling Examples -To run the DataSQRL compiler on Linux or MacOS, open a terminal and run the following command: +To run the examples on Linux or MacOS, open a terminal and run the following command: ```bash -docker run -it --rm -v $PWD:/build datasqrl/cmd:latest compile [ARGUMENTS GO HERE] +docker run -it --rm -p 8888:8888 -p 8081:8081 -p 9092:9092 -v $PWD:/build datasqrl/cmd:latest run [ARGUMENTS GO HERE] ``` If you are on windows using Powershell, you need to reference the local directory with a slightly different syntax: ```bash -docker run -it --rm -v ${PWD}:/build datasqrl/cmd:latest compile [ARGUMENTS GO HERE] +docker run -it --rm -p 8888:8888 -p 8081:8081 -p 9092:9092 -v $PWD:/build datasqrl/cmd:latest run [ARGUMENTS GO HERE] ``` -Check the `README.md` in the respective directory for more information on how to run each example. We will be using the Unix syntax, so keep in mind that you have to adjust the commands slightly on Windows machines by using `${PWD}` instead. - -### Running Examples - -DataSQRL compiles all the assets for a completely integrated data pipeline. The assets are generated in the `build/deploy` folder. You can run that data pipeline with Docker: - -`(cd build/deploy; docker compose up --build)`. - -This will build all the images and stand up all the components of the data pipeline. Note, that this can take a few minutes - in particular if you are building for the first time. - -Once you are done with the data pipeline, you can bring it down safely with: +Check the `README.md` in the respective directory for more information on the arguments to run each example. +We will be using the Unix syntax, so keep in mind that you have to adjust the commands slightly on Windows machines by using `${PWD}` instead. -`(cd build/deploy; docker compose down -v)` +To compile an example (without running it), use this command: +```bash +docker run -it --rm -v $PWD:/build datasqrl/cmd:latest compile [ARGUMENTS GO HERE] +``` ## What is DataSQRL? -![Example DataSQRL Feature Store](util/img/feature-store.png) - -DataSQRL is a flexible data development framework for building various types of data architectures, like data pipelines, event-driven microservices, and Kappa. It provides the basic structure, common patterns, and a set of tools for streamlining the development process. - -DataSQRL integrates a broad array of technologies including Apache Flink, Apache Kafka, PostgreSQL, Apache Iceberg, Snowflake, Vert.x and others. By enabling developers to define data processing workflows in SQL and supporting custom functions in Java, Scala, and soon Python, DataSQRL generates the necessary glue code, schematics, and mappings to connect and configure these components seamlessly. DataSQRL simplifies the data engineering process by automating routine tasks such as testing, debugging, deployment, and maintenance of data architectures. +Check out the main [DataSQRL repository](https://github.com/DataSQRL/sqrl/) for more information on the compiler and runtime used in these examples. -[DataSQRL](https://github.com/DataSQRL/sqrl) is an open-source project hosted on GitHub. -[Click here](https://www.datasqrl.com) for more information and documentation on DataSQRL. \ No newline at end of file +Take a look at the [DataSQRL documentation](https://datasqrl.github.io/sqrl) to learn how to build your own project with DataSQRL. \ No newline at end of file diff --git a/finance-credit-card-chatbot/README.md b/finance-credit-card-chatbot/README.md index ddc3da39..d30215d8 100644 --- a/finance-credit-card-chatbot/README.md +++ b/finance-credit-card-chatbot/README.md @@ -15,22 +15,13 @@ See below for detailed instructions on how to run each data pipeline. Note, that To run this example, invoke the following command in this directory on Unix based systems to compile the project ```bash -docker run -it --rm -v $PWD:/build datasqrl/cmd:v0.5.2 compile -c package-analytics-local.json +docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest run -c package-analytics-local.json ``` -If you are on windows using Powershell, you need to reference the local directory with a slightly different syntax: -```bash -docker run -it --rm -v ${PWD}:/build datasqrl/cmd:v0.5.2 compile -c package-analytics-local.json -``` - -Next, you run the data pipeline with docker compose: -`(cd build/deploy; docker compose up --build)` - This command stands up the API using [DataSQRL](https://www.datasqrl.com/), a development tool for data pipelines. To check that the GraphQL API is running properly, [open GraphiQL](http://localhost:8888/graphiql/) to access the API. -When you are done, you can stop the pipeline by hitting CTRL-C and remove the containers with: -`(cd build/deploy; docker compose down -v)` +When you are done, you can stop the pipeline by hitting CTRL-C. ## 2. Run the API with Kafka data source @@ -40,12 +31,9 @@ To use Kafka as the data source, follow these steps: Invoke the following command in this directory: ```bash -docker run -it --rm -v $PWD:/build datasqrl/cmd:v0.5.2 compile -c package-analytics-kafka.json +docker run -it -p 8081:8081 -p 8888:8888 -p 9092:9092 --rm -v $PWD:/build datasqrl/cmd:latest -c package-analytics-kafka.json ``` -Next, you run the data pipeline with docker compose: -`(cd build/deploy; docker compose up --build)` - This command stands up the entire data pipeline and all data services, including Kafka. Now, we need to write the data to Kafka, so it can be consumed by the pipeline. @@ -54,17 +42,16 @@ The easiest way to do so is to use a little helper python script that reads the data from a file and writes it to the kafka topic. This requires you have Python3 installed on your machine. In this directory, invoke the script twice in the following order to populate Kafka: - 1. `python3 ../util/load_data.py creditcard-local/cardAssignment.jsonl localhost:9094 cardassignment --msg 500` - 2. `python3 ../util/load_data.py creditcard-local/transaction.jsonl localhost:9094 transaction --msg 50` + 1. `python3 ../util/load_data.py creditcard-local/cardAssignment.jsonl localhost:9092 cardassignment --msg 500` + 2. `python3 ../util/load_data.py creditcard-local/transaction.jsonl localhost:9092 transaction --msg 50` The first load should be pretty quick. The transactions are then loaded at a rate of 50 per second (You can adjust the rate via the `--msg` option). -You can open [Kafka UI](http://localhost:8087/) to see how the data enters the topics and the [Flink UI](http://localhost:8081/) to see the processing status. +To see how the data enters the topics and the [Flink UI](http://localhost:8081/) to see the processing status. As above, you can [open GraphiQL](http://localhost:8888/graphiql/) to access the API and query for data. -When you are done, you can stop the pipeline by hitting CTRL-C and remove the containers with: -`(cd build/deploy; docker compose down -v)` +When you are done, you can stop the pipeline by hitting CTRL-C. ## 3. Run the AI Data Agent diff --git a/healthcare-study-monitoring/README.md b/healthcare-study-monitoring/README.md index 7a4496ba..32e2e4b5 100644 --- a/healthcare-study-monitoring/README.md +++ b/healthcare-study-monitoring/README.md @@ -2,31 +2,24 @@ This examples demonstrates DataSQRLs capabilities creating a pipeline for healthcare study data. -## Architecture +We are ingesting metadata, patient data, sensor placement, and observation group assignments from master data systems. -The data pipeline ingests raw data from a local fine and piles it into a postgres database which is connected to vertx graphql console. +We are ingesting metrics data from kafka. -The entire pipeline can run locally. +This example produces multiple types of data products from that source data: -## How to run the project +## Study Data API -Navigate to the `healthcare-study-monitoring` directory and run the following command to compile the pipeline, this takes the given script and option and creates a pipeline. +Run the study API with: ``` -docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest compile study_api.sqrl +docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest run -c study_api_run_package.json ``` -The generated pipeline can be found in the new `/build` directory. +This example demonstrates how to use the package.json configuration files to map import packages to different folders for testing vs production: -To run the pipeline use the following command. ``` -docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest run study_api.sqrl -``` -If the pipeline hasn't been compiled, it will be compiled. - -Lastly, the compiled pipeline includes unit and integration tests, you can run these using the test command: -``` -docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest test study_api.sqrl +docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest test -c study_api_test_package.json ``` While the pipeline runs can check if the data has been ingested in the flink console. @@ -52,15 +45,7 @@ query { } ``` -## The examples - -### Study API -This script creates a simple graphql api for the masterdata-local and metrics-kafka data. - -### Join Examples -This script demonstrates the different types of join offered by flink. - -### Study Analytics +## Study Analytics This script produces study analytics for observations groups in iceberg tables that are queried by DuckDB. Run the study_analytics script using iceberg and duckdb locally as follows: @@ -70,14 +55,14 @@ docker run -it -p 8888:8888 -p 8081:8081 --rm -v $PWD:/build -e LOCAL_WAREHOUSE We are setting the environment variable `LOCAL_WAREHOUSE_DIR` to instruct where to store the iceberg files. In this case, we are putting the locally in the `warehouse` folder. -### Study Stream Kafka -This script shows how to ingest data from a kafka stream. +There is also a package configuration for running this example using Snowflake as the query engine. -To run this example you need to expose the kafka port, this is done in the run command by adding the port with `-p xyz:123`. +## Study Stream Kafka +This script shows how to ingest data from a kafka stream. For this example the command will look like this: ``` -docker run -it -p 8081:8081 -p 9092:9092 --rm -v $PWD:/build datasqrl/cmd:latest -c study_stream_kafka_package.json +docker run -it -p 8081:8081 -p 9092:9092 --rm -v $PWD:/build datasqrl/cmd:latest run -c study_stream_kafka_package.json ``` You'll need the kafka-python. We recommend using a new venv: diff --git a/iot-sensor-metrics/README.md b/iot-sensor-metrics/README.md index b119200f..8cd32afc 100644 --- a/iot-sensor-metrics/README.md +++ b/iot-sensor-metrics/README.md @@ -3,31 +3,23 @@ This is an example API for recording and analyzing metrics data. Specifically, this API collects the temperature readings of sensors. -## 1. Run the API +## Run the API -To run this example, invoke the following command in this directory on Unix based systems -```bash -docker run -it -p 8888:8888 -p 8081:8081 -v $PWD:/build datasqrl/cmd:v0.5.2 compile sensors.sqrl sensors.graphqls -``` +To run the API, execute -If you are on windows using Powershell, run the following: ```bash -docker run -it -p 8888:8888 -p 8081:8081 -v ${PWD}:/build datasqrl/cmd:v0.5.2 compile sensors.sqrl sensors.graphqls +docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest run sensors.sqrl ``` -then +To check that the GraphQL API is running properly, [open GraphiQL](http://localhost:8888/graphiql/) to access the API. + +## Run the Tests ```bash -cd build/deploy; docker compose up --build +docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest test sensors.sqrl ``` -This command stands up the API using [DataSQRL](https://www.datasqrl.com/), a development tool -for data pipelines. To check that the GraphQL API is running properly, [open GraphiQL](http://localhost:8888/graphiql/) to access the API. - -This command stands up the API using [DataSQRL](https://www.datasqrl.com/), a development tool -for data pipelines. - -## 2. Add Temperature Readings +## Add Temperature Readings to Running API Once the API is up and running, you can access it through GraphiQL, a GraphQL IDE by opening [http://localhost:8888//graphiql/](http://localhost:8888//graphiql/) in your browser. @@ -36,7 +28,7 @@ Before you run the associated ChatBot, we need to record some sensor data throug You can do that by copy-pasting the following GraphQL mutation query and running it in GraphiQL: ```graphql mutation AddReading { - AddReading(metric: {sensorid: 1, temperature: 44.1}) { + SensorReading(metric: {sensorid: 1, temperature: 44.1}) { _source_time } } @@ -44,18 +36,4 @@ mutation AddReading { Run the query a few times to add some data. Feel free to change the temperature and sensor id. -Once you are done, hit CTRL-C and take down the pipeline containers with docker compose down -v. - - -## 3. Run the AI Data Agent - -To run a ChatBot interface for the sensor data, execute the following command by substituting your OpenAI API key for `{ADD_YOUR_KEY}`: - -```bash -docker run -it --rm -p 8080:8080 -v $PWD:/config/ -e OPENAI_API_KEY={ADD_YOUR_KEY} datasqrl/acorn /config/agent/sensors.openai.config.json /config/sensors.graphqls -``` - -Open the [data agent chat](http://localhost:8080/) and enter a customer id (1-9) to "log in" as that customer. - -You can add sensor data through the API as shown above or by telling the chatbot "Record 50 degrees for sensor 3". Then ask questions about the sensor data. - +Once you are done, hit CTRL-C. \ No newline at end of file diff --git a/law-enforcement/README.md b/law-enforcement/README.md index 1ade959e..48e24732 100644 --- a/law-enforcement/README.md +++ b/law-enforcement/README.md @@ -1,3 +1,4 @@ +# Law Enforcement This example demonstrates how to consume law enforcement data from multiple sources, such as: diff --git a/logistics-shipping-geodata/README.md b/logistics-shipping-geodata/README.md index edb717e7..ea6c71e0 100644 --- a/logistics-shipping-geodata/README.md +++ b/logistics-shipping-geodata/README.md @@ -6,6 +6,11 @@ manage shipments as they move through the city and answer queries like the numbe customer and their current locations. Amazingly, all of this is achieved in just 33 lines of code, imports included. How cool is that? +Run the example with: +```bash +docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest run logistics.sqrl logistics.graphqls +``` + ## Regenerate test data Normally, there is no need to regenerate the test data if you are using pre-configured sets. diff --git a/logistics-shipping-geodata/package.json b/logistics-shipping-geodata/package.json deleted file mode 100644 index 4d1f5012..00000000 --- a/logistics-shipping-geodata/package.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "version": "1", - "package": { - "name": "datasqrl.examples.logistics", - "version": "0.5.6", - "variant": "default", - "latest": true, - "type": "source", - "license": "ASFv2", - "repository": "https://github.com/DataSQRL/datasqrl-examples/tree/main/logistics-shipping-geodata", - "homepage": "https://github.com/DataSQRL/datasqrl-examples/tree/main/logistics-shipping-geodata", - "description": "This example showcases DataSQRL's ability to create a real-time, streaming data pipeline for tracking shipment deliveries in Manhattan. It demonstrates how to efficiently monitor shipments in transit, manage delivery data, and answer key queries like the number of shipments per customer and their current locations, all with minimal SQL code. This example highlights DataSQRL's power in simplifying complex, real-time data workflows for logistics and other similar use cases.", - "documentation": "https://github.com/DataSQRL/datasqrl-examples/blob/main/logistics-shipping-geodata/README.md", - "topics": ["datasqrl", "example", "logistics", "shipping"] - } -} diff --git a/user-defined-function/README.md b/user-defined-function/README.md index b15145d9..86872e22 100644 --- a/user-defined-function/README.md +++ b/user-defined-function/README.md @@ -19,13 +19,13 @@ User-defined functions (UDFs) in Flink are powerful tools that allow for the ext 1. **SQRL Compilation:** Compile the SQRL using DataSQRL's command interface, which prepares your script for deployment in the Flink environment. ```shell -docker run --rm -v $PWD:/build datasqrl/cmd compile myudf.sqrl +docker run --rm -v $PWD:/build datasqrl/cmd:latest compile myudf.sqrl ``` ## Deployment and Testing ### Run Example ```shell -docker run -it -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:dev run myudf.sqrl +docker run -it -p 8888:8888 --rm -v $PWD:/build datasqrl/cmd:latest run myudf.sqrl ``` ### Creating and Testing Records 1. Creating a Record: Test the function by creating a record via a GraphQL query. From 88dd9e82e89bb0d547171901e3af85c652f49705 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Mon, 5 May 2025 22:31:19 -0700 Subject: [PATCH 20/23] update compiler flag --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f2b94c03..796563af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,33 +17,33 @@ jobs: - example: finance path: finance-credit-card-chatbot test_commands: | - test -c package-analytics-local.json --snapshot snapshots-analytics - test -c package-rewards-local.json --snapshot snapshots-rewards + test -c package-analytics-local.json --snapshots snapshots-analytics + test -c package-rewards-local.json --snapshots snapshots-rewards - example: healthcare path: healthcare-study-monitoring test_commands: | - test -c study_analytics_package.json study_analytics.sqrl --snapshot snapshots-study-analytics - test -c study_api_test_package.json --tests tests-study-api --snapshot snapshots-study-api - test -c study_stream_local_package.json study_stream.sqrl --snapshot snapshots-study-stream + test -c study_analytics_package.json study_analytics.sqrl --snapshots snapshots-study-analytics + test -c study_api_test_package.json --tests tests-study-api --snapshots snapshots-study-api + test -c study_stream_local_package.json study_stream.sqrl --snapshots snapshots-study-stream compile -c study_stream_kafka_package.json compile -c study_analytics_snowflake_package.json - example: logistics path: logistics-shipping-geodata test_commands: | - test logistics.sqrl --snapshot snapshots + test logistics.sqrl --snapshots snapshots - example: iot-sensor path: iot-sensor-metrics test_commands: | - test -c sensor-static.json --snapshot snapshots-static - test -c sensor-api.json --tests test-api --snapshot snapshots-api + test -c sensor-static.json --snapshots snapshots-static + test -c sensor-api.json --tests test-api --snapshots snapshots-api - example: law path: law-enforcement test_commands: | - test -c baseball-card-local.json --snapshot snapshots + test -c baseball-card-local.json --snapshots snapshots - example: oil-gas path: oil-gas-agent-automation From 3c7141246cb6dbc5b2d4e6174c9a532515b6873d Mon Sep 17 00:00:00 2001 From: Marvin Date: Tue, 6 May 2025 06:26:41 -0300 Subject: [PATCH 21/23] Set SQRL version to 0.6.0 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 796563af..4b7ad3a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: env: TZ: 'America/Los_Angeles' - SQRL_VERSION: 'latest' + SQRL_VERSION: '0.6.0' steps: - uses: actions/checkout@v4 From 9d2e24fb4c1e310a9a017d0cce3491b2827f5531 Mon Sep 17 00:00:00 2001 From: Matthias Broecheler Date: Tue, 6 May 2025 14:51:49 -0700 Subject: [PATCH 22/23] update clickstream example --- clickstream-ai-recommendation/README.md | 162 +- .../clickstream-api/clickstream.table.sql | 5 + .../clickstream-kafka/clickstream.schema.yml | 17 - .../clickstream-kafka/clickstream.table.json | 17 - .../clickstream-kafka/clickstream.table.sql | 14 + .../clickstream.graphqls | 27 - .../content-api/content.table.sql | 6 + .../content-api/sample_content.jsonl | 21 + .../content-api/sample_content.table.sql | 12 + .../content-file/content.jsonl | 2596 -- .../content-file/content.schema.yml | 25 - .../content-file/content.table.json | 14 - .../content-kafka/content.schema.yml | 25 - .../content-kafka/content.table.json | 17 - .../content-kafka/content.table.sql | 16 + .../embedding/model_quantized.onnx | Bin 22887653 -> 0 bytes .../embedding/tokenizer.json | 30686 ---------------- .../package-api.json | 23 + .../package-kafka.json | 24 + .../package-mutation.json | 30 - clickstream-ai-recommendation/package.json | 36 - .../recommendation.graphqls | 14 - .../recommendation.sqrl | 39 +- .../snapshots/ContentTest.snapshot | 1 - 24 files changed, 204 insertions(+), 33623 deletions(-) create mode 100644 clickstream-ai-recommendation/clickstream-api/clickstream.table.sql delete mode 100644 clickstream-ai-recommendation/clickstream-kafka/clickstream.schema.yml delete mode 100644 clickstream-ai-recommendation/clickstream-kafka/clickstream.table.json create mode 100644 clickstream-ai-recommendation/clickstream-kafka/clickstream.table.sql delete mode 100644 clickstream-ai-recommendation/clickstream.graphqls create mode 100644 clickstream-ai-recommendation/content-api/content.table.sql create mode 100644 clickstream-ai-recommendation/content-api/sample_content.jsonl create mode 100644 clickstream-ai-recommendation/content-api/sample_content.table.sql delete mode 100644 clickstream-ai-recommendation/content-file/content.jsonl delete mode 100644 clickstream-ai-recommendation/content-file/content.schema.yml delete mode 100644 clickstream-ai-recommendation/content-file/content.table.json delete mode 100644 clickstream-ai-recommendation/content-kafka/content.schema.yml delete mode 100644 clickstream-ai-recommendation/content-kafka/content.table.json create mode 100644 clickstream-ai-recommendation/content-kafka/content.table.sql delete mode 100644 clickstream-ai-recommendation/embedding/model_quantized.onnx delete mode 100644 clickstream-ai-recommendation/embedding/tokenizer.json create mode 100644 clickstream-ai-recommendation/package-api.json create mode 100644 clickstream-ai-recommendation/package-kafka.json delete mode 100644 clickstream-ai-recommendation/package-mutation.json delete mode 100644 clickstream-ai-recommendation/package.json delete mode 100644 clickstream-ai-recommendation/recommendation.graphqls delete mode 100644 clickstream-ai-recommendation/snapshots/ContentTest.snapshot diff --git a/clickstream-ai-recommendation/README.md b/clickstream-ai-recommendation/README.md index da17bb8a..4feb3fa2 100644 --- a/clickstream-ai-recommendation/README.md +++ b/clickstream-ai-recommendation/README.md @@ -1,11 +1,8 @@ # Clickstream Recommendation -> ⚠️ **Warning:** This example has not yet been updated to 0.6 and uses an older version of DataSQRL - -This example demonstrates DataSQRL's capabilities by creating personalized content recommendations +We are building personalized content recommendations based on clickstream data and content vector embeddings. The pipeline ingests data, processes it, -and serves recommendations in real time, highlighting the power of DataSQRL in handling streaming -data efficiently. +and serves recommendations in real time. ## Architecture @@ -22,122 +19,84 @@ components in AWS as shown in the diagram above. There are two ways to run this example depending on how you want to ingest the clickstream data. -### Ingest from Stream - -This method reads data from the stream directly and requires that you add the data to the stream -specifically. +## Ingest Data from API -In the project, we have two packages for the same data. The `content-kafka` package specifies reading -data through a Kafka connector. The `content-file`, uses a connector that reads from the -filesystem. Initially, we will use the `content-kafka` package, which is already -imported (`IMPORT content.Content`, which has a dependency aliased in the package.json). +This version allows you to add content and clickstream data manually through a GraphQL API giving you more control over how the data is ingested and what is happening. -Then, execute the following steps: - -1. Run the following command in the root directory to compile: `docker run -it --rm -v $PWD:/build datasqrl/cmd:v0.5.2 compile` -1. Add the current directory as an env variable: `export SQRL_DIR=${PWD}` -1. Start the pipeline: `(cd build/deploy; docker compose up --build)`. This sets up the entire data pipeline with - Redpanda, Flink, Postgres, and API server. It takes a few minutes for all the components to boot - up. -1. Once everything is started, open another terminal window to add data to Kafka using the - load_data.py script in the `yourdata-files` directory. This requires **kafka-python-ng** installed - via `pip3 install kafka-python-ng`. -1. Load the content data: `python3 load_data.py content.json.gz localhost:9094 content --msg 50`. - Wait until it finishes, which takes about two minutes. Check the Flink Dashboard running - at http://localhost:8081/ to see the progress. Wait until the task turns blue again. -1. Load the clickstream - data: `python3 load_data.py clickstream.json.gz localhost:9094 clickstream --msg 100`. This loads - 100 clicks per second. Wait a few seconds for some data to load. Let this run in the background - until it finishes (about 4 minutes). - -Open GraphiQL and query the data: -`http://localhost:8888/graphiql/` - -Query for recommendations either by page: +Run the API version with this command: +```bash +docker run -it -p 8081:8081 -p 8888:8888 --rm -v $PWD:/build -e OPENAI_API_KEY=[YOUR_API_KEY_HERE] datasqrl/cmd:latest run -c package-api.json +``` +Next, open [GraphQL Explorer](http://localhost:8888/graphiql/) and add some content: ```graphql -query { - Recommendation(url: "https://en.wikipedia.org/wiki/Generosity%3A%20An%20Enhancement") { - recommendation - frequency - } +mutation { + Content(event: {url: "https://en.wikipedia.org/wiki/Zoop", title: "Zoop", text: "Zoop is a puzzle video game originally developed by Hookstone Productions and published by Viacom New Media for many platforms in 1995. It has similarities to Taito's 1989 arcade game Plotting (known as Flipull in other territories and on other systems) but Zoop runs in real-time instead. Players are tasked with eliminating pieces that spawn from one of the sides of the screen, before they reach the center of the playfield, by pointing at a specific piece and shooting it to either swap it with t"}) { + title + } } ``` +You can find more content samples to add in the [sample_content.jsonl](content-api/sample_content.jsonl) file. -or for a user: - +Once you have added multiple pieces of content, we can register clicks with this mutation: ```graphql -query { - SimilarContent(userid: "f5e9c688-408d-b54f-94aa-493df43dac8c") { - url - similarity - } +mutation { + Clickstream(event:{url:"https://en.wikipedia.org/wiki/Zoop", userid: "1"}) { + userid + } } ``` -You can find all the page URLs in the file `datawiki/wikipedia_urls.txt` and user ids in the -file `yourdata-files/clickstream.json.gz` (read it with `gzcat`) if you want to experiment with -different queries. - -Once you are done, hit `CTRL-C` and take down the pipeline containers with `docker compose down -v`. - -### From Local Files and API - -This method reads the content data from local files and ingests the clickstream data through the -API. Please look at the `package-mutation.json` and compare it with the `package.json` we used before. -Notice that we are using different graphql files and different dependencies. - -Execute the following steps: - -1. Run the following command in the root directory to compile: `docker run -it --rm -v $PWD:/build datasqrl/cmd:v0.5.2 compile -c package-mutation.json` -2. Navigate to the build/deploy directory: `(cd build/deploy; docker compose up --build)` - -Open GraphiQL to add and query data. - -First, add some clickstream data for the user with ID f5e9c688-408d-b54f-94aa-493df43dac8c by -running the following mutations one after the other. Each mutation simulates a user clicking on a -specific URL. We expect the system to record these clicks and use them to generate personalized -recommendations. - -Open GraphiQL to execute the following graphql commands: -`http://localhost:8888/graphiql/` - -This mutation records a click event for the user on the page "Generosity: An Enhancement": +Run this mutation a few times with different urls for the same userid (to create Covisits) and different userids. +To retrieve similar content to what a user has viewed before, run this query: ```graphql -mutation { - Clickstream(click: {userid: "f5e9c688-408d-b54f-94aa-493df43dac8c", - url: "https://en.wikipedia.org/wiki/Generosity%3A%20An%20Enhancement"}) { - event_time - } +{ + SimilarContent(userid: "1") { + similarity + title + } } ``` -This mutation records another click event for the user on the page "Lock's Quest": - +To retrieve recommendations by URL: ```graphql -mutation { - Clickstream(click: {userid: "f5e9c688-408d-b54f-94aa-493df43dac8c", - url: "https://en.wikipedia.org/wiki/Lock%27s%20Quest"}) { - event_time - } +{ +Recommendation(url: "https://en.wikipedia.org/wiki/Zoop") { + recommendation + frequency +} } ``` -his mutation records a final click event for the user on the page "SystemC": -```graphql -mutation { - Clickstream(click: {userid: "f5e9c688-408d-b54f-94aa-493df43dac8c", - url: "https://en.wikipedia.org/wiki/SystemC"}) { - event_time - } -} +### Ingest from Stream + +This method reads data from the stream directly and requires that you add the data to the stream specifically. + +The `content-kafka` package specifies reading +data through a Kafka connector. + +To run the pipeline: +```bash +docker run -it -p 8081:8081 -p 8888:8888 -p 9092:9092 --rm -v $PWD:/build -e OPENAI_API_KEY=[YOUR_API_KEY_HERE] datasqrl/cmd:latest run -c package-kafka.json ``` -Now, query for recommendations. Either by page: +1. Once everything is started, open another terminal window to add data to Kafka using the + load_data.py script in the `yourdata-files` directory. This requires **kafka-python-ng** installed + via `pip3 install kafka-python-ng`. +1. Load the content data: `python3 load_data.py content.json.gz localhost:9092 content --msg 50`. + Wait until it finishes, which takes about two minutes. Check the Flink Dashboard running + at http://localhost:8081/ to see the progress. Wait until the task turns blue again. +1. Load the clickstream + data: `python3 load_data.py clickstream.json.gz localhost:9092 clickstream --msg 100`. This loads + 100 clicks per second. Wait a few seconds for some data to load. Let this run in the background + until it finishes (about 4 minutes). -This query provides recommendations based on the specified page URL: +Open GraphiQL and query the data: +`http://localhost:8888/graphiql/` + +Query for recommendations either by page: ```graphql query { @@ -148,8 +107,7 @@ query { } ``` -This query provides recommendations based on the user's clickstream data, showing similar content to -what the user has interacted with: +or for a user: ```graphql query { @@ -160,4 +118,8 @@ query { } ``` -Once you are done, hit CTRL-C and take down the pipeline containers with docker compose down -v. +You can find all the page URLs in the file `datawiki/wikipedia_urls.txt` and user ids in the +file `yourdata-files/clickstream.json.gz` (read it with `gzcat`) if you want to experiment with +different queries. + +Once you are done, hit `CTRL-C` and take down the pipeline. \ No newline at end of file diff --git a/clickstream-ai-recommendation/clickstream-api/clickstream.table.sql b/clickstream-ai-recommendation/clickstream-api/clickstream.table.sql new file mode 100644 index 00000000..b867e76a --- /dev/null +++ b/clickstream-ai-recommendation/clickstream-api/clickstream.table.sql @@ -0,0 +1,5 @@ +CREATE TABLE AddClick ( + url STRING NOT NULL, + userid STRING NOT NULL, + event_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' +); \ No newline at end of file diff --git a/clickstream-ai-recommendation/clickstream-kafka/clickstream.schema.yml b/clickstream-ai-recommendation/clickstream-kafka/clickstream.schema.yml deleted file mode 100644 index 0afba278..00000000 --- a/clickstream-ai-recommendation/clickstream-kafka/clickstream.schema.yml +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: "click" -schema_version: "1" -partial_schema: false -columns: -- name: "url" - type: "STRING" - tests: - - "not_null" -- name: "userid" - type: "STRING" - tests: - - "not_null" -- name: "event_time" - type: "TIMESTAMP" - tests: - - "not_null" diff --git a/clickstream-ai-recommendation/clickstream-kafka/clickstream.table.json b/clickstream-ai-recommendation/clickstream-kafka/clickstream.table.json deleted file mode 100644 index 382ce767..00000000 --- a/clickstream-ai-recommendation/clickstream-kafka/clickstream.table.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "flink" : { - "connector" : "kafka", - "topic": "clickstream", - "properties.bootstrap.servers": "kafka:9092", - "properties.group.id": "clickstream-group", - "scan.startup.mode": "earliest-offset", - "format" : "flexible-json" - }, - "table" : { - "type" : "source", - "primary-key" : ["userid", "event_time"], - "timestamp" : "event_time", - "watermark-millis" : "1" - } -} \ No newline at end of file diff --git a/clickstream-ai-recommendation/clickstream-kafka/clickstream.table.sql b/clickstream-ai-recommendation/clickstream-kafka/clickstream.table.sql new file mode 100644 index 00000000..eaa19ebc --- /dev/null +++ b/clickstream-ai-recommendation/clickstream-kafka/clickstream.table.sql @@ -0,0 +1,14 @@ +CREATE TABLE AddClick ( + url STRING NOT NULL, + userid STRING NOT NULL, + event_time TIMESTAMP_LTZ(3) NOT NULL, + WATERMARK FOR event_time AS event_time - INTERVAL '0.001' SECOND +) WITH ( + 'connector' = 'kafka', + 'topic' = 'clickstream', + 'properties.bootstrap.servers' = '${PROPERTIES_BOOTSTRAP_SERVERS}', + 'properties.group.id' = 'clickstream-group', + 'scan.startup.mode' = 'group-offsets', + 'properties.auto.offset.reset' = 'earliest', + 'format' = 'flexible-json' + ); \ No newline at end of file diff --git a/clickstream-ai-recommendation/clickstream.graphqls b/clickstream-ai-recommendation/clickstream.graphqls deleted file mode 100644 index 7c07c30f..00000000 --- a/clickstream-ai-recommendation/clickstream.graphqls +++ /dev/null @@ -1,27 +0,0 @@ -type Query { - Recommendation(url: String!, limit: Int! = 10): [Recommendation!] - SimilarContent(userid: String!): [SimilarContent!] -} - -type Recommendation { - recommendation: String! - frequency: Int! -} - -type SimilarContent { - url: String! - similarity: Float! -} - -type Mutation{ - Clickstream(click: ClickEvent!): ClickResponse! -} - -input ClickEvent { - userid: String! - url: String! -} - -type ClickResponse { - event_time: String! -} diff --git a/clickstream-ai-recommendation/content-api/content.table.sql b/clickstream-ai-recommendation/content-api/content.table.sql new file mode 100644 index 00000000..49c0ecb5 --- /dev/null +++ b/clickstream-ai-recommendation/content-api/content.table.sql @@ -0,0 +1,6 @@ +CREATE TABLE Content ( + url STRING NOT NULL, + title STRING NOT NULL, + text STRING NOT NULL, + update_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' +) \ No newline at end of file diff --git a/clickstream-ai-recommendation/content-api/sample_content.jsonl b/clickstream-ai-recommendation/content-api/sample_content.jsonl new file mode 100644 index 00000000..617033de --- /dev/null +++ b/clickstream-ai-recommendation/content-api/sample_content.jsonl @@ -0,0 +1,21 @@ +{"url": "https://en.wikipedia.org/wiki/Animation", "title": "Animation", "text": "Animation is a method in which figures are manipulated to appear as moving images. In traditional animation, images are drawn or painted by hand on transparent celluloid sheets to be photographed and exhibited on film. Today, most animations are made with computer-generated imagery (CGI). Computer animation can be very detailed 3D animation, while 2D computer animation (which may have the look of traditional animation) can be used for stylistic reasons, low bandwidth, or faster real-time renderi"} +{"url": "https://en.wikipedia.org/wiki/Computer%20animation", "title": "Computer animation", "text": "Computer animation is the process used for digitally generating animated images. The more general term computer-generated imagery (CGI) encompasses both static scenes and dynamic images, while computer animation only refers to moving images. Modern computer animation usually uses 3D computer graphics to generate a three-dimensional picture, although 2D computer graphics are still used for stylistic, low bandwidth, and faster real-time renderings. Sometimes, the target of the animation is the com"} +{"url": "https://en.wikipedia.org/wiki/CORAL", "title": "CORAL", "text": "CORAL, short for Computer On-line Real-time Applications Language is a programming language originally developed in 1964 at the Royal Radar Establishment (RRE), Malvern, Worcestershire, in the United Kingdom. The R was originally for \"radar\", not \"real-time\". It was influenced primarily by JOVIAL, and thus ALGOL, but is not a subset of either.\n\nThe most widely-known version, CORAL 66, was subsequently developed by I. F. Currie and M. Griffiths under the auspices of the Inter-Establishment Commit"} +{"url": "https://en.wikipedia.org/wiki/Erlang%20%28programming%20language%29", "title": "Erlang (programming language)", "text": "Erlang ( ) is a general-purpose, concurrent, functional programming language, and a garbage-collected runtime system. The term Erlang is used interchangeably with Erlang/OTP, or Open Telecom Platform (OTP), which consists of the Erlang runtime system, several ready-to-use components (OTP) mainly written in Erlang, and a set of design principles for Erlang programs.\n\nThe Erlang runtime system is designed for systems with these traits:\n\nDistributed\nFault-tolerant\nSoft real-time\nHighly available, n"} +{"url": "https://en.wikipedia.org/wiki/ICQ", "title": "ICQ", "text": "ICQ New is a cross-platform instant messaging (IM) and VoIP client. The name ICQ derives from the English phrase \"I Seek You\". Originally developed by the Israeli company Mirabilis in 1996, the client was bought by AOL in 1998, and then by Mail.Ru Group (now VK) in 2010.\n\nThe ICQ client application and service were initially released in November 1996, freely available to download. ICQ was among the first stand-alone instant messenger (IM) \u2014 while real-time chat was not in itself new (Internet Re"} +{"url": "https://en.wikipedia.org/wiki/MUD", "title": "MUD", "text": "A MUD (; originally multi-user dungeon, with later variants multi-user dimension and multi-user domain) is a multiplayer real-time virtual world, usually text-based or storyboarded. MUDs combine elements of role-playing games, hack and slash, player versus player, interactive fiction, and online chat. Players can read or view descriptions of rooms, objects, other players, non-player characters, and actions performed in the virtual world. Players typically interact with each other and the world "} +{"url": "https://en.wikipedia.org/wiki/Machinima", "title": "Machinima", "text": "Machinima, originally machinema () is the use of real-time computer graphics engines to create a cinematic production. Most often, video games are used to generate the computer animation. The word \"machinima\" is a portmanteau of the words machine and cinema.\n\nMachinima-based artists, sometimes called machinimists or machinimators, are often fan laborers, by virtue of their re-use of copyrighted materials (see below). Machinima offers to provide an archive of gaming performance and access to the "} +{"url": "https://en.wikipedia.org/wiki/Real-time%20computing", "title": "Real-time computing", "text": "Real-time computing (RTC) is the computer science term for hardware and software systems subject to a \"real-time constraint\", for example from event to system response. Real-time programs must guarantee response within specified time constraints, often referred to as \"deadlines\".\n\nReal-time responses are often understood to be in the order of milliseconds, and sometimes microseconds. A system not specified as operating in real time cannot usually guarantee a response within any timeframe, althou"} +{"url": "https://en.wikipedia.org/wiki/Regular%20semantics", "title": "Regular semantics", "text": "Regular semantics is a computing term which describes one type of guarantee provided by a data register shared by several processors in a parallel machine or in a network of computers working together. Regular semantics are defined for a variable with a single writer but multiple readers. These semantics are stronger than safe semantics but weaker than atomic semantics: they guarantee that there is a total order to the write operations which is consistent with real-time and that read operations "} +{"url": "https://en.wikipedia.org/wiki/Real-time%20operating%20system", "title": "Real-time operating system", "text": "A real-time operating system (RTOS) is an operating system (OS) for real-time applications that processes data and events that have critically defined time constraints. An RTOS is distinct from a time sharing operating system, such as Unix, which manages the sharing of system resources with a scheduler, data buffers, or fixed task prioritization in a multitasking or multiprogramming environment. Processing time requirements need to be fully understood and bound rather than just kept as a minimum"} +{"url": "https://en.wikipedia.org/wiki/Boeing%20RC-135", "title": "Boeing RC-135", "text": "The Boeing RC-135 is a family of large reconnaissance aircraft built by Boeing and modified by a number of companies, including General Dynamics, Lockheed, LTV, E-Systems, and L3 Technologies, and used by the United States Air Force and Royal Air Force to support theater and national level intelligence consumers with near real-time on-scene collection, analysis and dissemination capabilities.\n\nBased on the C-135 Stratolifter airframe, various types of RC-135s have been in service since 1961. Unl"} +{"url": "https://en.wikipedia.org/wiki/StarCraft%20%28video%20game%29", "title": "StarCraft (video game)", "text": "StarCraft is a 1998 military science fiction real-time strategy game developed and published by Blizzard Entertainment for Microsoft Windows. The game spawned the StarCraft franchise, and became the first game of the video game series. A Classic Mac OS version was released in 1999, and a Nintendo 64 adaptation, co-developed with Mass Media, was released in 2000.\n\nBlizzard started work on the game shortly after Warcraft II, another real-time strategy game, was released in 1995. The first incarnat"} +{"url": "https://en.wikipedia.org/wiki/Session%20Initiation%20Protocol", "title": "Session Initiation Protocol", "text": "The Session Initiation Protocol (SIP) is a signaling protocol used for initiating, maintaining, and terminating real-time sessions that include voice, video and messaging applications. SIP is used for signaling and controlling multimedia communication sessions in applications of Internet telephony for voice and video calls, in private IP telephone systems, in instant messaging over Internet Protocol (IP) networks as well as mobile phone calling over LTE (VoLTE).\n\nThe protocol defines the specifi"} +{"url": "https://en.wikipedia.org/wiki/Set%20%28card%20game%29", "title": "Set (card game)", "text": "Set (stylized as SET) is a real-time card game designed by Marsha Falco in 1974 and published by Set Enterprises in 1991. The deck consists of 81 unique cards that vary in four features across three possibilities for each kind of feature: number of shapes (one, two, or three), shape (diamond, squiggle, oval), shading (solid, striped, or open), and color (red, green, or purple). Each possible combination of features (e.g. a card with three striped green diamonds) appears as a card precisely once "} +{"url": "https://en.wikipedia.org/wiki/Transaction%20Processing%20Facility", "title": "Transaction Processing Facility", "text": "Transaction Processing Facility (TPF) is an IBM real-time operating system for mainframe computers descended from the IBM System/360 family, including zSeries and System z9.\n\nTPF delivers fast, high-volume, high-throughput transaction processing, handling large, continuous loads of essentially simple transactions across large, geographically dispersed networks.\n\nWhile there are other industrial-strength transaction processing systems, notably IBM's own CICS and IMS, TPF's specialty is extreme vo"} +{"url": "https://en.wikipedia.org/wiki/Zoop", "title": "Zoop", "text": "Zoop is a puzzle video game originally developed by Hookstone Productions and published by Viacom New Media for many platforms in 1995. It has similarities to Taito's 1989 arcade game Plotting (known as Flipull in other territories and on other systems) but Zoop runs in real-time instead. Players are tasked with eliminating pieces that spawn from one of the sides of the screen, before they reach the center of the playfield, by pointing at a specific piece and shooting it to either swap it with t"} +{"url": "https://en.wikipedia.org/wiki/Alliant%20RQ-6%20Outrider", "title": "Alliant RQ-6 Outrider", "text": "The Alliant RQ-6 Outrider unmanned aerial vehicle (UAV) was designed to provide near-real-time reconnaissance, surveillance, and target acquisition information to United States Marine Corps air/ground task forces, United States Army brigades, and deployed United States Navy units that was small enough for an entire system to be contained on two Humvees and trailer and transported on a single C-130 Hercules cargo aircraft.\n\nThe project began in 1996 and was cancelled in 1999.\n\nThe \"R\" is the Depa"} +{"url": "https://en.wikipedia.org/wiki/Chat%20room", "title": "Chat room", "text": "The term chat room, or chatroom (and sometimes group chat; abbreviated as GC), is primarily used to describe any form of synchronous conferencing, occasionally even asynchronous conferencing. The term can thus mean any technology ranging from real-time online chat and online interaction with strangers (e.g., online forums) to fully immersive graphical social environments.\n\nThe primary use of a chat room is to share information via text with a group of other users. Generally \nspeaking, the abilit"} +{"url": "https://en.wikipedia.org/wiki/OS-9", "title": "OS-9", "text": "OS-9 is a family of real-time, process-based, multitasking, multi-user operating systems, developed in the 1980s, originally by Microware Systems Corporation for the Motorola 6809 microprocessor. It was purchased by Radisys Corp in 2001, and was purchased again in 2013 by its current owner Microware LP.\n\nThe OS-9 family was popular for general-purpose computing and remains in use in commercial embedded systems and amongst hobbyists. Today, OS-9 is a product name used by both a Motorola 68000-ser"} +{"url": "https://en.wikipedia.org/wiki/Microware", "title": "Microware", "text": "Microware was a US corporation based in Clive, Iowa that produced the OS-9 real-time operating system.\n\nMicroware Systems Corporation existed as a separate entity from 1977 until September 2001, when it was bought by RadiSys Corp., and became a division of that company. The rights to Microware OS-9 and related software were purchased by a group of distributors on 1 March 2013. The new owner was Microware LP. Microware initially produced a version of BASIC and a real-time kernel for the Motorola "} +{"url": "https://en.wikipedia.org/wiki/Microware", "title": "Microware", "text": "Microware was a US corporation based in Clive, Iowa that produced the OS-9 real-time operating system.\n\nMicroware Systems Corporation existed as a separate entity from 1977 until September 2001, when it was bought by RadiSys Corp., and became a division of that company. The rights to Microware OS-9 and related software were purchased by a group of distributors on 1 March 2013. The new owner was Microware LP. Microware initially produced a version of BASIC and a real-time kernel for the Motorola "} diff --git a/clickstream-ai-recommendation/content-api/sample_content.table.sql b/clickstream-ai-recommendation/content-api/sample_content.table.sql new file mode 100644 index 00000000..912361a8 --- /dev/null +++ b/clickstream-ai-recommendation/content-api/sample_content.table.sql @@ -0,0 +1,12 @@ +CREATE TABLE `sample_content` ( + `url` VARCHAR(2147483647) CHARACTER SET `UTF-16LE` NOT NULL, + `title` VARCHAR(2147483647) CHARACTER SET `UTF-16LE` NOT NULL, + `text` VARCHAR(2147483647) CHARACTER SET `UTF-16LE` NOT NULL, + `event_time` AS NOW(), + WATERMARK FOR `event_time` AS `event_time` - INTERVAL '0.001' SECOND +) WITH ( + 'connector' = 'filesystem', + 'format' = 'flexible-json', + 'path' = '${DATA_PATH}/sample_content.jsonl', + 'source.monitor-interval' = '10 sec' +); \ No newline at end of file diff --git a/clickstream-ai-recommendation/content-file/content.jsonl b/clickstream-ai-recommendation/content-file/content.jsonl deleted file mode 100644 index 681fa5b5..00000000 --- a/clickstream-ai-recommendation/content-file/content.jsonl +++ /dev/null @@ -1,2596 +0,0 @@ -{"id": "593", "url": "https://en.wikipedia.org/wiki/Animation", "title": "Animation", "text": "Animation is a method in which figures are manipulated to appear as moving images. In traditional animation, images are drawn or painted by hand on transparent celluloid sheets to be photographed and exhibited on film. Today, most animations are made with computer-generated imagery (CGI). Computer animation can be very detailed 3D animation, while 2D computer animation (which may have the look of traditional animation) can be used for stylistic reasons, low bandwidth, or faster real-time renderi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6777", "url": "https://en.wikipedia.org/wiki/Computer%20animation", "title": "Computer animation", "text": "Computer animation is the process used for digitally generating animated images. The more general term computer-generated imagery (CGI) encompasses both static scenes and dynamic images, while computer animation only refers to moving images. Modern computer animation usually uses 3D computer graphics to generate a three-dimensional picture, although 2D computer graphics are still used for stylistic, low bandwidth, and faster real-time renderings. Sometimes, the target of the animation is the com", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7262", "url": "https://en.wikipedia.org/wiki/CORAL", "title": "CORAL", "text": "CORAL, short for Computer On-line Real-time Applications Language is a programming language originally developed in 1964 at the Royal Radar Establishment (RRE), Malvern, Worcestershire, in the United Kingdom. The R was originally for \"radar\", not \"real-time\". It was influenced primarily by JOVIAL, and thus ALGOL, but is not a subset of either.\n\nThe most widely-known version, CORAL 66, was subsequently developed by I. F. Currie and M. Griffiths under the auspices of the Inter-Establishment Commit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9646", "url": "https://en.wikipedia.org/wiki/Erlang%20%28programming%20language%29", "title": "Erlang (programming language)", "text": "Erlang ( ) is a general-purpose, concurrent, functional programming language, and a garbage-collected runtime system. The term Erlang is used interchangeably with Erlang/OTP, or Open Telecom Platform (OTP), which consists of the Erlang runtime system, several ready-to-use components (OTP) mainly written in Erlang, and a set of design principles for Erlang programs.\n\nThe Erlang runtime system is designed for systems with these traits:\n\nDistributed\nFault-tolerant\nSoft real-time\nHighly available, n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15167", "url": "https://en.wikipedia.org/wiki/ICQ", "title": "ICQ", "text": "ICQ New is a cross-platform instant messaging (IM) and VoIP client. The name ICQ derives from the English phrase \"I Seek You\". Originally developed by the Israeli company Mirabilis in 1996, the client was bought by AOL in 1998, and then by Mail.Ru Group (now VK) in 2010.\n\nThe ICQ client application and service were initially released in November 1996, freely available to download. ICQ was among the first stand-alone instant messenger (IM) \u2014 while real-time chat was not in itself new (Internet Re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19537", "url": "https://en.wikipedia.org/wiki/MUD", "title": "MUD", "text": "A MUD (; originally multi-user dungeon, with later variants multi-user dimension and multi-user domain) is a multiplayer real-time virtual world, usually text-based or storyboarded. MUDs combine elements of role-playing games, hack and slash, player versus player, interactive fiction, and online chat. Players can read or view descriptions of rooms, objects, other players, non-player characters, and actions performed in the virtual world. Players typically interact with each other and the world ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19597", "url": "https://en.wikipedia.org/wiki/Machinima", "title": "Machinima", "text": "Machinima, originally machinema () is the use of real-time computer graphics engines to create a cinematic production. Most often, video games are used to generate the computer animation. The word \"machinima\" is a portmanteau of the words machine and cinema.\n\nMachinima-based artists, sometimes called machinimists or machinimators, are often fan laborers, by virtue of their re-use of copyrighted materials (see below). Machinima offers to provide an archive of gaming performance and access to the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25767", "url": "https://en.wikipedia.org/wiki/Real-time%20computing", "title": "Real-time computing", "text": "Real-time computing (RTC) is the computer science term for hardware and software systems subject to a \"real-time constraint\", for example from event to system response. Real-time programs must guarantee response within specified time constraints, often referred to as \"deadlines\".\n\nReal-time responses are often understood to be in the order of milliseconds, and sometimes microseconds. A system not specified as operating in real time cannot usually guarantee a response within any timeframe, althou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25983", "url": "https://en.wikipedia.org/wiki/Regular%20semantics", "title": "Regular semantics", "text": "Regular semantics is a computing term which describes one type of guarantee provided by a data register shared by several processors in a parallel machine or in a network of computers working together. Regular semantics are defined for a variable with a single writer but multiple readers. These semantics are stronger than safe semantics but weaker than atomic semantics: they guarantee that there is a total order to the write operations which is consistent with real-time and that read operations ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26123", "url": "https://en.wikipedia.org/wiki/Real-time%20operating%20system", "title": "Real-time operating system", "text": "A real-time operating system (RTOS) is an operating system (OS) for real-time applications that processes data and events that have critically defined time constraints. An RTOS is distinct from a time sharing operating system, such as Unix, which manages the sharing of system resources with a scheduler, data buffers, or fixed task prioritization in a multitasking or multiprogramming environment. Processing time requirements need to be fully understood and bound rather than just kept as a minimum", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26501", "url": "https://en.wikipedia.org/wiki/Boeing%20RC-135", "title": "Boeing RC-135", "text": "The Boeing RC-135 is a family of large reconnaissance aircraft built by Boeing and modified by a number of companies, including General Dynamics, Lockheed, LTV, E-Systems, and L3 Technologies, and used by the United States Air Force and Royal Air Force to support theater and national level intelligence consumers with near real-time on-scene collection, analysis and dissemination capabilities.\n\nBased on the C-135 Stratolifter airframe, various types of RC-135s have been in service since 1961. Unl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26809", "url": "https://en.wikipedia.org/wiki/StarCraft%20%28video%20game%29", "title": "StarCraft (video game)", "text": "StarCraft is a 1998 military science fiction real-time strategy game developed and published by Blizzard Entertainment for Microsoft Windows. The game spawned the StarCraft franchise, and became the first game of the video game series. A Classic Mac OS version was released in 1999, and a Nintendo 64 adaptation, co-developed with Mass Media, was released in 2000.\n\nBlizzard started work on the game shortly after Warcraft II, another real-time strategy game, was released in 1995. The first incarnat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28684", "url": "https://en.wikipedia.org/wiki/Session%20Initiation%20Protocol", "title": "Session Initiation Protocol", "text": "The Session Initiation Protocol (SIP) is a signaling protocol used for initiating, maintaining, and terminating real-time sessions that include voice, video and messaging applications. SIP is used for signaling and controlling multimedia communication sessions in applications of Internet telephony for voice and video calls, in private IP telephone systems, in instant messaging over Internet Protocol (IP) networks as well as mobile phone calling over LTE (VoLTE).\n\nThe protocol defines the specifi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29538", "url": "https://en.wikipedia.org/wiki/Set%20%28card%20game%29", "title": "Set (card game)", "text": "Set (stylized as SET) is a real-time card game designed by Marsha Falco in 1974 and published by Set Enterprises in 1991. The deck consists of 81 unique cards that vary in four features across three possibilities for each kind of feature: number of shapes (one, two, or three), shape (diamond, squiggle, oval), shading (solid, striped, or open), and color (red, green, or purple). Each possible combination of features (e.g. a card with three striped green diamonds) appears as a card precisely once ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30433", "url": "https://en.wikipedia.org/wiki/Transaction%20Processing%20Facility", "title": "Transaction Processing Facility", "text": "Transaction Processing Facility (TPF) is an IBM real-time operating system for mainframe computers descended from the IBM System/360 family, including zSeries and System z9.\n\nTPF delivers fast, high-volume, high-throughput transaction processing, handling large, continuous loads of essentially simple transactions across large, geographically dispersed networks.\n\nWhile there are other industrial-strength transaction processing systems, notably IBM's own CICS and IMS, TPF's specialty is extreme vo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34487", "url": "https://en.wikipedia.org/wiki/Zoop", "title": "Zoop", "text": "Zoop is a puzzle video game originally developed by Hookstone Productions and published by Viacom New Media for many platforms in 1995. It has similarities to Taito's 1989 arcade game Plotting (known as Flipull in other territories and on other systems) but Zoop runs in real-time instead. Players are tasked with eliminating pieces that spawn from one of the sides of the screen, before they reach the center of the playfield, by pointing at a specific piece and shooting it to either swap it with t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37442", "url": "https://en.wikipedia.org/wiki/Alliant%20RQ-6%20Outrider", "title": "Alliant RQ-6 Outrider", "text": "The Alliant RQ-6 Outrider unmanned aerial vehicle (UAV) was designed to provide near-real-time reconnaissance, surveillance, and target acquisition information to United States Marine Corps air/ground task forces, United States Army brigades, and deployed United States Navy units that was small enough for an entire system to be contained on two Humvees and trailer and transported on a single C-130 Hercules cargo aircraft.\n\nThe project began in 1996 and was cancelled in 1999.\n\nThe \"R\" is the Depa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38892", "url": "https://en.wikipedia.org/wiki/Chat%20room", "title": "Chat room", "text": "The term chat room, or chatroom (and sometimes group chat; abbreviated as GC), is primarily used to describe any form of synchronous conferencing, occasionally even asynchronous conferencing. The term can thus mean any technology ranging from real-time online chat and online interaction with strangers (e.g., online forums) to fully immersive graphical social environments.\n\nThe primary use of a chat room is to share information via text with a group of other users. Generally \nspeaking, the abilit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39093", "url": "https://en.wikipedia.org/wiki/OS-9", "title": "OS-9", "text": "OS-9 is a family of real-time, process-based, multitasking, multi-user operating systems, developed in the 1980s, originally by Microware Systems Corporation for the Motorola 6809 microprocessor. It was purchased by Radisys Corp in 2001, and was purchased again in 2013 by its current owner Microware LP.\n\nThe OS-9 family was popular for general-purpose computing and remains in use in commercial embedded systems and amongst hobbyists. Today, OS-9 is a product name used by both a Motorola 68000-ser", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39451", "url": "https://en.wikipedia.org/wiki/Microware", "title": "Microware", "text": "Microware was a US corporation based in Clive, Iowa that produced the OS-9 real-time operating system.\n\nMicroware Systems Corporation existed as a separate entity from 1977 until September 2001, when it was bought by RadiSys Corp., and became a division of that company. The rights to Microware OS-9 and related software were purchased by a group of distributors on 1 March 2013. The new owner was Microware LP. Microware initially produced a version of BASIC and a real-time kernel for the Motorola ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40390", "url": "https://en.wikipedia.org/wiki/Chat", "title": "Chat", "text": "Chat or chats may refer to:\n\nCommunication\nConversation, particularly casual \nOnline chat, text message communication over the Internet in real-time\nSynchronous conferencing, a formal term for online chat\nSMS chat, a form of text messaging\nPopular term for internet relay chat.\n Chat room or group chat \n \"Video chat\" - which implements videotelephony\n Text messaging - person-to-person chat, i.e. non group chat\n\nEntertainment\nChat (magazine), a British weekly women's magazine\nCHAT-FM, a radio stat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41016", "url": "https://en.wikipedia.org/wiki/Demand%20assignment", "title": "Demand assignment", "text": "In telecommunication, a demand assignment is a method which several users share access to a communication channel on a real-time basis, i.e., a user needing to communicate with another user on the same network requests the required circuit, uses it, and when the call is finished, the circuit is released, making the circuit available to other users. \n\nDemand assignment is similar to conventional telephone switching, in which common trunks are provided for many users, on a demand basis, through a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41290", "url": "https://en.wikipedia.org/wiki/Ionospheric%20sounding", "title": "Ionospheric sounding", "text": "In telecommunication and radio science, an ionospheric sounding is a technique that provides real-time data on high-frequency ionospheric-dependent radio propagation, using a basic system consisting of a synchronized transmitter and receiver. \n\nThe time delay between transmission and reception is translated into effective ionospheric layer altitude. Vertical incident sounding uses a collocated transmitter and receiver and involves directing a range of frequencies vertically to the ionosphere and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42005", "url": "https://en.wikipedia.org/wiki/Collaborative%20software", "title": "Collaborative software", "text": "Collaborative software or groupware is application software designed to help people working on a common task to attain their goals. One of the earliest definitions of groupware is \"intentional group processes plus software to support them\".\n\nAs regards available interaction, collaborative software may be divided into: real-time collaborative editing platforms that allow multiple users to engage in live, simultaneous and reversible editing of a single file (usually a document), and version contr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42661", "url": "https://en.wikipedia.org/wiki/Myth%20%28video%20game%20series%29", "title": "Myth (video game series)", "text": "Myth is a series of real-time tactics video games for Microsoft Windows and Mac OS. There are three main games in the series; Myth: The Fallen Lords, released in 1997, Myth II: Soulblighter, released in 1998, and Myth III: The Wolf Age, released in 2001. The Fallen Lords was developed by Bungie, and published by Bungie in North America and Eidos Interactive in Europe. Soulblighter was also developed by Bungie, and was published by Bungie in North America and GT Interactive in Europe. The Wolf Ag", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43103", "url": "https://en.wikipedia.org/wiki/Commandos%20%28series%29", "title": "Commandos (series)", "text": "Commandos is a stealth-oriented real-time tactics video game series. The five games released between 1998 and 2006 are all set during World War II and follow the adventures of a fictional Allied commando unit. Each mission is loosely based on historical events during World War II to carry the plot. The series was developed by the Spanish developer Pyro Studios and published by Eidos Interactive. The series has sold a total of 3.3 million copies and generated $41 million of revenue at retail.\n\nGa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46630", "url": "https://en.wikipedia.org/wiki/Embedded%20system", "title": "Embedded system", "text": "An embedded system is a computer system\u2014a combination of a computer processor, computer memory, and input/output peripheral devices\u2014that has a dedicated function within a larger mechanical or electronic system. It is embedded as part of a complete device often including electrical or electronic hardware and mechanical parts. \nBecause an embedded system typically controls physical operations of the machine that it is embedded within, it often has real-time computing constraints. Embedded systems", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51172", "url": "https://en.wikipedia.org/wiki/DNIX", "title": "DNIX", "text": "DNIX (original spelling: D-Nix) is a discontinued Unix-like real-time operating system from the Swedish company Dataindustrier AB (DIAB). A version called ABCenix was also developed for the ABC 1600 computer from Luxor. (Daisy Systems also had something called Daisy DNIX on some of their CAD workstations. It was unrelated to DIAB's product.)\n\nHistory\n\nInception at DIAB in Sweden \n\nDataindustrier AB (literal translation: computer industries shareholding company) was started in 1970 by Lars Karl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55951", "url": "https://en.wikipedia.org/wiki/Instant%20messaging", "title": "Instant messaging", "text": "Instant messaging (IM) technology is a type of online chat allowing real-time text transmission over the Internet or another computer network. Messages are typically transmitted between two or more parties, when each user inputs text and triggers a transmission to the recipient(s), who are all connected on a common network. It differs from email in that conversations over instant messaging happen in real-time (hence \"instant\"). Most modern IM applications (sometimes called \"social messengers\", \"", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61139", "url": "https://en.wikipedia.org/wiki/Warcraft%20III%3A%20Reign%20of%20Chaos", "title": "Warcraft III: Reign of Chaos", "text": "Warcraft III: Reign of Chaos is a high fantasy real-time strategy computer video game developed and published by Blizzard Entertainment released in July 2002. It is the second sequel to Warcraft: Orcs & Humans, after Warcraft II: Tides of Darkness, the third game set in the Warcraft fictional universe, and the first to be rendered in three dimensions. An expansion pack, The Frozen Throne, was released in July 2003. Warcraft III is set several years after the events of Warcraft II, and tells the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62342", "url": "https://en.wikipedia.org/wiki/RSX-11", "title": "RSX-11", "text": "RSX-11 is a discontinued family of multi-user real-time operating systems for PDP-11 computers created by Digital Equipment Corporation. In widespread use through the late 1970s and early 1980s, RSX-11 was influential in the development of later operating systems such as VMS and Windows NT.\n\nAs the original Real-Time System Executive name suggests, RSX was designed (and commonly used) for real time use, with process control a major use, thereof. It was also popular for program development and ge", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65184", "url": "https://en.wikipedia.org/wiki/QNX", "title": "QNX", "text": "QNX ( or ) is a commercial Unix-like real-time operating system, aimed primarily at the embedded systems market. QNX was one of the first commercially successful microkernel operating systems. , it is used in a variety of devices including cars and mobile phones.\n\nThe product was originally developed in the early 1980s by Canadian company Quantum Software Systems, later renamed QNX Software Systems. The company was ultimately acquired by BlackBerry Limited in 2010.\n\nDescription \nAs a microkernel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67461", "url": "https://en.wikipedia.org/wiki/Warcraft%3A%20Orcs%20%26%20Humans", "title": "Warcraft: Orcs & Humans", "text": "Warcraft: Orcs & Humans is a real-time strategy game (RTS) developed and published by Blizzard Entertainment, and published by Interplay Productions in Europe. It was released for MS-DOS in North America on 15 November 1994, and for Mac OS in early 1996. The MS-DOS version was re-released by Sold-Out Software in 2002.\n\nAlthough Warcraft: Orcs & Humans is not the first RTS game to have offered multiplayer gameplay, it persuaded a wider audience that multiplayer capabilities were essential for fut", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69309", "url": "https://en.wikipedia.org/wiki/RT-11", "title": "RT-11", "text": "RT-11 (\"RT\" for real-time) is a discontinued small, low-end, single-user real-time operating system for the Digital Equipment Corporation PDP-11 family of 16-bit computers. RT-11, which stands for Real-Time, was first implemented in 1970 and was widely used for real-time systems, process control, and data acquisition across the full line of PDP-11 computers. It was also used for low-cost general-use computing.\n\nFeatures\n\nMultitasking\nRT-11 systems did not support preemptive multitasking, but mo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "77251", "url": "https://en.wikipedia.org/wiki/Real-time%20strategy", "title": "Real-time strategy", "text": "Real-time strategy (RTS) is a subgenre of strategy video games that do not progress incrementally in turns, but allow all players to play simultaneously, in \"real time\". By contrast, in turn-based strategy (TBS) games, players take turns to play. The term \"real-time strategy\" was coined by Brett Sperry to market Dune II in the early 1990s.\n\nIn a real-time strategy game, each participant positions structures and maneuvers multiple units under their indirect control to secure areas of the map and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "78027", "url": "https://en.wikipedia.org/wiki/Whirlwind%20I", "title": "Whirlwind I", "text": "Whirlwind I was a Cold War-era vacuum tube computer developed by the MIT Servomechanisms Laboratory for the U.S. Navy. Operational in 1951, it was among the first digital electronic computers that operated in real-time for output, and the first that was not simply an electronic replacement of older mechanical systems.\n\nIt was one of the first computers to calculate in parallel (rather than serial), and was the first to use magnetic-core memory.\n\nIts development led directly to the Whirlwind II d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "82375", "url": "https://en.wikipedia.org/wiki/IDM", "title": "IDM", "text": "IDM may refer to:\n\nScience and information\n Identity management, the management of the identity life cycle of an entity\n Novell Identity Manager software, now called NetIQ Identity Manager\n Integrated data management\n Integrated document management\n Integrated device manufacturer, a type of semiconductor company which designs, manufactures, and sells integrated circuit products\n Integrated Direct Metering, a real-time TTL metering method for ambient and flashlight employed by the Pentax LX\n Inte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "83552", "url": "https://en.wikipedia.org/wiki/Subsumption%20architecture", "title": "Subsumption architecture", "text": "Subsumption architecture is a reactive robotic architecture heavily associated with behavior-based robotics which was very popular in the 1980s and 90s. The term was introduced by Rodney Brooks and colleagues in 1986. Subsumption has been widely influential in autonomous robotics and elsewhere in real-time AI.\n\nOverview\nSubsumption architecture is a control architecture that was proposed in opposition to traditional AI, or GOFAI. Instead of guiding behavior by symbolic mental representations ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "85631", "url": "https://en.wikipedia.org/wiki/Augmented%20reality", "title": "Augmented reality", "text": "Augmented reality (AR) is an interactive experience of a real-world environment where the objects that reside in the real world are enhanced by computer-generated perceptual information, sometimes across multiple sensory modalities, including visual, auditory, haptic, somatosensory and olfactory. AR can be defined as a system that incorporates three basic features: a combination of real and virtual worlds, real-time interaction, and accurate 3D registration of virtual and real objects. The overl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "85926", "url": "https://en.wikipedia.org/wiki/PSOS%20%28real-time%20operating%20system%29", "title": "PSOS (real-time operating system)", "text": "rtos (Portable Software On Silicon) is a real-time operating system (RTOS), created in about 1982 by Alfred Chao, and developed and marketed for the first part of its life by his company Software Components Group (SCG). In the 1980s, rtos rapidly became the RTOS of choice for all embedded systems based on the Motorola 68000 series family architecture, because it was written in 68000 assembly language and was highly optimised from the start. It was also modularised, with early support for OS-awar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "92577", "url": "https://en.wikipedia.org/wiki/IBM%201620", "title": "IBM 1620", "text": "The IBM 1620 was announced by IBM on October 21, 1959, and marketed as an inexpensive \"scientific computer\". After a total production of about two thousand machines, it was withdrawn on November 19, 1970. Modified versions of the 1620 were used as the CPU of the IBM 1710 and IBM 1720 Industrial Process Control Systems (making it the first digital computer considered reliable enough for real-time process control of factory equipment).\n\nBeing variable-word-length decimal, as opposed to fixed-word-", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "99482", "url": "https://en.wikipedia.org/wiki/Deathmatch", "title": "Deathmatch", "text": "Deathmatch, also known as free-for-all, is a gameplay mode integrated into many shooter games, including first-person shooter (FPS), and real-time strategy (RTS) video games, where the goal is to kill (or \"frag\") the other players' characters as many times as possible. The deathmatch may end on a frag limit or a time limit, and the winner is the player that accumulated the greatest number of frags.\n\nThe deathmatch is an evolution of competitive multiplayer modes found in game genres such as figh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "123428", "url": "https://en.wikipedia.org/wiki/Turn-based%20strategy", "title": "Turn-based strategy", "text": "A turn-based strategy (TBS) game is a strategy game (usually some type of wargame, especially a strategic-level wargame) where players take turns when playing. This is distinguished from real-time strategy (RTS), in which all players play simultaneously.\n\nExamples\n\nBoard games\nMany board games are turn based, such as chess, Reversi, checkers, Hare games, and Go, as well as many modern board games.\n\nTurn-based tactics\n\nTurn-based tactical game-play is characterized by the expectation of players t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "131381", "url": "https://en.wikipedia.org/wiki/Talker", "title": "Talker", "text": "A talker is a chat system that people use to talk to each other over the Internet. Dating back to the 1980s, they were a predecessor of instant messaging.\n\nA talker is a communication system precursor to MMORPGs and other virtual worlds such as Second Life. Talkers are a form of online virtual worlds in which multiple users are connected at the same time to chat in real-time. People log in to the talkers remotely (usually via Telnet), and have a basic text interface with which to communicate wit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "140284", "url": "https://en.wikipedia.org/wiki/Space%20Colony%20%28video%20game%29", "title": "Space Colony (video game)", "text": "Space Colony is a real-time strategy video game developed by Firefly Studios and published by Gathering of Developers in 2003. Aspyr Media released a Mac OS X port in 2004. The game was re-released as digital HD version on November 8, 2012.\n\nGameplay\nThe basic premise is similar to The Sims in that the player has to care for the needs of several individuals - here each with a unique predefined personality and different abilities. However the game is mission orientated and involves setting up a f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "142863", "url": "https://en.wikipedia.org/wiki/Mankind%20%28disambiguation%29", "title": "Mankind (disambiguation)", "text": "Mankind refers collectively to humans.\n\nMankind may also refer to:\n\n Mankind, a ringname/gimmick used by Mick Foley (born 1965) during parts of his tenure in World Wrestling Federation/World Wrestling Entertainment\n Mankind (play), a 15th-century morality play\n Mankind (video game), a 1998 massively multiplayer online real-time strategy game\n Mankind (album), an album by Factory 81\n Mankind: The Story of All of Us, a 2012 American documentary series\n ManKind Initiative, a domestic violence chari", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "148745", "url": "https://en.wikipedia.org/wiki/GeForce%20FX%20series", "title": "GeForce FX series", "text": "The GeForce FX or \"GeForce 5\" series (codenamed NV30) is a line of graphics processing units from the manufacturer Nvidia.\n\nOverview\nNvidia's GeForce FX series is the fifth generation of the GeForce line. With GeForce 3, the company introduced programmable shader functionality into their 3D architecture, in line with the release of Microsoft's DirectX 8.0. The GeForce 4 Ti was an enhancement of the GeForce 3 technology. With real-time 3D graphics technology continually advancing, the release of ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "153977", "url": "https://en.wikipedia.org/wiki/Domain%20Name%20System-based%20blackhole%20list", "title": "Domain Name System-based blackhole list", "text": "A Domain Name System-based blackhole list, Domain Name System blacklist (DNSBL) or real-time blackhole list (RBL) is a service for operation of mail servers to perform a check via a Domain Name System (DNS) query whether a sending host's IP address is blacklisted for email spam. Most mail server software can be configured to check such lists, typically rejecting or flagging messages from such sites.\n\nA DNSBL is a software mechanism, rather than a specific list or policy. Dozens of DNSBLs exist. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "157105", "url": "https://en.wikipedia.org/wiki/VxWorks", "title": "VxWorks", "text": "VxWorks is a real-time operating system (RTOS) developed as proprietary software by Wind River Systems, a wholly owned subsidiary of Aptiv. First released in 1987, VxWorks is designed for use in embedded systems requiring real-time, deterministic performance and, in many cases, safety and security certification, for industries, such as aerospace and defense, medical devices, industrial equipment, robotics, energy, transportation, network infrastructure, automotive, and consumer electronics.\n\nVxW", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "160256", "url": "https://en.wikipedia.org/wiki/MenuetOS", "title": "MenuetOS", "text": "MenuetOS is an operating system with a monolithic preemptive, real-time kernel written in FASM assembly language. The system also includes video drivers. It runs on 64-bit and 32-bit x86 architecture computers. Its author is Ville M. Turjanmaa. It has a graphical desktop, games, and networking abilities (TCP/IP stack). One distinctive feature is that it fits on one floppy disk. On an Intel Pentium MMX it has been known to boot in .\n\nHistory\n\n32 bit \nMenuetOS was originally written for 32-bit x", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "161623", "url": "https://en.wikipedia.org/wiki/PlanetMath", "title": "PlanetMath", "text": "PlanetMath is a free, collaborative, mathematics online encyclopedia. The emphasis is on rigour, openness, pedagogy, real-time content, interlinked content, and also community of about 24,000 people with various maths interests. Intended to be comprehensive, the project is currently hosted by the University of Waterloo. The site is owned by a US-based nonprofit corporation, \"PlanetMath.org, Ltd\".\n\nPlanetMath was started when the popular free online mathematics encyclopedia MathWorld was tempora", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "169005", "url": "https://en.wikipedia.org/wiki/NS", "title": "NS", "text": "NS as an abbreviation can mean:\n\nArts and entertainment\n\nGaming\n Natural Selection (video game), a mod for the game Half-life\n NetStorm: Islands At War, a real-time strategy game published in 1997 by Activision\n Nintendo Switch, a hybrid video game console and handheld.\n Jennifer Government: NationStates, a web-based simulation game\n\nLiterature\n New Spring (known to fans as \"NS\"), a 1999 anthology edited by Robert Silverberg and derivative 2004 novella by Robert Jordan\n NS-series robots from the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "169213", "url": "https://en.wikipedia.org/wiki/List%20of%20years%20in%20film", "title": "List of years in film", "text": "This page indexes the individual year in film pages. Each year is annotated with its significant events.\n\n 19th century in film\n 20th century in film:\n 1900s \u2013 1910s \u2013 1920s \u2013 1930s \u2013 1940s \u2013 1950s \u2013 1960s \u2013 1970s \u2013 1980s \u2013 1990s\n 21st century in film:\n 2000s \u2013 2010s \u2013 2020s\n\n19th century in film\n\nBefore Muybridge's 1878 work, photo sequences were not recorded in real-time because light-sensitive emulsions needed a long exposure time. The sequences were basically made as time-lapse recordings. \n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "172227", "url": "https://en.wikipedia.org/wiki/Stride", "title": "Stride", "text": "Stride or STRIDE may refer to:\n\nComputing\n STRIDE (security), spoofing, tampering, repudiation, information disclosure, denial of service, elevation of privilege\n Stride (software), a successor to the cloud-based HipChat, a corporate cloud-based collaboration tool\n Stride (game engine), a free and open-source 2D and 3D cross-platform game engine\n STRIDE, an algorithm for identifying secondary structures in proteins\n Stride of an array, in computer programming\n Stride scheduling, a soft real-time", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "174492", "url": "https://en.wikipedia.org/wiki/Online%20chat", "title": "Online chat", "text": "Online chat may refer to any kind of communication over the Internet that offers a real-time transmission of text messages from sender to receiver. Chat messages are generally short in order to enable other participants to respond quickly. Thereby, a feeling similar to a spoken conversation is created, which distinguishes chatting from other text-based online communication forms such as Internet forums and email. Online chat may address point-to-point communications as well as multicast communic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "176003", "url": "https://en.wikipedia.org/wiki/UA", "title": "UA", "text": "UA, U-A, Ua, uA, or ua may refer to:\n\nArts and entertainment\n\nGaming\n Unearthed Arcana, a Dungeons & Dragons sourcebook\n Unknown Armies, a role playing game\n Urban Assault, a first-person shooter and real-time strategy computer game\n\nMusic \n Ua (born 1972), a Japanese singer-songwriter\n United Abominations, an album by the band Megadeth\n\nOther uses in arts and entertainment \n United Artists, a film studio\n The Umbrella Academy, a graphic novel by Gerard Way\n\nBusinesses and organizations\n Uitgesl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "177498", "url": "https://en.wikipedia.org/wiki/CC", "title": "CC", "text": "CC, cc, or C-C may refer to:\n\nArts, entertainment, and media\n\nFictional characters\n C.C. (Code Geass), a character in the Code Geass anime series, pronounced \"C-two\"\n C.C. Babcock, a character in the American sitcom The Nanny\n Comedy Chimp, a character in Sonic Boom, called \"CC\" by Doctor Eggman\n\nGaming\n Command & Conquer (C&C), a series of real-time strategy games and the first game in the series\n Crowd control (video gaming), the ability to limit the number of mobs actively fighting during an ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "192455", "url": "https://en.wikipedia.org/wiki/XMPP", "title": "XMPP", "text": "Extensible Messaging and Presence Protocol (XMPP, originally named Jabber) is an open communication protocol designed for instant messaging (IM), presence information, and contact list maintenance. Based on XML (Extensible Markup Language), it enables the near-real-time exchange of structured data between two or more network entities. Designed to be extensible, the protocol offers a multitude of applications beyond traditional IM in the broader realm of message-oriented middleware, including sig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "193087", "url": "https://en.wikipedia.org/wiki/Dungeon%20Magic%3A%20Sword%20of%20the%20Elements", "title": "Dungeon Magic: Sword of the Elements", "text": "is a real-time first-person RPG (akin to Dungeon Master and Eye of the Beholder) produced by Taito in 1989, and programmed by Natsume for the Nintendo Entertainment System. While this game uses the same title as Taito's later arcade game Dungeon Magic, the two games are unrelated aside from their titles.\n\nPlot\n500 years ago, the Kingdom of Granville fought a terrible war with Darces the Dark Overlord. A great hero, the warrior \"Magi\", rose to challenge Darces. He owned six magical swords and a p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "207132", "url": "https://en.wikipedia.org/wiki/Star%20Trek%3A%20Armada", "title": "Star Trek: Armada", "text": "Star Trek: Armada is a real-time strategy video game for Microsoft Windows developed and published in 2000 by Activision. The game's look and feel is based primarily on Star Trek: The Next Generation, and features a few of its main characters and ships. Playable factions include the United Federation of Planets, the Klingon Empire, the Romulan Star Empire and the Borg. The game received mixed to positive reviews and was noted for being one of the better Star Trek games to be made. A sequel, Star", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "207198", "url": "https://en.wikipedia.org/wiki/Star%20Trek%3A%20Armada%20II", "title": "Star Trek: Armada II", "text": "Star Trek: Armada II is a real-time strategy video game published by Activision in 2001, based upon the Star Trek universe. The game was developed by Mad Doc Software. It is the sequel to Star Trek: Armada. Star Trek: Armada II was released by Activision a year after they acquired the full rights to all the franchise holding of the video game's franchise from Viacom. It was the first of the three major Star Trek video game sequel titles that were released by Activision from 2001 until their de", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "207666", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer", "title": "Command & Conquer", "text": "Command & Conquer (C&C) is a real-time strategy (RTS) video game franchise, first developed by Westwood Studios. The first game was one of the earliest of the RTS genre, itself based on Westwood Studios' influential strategy game Dune II and introducing trademarks followed in the rest of the series. This includes full-motion video cutscenes with an ensemble cast to progress the story, as opposed to digitally in-game rendered cutscenes. Westwood Studios was taken over by Electronic Arts in 1998 a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "209920", "url": "https://en.wikipedia.org/wiki/Liero", "title": "Liero", "text": "Liero is a video game for MS-DOS, first released by Finnish programmer Joosa Riekkinen in 1998. The game has been described as a real-time version of Worms (a turn-based artillery game). Liero is Finnish for 'earthworm' and is pronounced . Inspired itself by the earlier game MoleZ, Liero provided inspiration for the later games Soldat and Noita.\n\nGameplay\nIn Liero, two worms fight each other to death for score (or frags) using a choice of five weapons from a total of 40 in a two-dimensional map.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "225063", "url": "https://en.wikipedia.org/wiki/SC", "title": "SC", "text": "SC, Sc or sc may refer to:\n\nArts and media\n Sim City, a city-building simulator game\n Snapchat, a multimedia messaging app\n Soulcalibur, fighting video game series created by Namco\n SoundCloud, an online audio distribution platform and music sharing website\n SportsCenter, an American daily sports-news program broadcast on ESPN\n SportsCentre, a Canadian daily sports-news program broadcast on TSN\n Supreme Commander, a real-time strategy video game\n\nBusinesses\n SC Paragliding, a defunct Ukrainian a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "228078", "url": "https://en.wikipedia.org/wiki/Real-time%20large-scale%20change", "title": "Real-time large-scale change", "text": "In organizational development (OD), real-time large-scale change is an intervention designed to have a rapid impact on an entire organizational system.\n\nSee also \n Prevention paradox\n\nSystems theory", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "233055", "url": "https://en.wikipedia.org/wiki/Rate-monotonic%20scheduling", "title": "Rate-monotonic scheduling", "text": "In computer science, rate-monotonic scheduling (RMS) is a priority assignment algorithm used in real-time operating systems (RTOS) with a static-priority scheduling class. The static priorities are assigned according to the cycle duration of the job, so a shorter cycle duration results in a higher job priority.\n\nThese operating systems are generally preemptive and have deterministic guarantees with regard to response times. Rate monotonic analysis is used in conjunction with those systems to pro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "233076", "url": "https://en.wikipedia.org/wiki/Reconnaissance%20aircraft", "title": "Reconnaissance aircraft", "text": "A reconnaissance aircraft (colloquially, a spy plane) is a military aircraft designed or adapted to perform aerial reconnaissance with roles including collection of imagery intelligence (including using photography), signals intelligence, as well as measurement and signature intelligence. Modern technology has also enabled some aircraft and UAVs to carry out real-time surveillance in addition to general intelligence gathering.\n\nBefore the development of devices such as radar, military forces re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "233206", "url": "https://en.wikipedia.org/wiki/Police%20Quest", "title": "Police Quest", "text": "Police Quest (or SWAT) is a series of police simulation video games produced and published by Sierra On-Line between 1987 and 1998. The first five were adventure simulation games, the first three of which were designed by former police officer Jim Walls. The fourth to sixth titles were designed by former LAPD Chief Daryl F. Gates. Both SWAT and the real-time tactics game SWAT 2 still carried the Police Quest name and were numbered V and VI in the series, respectively, although subsequent titles ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "235077", "url": "https://en.wikipedia.org/wiki/Reverse%20transcription%20polymerase%20chain%20reaction", "title": "Reverse transcription polymerase chain reaction", "text": "Reverse transcription polymerase chain reaction (RT-PCR) is a laboratory technique combining reverse transcription of RNA into DNA (in this context called complementary DNA or cDNA) and amplification of specific DNA targets using polymerase chain reaction (PCR). It is primarily used to measure the amount of a specific RNA. This is achieved by monitoring the amplification reaction using fluorescence, a technique called real-time PCR or quantitative PCR (qPCR). Combined RT-PCR and qPCR are routine", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "240716", "url": "https://en.wikipedia.org/wiki/Netochka%20Nezvanova%20%28author%29", "title": "Netochka Nezvanova (author)", "text": "Netochka Nezvanova is the pseudonym used by the author(s) of nato.0+55+3d, a real-time, modular, video and multi-media processing environment. Alternate aliases include \"=cw4t7abs\", \"punktprotokol\", \"0f0003\", \"maschinenkunst\" (preferably spelled \"m2zk!n3nkunzt\"), \"integer\", and \"antiorp\". The name itself is adopted from the main character of Fyodor Dostoyevsky's first novel Netochka Nezvanova (1849) and translates as \"nameless nobody.\"\n\nIdentity\nNetochka Nezvanova has been described by cultural ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "242568", "url": "https://en.wikipedia.org/wiki/Personalized%20marketing", "title": "Personalized marketing", "text": "Personalized marketing, also known as one-to-one marketing or individual marketing, is a marketing strategy by which companies leverage data analysis and digital technology to deliver individualized messages and product offerings to current or prospective customers. Advancements in data collection methods, analytics, digital electronics, and digital economics, have enabled marketers to deploy more effective real-time and prolonged customer experience personalization tactics.\n\nBeginning in the ea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "242723", "url": "https://en.wikipedia.org/wiki/Starfleet%20Command", "title": "Starfleet Command", "text": "Starfleet Command may refer to:\n\nVideo games\n Star Trek: Starfleet Command, a computer game based on the table-top wargame Star Fleet Battles\n Star Trek: Starfleet Command II: Empires at War, the sequel to Starfleet Command and second in the series of real-time space combat games\n Star Trek: Starfleet Command: Orion Pirates, a stand-alone expansion for the computer game Star Trek: Starfleet Command II: Empires at War\n Star Trek: Starfleet Command III, a Star Trek video game published in 2002\n\nOt", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "246984", "url": "https://en.wikipedia.org/wiki/IBM%201720", "title": "IBM 1720", "text": "The IBM 1720 was a pilot project to create a real-time process control computer based on the IBM 1620 Model I.\n\nOnly three 1720 systems were ever built: one for the Amoco oil refinery in Whiting, Indiana; one for the Socal oil refinery in El Segundo, California; and one for E. I. du Pont in Wilmington, Delaware. All were installed in 1961. The Amoco and Socal systems ran for many years.\n\nThe 1720 led to the IBM 1710 Process Control systems that IBM introduced in March 1961; these were cheaper ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "254223", "url": "https://en.wikipedia.org/wiki/Data%20General%20RDOS", "title": "Data General RDOS", "text": "The Data General RDOS (Real-time Disk Operating System) was a real-time operating system released in 1970. The software was only sold bundled with the company's popular Nova and Eclipse minicomputers.\n\nOverview\nRDOS was capable of multitasking, with the ability to run up to 32 what were called \"tasks\" (similar to the current term threads) simultaneously on each of two grounds (foreground and background) within a 64\u00a0KB memory space. Later versions of RDOS were compatible with Data General's 16-b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "263707", "url": "https://en.wikipedia.org/wiki/OpenGL%20Performer", "title": "OpenGL Performer", "text": "OpenGL Performer, formerly known as IRIS Performer and commonly referred to simply as Performer, is a commercial library of utility code built on top of OpenGL for the purpose of enabling hard real-time visual simulation applications. OpenGL Performer was developed by SGI which continues to maintain and enhance it. OpenGL Performer is available for IRIX, Linux, and several versions of Microsoft Windows. Both ANSI C and C++ bindings are available.\n\nHistory\n\nPerformer came about in 1991 when a gro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "264635", "url": "https://en.wikipedia.org/wiki/AOE", "title": "AOE", "text": "AOE or AoE may refer to: \n\n Acute otitis externa, an infection of the external ear canal\n Alberta Order of Excellence, a high notary award given in Alberta, Canada\n Anywhere on Earth (AoE), a calendar designation for UTC\u221212:00\n Axis of evil, a term used by former U.S. President George W. Bush in his State of the Union address on January 29, 2002\n\nCulture \n Age of Empires, a series of real-time strategy video games, or the first game of the series\n Area of effect, a term used in gaming to describ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "265226", "url": "https://en.wikipedia.org/wiki/SSP", "title": "SSP", "text": "SSP is an abbreviation that may stand for:\n\nArts and entertainment\nSilversun Pickups, an American alternative rock band\nSuper Sonic Power, a line of toys by Kenner Products in the 1970s\n\nCompanies\nE. W. Scripps Company, stock symbol\nSSP Group, British company\n\nEconomics and finance \n Single Shared Platform, the basis of the TARGET2 real-time gross settlement system\n South Sudanese pound (by ISO code)\nStatutory sick pay, in the United Kingdom\n\nGovernment and politics\n\nPolitical parties and organi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "267538", "url": "https://en.wikipedia.org/wiki/HAL/S", "title": "HAL/S", "text": "HAL/S (High-order Assembly Language/Shuttle) is a real-time aerospace programming language compiler and cross-compiler for avionics applications used by NASA and associated agencies (JPL, etc.). It has been used in many U.S. space projects since 1973 and its most significant use was in the Space Shuttle program (approximately 85% of the Shuttle software is coded in HAL/S). It was designed by Intermetrics in 1972 for NASA and delivered in 1973. HAL/S is written in XPL, a dialect of PL/I. Althou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "270727", "url": "https://en.wikipedia.org/wiki/Betting%20exchange", "title": "Betting exchange", "text": "A betting exchange is a marketplace for customers to bet on the outcome of discrete events. Betting exchanges offer the same opportunities to bet as a bookmaker with a few differences. Gamblers can buy (also known as \"back\") and sell (also known as \"lay\") the outcome, and they can trade in real-time throughout the event, either to cut their losses or lock in profit. Bookmaker operators generate revenue by offering less efficient odds. Betting exchanges normally generate revenue by charging a sma", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "278017", "url": "https://en.wikipedia.org/wiki/PSK31", "title": "PSK31", "text": "PSK31 or \"Phase Shift Keying, 31 Baud\", also BPSK31 and QPSK31, is a popular computer-sound card-generated radioteletype mode, used primarily by amateur radio operators to conduct real-time keyboard-to-keyboard chat, most often using frequencies in the high frequency amateur radio bands (near-shortwave). PSK31 is distinguished from other digital modes in that it is specifically tuned to have a data rate close to typing speed, and has an extremely narrow bandwidth, allowing many conversations in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "285146", "url": "https://en.wikipedia.org/wiki/Transpower%20New%20Zealand", "title": "Transpower New Zealand", "text": "Transpower New Zealand Limited (TPNZ) is the state-owned enterprise responsible for electric power transmission in New Zealand. It performs two major functions in the New Zealand electricity market. As the owner of the National Grid it provides the infrastructure of electric power transmission that allows consumers to have access to generation from a wide range of sources, and enables competition in the wholesale electricity market; as System Operator it manages the real-time operation of the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "288354", "url": "https://en.wikipedia.org/wiki/Empire%20Earth%20%28video%20game%29", "title": "Empire Earth (video game)", "text": "Empire Earth is a real-time strategy video game developed by Stainless Steel Studios and released on November 23, 2001. It is the first game in the Empire Earth series.\n\nThe game requires players to collect resources to construct buildings, produce citizens, and conquer opposing civilizations. Empire Earth spans 500,000 years of world history, which is divided into 14 epochs, beginning with the prehistoric age, and ending with the nano age.\n\nAn expansion pack was developed by Mad Doc Software ca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "292733", "url": "https://en.wikipedia.org/wiki/Phantasy%20Star%20Online", "title": "Phantasy Star Online", "text": "Phantasy Star Online is an online role-playing game (RPG) developed by Sonic Team and published by Sega in 2000 for the Dreamcast. It was the first online RPG for game consoles; players adventure with up to three others over the internet to complete quests, collect items, and fight enemies in real-time action RPG combat. The story is unrelated to previous games in the Phantasy Star series.\n\nBefore Phantasy Star Online, online gaming was limited to western PC games, particularly RPGs such as Diab", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "298754", "url": "https://en.wikipedia.org/wiki/HP%20Multi-Programming%20Executive", "title": "HP Multi-Programming Executive", "text": "MPE (Multi-Programming Executive) is a discontinued business-oriented mainframe computer real-time operating system made by Hewlett-Packard. While initially a mini-mainframe, the final high-end systems supported 12 CPUs and over 2000 simultaneous users.\n\nDescription \nIt runs on the HP 3000 family of computers, which originally used HP custom 16-bit stack architecture CISC CPUs and were later migrated to PA-RISC where the operating system was called MPE XL.\n\nIn 1983, the original version of MPE ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "302027", "url": "https://en.wikipedia.org/wiki/Dive%20computer", "title": "Dive computer", "text": "A dive computer, personal decompression computer or decompression meter is a device used by an underwater diver to measure the elapsed time and depth during a dive and use this data to calculate and display an ascent profile which according to the programmed decompression algorithm, will give a low risk of decompression sickness.\n\nMost dive computers use real-time ambient pressure input to a decompression algorithm to indicate the remaining time to the no-stop limit, and after that has passed, t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "303304", "url": "https://en.wikipedia.org/wiki/JACK%20Audio%20Connection%20Kit", "title": "JACK Audio Connection Kit", "text": "JACK Audio Connection Kit (or JACK; a recursive acronym) is a professional sound server API and pair of daemon implementations to provide real-time, low-latency connections for both audio and MIDI data between applications. JACK was developed by a community of open-source developers led by Paul Davis (who won an Open Source Award in 2004 for this work) and has been a key piece of infrastructure and the de facto standard for professional audio software on Linux since its inception in 2002. The se", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "304970", "url": "https://en.wikipedia.org/wiki/Netrek", "title": "Netrek", "text": "Netrek is an Internet game for up to 16 players, written almost entirely in cross-platform open-source software. It combines features of multi-directional shooters and team-based real-time strategy games. Players attempt to disable or destroy their opponents' ships in real-time combat, while taking over enemy planets by bombing them and dropping off armies they pick up on friendly planets. The goal of the game is to capture all the opposing team's planets.\n\nDeveloped as a successor to 1986's Xtr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "305596", "url": "https://en.wikipedia.org/wiki/Total%20Annihilation", "title": "Total Annihilation", "text": "Total Annihilation is a real-time strategy video game created by Cavedog Entertainment, a sub-division of Humongous Entertainment, and was released on September 26, 1997 by GT Interactive for Microsoft Windows and Mac OS. Two expansion packs were released, The Core Contingency on April 28, 1998 and Battle Tactics on June 30. After the closure of the Cavedog Entertainment in 1999, the intellectual property fell to Infogrames (now Atari).\n\nTotal Annihilation is no longer officially supported, due ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "311108", "url": "https://en.wikipedia.org/wiki/Neustar", "title": "Neustar", "text": "Neustar, Inc., is an American technology company that provides real-time information and analytics for the Internet, risk, digital performance, defense, telecommunications, entertainment, and marketing industries, and also provides clearinghouse and directory services to the global communications and Internet industries. Neustar is the domain name registry for a number of top-level domains, including .biz, .us (on behalf of United States Department of Commerce), .co, .nyc (on behalf of the city ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "315119", "url": "https://en.wikipedia.org/wiki/Virtua%20Cop", "title": "Virtua Cop", "text": "(known as Virtua Squad for the North American Windows version) is a 1994 light gun shooter game developed by Sega AM2 and designed by Yu Suzuki. It was originally an arcade game on the Sega Model 2 system, and was ported to the Sega Saturn in 1995 and Windows in 1996. The Saturn version included support for both the Virtua Gun and Saturn mouse, as well as a new \"Training Mode\" which consists of a randomly generated shooting gallery.\n\nVirtua Cop was notable for its use of real-time 3D polygon gra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "327567", "url": "https://en.wikipedia.org/wiki/Versatile%20Real-Time%20Executive", "title": "Versatile Real-Time Executive", "text": "Versatile Real-Time Executive (VRTX) is a real-time operating system (RTOS) developed and marketed by the company Mentor Graphics. VRTX is suitable for both traditional board-based embedded systems and system on a chip (SoC) architectures. It has been superseded by the Nucleus RTOS.\n\nHistory\nThe VRTX operating system began as a product of Hunter & Ready, a company founded by James Ready and Colin Hunter in 1980, which later became Ready Systems. This firm later merged with Microtec Research in 1", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "328045", "url": "https://en.wikipedia.org/wiki/VRTX", "title": "VRTX", "text": "VRTX may refer to:\n\n Versatile Real-Time Executive, a real-time operating system\n Vertex Pharmaceuticals (Nasdaq stock symbol)\n PowerEdge VRTX, a computer hardware product line from Dell", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "337755", "url": "https://en.wikipedia.org/wiki/Unmanned%20combat%20aerial%20vehicle", "title": "Unmanned combat aerial vehicle", "text": "An unmanned combat aerial vehicle (UCAV), also known as a combat drone, colloquially shortened as drone or battlefield UAV, is an unmanned aerial vehicle (UAV) that is used for intelligence, surveillance, target acquisition, and reconnaissance and carries aircraft ordnance such as missiles, ATGMs, and/or bombs in hardpoints for drone strikes. These drones are usually under real-time human control, with varying levels of autonomy. Unlike unmanned surveillance and reconnaissance aerial vehicles, U", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "341172", "url": "https://en.wikipedia.org/wiki/Chase%20plane", "title": "Chase plane", "text": "A chase plane is an aircraft that \"chases\" a \"subject\" aircraft, spacecraft or rocket, for the purposes of making real-time observations and taking air-to-air photographs and video of the subject vehicle during flight.\n\nBackground\n\nSafety can be one function of a chase plane; others are to photograph or video the target vehicle, or to collect engineering data from it. Chase planes may be used during flight tests, and for many years the best way to ensure the safety of an experimental aircraft wa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "346978", "url": "https://en.wikipedia.org/wiki/SuperCollider", "title": "SuperCollider", "text": "SuperCollider is an environment and programming language originally released in 1996 by James McCartney for real-time audio synthesis and algorithmic composition.\n\nSince then it has been evolving into a system used and further developed by both scientists and artists working with sound. It is a dynamic programming language providing a framework for acoustic research, algorithmic music, interactive programming and live coding. \n\nOriginally released under the terms of the GPL-2.0-or-later in 2002,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "347798", "url": "https://en.wikipedia.org/wiki/Total%20Annihilation%3A%20Kingdoms", "title": "Total Annihilation: Kingdoms", "text": "Total Annihilation: Kingdoms, or shortened to Kingdoms, is a real-time strategy game developed and released by Cavedog Entertainment on June 25, 1999. It was the last major title from Cavedog. An expansion pack, The Iron Plague, was released in 2000.\n\nThe game was released with a book titled The Chronicles of Darien which contained the storyline, rules, units, et cetera.\n\nGameplay\n\nThe game is played from a bird's eye perspective. Players choose between four factions - Aramon, Veruna, Taros and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "353077", "url": "https://en.wikipedia.org/wiki/EROS%20%28microkernel%29", "title": "EROS (microkernel)", "text": "Extremely Reliable Operating System (EROS) is an operating system developed starting in 1991 at the University of Pennsylvania, and then Johns Hopkins University, and The EROS Group, LLC. Features include automatic data and process persistence, some preliminary real-time support, and capability-based security. EROS is purely a research operating system, and was never deployed in real world use. , development stopped in favor of two successor systems, CapROS and Coyotos.\n\nKey concepts\nThe overrid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "365943", "url": "https://en.wikipedia.org/wiki/Backchannel%20%28disambiguation%29", "title": "Backchannel (disambiguation)", "text": "A backchannel is a real-time online conversation using networked computers that takes place alongside live spoken remarks.\n\nBackchannel may also refer to:\n Back Channel, a canal in California\n\n Return channel, a low-speed, or less-than-optimal, telecommunications transmission channel in the opposite direction to the main channel\n Backchanneling, the method a malicious malware program uses to secretly communicate to command and control servers from a compromised computer\n Backchannel diplomacy or", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "371444", "url": "https://en.wikipedia.org/wiki/SOA", "title": "SOA", "text": "SOA may refer to:\n\nArts, entertainment, and media\n Siege of Avalon, a 2000 computer role-playing game\n Soldiers of Anarchy, a 2002 real-time tactics computer game\n Sons of Anarchy, an FX television series named after the fictitious outlaw motorcycle club it portrays\n Sons of Azrael, a deathcore band from Buffalo, New York\n State of Alert, a hardcore punk group formed in Washington, D.C.\n\nComputing and technology\n Safe operating area, the recommended voltage and current conditions for a semicondu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "401326", "url": "https://en.wikipedia.org/wiki/Shattered%20Galaxy", "title": "Shattered Galaxy", "text": "Shattered Galaxy is a massively multiplayer online real-time strategy game (MMORTS) that was released in 2001 by KRU Interactive., now known as Nexon Inc, after an extensive open beta period. In the US, it was published by Tri Synergy. It combines the attributes of a massive multiplayer online role-playing game and a real-time strategy game. Having won the Seumas McNally Grand Prize at the 2001 Independent Games Festival and hosted through the Game Developers Conference, the game has been comm", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "401494", "url": "https://en.wikipedia.org/wiki/Shadow%20volume", "title": "Shadow volume", "text": "Shadow volume is a technique used in 3D computer graphics to add shadows to a rendered scene. They were first proposed by Frank Crow in 1977 as the geometry describing the 3D shape of the region occluded from a light source. A shadow volume divides the virtual world in two: areas that are in shadow and areas that are not.\n\nThe stencil buffer implementation of shadow volumes is generally considered among the most practical general purpose real-time shadowing techniques for use on modern 3D graphi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "417849", "url": "https://en.wikipedia.org/wiki/Action%20game", "title": "Action game", "text": "An action game is a video game genre that emphasizes physical challenges, including hand\u2013eye coordination and reaction-time. The genre includes a large variety of sub-genres, such as fighting games, beat 'em ups, shooter games, and platform games. Multiplayer online battle arena and some real-time strategy games are also considered action games.\n\nIn an action game, the player typically controls a character often in the form of a protagonist or avatar. This player character must navigate a level,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "418974", "url": "https://en.wikipedia.org/wiki/Fluoroscopy", "title": "Fluoroscopy", "text": "Fluoroscopy () is an imaging technique that uses X-rays to obtain real-time moving images of the interior of an object. In its primary application of medical imaging, a fluoroscope () allows a physician to see the internal structure and function of a patient, so that the pumping action of the heart or the motion of swallowing, for example, can be watched. This is useful for both diagnosis and therapy and occurs in general radiology, interventional radiology, and image-guided surgery.\n\nIn its sim", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "419232", "url": "https://en.wikipedia.org/wiki/RTLinux", "title": "RTLinux", "text": "RTLinux is a hard realtime real-time operating system (RTOS) microkernel that runs the entire Linux operating system as a fully preemptive process. The hard real-time property makes it possible to control robots, data acquisition systems, manufacturing plants, and other time-sensitive instruments and machines from RTLinux applications. The design was patented. Despite the similar name, it is not related to the Real-Time Linux project of the Linux Foundation. which is for soft real-time.\n\nRTLinux", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "425637", "url": "https://en.wikipedia.org/wiki/Close%20combat%20%28disambiguation%29", "title": "Close combat (disambiguation)", "text": "Close combat is a violent physical confrontation between two or more opponents at short range.\n\nClose combat may also refer to:\n\nHand-to-hand combat\nClose Combat (series), a series of real-time tactical computer games\nClose Combat (video game), the first game in the series\nClose Combat, a 1993 book by W.E.B. Griffin in The Corps Series\nClose Combat, a technical manual in the Marine Corps Martial Arts Program", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "431741", "url": "https://en.wikipedia.org/wiki/Syndicate%20%28series%29", "title": "Syndicate (series)", "text": "Syndicate is a series of science fiction video games created by Bullfrog Productions and published by Electronic Arts. There are two main titles: Syndicate (1993) and Syndicate Wars (1996), both of which are isometric real-time tactics games. An additional first-person shooter Syndicate title was released in 2012, and a spiritual successor to the series (returning to the real-time tactics format), entitled Satellite Reign, was released in 2015.\n\nGames\n\nSyndicate (1993) \n\nSyndicate, the first gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "432225", "url": "https://en.wikipedia.org/wiki/ECos", "title": "ECos", "text": "The Embedded Configurable Operating System (eCos) is a free and open-source real-time operating system intended for embedded systems and applications which need only one process with multiple threads. It is designed to be customizable to precise application requirements of run-time performance and hardware needs. It is implemented in the programming languages C and C++ and has compatibility layers and application programming interfaces for Portable Operating System Interface (POSIX) and The Real", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "432749", "url": "https://en.wikipedia.org/wiki/ENEA%20AB", "title": "ENEA AB", "text": "Enea AB is a global information technology company with its headquarters in Kista, Sweden that provides real-time operating systems and consulting services. Enea, which is an abbreviation of Engmans Elektronik Aktiebolag, also produces the OSE operating system.\n\nHistory\nEnea was founded 1968 by Rune Engman as Engmans Elektronik AB. Their first product was an operating system for a defence computer used by the Swedish Air Force. During the 1970s the firm developed compiler technology for the Si", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "433020", "url": "https://en.wikipedia.org/wiki/Ned%20Lagin", "title": "Ned Lagin", "text": "Ned Lagin (born March 17, 1948) is an American artist, photographer, scientist, composer, and keyboardist.\n\nLagin is considered a pioneer in the development and use of minicomputers and personal computers in real-time stage and studio music composition and performance.\n\nHe is known for his electronic music composition Seastones, for performing with the Grateful Dead, and for his photography and art.\n\nEarly years\nNed Lagin was born in New York City and raised on Long Island in Roslyn Heights, Ne", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "435397", "url": "https://en.wikipedia.org/wiki/Automatic%20meter%20reading", "title": "Automatic meter reading", "text": "Automatic meter reading (AMR) is the technology of automatically collecting consumption, diagnostic, and status data from water meter or energy metering devices (gas, electric) and transferring that data to a central database for billing, troubleshooting, and analyzing.\nThis technology mainly saves utility providers the expense of periodic trips to each physical location to read a meter. Another advantage is that billing can be based on near real-time consumption rather than on estimates based o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "444563", "url": "https://en.wikipedia.org/wiki/Artificial%20Reality", "title": "Artificial Reality", "text": "Artificial reality is a book series by Myron W. Krueger about interactive immersive environments (or virtual realities), based on video recognition techniques, that put a user in full, unencumbered contact with the digital world. He started this work in the late 1960s and is considered to be a key figure in the early innovation of virtual reality. For 16 years Krueger was creating a computer system that connected the actions of a user to the real-time response of visual and auditory displays. A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "452053", "url": "https://en.wikipedia.org/wiki/DDL", "title": "DDL", "text": "DDL may refer to:\n\nTechnology\nData definition language or data description language, relating to databases\nDescription Definition Language, part of the MPEG-7 standard\nDevice Description Language, related to field devices for process and factory automation\nDigital data logger, a type of data logger, an electronic device that records data over time or in relation to location\nDirect download link, hyperlink for file download\nDolby Digital Live, real-time audio compression\nDrop-down list, graphica", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "452740", "url": "https://en.wikipedia.org/wiki/Brave%20Fencer%20Musashi", "title": "Brave Fencer Musashi", "text": "is an action role-playing video game developed and published by Square in 1998 for the PlayStation home console. The game involves real-time sword-based combat in a 3D environment; it also features segments of voiced over dialogue and role-playing game elements such as a day-night cycle and resting to restore energy.\n\nThe story follows Musashi, a young swordsman who is summoned to a parallel world to defend Allucaneet Kingdom from the Thirstquencher Empire. He searches for the Five Scrolls, whic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "453218", "url": "https://en.wikipedia.org/wiki/Ensemble%20Studios", "title": "Ensemble Studios", "text": "Ensemble Studios was an American video game developer. It was founded by Tony Goodman in 1994 and incorporated the following year. It borrowed the name of Ensemble Corporation, a consulting firm founded by Goodman in 1990. It was acquired by Microsoft in 2001 and operated as an internal studio until 2009, when its development capabilities were officially disbanded. Ensemble developed many real-time strategy games, including the Age of Empires game series, Age of Mythology, and Halo Wars. In addi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "456753", "url": "https://en.wikipedia.org/wiki/Duff%27s%20device", "title": "Duff's device", "text": "In the C programming language, Duff's device is a way of manually implementing loop unrolling by interleaving two syntactic constructs of C: the - loop and a switch statement. Its discovery is credited to Tom Duff in November 1983, when Duff was working for Lucasfilm and used it to speed up a real-time animation program.\n\nLoop unrolling attempts to reduce the overhead of conditional branching needed to check whether a loop is done, by executing a batch of loop bodies per iteration. To handle cas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "463238", "url": "https://en.wikipedia.org/wiki/Allegiance%20%28video%20game%29", "title": "Allegiance (video game)", "text": "Allegiance is a multiplayer online game initially developed by Microsoft Research. It is notable for providing a mix of real-time strategy and player piloted space combat gameplay.\n\nAlthough the game was well received upon release, its sales turned out disappointing, selling fewer than 29,000 copies in its first year. Microsoft later released under a proprietary shared source license in 2004 and is maintained and developed by volunteers. In 2017, the license was changed to the free MIT license.\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "478750", "url": "https://en.wikipedia.org/wiki/ChucK", "title": "ChucK", "text": "ChucK is a concurrent, strongly timed audio programming language for real-time synthesis, composition, and performance,\nwhich runs on Linux, Mac OS X, Microsoft Windows, and iOS. It is designed to favor readability and flexibility for the programmer over other considerations such as raw performance. It natively supports deterministic concurrency and multiple, simultaneous, dynamic control rates. Another key feature is the ability to live code; adding, removing, and modifying code on the fly, whi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "479756", "url": "https://en.wikipedia.org/wiki/Princeton%20Sound%20Lab", "title": "Princeton Sound Lab", "text": "The Princeton Sound Lab is a research laboratory in the Department of Computer Science at Princeton University, in collaboration with the Department of Music. The Sound Lab conducts research in a variety of areas in computer music, including physical modeling, audio analysis, audio synthesis, programming languages for audio and multimedia, interactive controller design, psychoacoustics, and real-time systems for composition and performance.\n\nExternal links\nhttp://soundlab.cs.princeton.edu/\n\nPri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "483750", "url": "https://en.wikipedia.org/wiki/Hierarchical%20Music%20Specification%20Language", "title": "Hierarchical Music Specification Language", "text": "The Hierarchical Music Specification Language (HMSL) is a music programming language written in the 1980s by Larry Polansky, Phil Burk, and David Rosenboom at Mills College. Written on top of Forth, it allowed for the creation of real-time interactive music performance systems, algorithmic composition software, and any other kind of program that requires a high degree of musical informatics. It was distributed by Frog Peak Music, and runs with a very light memory footprint (~1 megabyte) on Mac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "483889", "url": "https://en.wikipedia.org/wiki/Perry%20R.%20Cook", "title": "Perry R. Cook", "text": "Perry R. Cook (born September 25, 1955) is an American computer music researcher and professor emeritus of computer science and music at Princeton University. He was also founder and head of the Princeton Sound Lab.\n\nCook has worked in the areas of physical modeling, singing voice synthesis, music information retrieval, principles of computer music controller design, audio analysis and real-time computer music programming languages and systems, and has written a number of books on these subject", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "484558", "url": "https://en.wikipedia.org/wiki/Wol", "title": "Wol", "text": "Wol, WoL or WOL may refer to:\n\nComputing\n Wake-on-LAN, (/w\u0252l/) an Ethernet standard that allows computers to be powered on by a network message\n An unofficial initialism for Web Ontology Language\n .wol, file extension for the WOLF eBook file format\n World Online, a defunct European internet service provider\n Write-only language, a programming which facilitates hard to read code\n\nComputer games\n War of Legends, (/w\u0252l/) a fantasy real-time strategy game published by Jagex Games Studio\n Warhammer O", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "492018", "url": "https://en.wikipedia.org/wiki/ODE", "title": "ODE", "text": "ODE may refer to:\n\n Ohio Department of Education, the state education agency of Ohio\n Omicron Delta Epsilon, an international honor society in the field of economics\n Online disinhibition effect, a loosening of social inhibitions during interactions with others on the Internet that would otherwise be present in normal face-to-face interaction \n Open Dynamics Engine, a real-time physics engine\n Ordinary differential equation, a mathematical concept\n Oregon Daily Emerald, student newspaper of the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "496392", "url": "https://en.wikipedia.org/wiki/Age%20of%20Mythology%3A%20The%20Titans", "title": "Age of Mythology: The Titans", "text": "Age of Mythology: The Titans is an expansion pack to the real-time strategy video game of Age of Mythology. It was developed by Ensemble Studios and released on September 30, 2003. It was followed in 2016 by a second expansion pack to the original game called Tale of the Dragon.\n\nThe Titans adds a fourth culture to the game, the Atlanteans, and three new major gods, plus new units, buildings and god powers. It also includes many new features, such as auto-queueing (allows indefinite training of ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "498351", "url": "https://en.wikipedia.org/wiki/VMU", "title": "VMU", "text": "The Visual Memory Unit (VMU), also referred to as the (VMS) in Japan and Europe, is the primary memory card produced by Sega for the Dreamcast home video game console. The device features a monochrome liquid crystal display (LCD), multiplayer gaming capability (via connectors at the top), second screen functionality, a real-time clock, file manager, built-in flash memory, and sound capability. Prior to the launch of the Dreamcast, a special Godzilla edition VMU, preloaded with a virtual pet gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "502020", "url": "https://en.wikipedia.org/wiki/Natural%20Selection%20%28video%20game%29", "title": "Natural Selection (video game)", "text": "Natural Selection is a modification for the video game Half-Life. Its concept is a mixture of the first-person shooter and real-time strategy game genres. The game was created by Charlie \"Flayra\" Cleveland, who later founded the company Unknown Worlds Entertainment. Natural Selection v1 was first publicly released on Halloween 2002, and is now at version 3.2. Natural Selection 2 was released in late 2012.\n\nThe game features two teams: Kharaa (alien species) and Frontiersmen (human space marines)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "503961", "url": "https://en.wikipedia.org/wiki/Bloomberg%20Terminal", "title": "Bloomberg Terminal", "text": "The Bloomberg Terminal is a computer software system provided by the financial data vendor Bloomberg L.P. that enables professionals in the financial service sector and other industries to access Bloomberg Professional Services through which users can monitor and analyze real-time financial market data and place trades on the electronic trading platform. It was developed by employees working for businessman Michael Bloomberg. The system also provides news, price quotes, and messaging across it", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "510370", "url": "https://en.wikipedia.org/wiki/Neurofeedback", "title": "Neurofeedback", "text": "Neurofeedback (NFB), also called neurotherapy, is a type of biofeedback that presents real-time feedback from brain activity in order to reinforce healthy brain function through operant conditioning. Typically, electrical activity from the brain is collected via sensors placed on the scalp using electroencephalography (EEG), with feedback presented using video displays or sound. There is significant evidence supporting neurotherapy for generalized treatment of mental disorders, and it has been ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "511845", "url": "https://en.wikipedia.org/wiki/Rise%20of%20Nations", "title": "Rise of Nations", "text": "Rise of Nations is a real-time strategy video game developed by Big Huge Games and published by Microsoft Game Studios in May 2003. The development was led by veteran game designer Brian Reynolds, of Civilization II and Sid Meier's Alpha Centauri. The game has taken several concepts from turn-based strategy games such as territories and attrition warfare. Rise of Nations features 18 civilizations, playable through eight ages of world history.\n\nRise of Nations: Extended Edition is a re-release of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "513291", "url": "https://en.wikipedia.org/wiki/Telecommunications%20relay%20service", "title": "Telecommunications relay service", "text": "A telecommunications relay service, also known as TRS, relay service, or IP-relay, or Web-based relay service, is an operator service that allows people who are deaf, hard of hearing, deafblind, or have a speech disorder to place calls to standard telephone users via a keyboard or assistive device. Originally, relay services were designed to be connected through a TDD, teletypewriter (TTY) or other assistive telephone device. Services gradually have expanded to include almost any real-time text ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "518155", "url": "https://en.wikipedia.org/wiki/Ken%20Sakamura", "title": "Ken Sakamura", "text": ", as of April 2017, is a Japanese professor and dean of the Faculty of Information Networking for Innovation and Design at Toyo University, Japan. He is a former professor in information science at the University of Tokyo (through March 2017). He is the creator of the real-time operating system (RTOS) architecture TRON.\n\nIn 2001, he shared the Takeda Award for Social/Economic Well-Being with Richard Stallman and Linus Torvalds.\n\nCareer\nAs of 2006, Sakamura leads the ubiquitous networking laborat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "518398", "url": "https://en.wikipedia.org/wiki/The%20Codebreakers", "title": "The Codebreakers", "text": "The Codebreakers \u2013 The Story of Secret Writing () is a book by David Kahn, published in 1967, comprehensively chronicling the history of cryptography from ancient Egypt to the time of its writing. The United States government attempted to have the book altered before publication, and it succeeded in part.\n\nOverview\nBradford Hardie III, an American cryptographer during World War II, contributed insider information, German translations from original documents, and intimate real-time operational ex", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "519483", "url": "https://en.wikipedia.org/wiki/TRON%20project", "title": "TRON project", "text": "TRON (acronym for The Real-time Operating system Nucleus) is an open architecture real-time operating system kernel design. The project was started by Professor Dr. Ken Sakamura of the University of Tokyo in 1984. The project's goal is to create an ideal computer architecture and network, to provide for all of society's needs.\n\nThe Industrial TRON (ITRON) derivative was one of the world's most used operating systems in 2003, being present in billions of electronic devices such as mobile phones, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "521360", "url": "https://en.wikipedia.org/wiki/Total%20War%20%28video%20game%20series%29", "title": "Total War (video game series)", "text": "Total War is a series of strategy games developed by British developer Creative Assembly for personal computers. They combine turn-based strategy and resource management with real-time tactical control of battles. Rather uniquely for real-time strategy games, flanking maneuvers and formations factor heavily into gameplay. The first of the series, Shogun: Total War, was released in June 2000. The most recent major game released was Total War: Warhammer III on February 17, 2022. As of April 2021, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "534116", "url": "https://en.wikipedia.org/wiki/Warcraft%20III%3A%20The%20Frozen%20Throne", "title": "Warcraft III: The Frozen Throne", "text": "Warcraft III: The Frozen Throne is the expansion pack for Warcraft III: Reign of Chaos, a real-time strategy video game by Blizzard Entertainment. It was released worldwide on July 1, 2003, for Microsoft Windows and Mac OS X. The Frozen Throne builds upon the story of Reign of Chaos and depicts the events after the main game's conclusion. The single-player unfolds from the perspective of two new protagonists\u2014the Night Elf warden Maiev Shadowsong and the Blood Elf prince Kael'Thas\u2014as well as re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "535191", "url": "https://en.wikipedia.org/wiki/Real-time%20clock", "title": "Real-time clock", "text": "A real-time clock (RTC) is an electronic device (most often in the form of an integrated circuit) that measures the passage of time.\n\nAlthough the term often refers to the devices in personal computers, servers and embedded systems, RTCs are present in almost any electronic device which needs to keep accurate time of day.\n\nTerminology\nThe term real-time clock is used to avoid confusion with ordinary hardware clocks which are only signals that govern digital electronics, and do not count time in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "538871", "url": "https://en.wikipedia.org/wiki/Live%20television", "title": "Live television", "text": "Live television is a television production broadcast in real-time, as events happen, in the present. In a secondary meaning, it may refer to streaming television over the Internet when content or programming is played continuously (not on demand). For example, the Pluto TV app has two categories for viewing: \"Live TV\" & \"On Demand.\" On its website, Xfinity states \"Watch TV series and top rated movies live and on demand with Xfinity Stream.\" \n\nIn most cases live programming is not being record", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "548701", "url": "https://en.wikipedia.org/wiki/Mankind%20%28video%20game%29", "title": "Mankind (video game)", "text": "Mankind was a massively multiplayer online real-time strategy (MMORTS) computer game.\n\nGameplay \nEquipped with one construction unit, a Vibz-type starship, and a small amount of credits, players start out in a guarded star system (\"Imperial system\") to eventually create their own empire. Typical first steps in Mankind consist of building a small base on one of the nearby planets and mining available resources which could either be sold or used to construct further units. Later, a player can leav", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "548760", "url": "https://en.wikipedia.org/wiki/Verse%20protocol", "title": "Verse protocol", "text": "Verse is a networking protocol allowing real-time communication between computer graphics software. For example, several architects can build a house in the same virtual environment using their own computers, even if they are using different software. If one architect builds a spiral staircase, it instantly appears on the screens of all other users. Verse is designed to use the capacity of one or multiple computers over the Internet: for example, allowing a user with a hand-held computer in S", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "554210", "url": "https://en.wikipedia.org/wiki/The%20Settlers%20%281993%20video%20game%29", "title": "The Settlers (1993 video game)", "text": "The Settlers () is a city-building video game with real-time strategy elements, developed and published by Blue Byte Software. Released in Germany for Amiga in June 1993, and in the United Kingdom in November, it is the first game in The Settlers series. In 1994, Blue Byte and Massive Development ported the game to DOS. Blue Byte published the DOS version in Europe under its original title in May, but in North America, it was published in December by SSI as Serf City: Life is Feudal. In 2018, th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "576327", "url": "https://en.wikipedia.org/wiki/Obstetric%20ultrasonography", "title": "Obstetric ultrasonography", "text": "Obstetric ultrasonography, or prenatal ultrasound, is the use of medical ultrasonography in pregnancy, in which sound waves are used to create real-time visual images of the developing embryo or fetus in the uterus (womb). The procedure is a standard part of prenatal care in many countries, as it can provide a variety of information about the health of the mother, the timing and progress of the pregnancy, and the health and development of the embryo or fetus.\n\nThe International Society of Ultra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "576884", "url": "https://en.wikipedia.org/wiki/Relic%20Entertainment", "title": "Relic Entertainment", "text": "Relic Entertainment Inc. (formerly known as THQ Canada Inc.) is a Canadian video game developer based in Vancouver, founded in 1997. The studio specializes in real-time strategy games and is known for series such as Homeworld, Warhammer 40,000: Dawn of War and Company of Heroes. Acquired by THQ in 2004, the company was sold to Sega on January 22, 2013 as part of THQ's bankruptcy. Relic is now a part of Sega Europe, which also comprises Creative Assembly, Sports Interactive and Amplitude Studios.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "604013", "url": "https://en.wikipedia.org/wiki/RTAI", "title": "RTAI", "text": "Real-time application interface (RTAI) is a real-time extension for the Linux kernel, which lets users write applications with strict timing constraints for Linux. Like Linux itself the RTAI software is a community effort. RTAI provides deterministic response to interrupts, POSIX-compliant and native RTAI real-time tasks. RTAI supports several architectures, including IA-32 (with and without FPU and TSC), x86-64, PowerPC, ARM (StrongARM and ARM7: clps711x-family, Cirrus Logic EP7xxx, CS89712, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "605389", "url": "https://en.wikipedia.org/wiki/Earth%202150", "title": "Earth 2150", "text": "Earth 2150, also known as Earth 2150: Escape from the Blue Planet, is a real-time strategy game, originally published in 2000 by SSI and the Polish developer Reality Pump and a sequel to Earth 2140. 2150 was one of the first commercial full-3D games of its kind. A sequel to Earth 2150, Earth 2160, was published in August 2005. The game also has two stand-alone expansion packs: Earth 2150: The Moon Project, and Earth 2150: Lost Souls.\n\nStory\nIt is the 22nd century, after years of war and famine o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "615393", "url": "https://en.wikipedia.org/wiki/KH-11%20KENNEN", "title": "KH-11 KENNEN", "text": "The KH-11 KENNEN (later renamed CRYSTAL, then Evolved Enhanced CRYSTAL System, and codenamed 1010 and Key Hole) is a type of reconnaissance satellite first launched by the American National Reconnaissance Office in December 1976. Manufactured by Lockheed in Sunnyvale, California, the KH-11 was the first American spy satellite to use electro-optical digital imaging, and so offer real-time optical observations.\n\nLater KH-11 satellites have been referred to by outside observers as KH-11B or KH-12, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "621132", "url": "https://en.wikipedia.org/wiki/Priority%20inheritance", "title": "Priority inheritance", "text": "In real-time computing, priority inheritance is a method for eliminating unbounded priority inversion. Using this programming method, a process scheduling algorithm increases the priority of a process (A) to the maximum priority of any other process waiting for any resource on which A has a resource lock (if it is higher than the original priority of A).\n\nThe basic idea of the priority inheritance protocol is that when a job blocks one or more high-priority jobs, it ignores its original priority", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "632022", "url": "https://en.wikipedia.org/wiki/Ground%20Control%20%28video%20game%29", "title": "Ground Control (video game)", "text": "Ground Control is a real-time tactics video game developed by Massive Entertainment and published by Sierra Studios. It was first released onto the PC Microsoft Windows in 2000. The game focuses on a conflict between two factions vying for control of a planet and a series of alien artefacts contained on its surface, in which players take the role of an officer for each faction, working to achieve their objectives through using a variety of futuristic style of troops, engaging different tactics t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "635426", "url": "https://en.wikipedia.org/wiki/HDF", "title": "HDF", "text": "HDF may refer to:\n Hadfield railway station (station code), in Derbyshire, England\n Hereditary Disease Foundation, an American organization\n Heringsdorf Airport (IATA code), near Garz on the island of Usedom, Germany\n Hierarchical Data Format, a file format\n High-density fiberboard, a type of very dense fibreboard, which is an engineered wood product\n Hortonworks DataFlow, an open-source real-time streaming analytics software platform\n H\u00f4tel-Dieu de France, a Lebanese medical center\n Hubble Deep", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "635841", "url": "https://en.wikipedia.org/wiki/StarCraft%3A%20Brood%20War", "title": "StarCraft: Brood War", "text": "StarCraft: Brood War is the expansion pack for the military science fiction real-time strategy video game StarCraft. Released in December 1998 for Microsoft Windows and June 1999 for Mac OS, it was co-developed by Saffire and Blizzard Entertainment. The expansion pack introduces new campaigns, map tilesets, music, extra units for each race, and upgrade advancements. The campaigns continue the story from where the original StarCraft ended, with the sequel, StarCraft II: Wings of Liberty, continui", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "638452", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20II", "title": "Age of Empires II", "text": "Age of Empires II: The Age of Kings is a real-time strategy video game developed by Ensemble Studios and published by Microsoft. Released in 1999 for Microsoft Windows and Macintosh, it is the second game in the Age of Empires series. The Age of Kings is set in the Middle Ages and contains thirteen playable civilizations. Players aim to gather resources, which they use to build towns, create armies, and defeat their enemies. There are five historically based campaigns, which constrict the player", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "642136", "url": "https://en.wikipedia.org/wiki/Specularity", "title": "Specularity", "text": "Specularity is the visual appearance of specular reflections.\n\nIn computer graphics\nIn computer graphics, it means the quantity used in three-dimensional (3D) rendering which represents the amount of reflectivity a surface has. It is a key component in determining the brightness of specular highlights, along with shininess to determine the size of the highlights.\n\nIt is frequently used in real-time computer graphics and ray tracing, where the mirror-like specular reflection of light from other s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "652716", "url": "https://en.wikipedia.org/wiki/Audio%20Units", "title": "Audio Units", "text": "Audio Units (AU) are a system-level plug-in architecture provided by Core Audio in Apple's macOS and iOS operating systems. Audio Units are a set of application programming interface (API) services provided by the operating system to generate, process, receive, or otherwise manipulate streams of audio in near-real-time with minimal latency. It may be thought of as Apple's architectural equivalent to another popular plug-in format, Steinberg's Virtual Studio Technology (VST).\n\nBecause of the man", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "653517", "url": "https://en.wikipedia.org/wiki/Shogun%3A%20Total%20War", "title": "Shogun: Total War", "text": "Shogun: Total War is a turn-based strategy and real-time tactics video game developed by The Creative Assembly and published by Electronic Arts for Microsoft Windows personal computers. Released in June 2000, the game became the debut title in The Creative Assembly's Total War series. Set in Japan during Sengoku jidai\u2014the \"Warring States\" period from the 15th to the beginning of the 17th century\u2014the game has players adopt the leader of a contemporary Japanese clan, attempt to conquer the nation ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "653520", "url": "https://en.wikipedia.org/wiki/Medieval%3A%20Total%20War", "title": "Medieval: Total War", "text": "Medieval: Total War is a turn-based strategy and real-time tactics computer game developed by Creative Assembly and published by Activision. Set in the Middle Ages, it is the second game in the Total War series, following on from the 2000 title Shogun: Total War. Originally announced in August 2001, the game was released in North America on 19 August 2002 and in Europe on 30 August for Microsoft Windows.\n\nFollowing a similar form of play to Shogun: Total War, the player builds a dynastic empire ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "661384", "url": "https://en.wikipedia.org/wiki/Dependability", "title": "Dependability", "text": "In systems engineering, dependability is a measure of a system's availability, reliability, maintainability, and in some cases, other characteristics such as durability, safety and security. In real-time computing, dependability is the ability to provide services that can be trusted within a time-period. The service guarantees must hold even when the system is subject to attacks or natural failures. \n\nThe International Electrotechnical Commission (IEC), via its Technical Committee TC 56 develop", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "662987", "url": "https://en.wikipedia.org/wiki/Myst%20IV%3A%20Revelation", "title": "Myst IV: Revelation", "text": "Myst IV: Revelation is an adventure video game, the fourth installment in the Myst series, developed and published by Ubisoft. Like Myst III: Exile, Revelation combines pre-rendered graphics with digital video, but also features real-time 3D effects for added realism. The plot of Revelation follows up on plot details from the original Myst. The player is summoned by Atrus, a man who creates links to other worlds known as Ages by writing special linking books. Almost twenty years earlier, Atrus' ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "668164", "url": "https://en.wikipedia.org/wiki/X-COM%3A%20UFO%20Defense", "title": "X-COM: UFO Defense", "text": "X-COM: UFO Defense (known as UFO: Enemy Unknown in Europe) is a 1994 science fiction strategy video game developed by Mythos Games and MicroProse. It was published by MicroProse for MS-DOS and Amiga computers, the Amiga CD32 console, and the PlayStation.\n\nOriginally planned by Julian Gollop as a sequel to Mythos Games' 1988 Laser Squad, the game mixes real-time management simulation with turn-based tactics. The player takes the role of commander of X-COM \u2013 an international paramilitary organizat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "672754", "url": "https://en.wikipedia.org/wiki/Pok%C3%A9mon%20Snap", "title": "Pok\u00e9mon Snap", "text": "is a 1999 first-person photography game with rail shooter style gameplay mechanics developed by HAL Laboratory and published by Nintendo for the Nintendo 64. It was first released in Japan in March 1999, and was later released in July 1999 in North America and in September 2000 for PAL regions. It is a spin-off game in the Pok\u00e9mon series, being one of the first console-based games for it, and featuring many Pok\u00e9mon rendered for the first time in real-time 3D. The game was re-released for the Wii", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "673882", "url": "https://en.wikipedia.org/wiki/Free%20look", "title": "Free look", "text": "Free look (also known as mouselook) describes the ability to move a mouse, joystick, analogue stick, or D-pad to rotate the player character's view in video games. It is almost always used for 3D game engines, and has been included on role-playing video games, real-time strategy games, third-person shooters, first-person shooters, racing games, and flight simulators. Free look is nearly universal in modern games, but it was one of the significant technical breakthroughs of mid-1990s first-perso", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "697254", "url": "https://en.wikipedia.org/wiki/Uppaal%20Model%20Checker", "title": "Uppaal Model Checker", "text": "UPPAAL is an integrated tool environment for modeling, validation and verification of real-time systems modeled as networks of timed automata, extended with data types (bounded integers, arrays etc.).\n\nIt has been used in at least 17 case studies since its release in 1995, including on Lego Mindstorms, for the Philips audio protocol, and in gearbox controllers for Mecel.\n\nThe tool has been developed in collaboration between the Design and Analysis of Real-Time Systems group at Uppsala University", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "704255", "url": "https://en.wikipedia.org/wiki/FTSE%20250%20Index", "title": "FTSE 250 Index", "text": "The FTSE 250 Index ( ) is a capitalisation-weighted index consisting of the 101st to the 350th largest companies listed on the London Stock Exchange. Promotions and demotions to and from the index occur quarterly in March, June, September, and December. The Index is calculated in real-time and published every minute.\n\nRelated indices are the FTSE 100 Index (which lists the largest 100 companies), the FTSE 350 Index (which combines the FTSE 100 and 250), the FTSE SmallCap Index and the FTSE All-S", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "705620", "url": "https://en.wikipedia.org/wiki/4X", "title": "4X", "text": "4X (abbreviation of Explore, Expand, Exploit, Exterminate) is a subgenre of strategy-based computer and board games, and include both turn-based and real-time strategy titles. The gameplay involves building an empire. Emphasis is placed upon economic and technological development, as well as a range of non-military routes to supremacy.\n\nThe earliest 4X games borrowed ideas from board games and 1970s text-based computer games. The first 4X computer games were turn-based, but real-time 4X games ar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "707775", "url": "https://en.wikipedia.org/wiki/Freedom%20Force%20%282002%20video%20game%29", "title": "Freedom Force (2002 video game)", "text": "Freedom Force is a real-time tactical role-playing game developed by Irrational Games and published by Electronic Arts and Crave Entertainment in 2002. The player guides a team of superheroes as they defend Patriot City from a variety of villains, monsters, and other menaces. The game's budget was $2 million. A sequel, Freedom Force vs The 3rd Reich, was self-published in early March 2005. The games were made available on Steam on May 29, 2009.\n\nPlot\nFleeing Lord Dominion and his invading forces", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "710908", "url": "https://en.wikipedia.org/wiki/Ps%20%28Unix%29", "title": "Ps (Unix)", "text": "In most Unix and Unix-like operating systems, the ps program (short for \"process status\") displays the currently-running processes. A related Unix utility named top provides a real-time view of the running processes.\n\nImplementations\nKolibriOS includes an implementation of the command. The command has also been ported to the IBM i operating system. In Windows PowerShell, ps is a predefined command alias for the Get-Process cmdlet, which essentially serves the same purpose.\n\nExamples\n# ps\n PI", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "714400", "url": "https://en.wikipedia.org/wiki/Gangsters%3A%20Organized%20Crime", "title": "Gangsters: Organized Crime", "text": "Gangsters: Organized Crime, also known as Gangsters, is a strategy game by Eidos Interactive for Windows, first released in 1998, and re-released in 2012 on GOG.com. It is set in the fictional Chicago suburb of New Temperance during the era of Prohibition. A sequel, Gangsters 2: Vendetta, was released by Eidos in 2001.\n\nGameplay\nGangsters is played by alternating between turn-based and real-time gameplay. The player must first give orders to the gangsters (referred to as \"hoods\") under their con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "716483", "url": "https://en.wikipedia.org/wiki/DTN%20%28company%29", "title": "DTN (company)", "text": "DTN, previously known as Telvent DTN, Data Transmission Network and Dataline, is a private company based in Burnsville, Minnesota that specializes in subscription-based services for the analysis and delivery of real-time weather, agricultural, energy, and commodity market information. As of 2018 the company has approximately 600,000 subscribers, mostly in the United States. DTN is known for its accurate meteorological forecasting and large network of weather stations, its market analysis servic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "716963", "url": "https://en.wikipedia.org/wiki/X%2APress%20X%2AChange", "title": "X*Press X*Change", "text": "X*Press X*Change is an obsolete computer-based news-ticker-style newsfeed service that existed during the late 1980s and much of the 1990s. The X*Press service debuted in late 1986 as a low cost, publicly available newswire service that used personal computers to read and process the real-time data. X*PRESS Information Services, Ltd. was a partnership between McGraw-Hill and former cable television giant Tele-Communications, Inc. (purchased by AT&T Corporation and later spun off). Data included ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "733009", "url": "https://en.wikipedia.org/wiki/Nanopore%20sequencing", "title": "Nanopore sequencing", "text": "Nanopore sequencing is a third generation approach used in the sequencing of biopolymers- specifically, polynucleotides in the form of DNA or RNA.\n\nUsing nanopore sequencing, a single molecule of DNA or RNA can be sequenced without the need for PCR amplification or chemical labeling of the sample. Nanopore sequencing has the potential to offer relatively low-cost genotyping, high mobility for testing, and rapid processing of samples with the ability to display results in real-time. Publications ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "734281", "url": "https://en.wikipedia.org/wiki/Financial%20Information%20eXchange", "title": "Financial Information eXchange", "text": "The Financial Information eXchange (FIX) protocol is an electronic communications protocol initiated in 1992 for international real-time exchange of information related to securities transactions and markets. With trillions of dollars traded annually on the NASDAQ alone, financial service entities are employing direct market access (DMA) to increase their speed to financial markets. Managing the delivery of trading applications and keeping latency low increasingly requires an understanding of th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "745979", "url": "https://en.wikipedia.org/wiki/Star%20Trek%3A%20Away%20Team", "title": "Star Trek: Away Team", "text": "Star Trek: Away Team is an isometric real-time tactics video game developed by Reflexive Entertainment and published by Activision. The game was initially released in March 2001 for personal computers using Microsoft Windows in North America. The game is set in the Star Trek universe, after the end of the Dominion War seen in the television series Star Trek: Deep Space Nine. It features a range of new characters, set on board the USS Incursion with voice appearances by Brent Spiner and Michael D", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "746910", "url": "https://en.wikipedia.org/wiki/Homeworld%202", "title": "Homeworld 2", "text": "Homeworld 2 is a real-time strategy video game sequel to Homeworld, developed by Relic Entertainment and released in 2003 by now defunct publisher Sierra Entertainment. Its story concerns Hiigara's response to a new enemy called the Vaygr. Its gameplay takes a new direction with the enhancement of its graphics and audio. In contrast to the closely equivalent Kushan and Taiidan forces of the original game, Vaygr and Hiigaran spaceships differ significantly in design and application.\n\nGameplay\nHom", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "753099", "url": "https://en.wikipedia.org/wiki/TSX-Plus", "title": "TSX-Plus", "text": "TSX-Plus is a multi-user operating system for the PDP-11/LSI-11 series of computers. It was developed by S&H Computer Systems, Inc. and is based on DEC's RT-11 single-user real-time operating system (TSX-Plus installs on top of RT-11).\n\nOverview\nThe system is highly configurable and tunable.\n\nDue to the constraints of the memory management system in the PDP-11/LSI-11, the entire operating system core must occupy no more than 40 kibibytes of memory, out of a maximum possible 4 mebibytes of physic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "757256", "url": "https://en.wikipedia.org/wiki/The%20Ancient%20Art%20of%20War", "title": "The Ancient Art of War", "text": "The Ancient Art of War is a computer game designed by Dave and Barry Murry, developed by Evryware, and originally published by Broderbund in 1984. It is generally recognized as one of the first real-time strategy or real-time tactics games.\n\nGameplay\nA battlefield simulation, the game's title comes from the classic strategy text The Art of War written by Sun Tzu around 400 B.C.\n\nThe objective of the game is to win a series of battles using four types of troops: Knights, Archers, Barbarians, and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "761623", "url": "https://en.wikipedia.org/wiki/Elsecar%20railway%20station", "title": "Elsecar railway station", "text": "Elsecar railway station is a railway station in Elsecar, near Barnsley, South Yorkshire, England. It is based on the Penistone Line and Hallam Line served by Northern Trains. The station was opened by the Midland Railway in July 1897 and was at one time known as Elsecar & Hoyland.\n\nCCTV was recently installed for the purposes of crime prevention. Other improvements to the station include new signage, lighting, and the installation of passenger information display screens to provide real-time ser", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "762040", "url": "https://en.wikipedia.org/wiki/Conditional%20loop", "title": "Conditional loop", "text": "In computer programming, conditional loops or repetitive control structures are a way for computer programs to repeat one or more various steps depending on conditions set either by the programmer initially or real-time by the actual program.\n\nA conditional loop has the potential to become an infinite loop when nothing in the loop's body can affect the outcome of the loop's conditional statement. However, infinite loops can sometimes be used purposely, often with an exit from the loop built int", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "765936", "url": "https://en.wikipedia.org/wiki/Outlive", "title": "Outlive", "text": "Outlive is a real-time strategy video game developed and produced by Brazilian studio Continuum Entertainment. It is a mission-based real-time strategy game where the player controls either the human military or robot forces and attempts to eliminate all opposing forces. It was initially released in 2000 in Brazil (2001 for the rest of the world), and was the second and most successful product of Continuum. The game was one of the few Brazilian games to be published by a mainstream AAA publisher", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "774800", "url": "https://en.wikipedia.org/wiki/TSM", "title": "TSM", "text": "TSM may refer to:\n\nTaiwan Semiconductor Manufacturing Company, a semiconductor foundry\nIBM Tivoli Storage Manager, a backup software product\nTexas Student Media, a student media operation of The University of Texas at Austin\nToulouse School of Management, a French management college\nTrinity School for Ministry, a seminary in Pennsylvania\nTrapezoidal Shadow Map, a technique for real-time shadow mapping\nTeam SoloMid, a professional esports organization\nTeam service management, a management framewo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "779188", "url": "https://en.wikipedia.org/wiki/Bounding%20sphere", "title": "Bounding sphere", "text": "In mathematics, given a non-empty set of objects of finite extension in -dimensional space, for example a set of points, a bounding sphere, enclosing sphere or enclosing ball for that set is an -dimensional solid sphere containing all of these objects.\n\nUsed in computer graphics and computational geometry, a bounding sphere is a special type of bounding volume. There are several fast and simple bounding sphere construction algorithms with a high practical value in real-time computer graphics app", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "780950", "url": "https://en.wikipedia.org/wiki/Warcraft", "title": "Warcraft", "text": "Warcraft is a franchise of video games, novels, and other media created by Blizzard Entertainment. The series is made up of five core games: Warcraft: Orcs & Humans, Warcraft II: Tides of Darkness, Warcraft III: Reign of Chaos, World of Warcraft, and Hearthstone. The first three of these core games are in the real-time strategy genre, where opposing players command virtual armies in battle against each other or a computer-controlled enemy. The fourth and best-selling title of the franchise is a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "788218", "url": "https://en.wikipedia.org/wiki/Ironseed", "title": "Ironseed", "text": "Ironseed is a 1994 MS-DOS video game, developed and published by Channel 7. It is a space trading and combat game with real-time strategy elements.\n\nPlot\nThe game plays in fictional alternative reality in the future, several hundred years ahead. The game starts when the eponymous space ship, the \"Ironseed,\" flees a theocracy on Mars. The ship is crewed by disembodied, digitized rebels originally scheduled for termination. In hastily fleeing, the ship suffers damage and gets lost in time and spac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "791111", "url": "https://en.wikipedia.org/wiki/Rodos", "title": "Rodos", "text": "Rodos may refer to:\n Rhodes, an island in Greece\n Rhodes (city)\n Rodos (operating system), a real-time operating system\n Rodos Colossi RFC, a rugby union club based in Rhodes, Greece\n Rodos F.C., a football club based in Rhodes, Greece\n HS Rodos (L157), an American-built landing craft, transferred to the Royal Hellenic Navy in 1960\n\nSee also\n Rhodes (disambiguation)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "794013", "url": "https://en.wikipedia.org/wiki/Battlezone%20%281998%20video%20game%29", "title": "Battlezone (1998 video game)", "text": "Battlezone is a first-person shooter real-time strategy video game, developed and published by Activision. It was released for Microsoft Windows in 1998. Aside from the name and presence of tanks, this game bears little resemblance to the original arcade game of the same name. Activision remade it into a hybrid of a tank simulation game, a first-person shooter and a real-time strategy game. In Battlezone the player is controlling everything on the battlefield from the first person view.\n\nTwo exp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "798792", "url": "https://en.wikipedia.org/wiki/Stainless%20Steel%20Studios", "title": "Stainless Steel Studios", "text": "Stainless Steel Studios (SSSI) was a video game developer, started in 1997 by Rick Goodman and Dara-Lynn Pelechatz. The company was based in Cambridge, Massachusetts, and focused on the development of real-time strategy games.\n\nHistory\nStainless Steel was started in October 1997 by Rick Goodman and Dara-Lynn Pelechatz, the latter of who served as director of operations. The name \"Stainless Steel\" was thought up by Goodman on a returning flight from California. Pelechatz said in an interview with", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "799543", "url": "https://en.wikipedia.org/wiki/Corel%20Painter", "title": "Corel Painter", "text": "Corel Painter is a raster-based digital art application created to simulate as accurately as possible the appearance and behavior of traditional media associated with drawing, painting, and printmaking. It is intended to be used in real-time by professional digital artists as a functional creative tool.\n\nMaterials and tools\nThe application offers a wide range of traditional artists' materials and tools. With the aid of a graphics tablet or computer mouse, the user is able to reproduce the effect", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "805895", "url": "https://en.wikipedia.org/wiki/Hiroshi%20Minagawa", "title": "Hiroshi Minagawa", "text": ", also known by the nickname Nigoro, is a Japanese video game artist, designer and director.\n\nCareer\nMinagawa had worked at Quest Corporation alongside his colleagues Yasumi Matsuno and Akihiko Yoshida before they all decided to switch to Square in 1995. He continued collaborating with his co-workers as the art director of Final Fantasy Tactics and Vagrant Story. For the Final Fantasy XII project, he was originally the graphics and real-time visual director. However, when the original director M", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "825775", "url": "https://en.wikipedia.org/wiki/Large%20Value%20Transfer%20System", "title": "Large Value Transfer System", "text": "The Large Value Transfer System, or LVTS, was the primary system in Canada for electronic wire transfers of large sums of money, and was operated by Payments Canada. It permitted the participating institutions and their clients to send large sums of money securely in real-time with complete certainty that the payment will settle. The system was replaced in September 2021 by a new high-value payment system called Lynx.\n\nEstablished in 1999, LVTS processed the majority of payments made every day i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "839887", "url": "https://en.wikipedia.org/wiki/Real-time%20gross%20settlement", "title": "Real-time gross settlement", "text": "Real-time gross settlement (RTGS) systems are specialist funds transfer systems where the transfer of money or securities takes place from one bank to any other bank on a \"real-time\" and on a \"gross\" basis. Settlement in \"real time\" means a payment transaction is not subjected to any waiting period, with transactions being settled as soon as they are processed. \"Gross settlement\" means the transaction is settled on a one-to-one basis, without bundling or netting with any other transaction. \"Sett", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "841012", "url": "https://en.wikipedia.org/wiki/Alien%20Nations", "title": "Alien Nations", "text": "Alien Nations () is a real-time strategy video game developed by Neo Software and published by JoWooD Productions for Microsoft Windows in 1999. It was re-released on GOG.com in 2009. A sequel, The Nations, was published in 2001. Alien Nations was a commercial hit in the German market, and ultimately sold close to 1 million units worldwide.\n\nGameplay \nAlien Nations is a real-time strategy game based on building a nation and conquering others. The player may choose from 3 races \u2013 the Pimmons, the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "842212", "url": "https://en.wikipedia.org/wiki/Herzog%20Zwei", "title": "Herzog Zwei", "text": "(, German for \"Duke Two\") is a real-time strategy video game developed by Technosoft and published by Sega for the Mega Drive/Genesis. An early real-time strategy game, it predates the genre-popularizing Dune II. It was released first in Japan in 1989 and worldwide in 1990. It is the sequel to Herzog, which was available on the Japanese MSX and PC-8801 personal computers.\n\nHerzog Zwei combines the arcade-style play of Technosoft's own Thunder Force series with a simple, easy-to-grasp level of st", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "847046", "url": "https://en.wikipedia.org/wiki/Open%20Platform%20Communications", "title": "Open Platform Communications", "text": "Open Platform Communications (OPC) is a series of standards and specifications for industrial telecommunication. They are based on Object Linking and Embedding (OLE) for process control.\nAn industrial automation task force developed the original standard in 1996 under the name OLE for Process Control. OPC specifies the communication of real-time plant data between control devices from different manufacturers.\n\nAfter the initial release in 1996, the OPC Foundation was created to maintain the stan", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "847171", "url": "https://en.wikipedia.org/wiki/Mega-Lo-Mania", "title": "Mega-Lo-Mania", "text": "Mega-Lo-Mania is a real-time strategy video game developed by Sensible Software. It was released for the Amiga in 1991 and ported to other systems. It was released as Tyrants: Fight Through Time in North America and Mega-Lo-Mania: Jik\u016b Daisenryaku (\u30e1\u30ac\u30ed\u30de\u30cb\u30a2\u6642\u7a7a\u5927\u6226\u7565) in Japan.\n\nGameplay\nMega-Lo-Mania is an early real-time strategy game that predates Dune II by a year. The player takes control of one of four gods; Scarlet (red), Caesar (green), Oberon (yellow) and Madcap (blue). There are no difference", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "851261", "url": "https://en.wikipedia.org/wiki/Herzog%20%28video%20game%29", "title": "Herzog (video game)", "text": "Herzog (German: \"Duke\") is a strategy video game released by Technosoft in Japan for the MSX and NEC PC-88 computers in 1988. It was a real-time tactics and tactical shooter game with real-time strategy elements. The game served as the prototype for its sequel Herzog Zwei, which was released in 1989 for the Sega Mega Drive and is often considered the first true real-time strategy game.\n\nOverview\nThe game is centered around a fictional war between the countries of Mercies (Blue side in game) and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "856319", "url": "https://en.wikipedia.org/wiki/HCL%20Sametime", "title": "HCL Sametime", "text": "HCL Sametime Premium (formerly IBM Sametime and IBM Lotus Sametime) is a client\u2013server application and middleware platform that provides real-time, unified communications and collaboration for enterprises. Those capabilities include presence information, enterprise instant messaging, web conferencing, community collaboration, and telephony capabilities and integration. Currently it is developed and sold by HCL Software, a division of Indian company HCL Technologies, until 2019 by the Lotus Softw", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "863268", "url": "https://en.wikipedia.org/wiki/SubEthaEdit", "title": "SubEthaEdit", "text": "SubEthaEdit is a collaborative real-time editor designed for Mac OS X. The name comes from the Sub-Etha communication network in The Hitchhiker's Guide to the Galaxy series.\n\nHistory \nSubEthaEdit was first released under the name Hydra in early 2003 but, for legal reasons, the name was changed to SubEthaEdit in late 2004.\n\nThe first version of Hydra was built in just a few months with the intent of winning an Apple Design Award, which it did at Apple's Worldwide Developers Conference 2003. In 20", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "863389", "url": "https://en.wikipedia.org/wiki/Blitzkrieg%20%28video%20game%29", "title": "Blitzkrieg (video game)", "text": "Blitzkrieg () is a real-time tactics video game based on the events of World War II and is the first title in the Blitzkrieg series. The game allows players to assume the role of commanding officer during the battles of World War II that occurred in Europe and North Africa. Each country has its respective historically correct military units. Similar to the Sudden Strike games Blitzkrieg focuses on battles rather than real-time strategy aspects like base building.\n\nVirtual Programming published a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "865300", "url": "https://en.wikipedia.org/wiki/IBM%20305%20RAMAC", "title": "IBM 305 RAMAC", "text": "The IBM 305 RAMAC was the first commercial computer that used a moving-head hard disk drive (magnetic disk storage) for secondary storage. The system was publicly announced on September 14, 1956, with test units already installed at the U.S. Navy and at private corporations. RAMAC stood for \"Random Access Method of Accounting and Control\", as its design was motivated by the need for real-time accounting in business.\n\nHistory\nThe first RAMAC to be used in the U.S. auto industry was installed a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "867980", "url": "https://en.wikipedia.org/wiki/LynxOS", "title": "LynxOS", "text": "The LynxOS RTOS is a Unix-like real-time operating system from Lynx Software Technologies (formerly \"LynuxWorks\"). Sometimes known as the Lynx Operating System, LynxOS features full POSIX conformance and, more recently, Linux compatibility. LynxOS is mostly used in real-time embedded systems, in applications for avionics, aerospace, the military, industrial process control and telecommunications. As such, it is compatible with military-grade security protocol such as wolfSSL, a popular TLS/SSL ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "877344", "url": "https://en.wikipedia.org/wiki/Close%20Combat%20%28series%29", "title": "Close Combat (series)", "text": "Close Combat is the name of a series of real-time computer wargames by Atomic Games. In the Close Combat series, the player takes control of a small unit (platoon or company sized) of troops and leads them in battles of World War II from a top down 2D perspective.\n\nHistory\nClose Combat was developed as a computer game version of the acclaimed Avalon Hill board game Advanced Squad Leader (ASL). The primary consultant for the morale model was Dr. Steven Silver, a specialist in combat-related traum", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "883983", "url": "https://en.wikipedia.org/wiki/Network%20operations%20center", "title": "Network operations center", "text": "A network operations center (NOC, pronounced like the word knock), also known as a \"network management center\", is one or more locations from which network monitoring and control, or network management, is exercised over a computer, telecommunication or satellite network.\n\n\nHistory\nThe earliest NOCs started during the 1960s. A Network Control Center was opened in New York by AT&T in 1962 which used status boards to display switch and routing information, in real-time, from AT&T's most important ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "885482", "url": "https://en.wikipedia.org/wiki/We%20the%20Media", "title": "We the Media", "text": "We the Media is a book written by Dan Gillmor, published in 2004 by O'Reilly ().\n\nGillmor discusses how the proliferation of grassroots internet journalists (bloggers) has changed the way news is handled. One of the book's main points is that a few big media corporations cannot control the news we get any longer, now that news is being published in real-time, available to everybody, via the Internet. The book received widespread praise from the demographic it covered, and mixed reviews elsewhere", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "890265", "url": "https://en.wikipedia.org/wiki/J.%20A.%20Deane", "title": "J. A. Deane", "text": "J.A. Deane was a musician, performing sometimes on trombone, but more often on synthesizers and live, real-time sampler.\n\nDeane appeared on the pioneering 1985 live recording of Cobra by John Zorn. He has recorded with Jon Hassell, and has performed extensively with Butch Morris. From 1997 to 2013 he led the Out of Context ensemble, which further explored the language of conduction developed by Butch Morris. Out of Context has released CDs on the Zerx and High Mayhem record labels based out of A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "893613", "url": "https://en.wikipedia.org/wiki/Warhammer%3A%20Dark%20Omen", "title": "Warhammer: Dark Omen", "text": "Warhammer: Dark Omen is a fantasy real-time tactical wargame based upon the Warhammer Fantasy Battle table-top game and figurines, and is the sequel to the 1995 game Warhammer: Shadow of the Horned Rat. Developed by Mindscape, in conjunction with Games Workshop, and published by Electronic Arts, the game was released in Spring 1998 for Microsoft Windows and PlayStation. The game's story takes place within the Warhammer Fantasy setting, and focuses on the efforts of a mercenary army to combat a t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "893768", "url": "https://en.wikipedia.org/wiki/Warhammer%3A%20Shadow%20of%20the%20Horned%20Rat", "title": "Warhammer: Shadow of the Horned Rat", "text": "Warhammer: Shadow of the Horned Rat is a single-player fantasy real-time tactics computer game based upon the Warhammer Fantasy Battle table-top game and figurines. It was developed and published by Mindscape, and released in November 1995 for Microsoft Windows, and on PlayStation in November 1996. The game's story takes place within the Warhammer Fantasy world setting, and focuses on players managing a group of mercenaries, who take on work for various clients but become involved in stopping a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "894952", "url": "https://en.wikipedia.org/wiki/Northrop%20Grumman%20MQ-4C%20Triton", "title": "Northrop Grumman MQ-4C Triton", "text": "The Northrop Grumman MQ-4C Triton is an American high-altitude long endurance unmanned aerial vehicle (UAV) under development for the United States Navy as a surveillance aircraft. Together with its associated ground control station, it is an unmanned aircraft system (UAS). Developed under the Broad Area Maritime Surveillance (BAMS) program, the system is intended to provide real-time intelligence, surveillance and reconnaissance missions (ISR) over vast ocean and coastal regions, continuous ma", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "897219", "url": "https://en.wikipedia.org/wiki/Dark%20Reign%3A%20The%20Future%20of%20War", "title": "Dark Reign: The Future of War", "text": "Dark Reign: The Future of War is a real-time strategy video game for Microsoft Windows, developed by Auran and published by Activision in 1997. The game consists of a large single-player campaign but also supports multiplayer online games. A mission construction kit is included with the game, that allows players to create new maps for multiplayer games and create entire missions and campaigns.\n\nDark Reign was critically and commercially successful, with global sales of 685,000 units by 2004. An ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "897776", "url": "https://en.wikipedia.org/wiki/Arm%20solution", "title": "Arm solution", "text": "In the engineering field of robotics, an arm solution is a set of calculations that allow the real-time computation of the control commands needed to place the end of a robot's arm at a desired position and orientation in space.\n\nA typical industrial robot is built with fixed length segments that are connected either at joints whose angles can be controlled, or along linear slides whose length can be controlled. If each angle and slide distance is known, the position and orientation of the end o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "901696", "url": "https://en.wikipedia.org/wiki/Myth%3A%20The%20Fallen%20Lords", "title": "Myth: The Fallen Lords", "text": "Myth: The Fallen Lords is a 1997 real-time tactics video game developed by Bungie for Windows and Mac OS. Released in November 1997 in North America and in February 1998 in Europe, the game was published by Bungie in North America and by Eidos Interactive in Europe. At the time, Bungie was known primarily as developers of Mac games, and The Fallen Lords was the first game they had developed and released simultaneously for both PC and Mac. It is the first game in the Myth series, which also inclu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "903339", "url": "https://en.wikipedia.org/wiki/Nucleus%20RTOS", "title": "Nucleus RTOS", "text": "Nucleus RTOS is a real-time operating system (RTOS) produced by the Embedded Software Division of Mentor Graphics, a Siemens Business, supporting 32- and 64-bit embedded system platforms. The operating system (OS) is designed for real-time embedded systems for medical, industrial, consumer, aerospace, and Internet of things (IoT) uses. Nucleus was released first in 1993. The latest version is 3.x, and includes features such as power management, process model, 64-bit support, safety certification", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "904955", "url": "https://en.wikipedia.org/wiki/Baldur%27s%20Gate%20II%3A%20Shadows%20of%20Amn", "title": "Baldur's Gate II: Shadows of Amn", "text": "Baldur's Gate II: Shadows of Amn is a role-playing video game developed by BioWare and published by Interplay Entertainment. It is the sequel to Baldur's Gate (1998) and was released for Microsoft Windows in September 2000. Like Baldur's Gate, the game takes place in the Forgotten Realms\u2014a fantasy campaign setting\u2014and is based on the Advanced Dungeons & Dragons 2nd edition rules. Powered by BioWare's Infinity Engine, Baldur's Gate II uses an isometric perspective and pausable real-time gameplay.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "909036", "url": "https://en.wikipedia.org/wiki/Elon%20Musk", "title": "Elon Musk", "text": "Elon Reeve Musk (; born June 28, 1971) is an entrepreneur and business magnate. He is the founder, CEO, and Chief Engineer at SpaceX; early-stage investor, CEO, and Product Architect of Tesla, Inc.; founder of The Boring Company; and co-founder of Neuralink and OpenAI. With an estimated net worth of around US$224 billion as of February 2022, Musk is the wealthiest person in the world according to both the Bloomberg Billionaires Index and the Forbes real-time billionaires list.\n\nMusk was born to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "911378", "url": "https://en.wikipedia.org/wiki/Giants%3A%20Citizen%20Kabuto", "title": "Giants: Citizen Kabuto", "text": "Giants: Citizen Kabuto is a third-person shooter video game with real-time strategy elements. It was the first project for Planet Moon Studios, which consisted of former Shiny Entertainment employees who had worked on the game MDK in 1997. Giants went through four years of development before Interplay Entertainment published it on December 7, 2000, for Microsoft Windows; a port was published by MacPlay in 2001, and the game was also ported to the later that year.\n\nIn the game, players take con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "918228", "url": "https://en.wikipedia.org/wiki/Veejay", "title": "Veejay", "text": "Veejay may refer to:\n VJ (media personality), a television announcer who introduces music videos\n Veejay (software), a video instrument mixer and sampler for real-time performances\n Vee-Jay Records, an American record label\n\nSee also \n\n VJ (disambiguation)\n Vijay (disambiguation)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "923288", "url": "https://en.wikipedia.org/wiki/Warhammer%2040%2C000%3A%20Dawn%20of%20War", "title": "Warhammer 40,000: Dawn of War", "text": "Warhammer 40,000: Dawn of War is a military science fiction real-time strategy video game developed by Relic Entertainment and based on Games Workshop's tabletop wargame Warhammer 40,000. It was released by THQ on September 20, 2004 in North America and on September 24 in Europe. Three expansion packs have been released: Winter Assault in 2005, Dark Crusade in 2006, and Soulstorm in 2008. Its first sequel, Dawn of War II was released in February 2009. Another sequel, Dawn of War III, was release", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "937602", "url": "https://en.wikipedia.org/wiki/STUN", "title": "STUN", "text": "STUN (Session Traversal Utilities for NAT; originally Simple Traversal of User Datagram Protocol (UDP) through Network Address Translators) is a standardized set of methods, including a network protocol, for traversal of network address translator (NAT) gateways in applications of real-time voice, video, messaging, and other interactive communications.\n\nSTUN is a tool used by other protocols, such as Interactive Connectivity Establishment (ICE), the Session Initiation Protocol (SIP), and WebRTC.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "949407", "url": "https://en.wikipedia.org/wiki/Grubby", "title": "Grubby", "text": "Manuel Schenkhuizen (), also known as Grubby, is a Dutch real-time strategy gamer and former professional esports player. He competed in the RTS games Warcraft III (WC3), Warcraft III: The Frozen Throne and Starcraft II. Grubby is the most successful WC3 player of all time, as an Orc player, having won more than 38 LAN tournaments, of which six were World Championships. His command over the Horde placed him early enough among the elite of the WC3 players, while his clash with Jang \"Spirit Moon\" ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "955728", "url": "https://en.wikipedia.org/wiki/Space%20Hulk%20%281993%20video%20game%29", "title": "Space Hulk (1993 video game)", "text": "Space Hulk is a 1993 real-time tactical video game for MS-DOS, Amiga and PC-98. The game was based on Games Workshop's 1989 board game of the same name. Set in the fictional Warhammer 40,000 universe, the player directs squads of Space Marines, genetically enhanced armoured soldiers, in their missions to protect the human race from deadly aliens. Space Hulk was developed and published by Electronic Arts, with support from Games Workshop.\n\nThe game takes place aboard huge derelicts known as sp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "980927", "url": "https://en.wikipedia.org/wiki/Idris%20%28operating%20system%29", "title": "Idris (operating system)", "text": "Idris is a discontinued multi-tasking, Unix-like, multi-user, real-time operating system released by Whitesmiths, of Westford, Massachusetts. The product was commercially available from 1979 through 1988.\n\nBackground\nIdris was originally written for the PDP-11 by P. J. Plauger, who started working on Idris in August 1978. It was binary compatible with Unix V6 on PDP-11, but it could run on non-memory managed systems (like LSI-11 or PDP-11/23) as well. The kernel required 31\u00a0KB of RAM, and the C ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "980996", "url": "https://en.wikipedia.org/wiki/List%20of%20massively%20multiplayer%20online%20games", "title": "List of massively multiplayer online games", "text": "This is a list of notable massively multiplayer online games (MMOG), sorted by category.\n\nMassively multiplayer online first-person shooter games (MMOFPS)\n\nMassively multiplayer online role-playing games (MMORPG)\n\nMassively multiplayer online real-time strategy games (MMORTS)\n\nMassively multiplayer online turn-based strategy games\n\nAction \n\n Armored Warfare\n Cartoon Network Universe: FusionFall\n CrimeCraft\n DC Universe Online\n Freaky Creatures\n Infantry Online\n Starport: Galactic Empires\n SubSpa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "986321", "url": "https://en.wikipedia.org/wiki/Warcraft%20II%3A%20Beyond%20the%20Dark%20Portal", "title": "Warcraft II: Beyond the Dark Portal", "text": "Warcraft II: Beyond the Dark Portal is an expansion pack for the real-time strategy video game Warcraft II: Tides of Darkness for Microsoft Windows and Macintosh. It was developed by Blizzard Entertainment and Cyberlore Studios, and published by Blizzard in North America and Europe in 1996. It requires the full version of the original game to run and adds new story campaigns and multiplayer maps. The expansion was later released alongside Tides of Darkness for the PlayStation and Sega Saturn in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "990900", "url": "https://en.wikipedia.org/wiki/Big%20Huge%20Games", "title": "Big Huge Games", "text": "Big Huge Games, Inc. is an American video game developer located in Timonium, Maryland since 2000, known first for real-time strategy games such as Rise of Nations, later for the console RPG Kingdoms of Amalur: Reckoning, and more recently for mobile games such as DomiNations and Arcane Showdown. Throughout most of its history the company has been associated with its best-known founder, Brian Reynolds, whose prior career already included work as lead designer of Civilization II and Alpha Centaur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "991833", "url": "https://en.wikipedia.org/wiki/Evil%20Genius%20%28video%20game%29", "title": "Evil Genius (video game)", "text": "Evil Genius is a single-player real-time strategy and simulation video game developed by Elixir Studios and published by Vivendi Universal Games, released on September 28, 2004. The game is inspired by the spy thriller genre (notably the James Bond film series), and is set in an alternative 1960s\u201370s era. Most closely resembling Dungeon Keeper, the gameplay puts players in charge of a villainous force attempting to achieve global domination whilst fending off the forces of justice; to this end ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "992726", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20II%3A%20The%20Conquerors", "title": "Age of Empires II: The Conquerors", "text": "Age of Empires II: The Conquerors is the first expansion pack to the 1999 real-time strategy video game Age of Empires II: The Age of Kings. The fourth installment in the Age of Empires series by Microsoft Game Studios and Ensemble Studios, The Conquerors was released in August 2000. It features five new civilizations (the Aztecs, Mayans, Spanish, Koreans, and Huns), four new campaigns, eleven new units, twenty-six new technologies, new gameplay modes, new maps and different minor tweaks to the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "995455", "url": "https://en.wikipedia.org/wiki/Savi%20Technology", "title": "Savi Technology", "text": "Savi Technology was founded in 1989 and is based in Alexandria, Virginia. \n\nThe company was spun-off from Lockheed Martin in 2012. \n\nThe company offers a variety of hardware including tags (also called sensors) that enable governments and organizations to access real-time information on the location, condition, and security status of assets and shipments; mobile IoT sensors, fixed and mobile readers; active radio-frequency identification devices and sensors; and portable deployment kits (PDKs).", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1010274", "url": "https://en.wikipedia.org/wiki/Build%20order", "title": "Build order", "text": "In strategy computer games, of both the turn-based and real-time varieties, a build order is a linear pattern of production, research, and resource management aimed at achieving a specific and specialized goal. They are analogous to chess openings, in that a player will have a specific order of play in mind, however the amount the build order, the strategy around which the build order is built or even which build order is then used varies on the skill, ability and other factors such as how aggre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1029051", "url": "https://en.wikipedia.org/wiki/Worst-case%20execution%20time", "title": "Worst-case execution time", "text": "The worst-case execution time (WCET) of a computational task is the maximum length of time the task could take to execute on a specific hardware platform.\n\nWhat it is used for \n\nWorst case execution time is typically used in reliable real-time systems, where understanding the worst case timing behaviour of software is important for reliability or correct functional behaviour. \n\nAs an example, a computer system that controls the behaviour of an engine in a vehicle might need to respond to inputs ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1030025", "url": "https://en.wikipedia.org/wiki/Night%20Driver%20%28video%20game%29", "title": "Night Driver (video game)", "text": "Night Driver is an arcade game developed by Atari Inc for release in the United States in October 1976. Night Driver is one of the earliest first-person racing video games and is commonly believed to be one of the first published video games to display real-time first-person graphics.\n\nThere were two arcade cabinet versions manufactured, an upright type and a sit-down type. The upright version had a blacklight installed inside the cabinet which illuminated the bezel.\n\nGameplay\nThe player control", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1038989", "url": "https://en.wikipedia.org/wiki/SystemC", "title": "SystemC", "text": "SystemC is a set of C++ classes and macros which provide an event-driven simulation interface (see also discrete event simulation). These facilities enable a designer to simulate concurrent processes, each described using plain C++ syntax. SystemC processes can communicate in a simulated real-time environment, using signals of all the datatypes offered by C++, some additional ones offered by the SystemC library, as well as user defined. In certain respects, SystemC deliberately mimics the hardw", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1040595", "url": "https://en.wikipedia.org/wiki/Nexus%3A%20The%20Jupiter%20Incident", "title": "Nexus: The Jupiter Incident", "text": "Nexus: The Jupiter Incident is a science fiction themed real-time tactics computer game developed by the Hungarian-based Mithis Entertainment. The game focuses on tactics and ship management instead of resource collection and base construction.\n\nGameplay and features\nIn each of the game's missions, the player is given a small number of large space ships (always less than ten, and sometimes just one or two), along with accompanying fighters and bombers. The ships are large and cumbersome, and the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1044941", "url": "https://en.wikipedia.org/wiki/Fantavision", "title": "Fantavision", "text": "Fantavision is an animation program by Scott Anderson for the Apple II and published by Broderbund in 1985. Versions were released for the Apple IIGS (1987), Amiga (1988), and MS-DOS (1988). Fantavision allows the creation of vector graphics animations using the mouse and keyboard. The user creates frames, and the software generates the frames between them. Because this is done in real-time, it allows for creative exploration and quick changes. The program uses a graphical user interface in the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1047513", "url": "https://en.wikipedia.org/wiki/Full%20Spectrum%20Warrior", "title": "Full Spectrum Warrior", "text": "Full Spectrum Warrior is a real-time tactics video game developed by Pandemic Studios and published by THQ for Xbox, Microsoft Windows and PlayStation 2. A sequel titled Full Spectrum Warrior: Ten Hammers was later released.\n\nGameplay\nFull Spectrum Warrior is a squad-based game in which the player issues commands to two fireteams, Alpha and Bravo. Each fireteam has a Team Leader equipped with an M4 carbine. The Team Leaders also carry a GPS receiver, which can be used to locate mission objective", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1053515", "url": "https://en.wikipedia.org/wiki/MechCommander", "title": "MechCommander", "text": "MechCommander is a real-time tactics video game based on FASA's BattleTech/MechWarrior franchise, developed by FASA Interactive and distributed by MicroProse in 1998. An expansion pack, Desperate Measures, was released in 1999.\n\nGameplay\nPlayers assume the role of the commander of Zulu company from the Federated Commonwealth's First Davion Guards, a member of the Inner Sphere (IS). The planet Port Arthur must be taken back from the Clan Smoke Jaguar. The game's campaign progresses through 30 dif", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1059487", "url": "https://en.wikipedia.org/wiki/TTA%20%28codec%29", "title": "TTA (codec)", "text": "True Audio (TTA) is a lossless compressor for multichannel 8, 16 and 24 bits audio data.\n.tta is the extension to filenames of audio files created by the True Audio codec.\n\nCodec overview \nTrue Audio compresses up to 30% of the original, broadly similar to FLAC and APE. It features a real-time encoding and decoding algorithm and hardware compression support. As with most other lossless codecs, plugins are available for most media players.\n\nTTA performs lossless compression on multichannel 8, 16 ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1063746", "url": "https://en.wikipedia.org/wiki/WC3", "title": "WC3", "text": "WC3 may stand for: \n Wing Commander III: Heart of the Tiger, a 1994 space combat simulation computer and video game\n Warcraft III: Reign of Chaos, a 2002 real-time strategy computer game\n Warcraft III: The Frozen Throne, expansion pack to Reign of Chaos\n Warcraft III: Reforged, the remastered of edition for both Warcraft III: Reign of Chaos and The Frozen Throne\n A common misspelling of W3C, World Wide Web Consortium", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1072793", "url": "https://en.wikipedia.org/wiki/Silmarils%20%28company%29", "title": "Silmarils (company)", "text": "Silmarils was a French computer game software company founded in 1987 by Louis-Marie and Andr\u00e9 Rocques. It produced games for PC, Amiga, Amstrad CPC, Macintosh, Atari ST and Atari Falcon.\n\nThe company is most closely associated with its Ishar series. Crystals of Arborea was one of the first games to offer real-time 3D environment and a large world with very few limits on movement. The company went bankrupt in 2003, and in 2004 the Rocques brothers and another former Silmarils member, Pascal Eins", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1079796", "url": "https://en.wikipedia.org/wiki/Real-time%20video%20editing", "title": "Real-time video editing", "text": "Real-time video editing is a system of editing video where it takes no longer to render a video than the length of that video clip itself. Live video editing is where there are various cameras at various angles and position, capturing single or multiple subjects and the footage is routed through a vision mixing device and edited and transmitted in real-time.\n\nBroadcasters traditionally used large, disparate computer systems for real-time video editing with multiple CPUs, multiple gigabytes of RA", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1080095", "url": "https://en.wikipedia.org/wiki/RT.X100", "title": "RT.X100", "text": "The RT.X100 Pro Suite is a real-time PCI video editing card manufactured by Matrox Corporation. With the use of Adobe Premiere it enables a real time preview on TV or Video Monitor. It is generally bundled with Adobe Premiere Pro (video editing software), Adobe Audition (digital audio editor), and Adobe Encore DVD (for the creation of DVDs). The RT.X100 Pro Collection adds a copy of Adobe After Effects (special effects software). It was released in 2003 and meant to replace the Matrox RT2500.\n\nS", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1085317", "url": "https://en.wikipedia.org/wiki/Star%20Wars%3A%20Galactic%20Battlegrounds", "title": "Star Wars: Galactic Battlegrounds", "text": "Star Wars: Galactic Battlegrounds is a real-time strategy video game set in the Star Wars universe. It was developed by Ensemble Studios and LucasArts. It was released on November 11, 2001. An expansion pack, Clone Campaigns, was released on May 14, 2002, adding two new factions and campaigns. Later that year, both Galactic Battlegrounds and Clone Campaigns were released in a box set, Star Wars: Galactic Battlegrounds Saga.\n\nThe games were built on the Genie engine, the same one used in Age of E", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1085448", "url": "https://en.wikipedia.org/wiki/Wind%20River%20Systems", "title": "Wind River Systems", "text": "Wind River Systems, also known as Wind River, is an Alameda, California\u2013based wholly owned subsidiary of Aptiv. The company develops embedded system and cloud software consisting of real-time operating systems software, industry-specific software, simulation technology, development tools and middleware.\n\nHistory \nWind River Systems was formed by a partnership of Jerry Fiddler and Dave Wilner. Until 1981, Fiddler had worked at Berkeley Lab writing software for control systems, and wanted to pursu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1085585", "url": "https://en.wikipedia.org/wiki/FreeJ", "title": "FreeJ", "text": "FreeJ is a modular software vision mixer for Linux systems. It is capable of real-time video manipulation, for amateur and professional uses. It can be used as an instrument in the fields of dance theater, veejaying and television. FreeJ supports the input of multiple layers of video footage, which can be filtered through special-effect-chains, and then mixed for output.\n\nHistory \nDenis Rojo (aka Jaromil) is the original author, and as of 2013 is the current maintainer. Since 0.7 was released, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1085678", "url": "https://en.wikipedia.org/wiki/Blackfin", "title": "Blackfin", "text": "The Blackfin is a family of 16-/32-bit microprocessors developed, manufactured and marketed by Analog Devices. The processors have built-in, fixed-point digital signal processor (DSP) functionality supplied by 16-bit multiply\u2013accumulates (MACs), accompanied on-chip by a microcontroller. It was designed for a unified low-power processor architecture that can run operating systems while simultaneously handling complex numeric tasks such as real-time H.264 video encoding.\n\nArchitecture details\nBlac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1102819", "url": "https://en.wikipedia.org/wiki/Darwinia%20%28video%20game%29", "title": "Darwinia (video game)", "text": "Darwinia is a 2005 real-time tactics and real-time strategy video game for Microsoft Windows, Mac OS X and Linux. It is the second game developed by Introversion Software, and is set within a computer environment that simulates artificial intelligence. It received favourable reviews and won three awards at the 2006 Independent Games Festival. A multiplayer sequel, Multiwinia, was released for Windows in 2008. Darwinia and Multiwinia were released together as Darwinia+ for the Xbox 360 in 2010.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1108066", "url": "https://en.wikipedia.org/wiki/Vizrt", "title": "Vizrt", "text": "Vizrt (), short for Visualization in Real-Time or Visual Artist, is a Norwegian company that creates content production, management and distribution tools for the digital media industry. Its products include applications that create real-time 3D graphics and maps, visualized sports analysis, media asset management and single workflow solutions for the digital broadcast industry.\n\nVizrt has a customer base in more than 100 countries and some 600 employees distributed at 40 offices worldwide.\n\nVi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1118319", "url": "https://en.wikipedia.org/wiki/The%20Lord%20of%20the%20Rings%3A%20The%20Battle%20for%20Middle-earth", "title": "The Lord of the Rings: The Battle for Middle-earth", "text": "The Lord of the Rings: The Battle for Middle-earth is a 2004 real-time strategy video game developed by EA Los Angeles for Microsoft Windows. It is based on Peter Jackson's The Lord of the Rings film trilogy, in turn based on J. R. R. Tolkien's original novel. The game uses short video clips from the movies and a number of the voice actors, including the hobbits and wizards. It uses the SAGE engine. The sequel, The Lord of the Rings: The Battle for Middle-earth II, was released on March 2, 2006.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1119719", "url": "https://en.wikipedia.org/wiki/Priority%20ceiling%20protocol", "title": "Priority ceiling protocol", "text": "In real-time computing, the priority ceiling protocol is a synchronization protocol for shared resources to avoid unbounded priority inversion and mutual deadlock due to wrong nesting of critical sections. In this protocol each resource is assigned a priority ceiling, which is a priority equal to the highest priority of any task which may lock the resource. The protocol works by temporarily raising the priorities of tasks in certain situations, thus it requires a scheduler that supports dynamic ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1127038", "url": "https://en.wikipedia.org/wiki/Distributed%20Interactive%20Simulation", "title": "Distributed Interactive Simulation", "text": "Distributed Interactive Simulation (DIS) is an IEEE standard for conducting real-time platform-level wargaming across multiple host computers and is used worldwide, especially by military organizations but also by other agencies such as those involved in space exploration and medicine.\n\nHistory\nThe standard was developed over a series of \"DIS Workshops\" at the Interactive Networked Simulation for Training symposium, held by the University of Central Florida's Institute for Simulation and Trainin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1132602", "url": "https://en.wikipedia.org/wiki/Tactical%20role-playing%20game", "title": "Tactical role-playing game", "text": "Tactical role-playing games (abbreviated TRPGs), known in Japan as (abbreviated SRPGs), are a video game genre that combines core elements of role-playing video games with those of tactical (turn-based or real-time) strategy video games. The formats of tactical RPGs are much like traditional tabletop role-playing games and strategy games in appearance, pacing, and rule structure. Likewise, early tabletop role-playing games are descended from skirmish wargames such as Chainmail, which were prima", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1132660", "url": "https://en.wikipedia.org/wiki/Ogre%20Battle%3A%20The%20March%20of%20the%20Black%20Queen", "title": "Ogre Battle: The March of the Black Queen", "text": "is a 1993 real-time tactical role-playing game developed by Quest Corporation. Originally published for Super Nintendo Entertainment System by Quest in Japan and by Enix America in North America. It is the first installment of the Ogre Battle series. It was directed by Yasumi Matsuno, and designed by Matsuno with Akihiko Yoshida. The story of Ogre Battle focuses on a band of rebels as they lead a revolution against a corrupt reigning Empire, ruled by an evil Empress.\n\nOgre Battle was ported to t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1133205", "url": "https://en.wikipedia.org/wiki/Encore%20%28disambiguation%29", "title": "Encore (disambiguation)", "text": "An encore is a performance added to the end of a concert.\n\nEncore(s) may also refer to:\n\nBusinesses and products\n\nComputing\n Encore (software), a music notation software\n Encore Computer, an early maker of parallel computers and real-time software\n Encore, Inc., a software publishing and distribution company\n EnCore Processor, a configurable and extendable microprocessor\n Adobe Encore, a DVD authoring software tool\n Z8 Encore!, a microcontroller by ZiLOG\n\nTransportation\n Encore, a train on Amtra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1137966", "url": "https://en.wikipedia.org/wiki/Rise%20of%20Nations%3A%20Thrones%20and%20Patriots", "title": "Rise of Nations: Thrones and Patriots", "text": "Rise of Nations: Thrones and Patriots is the official expansion pack to the real-time strategy video game Rise of Nations. The game is the second in a series of Rise of Nations games by Big Huge Games. Thrones and Patriots had its premiere release for Microsoft Windows on April 27, 2004 in North America, and was later bundled up with Rise of Nations as the Gold Edition, which was released for Windows on October 28, 2004, and for Mac OS X in November 2004. Rise of Nations: Extended Edition was re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1138288", "url": "https://en.wikipedia.org/wiki/Virtual%20studio", "title": "Virtual studio", "text": "The term virtual studio can refer to any number of technological tools which seek to simulate a physical television and/or film studio. One such use of the term follows.\n\nA virtual studio is a television studio or film studio that allows the real-time combination of people or other real objects and computer-generated environments and objects in a seamless manner. A key point of a virtual studio is that the real camera can move in 3D space, while the image of the virtual camera is being rendered", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1144164", "url": "https://en.wikipedia.org/wiki/VRS", "title": "VRS", "text": "VRS may refer to:\n\n Verkehrsverbund Rhein-Sieg, public transport in the Cologne/Bonn region of Germany\n an alternate abbreviation for versus, Vrs.\n Video relay service, telecommunication service for the hard of hearing\n Virtual Reference Station, using real-time kinematic GPS positioning\n Vojska Republike Srpske, Bosnian Serb Army\n Vortex ring state, a dangerous aerodynamic condition that may arise in helicopter flight\n Skoda vRS car models", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1156069", "url": "https://en.wikipedia.org/wiki/Varicode", "title": "Varicode", "text": "Varicode is a self-synchronizing code for use in PSK31. It supports all ASCII characters, but the characters used most frequently in English have shorter codes. The space between characters is indicated by a 00 sequence, an implementation of Fibonacci coding. Originally created for speeding up real-time keyboard-to-keyboard exchanges over low bandwidth links, Varicode is freely available.\n\nLimitations\n Varicode provides somewhat weaker compression in languages other than English that use same c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1156995", "url": "https://en.wikipedia.org/wiki/Nintendogs", "title": "Nintendogs", "text": "is a real-time pet simulation video game developed and published by Nintendo for the Nintendo DS handheld video game console. It was released in Japan, and was later released in North America, Australia, New Zealand, Europe, and other regions. It was originally released in three different versions: Dachshund & Friends, Lab & Friends (Shiba & Friends in Japan), and Chihuahua & Friends. It has been re-released twice, first as a bundled release with a special edition Nintendo DS with a new version ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1166062", "url": "https://en.wikipedia.org/wiki/O%281%29%20scheduler", "title": "O(1) scheduler", "text": "An O(1) scheduler (pronounced \"O of 1 scheduler\", \"Big O of 1 scheduler\", or \"constant time scheduler\") is a kernel scheduling design that can schedule processes within a constant amount of time, regardless of how many processes are running on the operating system. This is an improvement over previously used O(n) schedulers, which schedule processes in an amount of time that scales linearly based on the amounts of inputs.\n\nIn the realm of real-time operating systems, deterministic execution is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1177232", "url": "https://en.wikipedia.org/wiki/Trans-Lux", "title": "Trans-Lux", "text": "Trans-Lux is a company that specializes in designing, selling, leasing and maintaining multi-color, real-time data and LED large-screen electronic information displays, but is primarily known as a major supplier of national stock ticker display devices for stock exchanges. These indoor and outdoor displays are used worldwide in many industries including financial, banking, gaming, corporate, retail, healthcare, sports and transportation.\n\nEarly history\n\nThe company was created by Percy Norman ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1177509", "url": "https://en.wikipedia.org/wiki/ROAM", "title": "ROAM", "text": "Real-time optimally adapting mesh (ROAM) is a continuous level of detail algorithm that optimizes terrain meshes. On modern computers, sometimes it is more effective to send a small amount of unneeded polygons to the GPU, rather than burden the CPU with LOD (Level of Detail) calculations\u2014making algorithms like geomipmapping more effective than ROAM. This technique is used by graphics programmers\nin order to produce high quality displays while being able to maintain real-time frame rates. Algorit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1191343", "url": "https://en.wikipedia.org/wiki/Populous%3A%20The%20Beginning", "title": "Populous: The Beginning", "text": "Populous: The Beginning is a real-time strategy video game and the third entry in the Populous series, developed by Bullfrog Productions. The game was released in 1998 on Microsoft Windows, and in 1999 for the PlayStation. Unlike earlier games in the series, which cast the player in the role of a god influencing loyal followers, The Beginning took a radical departure and placed the player in the role of a shaman, who directly leads her tribe against opponents. Throughout the twenty-five missions", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1194251", "url": "https://en.wikipedia.org/wiki/Alan%20Burns%20%28professor%29", "title": "Alan Burns (professor)", "text": "Professor Alan Burns FREng FIET FBCS SMIEEE CEng is a professor in the Computer Science Department at the University of York, England. He has been at the University of York since 1990, and held the post of Head of Department from 1999 until 30 June 2006, when he was succeeded by John McDermid.\n\nHe is a member of the department's Real-Time Systems Research Group, and has authored or co-authored over 300 publications, with a large proportion of them concentrating on real-time systems and the Ada p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1194387", "url": "https://en.wikipedia.org/wiki/Battlezone%20II%3A%20Combat%20Commander", "title": "Battlezone II: Combat Commander", "text": "Battlezone II: Combat Commander is a hybrid tank shooter, first-person shooter and real-time strategy video game, developed by Pandemic Studios, and published by Activision in 1999-2000. It is the sequel to the 1998 game Battlezone, in which players pilot various futuristic vehicles across different planets, along with building and managing additional units and structures. The game's story focuses on a conflict during an alternative 1990s period, in which humanity explores space for resources on", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1195040", "url": "https://en.wikipedia.org/wiki/Mergers%20%26%20Acquisitions", "title": "Mergers & Acquisitions", "text": "Mergers & Acquisitions is a real-time B2B community, featuring a monthly magazine, daily enewsletter, conferences and member gatherings that provide news, commentary, data, analysis and community around the burgeoning middle market, providing analysis regarding private equity and cross-border mergers and acquisitions.\n\nMergers & Acquisitions was founded as Mergers & Acquisitions Journal in 1965. It was operated by several different companies prior to its current owner, Middle Market Information ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1200791", "url": "https://en.wikipedia.org/wiki/Myth%20II%3A%20Soulblighter", "title": "Myth II: Soulblighter", "text": "Myth II: Soulblighter is a 1998 real-time tactics video game developed by Bungie for Windows and Mac OS. Published by Bungie in North America and by GT Interactive Software in Europe, the game was also ported to Linux by Loki Entertainment. It is the second game in the Myth series, and a sequel to Myth: The Fallen Lords. In 1999, an expansion pack, Myth II: Chimera, was released. Developed by the Badlands mapmaking group, in association with Bungie, Chimera is set ten years after Soulblighter. O", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1202905", "url": "https://en.wikipedia.org/wiki/Endorphin%20%28disambiguation%29", "title": "Endorphin (disambiguation)", "text": "Endorphins are opioid neuropeptides in humans.\n\nEndorphin may also refer to:\n\nEndorphin (software), A dynamic real-time motion synthesis software from NaturalMotion\nEndorphin (Australian band), the Triple J Unearthed electronic act from Cairns, Australia\n Endorphin, a song by the musical metal band August Burns Red on their album Thrill Seeker \nEndorphins (song), a 2013 song by Sub Focus with vocals from Alex Clare\nAlternative spelling\nEndorphine (Thai band), Thai pop singing group from the GMM ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1206195", "url": "https://en.wikipedia.org/wiki/Force%20XXI", "title": "Force XXI", "text": "Force XXI or Force 21 may refer to:\nForce 21 (video game), a 1999 real-time strategy game made by Red Storm Entertainment\nForce XXI Battle Command Brigade and Below, a military communications project\nTransformation of the United States Army, at the start of the 21st century", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1206461", "url": "https://en.wikipedia.org/wiki/ChorusOS", "title": "ChorusOS", "text": "ChorusOS is a microkernel real-time operating system designed as a message passing computing model. ChorusOS began as the Chorus distributed real-time operating system research project at the French Institute for Research in Computer Science and Automation (INRIA) in 1979. During the 1980s, Chorus was one of two earliest microkernels (the other being Mach) and was developed commercially by startup company Chorus Syst\u00e8mes SA. Over time, development effort shifted away from distribution aspects to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1209130", "url": "https://en.wikipedia.org/wiki/RMX%20%28operating%20system%29", "title": "RMX (operating system)", "text": "iRMX is a real-time operating system designed specifically for use with the Intel 8080 and 8086 family of processors. It is an acronym for Real-time Multitasking eXecutive.\n\nOverview\nIntel developed iRMX in the 1970s and originally released RMX/80 in 1976 and RMX/86 in 1980 to support and create demand for their processors and Multibus system platforms.\n\nThe functional specification for RMX/86 was authored by Bruce Schafer and Miles Lewitt and was completed in the summer of 1978 soon after Intel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1216224", "url": "https://en.wikipedia.org/wiki/Quake%20engine", "title": "Quake engine", "text": "The Quake engine is the game engine developed by id Software to power their 1996 video game Quake. It featured true 3D real-time rendering and is now licensed under the terms of GNU General Public License v2.0 or later.\n\nAfter release, it immediately forked, as did the level design. Much of the engine remained in Quake II and Quake III Arena. The Quake engine, like the Doom engine, used binary space partitioning (BSP) to optimise the world rendering. The Quake engine also used Gouraud shading fo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1219251", "url": "https://en.wikipedia.org/wiki/Lightmap", "title": "Lightmap", "text": "A lightmap is a data structure used in lightmapping, a form of surface caching in which the brightness of surfaces in a virtual scene is pre-calculated and stored in texture maps for later use. Lightmaps are most commonly applied to static objects in applications that use real-time 3D computer graphics, such as video games, in order to provide lighting effects such as global illumination at a relatively low computational cost.\n\nHistory\n\nJohn Carmack's Quake was the first computer game to use lig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1220855", "url": "https://en.wikipedia.org/wiki/Tank%20%28video%20games%29", "title": "Tank (video games)", "text": "A tank or meat shield is a character class commonly seen in co-op video games such as real-time strategy games, role-playing games, fighting games, multiplayer online battle arenas and MUDs. \n\nTank characters deliberately attract enemy attention and attacks (potentially by using game mechanic that force them to be targeted) to act as a decoy for teammates. Since this requires them to endure concentrated enemy attacks, they typically rely on a high health pool or support by friendly healers to su", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1222615", "url": "https://en.wikipedia.org/wiki/Dallas%20Semiconductor", "title": "Dallas Semiconductor", "text": "Dallas Semiconductor, acquired by Maxim Integrated in 2002 for $2.5 billion, was a company that designed and manufactured analog, digital, and mixed-signal semiconductors (integrated circuits, or ICs). Its specialties included communications products (including T/E and Ethernet products), microcontrollers, battery management, thermal sensing and thermal management, non-volatile random-access memory, microprocessor supervisors, delay lines, silicon oscillators, digital potentiometers, real-time c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1225260", "url": "https://en.wikipedia.org/wiki/Star%20Wars%3A%20Force%20Commander", "title": "Star Wars: Force Commander", "text": "Star Wars: Force Commander is a real-time strategy video game released for the Microsoft Windows platform on March 17, 2000. It was co-developed by Ronin Entertainment and LucasArts, and published by LucasArts. Its plot interweaves between Star Wars: A New Hope and Return of the Jedi, taking place in key battles. Peter McConnell created remixed tracks of John Williams's original score with influences from hard rock and techno music.\n\nReception by critics was mixed. Critics cited poor controls as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1225291", "url": "https://en.wikipedia.org/wiki/Imperium%20Galactica", "title": "Imperium Galactica", "text": "Imperium Galactica is a 4X video game, developed by Digital Reality. The same company would later make its sequel, Imperium Galactica II, in 1999. Imperium Galactica was published and distributed by GT Interactive in 1997. The soundtrack is the work of Tam\u00e1s Kreiner. Nexus: The Jupiter Incident, developed by the Hungarian-based Mithis Entertainment, was originally planned and designed as Imperium Galactica 3 but in development renamed and refocussed to a real-time tactics game. The game was re-r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1236562", "url": "https://en.wikipedia.org/wiki/Vendetta%20Online", "title": "Vendetta Online", "text": "Vendetta Online is a twitch-based, science fiction massively multiplayer online role-playing game (MMORPG) developed by Guild Software for the operating systems Android, Linux, Mac OS X, iOS, and Microsoft Windows. It uses the NAOS game engine, a fully real-time flight model and combat system, to offer first-person/third-person shooter-style player versus player and player versus environment battle action against the backdrop of a massively multiplayer universe. Vendetta Online shipped as a comm", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1238639", "url": "https://en.wikipedia.org/wiki/David%20Rokeby", "title": "David Rokeby", "text": "David Rokeby (born November 14, 1960 in Tillsonburg, Ontario) is an artist who has been making works of electronic, video and installation art since 1982. He lives with his wife, acclaimed pianist Eve Egoyan, and daughter, Viva Egoyan-Rokeby, in Toronto, Canada.\n\nHis early work Very Nervous System (1982\u20131991) is acknowledged as a pioneering work of interactive art, translating physical gestures into real-time interactive sound environments. Very Nervous System was presented at the Venice Biennal", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1241000", "url": "https://en.wikipedia.org/wiki/Blue%20Stinger", "title": "Blue Stinger", "text": "is an action survival horror game released in 1999 for the Dreamcast game console, developed by Climax Graphics and originally published by Sega, with publishing rights outside of Japan obtained by Activision. The game was conceived by then-Climax CEO, Shinya Nishigaki.\n\nGameplay\nThe environments in Blue Stinger are entirely 3D. Players heal themselves in real-time using food and drinks bought from vending machines, forcing players to heal only when it was safe. Combat consists of purchasing wea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1245135", "url": "https://en.wikipedia.org/wiki/Argo%20%28oceanography%29", "title": "Argo (oceanography)", "text": "Argo is an international program that uses profiling floats to observe temperature, salinity, currents, and, recently, bio-optical properties in the Earth's oceans; it has been operational since the early 2000s. The real-time data it provides is used in climate and oceanographic research. A special research interest is to quantify the ocean heat content (OHC).\n\nThe Argo fleet consists of almost 4000 drifting \"Argo floats\" (as profiling floats used by the Argo program are often called) deployed w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1249415", "url": "https://en.wikipedia.org/wiki/Black%20%26%20White%202", "title": "Black & White 2", "text": "Black & White 2 is a video game developed by Lionhead Studios and published by Electronic Arts released in October 2005. It is the sequel to 2001's Black & White. A Mac OS X port was released in January 2009, and released for download via the Mac App Store in November 2014. The game blends real-time strategy and god game elements.\n\nGameplay\nThe player takes the role of a god called from the void (nothingness) to help the villagers who invoked them. The player must help develop their nature accor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1251492", "url": "https://en.wikipedia.org/wiki/Animated%20mapping", "title": "Animated mapping", "text": "Animated mapping is the application of animation, either a computer or video, to add a temporal component to a map displaying change in some dimension. Most commonly the change is shown over time, generally at a greatly changed scale (either much faster than real-time or much slower). An example would be the animation produced after the 2004 tsunami showing how the waves spread across the Indian Ocean.\n\nHistory\nThe concept of animated maps began in the 1930s but did not become more developed by ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1267921", "url": "https://en.wikipedia.org/wiki/Diversi-Dial", "title": "Diversi-Dial", "text": "Diversi-Dial, or DDial was an online chat server that was popular during the mid-1980s. It was a specialized type of bulletin board system that allowed all callers to send lines of text to each other in real-time, often operating at 300 baud. In some ways, it was a sociological forerunner to IRC, and was a cheap, local alternative to CompuServe chat, which was expensive and billed by the minute. At its peak, at least 35 major DDial systems existed across the United States, many of them in lar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1297158", "url": "https://en.wikipedia.org/wiki/Future%20Soldier", "title": "Future Soldier", "text": "Future Soldier was a multi-nation military project by the United States and its allies launched in the late 1990s.\n\nSet-up\nSuperiority to enemy ground forces will be achieved by equipping the average ground-based combat soldier with an integrated set of high-technology uniforms and equipment. These will be linked to an array of real-time and archived battlefield information resources. Soldiers will require not only enhanced versions of existing equipment (rifle, pistol, knife, helmet, armour, c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1300175", "url": "https://en.wikipedia.org/wiki/Jim%20Raynor", "title": "Jim Raynor", "text": "James Eugene Raynor is a fictional character and a major protagonist in Blizzard Entertainment's science fiction StarCraft series. Raynor is a predominant character in the science fiction real-time strategy video games StarCraft and Brood War, and is a player character in StarCraft II: Wings of Liberty. He also appears as a playable character in the crossover multiplayer online battle arena game Heroes of the Storm. Outside video games, Raynor appears in the novels Liberty's Crusade and Queen of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1301521", "url": "https://en.wikipedia.org/wiki/Earth%202140", "title": "Earth 2140", "text": "Earth 2140 is a 2D real-time strategy computer game created in 1997 by Polish-based Reality Pump Studios and published by TopWare Interactive (later acquired by Zuxxez Entertainment). Due to lack of publicity and marketing, the game was virtually unknown in the United States and Western Europe. It has two sequels, Earth 2150 and Earth 2160.\n\nPlot\nEarth 2140 takes place in the year 2140. Previous wars have left much of the Earth a nuclear wasteland, forcing most of the world's population into und", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1315996", "url": "https://en.wikipedia.org/wiki/Syndicate%20%281993%20video%20game%29", "title": "Syndicate (1993 video game)", "text": "Syndicate is an isometric real-time tactical and strategic game from Bullfrog Productions created in 1993, and released for a variety of platforms beginning with the PC and Commodore Amiga. It is the first title in the Syndicate series. Set in a dystopian future in which corporations have replaced governments, Syndicate puts the player in control of a corporation vying for global dominance.\n\nThe game consists of a series of missions, in which the player controls a team of cybernetically modified", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1322082", "url": "https://en.wikipedia.org/wiki/Arena%20Wars", "title": "Arena Wars", "text": "Arena Wars is an action and real-time strategy game released by Tri Synergy and Ascaron Entertainment in 2004.\n\nGameplay\nThe game is notable for combining strategy and shooter elements in gameplay. The limited unit choices (6) and specials (one for each unit) make the game extremely balanced. There are no resources needed to build units, as every player has exactly 1000 credits. Building units uses credits, but a player that loses a unit regains the money instantly and can rebuild it (or another", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1337597", "url": "https://en.wikipedia.org/wiki/Petroglyph%20Games", "title": "Petroglyph Games", "text": "Petroglyph Games, Inc. is an American video game developer based in Las Vegas. It was founded in 2003 by Joe Bostic, Michael Legg and Steve Tall, programmers formerly of Westwood Studios, after that company was closed down earlier that year.\n\nHistory \n\nPetroglyph was formed on April 1, 2003. On June 25, 2004, the company moved into their own building. On November 16, 2004, Petroglyph announced a project which they were working on, a new Star Wars real-time strategy (RTS) game called Star Wars: E", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1344453", "url": "https://en.wikipedia.org/wiki/Sudden%20Strike", "title": "Sudden Strike", "text": "Sudden Strike is a series of real-time tactics video games set during World War II. The series is developed by Fireglow based in Russia and published by CDV software of Germany and has been re-published by ZOOM-Platform.com. The player selects a faction (e.g. Soviets, Germans, or Allied forces) and gains control of many varied units such as infantry, tanks and artillery. The games focus primarily on tactics, eschewing traditional real-time strategy resource gathering and base development.\n\nGames", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1347682", "url": "https://en.wikipedia.org/wiki/Flight%20Unlimited%20II", "title": "Flight Unlimited II", "text": "Flight Unlimited II is a 1997 flight simulator video game developed by Looking Glass Studios and published by Eidos Interactive. The player controls one of five planes in the airspace of the San Francisco Bay Area, which is shared with up to 600 artificially intelligent aircraft directed by real-time air traffic control. The game eschews the aerobatics focus of its predecessor, Flight Unlimited, in favor of general civilian aviation. As such, new physics code and an engine were developed, the fo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1350138", "url": "https://en.wikipedia.org/wiki/Micro-Controller%20Operating%20Systems", "title": "Micro-Controller Operating Systems", "text": "Micro-Controller Operating Systems (MicroC/OS, stylized as \u03bcC/OS) is a real-time operating system (RTOS) designed by Jean J. Labrosse in 1991. It is a priority-based preemptive real-time kernel for microprocessors, written mostly in the programming language C. It is intended for use in embedded systems.\n\nMicroC/OS allows defining several functions in C, each of which can execute as an independent thread or task. Each task runs at a different priority, and runs as if it owns the central processin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1357045", "url": "https://en.wikipedia.org/wiki/Complex%20event%20processing", "title": "Complex event processing", "text": "Event processing is a method of tracking and analyzing (processing) streams of information (data) about things that happen (events), and deriving a conclusion from them. Complex event processing, or CEP, consists of a set of concepts and techniques developed in the early 1990s for processing real-time events and extracting information from event streams as they arrive. The goal of complex event processing is to identify meaningful events (such as opportunities or threats) in real-time situations", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1364232", "url": "https://en.wikipedia.org/wiki/Multi-Environment%20Real-Time", "title": "Multi-Environment Real-Time", "text": "Multi-Environment Real-Time (MERT), later renamed UNIX Real-Time (UNIX-RT), is a hybrid time-sharing and real-time operating system developed in the 1970s at Bell Labs for use in embedded minicomputers (especially PDP-11s). A version named Duplex Multi Environment Real Time (DMERT) was the operating system for the AT&T 3B20D telephone switching minicomputer, designed for high availability; DMERT was later renamed Unix RTR (Real-Time Reliable).\n\nA generalization of Bell Labs' time-sharing operati", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1370562", "url": "https://en.wikipedia.org/wiki/Integrity%20%28operating%20system%29", "title": "Integrity (operating system)", "text": "INTEGRITY and INTEGRITY-178B are real-time operating systems (RTOSes) produced and marketed by Green Hills Software.\n\nINTEGRITY\nINTEGRITY is POSIX-certified and intended for use in embedded systems of 32-bits or 64-bits. Supported computer architectures include variants of: ARM, Blackfin, ColdFire, MIPS, PowerPC, XScale, and x86. INTEGRITY is supported by popular SSL/TLS libraries such as wolfSSL.\n\nINTEGRITY-178B\nINTEGRITY-178B is the DO-178B\u2013compliant version of INTEGRITY. It is used in several", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1371957", "url": "https://en.wikipedia.org/wiki/RTS%20Index", "title": "RTS Index", "text": "The RTS Index \"Russia Trading System\" (abbreviated: RTSI, ) is a free-float capitalization-weighted index of 50 Russian stocks traded on the Moscow Exchange, calculated in US dollars. The list of stocks is reviewed every three months.\n\nThe RTS Index value is calculated in a real-time mode. The index was introduced on September 1, 1995 with a base value of 100. The RTSI peaked on 19 May 2008 at 2,498.10 points, and fell to 492.59 on 23 January 2009; on 29 December 2017 the RTS Index closed at 1,1", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1376474", "url": "https://en.wikipedia.org/wiki/Timing%20failure", "title": "Timing failure", "text": "Timing failure is a failure of a process, or part of a process, in a synchronous distributed system or real-time system to meet limits set on execution time, message delivery, clock drift rate, or clock skew.\n\nAsynchronous distributed systems cannot be said to have timing failures as guarantees are not provided for response times.\n\nDistributed computing problems\nReal-time computing", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1385230", "url": "https://en.wikipedia.org/wiki/Incremental%20search", "title": "Incremental search", "text": "In computing, incremental search, hot search, incremental find or real-time suggestions is a user interface interaction method to progressively search for and filter through text. As the user types text, one or more possible matches for the text are found and immediately presented to the user. This immediate feedback often allows the user to stop short of typing the entire word or phrase they were looking for. The user may also choose a closely related option from the presented list.\n\nThe method", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1398800", "url": "https://en.wikipedia.org/wiki/Stratagus", "title": "Stratagus", "text": "Stratagus is a free and open-source cross-platform game engine used to build real-time strategy video games. Licensed under the GNU GPL-2.0-only, it is written mostly in C++ with the configuration language being Lua.\n\nHistory\n\nOn June 15, 1998 Lutz Sammer released the first public version of a free Warcraft II clone for Linux he had written, named ALE Clone. In 1999 it was renamed to Freecraft. In June 2003, a cease and desist letter was received from Blizzard Entertainment, who thought the name", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1399012", "url": "https://en.wikipedia.org/wiki/FreqTweak", "title": "FreqTweak", "text": "FreqTweak is an open-source tool for real-time audio spectral manipulation and display. It is free software, available under the GNU General Public License. FreqTweak can (and is supposed to) be connected to other audio software using the JACK Audio Connection Kit.\n\nDescription \n\nFreqTweak is FFT-based, and supports up to four channels. An FFT analysis is applied to each audio channel, and every individual frequency band can have a different effect applied to it. In version 0.6.1 the following e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1405107", "url": "https://en.wikipedia.org/wiki/Jeff%20Wayne%27s%20The%20War%20of%20the%20Worlds%20%281998%20video%20game%29", "title": "Jeff Wayne's The War of the Worlds (1998 video game)", "text": "Jeff Wayne's The War of the Worlds is a real-time strategy video game developed by Rage Software Limited and released for Windows-based PCs in 1998. It is based on Jeff Wayne's Musical Version of The War of the Worlds \u2014 which is itself based on H. G. Wells' 1898 novel The War of the Worlds.\n\nIn 1999, another game of the same name was released for the Sony PlayStation. The 1999 game reuses the 1998 game's graphics and music, but features entirely different gameplay: it is a real-time strategy gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1408962", "url": "https://en.wikipedia.org/wiki/Act%20of%20War%3A%20Direct%20Action", "title": "Act of War: Direct Action", "text": "Act of War: Direct Action is a real-time strategy game developed by Eugen Systems and published by Atari. The game was released in March 2005 and features a detailed story written by Dale Brown, a retired captain of the US Air Force and a bestselling author. An expansion pack called Act of War: High Treason was released on March 2006 in Europe and Australia. The original game and expansion were later released as Act of War: Gold Edition, on 28 September 2007 in Europe. In September 2015 Eugen Sy", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1409254", "url": "https://en.wikipedia.org/wiki/Vegas%20Pro", "title": "Vegas Pro", "text": "Vegas Pro is a video editing software package for non-linear editing (NLE) originally published by Sonic Foundry, then by Sony Creative Software, and now by Magix. The software runs on the Windows operating system.\n\nOriginally developed as audio editing software, it eventually developed into an NLE for video and audio from version 2.0. Vegas features real-time multitrack video and audio editing on unlimited tracks, resolution-independent video sequencing, complex effects and compositing tools, 2", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1410870", "url": "https://en.wikipedia.org/wiki/Majorem", "title": "Majorem", "text": "Majorem is a games' studio creating online computer games and technology in the field of Massively Multiplayer Real-Time Strategy (MMORTS). \nMMORTS combines real-time strategy (RTS) with a large number of simultaneous players over the Internet. It is a type of massively multiplayer online game.\n\nMajorem was established in 2001 in Israel aiming to supply its MMORTS technology to other game studios. However, in the same year they turned into producing a game named Ballerium to demonstrate that tec", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1414181", "url": "https://en.wikipedia.org/wiki/Epos", "title": "Epos", "text": "Epos or EPOS may refer to:\n\nScience and technology\n Electronic point of sale, technology which enables an efficient recording of the sale of goods or services to the customer\n Embedded PowerPC Operating System, an IBM product\n OpenEPOS, in the comparison of real-time operating systems\n\nOrganisations\n Epos Ltd, a British loudspeaker manufacturer\n Epos (watch manufacturer)\n Emergency Physician Online Support, a group of physicians providing emergency medical services support\n EPOS Audio, based in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1434983", "url": "https://en.wikipedia.org/wiki/MoonEdit", "title": "MoonEdit", "text": "MoonEdit was a collaborative real-time text editor. It was released for Linux, Windows and FreeBSD. While the concept of real-time collaborative editing was famously demonstrated in 1968, MoonEdit was one of the first software products to fully implement it. \n\nThe software used code from Ken Silverman's BUILD game engine, and employed client-side prediction to reduce the effect of latency. Up to 14 participants could edit simultaneously, each having independent cursor positions updated in real t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1435073", "url": "https://en.wikipedia.org/wiki/Schneider%20Electric", "title": "Schneider Electric", "text": "Schneider Electric SE is a French multinational company providing energy and automation digital solutions for efficiency and sustainability. It addresses homes, buildings, data centers, infrastructure and industries, by combining energy technologies, real-time automation, software and services.\n\nSchneider Electric is a Fortune Global 500 company, publicly traded on the Euronext Exchange, and is a component of the Euro Stoxx 50 stock market index. In FY2020, the company posted revenues of \u20ac25.2 b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1451004", "url": "https://en.wikipedia.org/wiki/Dune%202000", "title": "Dune 2000", "text": "Dune 2000 is a real-time strategy video game, developed by Intelligent Games and released by Westwood Studios in 1998 for Microsoft Windows. It was later ported to the PlayStation in 1999. It is a partial remake of Dune II, which is loosely based on Frank Herbert's Dune universe. The story of the game is similar to Dune II, and is continued in Emperor: Battle for Dune. Although Dune 2000 was originally intended to be a remake of Dune II, the plotline differs completely and makes a reference to t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1453385", "url": "https://en.wikipedia.org/wiki/Physics%20engine", "title": "Physics engine", "text": "A physics engine is computer software that provides an approximate simulation of certain physical systems, such as rigid body dynamics (including collision detection), soft body dynamics, and fluid dynamics, of use in the domains of computer graphics, video games and film (CGI). Their main uses are in video games (typically as middleware), in which case the simulations are in real-time. The term is sometimes used more generally to describe any software system for simulating physical phenomena, s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1459138", "url": "https://en.wikipedia.org/wiki/1931%20Atlantic%20hurricane%20season", "title": "1931 Atlantic hurricane season", "text": "The 1931 Atlantic hurricane season included the deadliest hurricane in the history of Belize (then known as British Honduras). A total of 13\u00a0tropical storms were recorded during the season, which was the most since 1916. However, only three of them intensified into hurricanes and just one reached major hurricane intensity, which is Category 3 or higher on the modern-day Saffir\u2013Simpson scale. Nine of the tropical cyclones were identified in real-time, while evidence of the existence of four other", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1462108", "url": "https://en.wikipedia.org/wiki/Market%20depth", "title": "Market depth", "text": "In finance, market depth is a real-time list displaying the quantity to be sold versus unit price. The list is organized by price level and is reflective of real-time market activity. Mathematically, it is the size of an order needed to move the market price by a given amount. If the market is deep, a large order is needed to change the price.\n\nFactors influencing market depth\nTick size. This refers to the minimum price increment at which trades may be made on the market. The major stock marke", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1465366", "url": "https://en.wikipedia.org/wiki/Brawl%20%28game%29", "title": "Brawl (game)", "text": "Brawl is a real-time card game designed by James Ernest and released in 1999 by Cheapass Games.\n\nGameplay\nLike Spit or Icehouse, players in Brawl do not take turns, instead either making a move or staying inactive as best suits their strategy at that moment. The game is fast-paced (games typically last a minute or two) but still has a fairly high level of strategy.\n\nEach player has a different deck of cards. The object of the game is to win the most Base-cards by playing the most Hit-cards ont", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1465805", "url": "https://en.wikipedia.org/wiki/Sid%20Meier%27s%20Gettysburg%21", "title": "Sid Meier's Gettysburg!", "text": "Sid Meier's Gettysburg! is a 1997 real-time wargame developed by Firaxis Games and published by Electronic Arts. It was designed by Sid Meier, and followed by Sid Meier's Antietam! in 1999.\n\nGameplay\nThe game allows the player to control either the Confederate or Union troops during the Battle of Gettysburg in the American Civil War. It can be played as single scenarios, or as a campaign of linked scenarios, either recounting the original history or exploring alternative possibilities.\n\nOnline p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1484927", "url": "https://en.wikipedia.org/wiki/Office%20of%20Naval%20Intelligence", "title": "Office of Naval Intelligence", "text": "The Office of Naval Intelligence (ONI) is the military intelligence agency of the United States Navy. Established in 1882 primarily to advance the Navy's modernization efforts, it is the oldest member of the U.S. Intelligence Community and serves as the nation's premier source of maritime intelligence.\n\nSince the First World War, ONI's mission has broadened to include real-time reporting on the developments and activities of foreign navies; protecting maritime resources and interests; monitoring", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1488582", "url": "https://en.wikipedia.org/wiki/Warzone%202100", "title": "Warzone 2100", "text": "Warzone 2100 is an open-source real-time strategy and real-time tactics hybrid computer game, originally developed by Pumpkin Studios and published by Eidos Interactive. It was originally released in 1999 for Microsoft Windows and PlayStation, and is now also available for macOS, FreeBSD, AmigaOS 4, AROS, MorphOS, Linux, NetBSD and OpenBSD.\n\nWhile was developed and released as a proprietary commercial video game, on December 6, 2004, the source code and most of its data was released under the G", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1494648", "url": "https://en.wikipedia.org/wiki/Google%20Maps", "title": "Google Maps", "text": "Google Maps is a web mapping platform and consumer application offered by Google. It offers satellite imagery, aerial photography, street maps, 360\u00b0 interactive panoramic views of streets (Street View), real-time traffic conditions, and route planning for traveling by foot, car, bike, air (in beta) and public transportation. , Google Maps was being used by over 1 billion people every month around the world.\n\nGoogle Maps began as a C++ desktop program developed by brothers Lars and Jens Rasmussen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1495607", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20III", "title": "Age of Empires III", "text": "Age of Empires III is a real-time strategy video game developed by Microsoft Corporation's Ensemble Studios and published by Microsoft Game Studios. The Mac version was ported over and developed and published by Destineer's MacSoft. The PC version was released on October 18, 2005, in North America and November 4, 2005, in Europe, while the Mac version was released on November 21, 2006, in North America and September 29, 2006, in Europe. An N-Gage version of the game developed by Glu Mobile was r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1502084", "url": "https://en.wikipedia.org/wiki/OGRE", "title": "OGRE", "text": "Object-Oriented Graphics Rendering Engine (OGRE) is a scene-oriented, real-time, open-source, 3D rendering engine.\n\nOgre has been ported to Windows, macOS, Linux, PocketPC, Xbox, and PS3.\n\nNowadays, Ogre consists of two independently developed forks namely Ogre (also: Ogre1), which is based on the original 1.x codebase and Ogre-Next, which is based on the 2.x development efforts.\n\nGames and applications \n Hob\n Kenshi\n Rebel Galaxy\n Rebel Galaxy Outlaw\n Rigs of Rods\n Roblox (until 2014)\n Running ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1502369", "url": "https://en.wikipedia.org/wiki/Star%20Wars%3A%20Empire%20at%20War", "title": "Star Wars: Empire at War", "text": "Star Wars: Empire at War is a 2006 real-time strategy video game developed by Petroglyph Games and published by LucasArts. Set between Episode III and Episode IV, it focuses on the fledgling struggle between the Empire and the Rebels. It uses Petroglyph's game engine Alamo. In October 2006, an expansion titled Star Wars: Empire at War: Forces of Corruption was released. On May 31, 2014, online functionality, including network multiplayer and wireless chat, was discontinued after Glu Mobile's pur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1513195", "url": "https://en.wikipedia.org/wiki/Fast%20Kalman%20filter", "title": "Fast Kalman filter", "text": "The fast Kalman filter (FKF), devised by Antti Lange (born 1941), is an extension of the Helmert\u2013Wolf blocking (HWB) method from geodesy to safety-critical real-time applications of Kalman filtering (KF) such as GNSS navigation up to the centimeter-level of accuracy and \nsatellite imaging of the Earth including atmospheric tomography.\n\nMotivation \nKalman filters are an important filtering technique for building fault-tolerance into a wide range of systems, including real-time imaging.\nThe ordin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1513755", "url": "https://en.wikipedia.org/wiki/Multiuser%20DOS", "title": "Multiuser DOS", "text": "Multiuser DOS is a real-time multi-user multi-tasking operating system for IBM PC-compatible microcomputers.\n\nAn evolution of the older Concurrent CP/M-86, Concurrent DOS and Concurrent DOS 386 operating systems, it was originally developed by Digital Research and acquired and further developed by Novell in 1991. Its ancestry lies in the earlier Digital Research 8-bit operating systems CP/M and MP/M, and the 16-bit single-tasking CP/M-86 which evolved from CP/M.\n\nWhen Novell abandoned Multiuser ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1526944", "url": "https://en.wikipedia.org/wiki/Arterial%20line", "title": "Arterial line", "text": "An arterial line (also art-line or a-line) is a thin catheter inserted into an artery.\n\nUse \nArterial lines are most commonly used in intensive care medicine and anesthesia to monitor blood pressure directly and in real-time (rather than by intermittent and indirect measurement) and to obtain samples for arterial blood gas analysis. Arterial lines are generally not used to administer medication, since many injectable drugs may lead to serious tissue damage and even require amputation of the limb", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1529511", "url": "https://en.wikipedia.org/wiki/European%20VLBI%20Network", "title": "European VLBI Network", "text": "The European VLBI Network (EVN) is a network of radio telescopes located primarily in Europe and Asia, with additional antennas in South Africa and Puerto Rico, which performs very high angular resolution observations of cosmic radio sources using very-long-baseline interferometry (VLBI). The EVN is the most sensitive VLBI array in the world, and the only one capable of real-time observations. The Joint Institute for VLBI ERIC (JIVE) acts as the central organisation in the EVN, providing both sc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1546409", "url": "https://en.wikipedia.org/wiki/K240", "title": "K240", "text": "K240 is a real-time strategy video game published by Gremlin Graphics and released for the Amiga home computer in 1994. It is a sequel to the 1991 game Utopia: The Creation of a Nation.\n\nPlot\n\nBased in a sector of deep space called K240 in the year 2380, the game involves building space colonies on a cluster of asteroids and mining them for valuable ore, while fighting against several different races of hostile aliens with similar motives.\n\nReception\nThe game achieved a review score of 91% in CU", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1547323", "url": "https://en.wikipedia.org/wiki/Metal%20Marines", "title": "Metal Marines", "text": "Metal Marines is a real-time strategy video game developed by Namco for the Super Nintendo Entertainment System. It was ported to Microsoft Windows PCs by Mindscape. It was later released in Japan under the title of Militia. The Super NES version was re-released on the Virtual Console in Japan on July 10, 2007 for the Wii and on March 4, 2015 for the Wii U, and in North America on October 15, 2007 for the Wii.\n\nThe game is set in the year 2117, two years after a cataclysmic Antimatter War. The p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1551497", "url": "https://en.wikipedia.org/wiki/Pyro%20Studios", "title": "Pyro Studios", "text": "Pyro Mobile was a video game developer based in Madrid, Spain, established in 2012 as a merger between Play Wireless and Pyro Studios and eventually ceasing operations in the second half of 2017. It is mostly known for its real-time tactics games series, Commandos.\n\nPyro Studios\nPyro Studios was founded in 1996 with the purpose of developing quality video games. The result of this commitment was the development of Commandos: Behind Enemy Lines, which was released in 1998 and became the decade's ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1561845", "url": "https://en.wikipedia.org/wiki/Musashi%3A%20Samurai%20Legend", "title": "Musashi: Samurai Legend", "text": "Musashi: Samurai Legend, known in Japan as , is a third-person action game developed by Square Enix in 2005 for PlayStation 2. Square Enix published the game in Japan and North America, while the game was released in PAL regions by Atari Europe.\n\nMuch like its predecessor, Brave Fencer Musashi, the game involves real-time combat in a 3D environment, and character designs by Tetsuya Nomura.\n\nGameplay\nMusashi is primarily an action game, in which the player controls Musashi and fights enemies with", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1562778", "url": "https://en.wikipedia.org/wiki/Ogre%20Battle%2064%3A%20Person%20of%20Lordly%20Caliber", "title": "Ogre Battle 64: Person of Lordly Caliber", "text": "Ogre Battle 64: Person of Lordly Caliber is a real-time tactical role-playing game developed by Quest Corporation and localized by Atlus USA for the Nintendo 64. Though conceptually similar to Ogre Battle: The March of the Black Queen, significant gameplay tweaks were implemented to change the game's overall flow. Ogre Battle 64 is the third game in the series, the first two being Ogre Battle: The March of the Black Queen, and Tactics Ogre: Let Us Cling Together. Gaidens have been released in Ja", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1564205", "url": "https://en.wikipedia.org/wiki/Real-time%20computer%20graphics", "title": "Real-time computer graphics", "text": "Real-time computer graphics or real-time rendering is the sub-field of computer graphics focused on producing and analyzing images in real time. The term can refer to anything from rendering an application's graphical user interface (GUI) to real-time image analysis, but is most often used in reference to interactive 3D computer graphics, typically using a graphics processing unit (GPU). One example of this concept is a video game that rapidly renders changing 3D environments to produce an illus", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1569045", "url": "https://en.wikipedia.org/wiki/Empires%3A%20Dawn%20of%20the%20Modern%20World", "title": "Empires: Dawn of the Modern World", "text": "Empires: Dawn of the Modern World is a 2003 real-time strategy video game developed by Stainless Steel Studios and published by Activision. Set in a world-historical period that extends from the Middle Ages to World War II, the game tasks players with guiding one of nine rival great civilizations to victory. Customer surveys from Stainless Steel's previous game, Empire Earth, were used as a starting point for Empires: these inspired the team to take a more minimalist design approach, and to incl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1585678", "url": "https://en.wikipedia.org/wiki/Strike%20%28video%20game%20series%29", "title": "Strike (video game series)", "text": "Strike is a series of video games created by Mike Posehn, John Patrick Manley and Tony Barnes released between 1991 and 1997 by Electronic Arts for a number of video game systems. The games are multi-directional shooters viewed from an overhead or top-down perspective. The first three games in the series were 2D and used isometric sprites to give the illusion of 3D depth since real-time 3D polygon rendering wasn't possible at the time. The series made the jump to real-time 3D graphics with the r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1586564", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Tiberian%20series", "title": "Command & Conquer: Tiberian series", "text": "The Tiberian series is a series of the Command & Conquer franchise of real-time strategy video games developed by Westwood Studios and Electronic Arts. The games of the Tiberian series compose the storyline of the original Command & Conquer universe. The 1996 Command & Conquer: Red Alert, made to be the prequel to the 1995 Command & Conquer, is the genesis of an alternate history in which games outside the Tiberian series are set. In Command & Conquer (also known as Tiberian Dawn), an anomalous", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1594342", "url": "https://en.wikipedia.org/wiki/Global%20Earth%20Observation%20System%20of%20Systems", "title": "Global Earth Observation System of Systems", "text": "The Global Earth Observation System of Systems (GEOSS) was built by the Group on Earth Observations (GEO) on the basis of a 10-Year Implementation Plan running from 2005 to 2015. GEOSS seeks to connect the producers of environmental data and decision-support tools with the end users of these products, with the aim of enhancing the relevance of Earth observations to global issues. GEOSS aims to produce a global public infrastructure that generates comprehensive, near-real-time environmental data,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1612535", "url": "https://en.wikipedia.org/wiki/Kane%20%28Command%20%26%20Conquer%29", "title": "Kane (Command & Conquer)", "text": "Kane is a fictional character in the alternate history universe of Westwood Studios' and Electronic Arts' Command & Conquer real-time strategy video games. A recurring antagonistic character in the Command & Conquer franchise with his first appearance in 1995's eponymous title, Kane has appeared in all main series Command & Conquer titles as the charismatic mastermind behind the secretive Brotherhood of Nod society, a quasi-religious terrorist organization.\n\nKane also appears in the 1996 game Co", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1619885", "url": "https://en.wikipedia.org/wiki/Marine%20Modeling%20and%20Analysis%20Branch", "title": "Marine Modeling and Analysis Branch", "text": "The United States Marine Modeling and Analysis Branch (MMAB) is part of the Environmental Modeling Center, which is responsible for the development of improved numerical weather and marine prediction modeling systems within NCEP/NWS. It provides analysis and real-time forecast guidance (1\u201316 days) on marine meteorological, oceanographic, and cryospheric parameters over the global oceans and coastal areas of the US.\n\nProducts include:\n\n Ocean Waves\n Sea ice\n Marine Meteorology\n Marine Win", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1621212", "url": "https://en.wikipedia.org/wiki/Fieldbus", "title": "Fieldbus", "text": "Fieldbus is the name of a family of industrial computer networks used for real-time distributed control. Fieldbus profiles are standardized by the \nInternational Electrotechnical Commission (IEC) as IEC 61784/61158.\n\nA complex automated industrial system is typically structured in hierarchical levels as a distributed control system (DCS). In this hierarchy the upper levels for production managements are linked to the direct control level of programmable logic controllers (PLC) via a non-time-cri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1623251", "url": "https://en.wikipedia.org/wiki/Interactive%20computing", "title": "Interactive computing", "text": "In computer science, interactive computing refers to software which accepts input from the user as it runs.\n\nInteractive software includes commonly used programs, such as word processors or spreadsheet applications. By comparison, non-interactive programs operate without user intervention; examples of these include compilers and batch processing applications that are pre-programmed to run independently.\n\nInteractive computing focuses on real-time interaction (\"dialog\") between the computer and t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1624878", "url": "https://en.wikipedia.org/wiki/Yu-Gi-Oh%21%20The%20Falsebound%20Kingdom", "title": "Yu-Gi-Oh! The Falsebound Kingdom", "text": "is the only GameCube game in the Yu-Gi-Oh! series.\n\nYu-Gi-Oh! The Falsebound Kingdom takes a different direction from the rest of the series, being more of a mix of real-time strategy and role-playing video game elements than the typical card battling games seen on other systems. The gameplay features a 3D battle stage including bonuses and improvements (such as fortresses, weapons, etc.)\n\nIt features most of the major characters from the anime and manga series as well as 177 monsters.\n\nPlot\nAt ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1654165", "url": "https://en.wikipedia.org/wiki/PocketStation", "title": "PocketStation", "text": "The PocketStation is a Memory Card peripheral by Sony Computer Entertainment for the PlayStation home video game console. Categorized by Sony as a combination of a Memory Card and a miniature personal digital assistant, the device features a monochrome liquid crystal display (LCD), infrared communication capability, a real-time clock, built-in flash memory, and sound capability. To use the device's memory card functionality, it must be connected to a PlayStation through a memory card slot. It wa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1655241", "url": "https://en.wikipedia.org/wiki/PRIMOS", "title": "PRIMOS", "text": "PRIMOS is a discontinued operating system developed during the 1970s by Prime Computer for its minicomputer systems. It rapidly gained popularity and by the mid-1980s was a serious contender as a mainline minicomputer operating system. \n\nWith the advent of PCs and the decline of the minicomputer industry, Prime was forced out of the market in the early 1990s, and by the end of 2010 the trademarks for both PRIME and PRIMOS no longer existed.\n\nPrime had also offered a customizable real-time OS cal", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1662121", "url": "https://en.wikipedia.org/wiki/Sports%20commentator", "title": "Sports commentator", "text": "In sports broadcasting, a sports commentator (also known as sports announcer, sportscaster, or play-by-play announcer) gives a real-time commentary of a game or event, usually during a live broadcast, traditionally delivered in the historical present tense. Radio was the first medium for sports broadcasts, and radio commentators must describe all aspects of the action to listeners who cannot see it for themselves. In the case of televised sports coverage, commentators are usually presented as a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1674969", "url": "https://en.wikipedia.org/wiki/Impossible%20Creatures", "title": "Impossible Creatures", "text": "Impossible Creatures is a steampunk real-time strategy game released in 2003 and developed by Relic Entertainment in conjunction with Microsoft Studios. Its unique feature is that the armies used are all created by the player. Inspired by the works of H. G. Wells, the armies consist of 9 creatures; each one is a combination of any two animals from a list of 76 (51 with no downloads). Many animals possess inherent abilities to add more strategic depth to the game. There is an extensive single-pla", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1683635", "url": "https://en.wikipedia.org/wiki/The%20New%20Tetris", "title": "The New Tetris", "text": "The New Tetris is a puzzle video game for the Nintendo 64. The game was developed by H2O Entertainment and published by Nintendo, based on the latter's popular Tetris series. The game was originally released on July 31, 1999, in North America.\n\nThe game is notable for showing scenic fly-bys of famous structures (for examples the Sphinx, the Pantheon, Saint Basil's Cathedral, a Mayan temple, and others) rendered in real-time. This is relatively difficult for the Nintendo 64 hardware to accomplish", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1695933", "url": "https://en.wikipedia.org/wiki/Phantom%20Dust", "title": "Phantom Dust", "text": "is a 2004 real-time strategy action video game developed and published by Microsoft Game Studios for the Xbox console. The game was released in Japan on September 23, 2004 and in North America on March 15, 2005, licensed for release in North America by Majesco Entertainment.\n\nPhantom Dust is an action/strategy game with elements of digital collectible card games. Taking place in a post-apocalyptic Earth, the unnamed player-character must interact with the few human outposts that remain, all who ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1704081", "url": "https://en.wikipedia.org/wiki/Low%20poly", "title": "Low poly", "text": "Low poly is a polygon mesh in 3D computer graphics that has a relatively small number of polygons. Low poly meshes occur in real-time applications (e.g. games) as contrast with high-poly meshes in animated movies and special effects of the same era. The term low poly is used in both a technical and a descriptive sense; the number of polygons in a mesh is an important factor to optimize for performance but can give an undesirable appearance to the resulting graphics.\n\nNecessity for low poly meshe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1706983", "url": "https://en.wikipedia.org/wiki/Ogre%20Battle", "title": "Ogre Battle", "text": ", sometimes referred to as , is a series of five tactical role-playing and real-time strategy video games developed by Quest Corporation and is currently owned by Square Enix through Square's acquisition of Quest. There are five original games in the series, and a remake.\n\nOverview\nThe first video game in the series, Ogre Battle: The March of the Black Queen, was released in 1993 for the Super Nintendo Entertainment System in Japan, and two years later in North America. The title was a real-time", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1716460", "url": "https://en.wikipedia.org/wiki/Frank%20King%20%28cartoonist%29", "title": "Frank King (cartoonist)", "text": "Frank Oscar King (April 9, 1883 \u2013 June 24, 1969) was an American cartoonist best known for his comic strip Gasoline Alley. In addition to innovations with color and page design, King introduced real-time continuity in comic strips by showing his characters aging over generations.\n\nBorn in Cashton, Wisconsin, King was the older of the two sons of mechanic John J. King and his wife Caroline. When Frank was four years old, he moved with his parents to 1710 Superior Avenue in Tomah, Wisconsin, where", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1725908", "url": "https://en.wikipedia.org/wiki/Acid%20trance", "title": "Acid trance", "text": "Acid trance is a genre of trance music that emerged in the early 1990s focusing on using the acid sound. The trademark sound of \"acid\" is produced with a Roland TB-303 by playing a sequenced melody while altering the instrument's filter cutoff frequency, resonance, envelope modulation, and accent controls. This real-time tone adjustment was not part of the instrument's original intended operation. Acid trance is the best known form of trance music in Belgium. The form was first showcased at the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1742661", "url": "https://en.wikipedia.org/wiki/Freedom%20Force%20vs%20the%203rd%20Reich", "title": "Freedom Force vs the 3rd Reich", "text": "Freedom Force vs the 3rd Reich is a fictional real-time tactical role-playing game developed and published by Irrational Games. The sequel to Freedom Force, the player guides a team of superheroes as they travel back in time and help overthrow Nazi Germany and its allies during World War II. In the game, players take control of a team of up to four characters and battle their way through completely destructible 3D maps in a series of missions based on classic superhero comics.\n\nPlot\nNuclear Wint", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1753855", "url": "https://en.wikipedia.org/wiki/Honda%20Avancier%20%28station%20wagon%29", "title": "Honda Avancier (station wagon)", "text": "The is a mid-size station wagon produced by the Japanese automobile manufacturer Honda. It is based on the sixth-generation Accord.\n\nOverview \n\nUpon its introduction in 1999, the Avancier was available with a 2.3-litre F23A VTEC four-cylinder engine producing mated to a 4-speed automatic transmission or a 3.0-litre J30A VTEC V6 engine producing mated to a 5-speed automatic transmission. It can be had with a front-wheel drive or the Honda's real-time four-wheel drive system. The V6-engined Ava", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1754624", "url": "https://en.wikipedia.org/wiki/Border%20Zone%20%28video%20game%29", "title": "Border Zone (video game)", "text": "Border Zone is an interactive fiction video game written by Marc Blank and published by Infocom in 1987. It was released for MS-DOS, Apple II, Commodore 64, Amiga, Atari ST, and Macintosh. Unlike most other purely text-based games, Border Zone incorporates real-time aspects of gameplay. It is also Infocom's thirtieth game. Its tagline is \"Action and international intrigue behind the Iron Curtain.\"\n\nPlot\nMirroring the real-world tension of the Cold War in the 1980s, Border Zone is set in and a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1758939", "url": "https://en.wikipedia.org/wiki/Computer-integrated%20manufacturing", "title": "Computer-integrated manufacturing", "text": "Computer-integrated manufacturing (CIM) is the manufacturing approach of using computers to control entire production process. This integration allows individual processes to exchange information with each part. Manufacturing can be faster and less error-prone by the integration of computers. Typically CIM relies on closed-loop control processes based on real-time input from sensors. It is also known as flexible design and manufacturing.\n\nOverview\n Computer-integrated manufacturing is used in au", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1767332", "url": "https://en.wikipedia.org/wiki/Barry%20Truax", "title": "Barry Truax", "text": "Barry Truax (born 1947) is a Canadian composer who specializes in real-time implementations of granular synthesis, often of sampled sounds, and soundscapes. He developed the first ever implementation of real-time granular synthesis, in 1986, the first to use a sample as the source of a granular composition in 1987's Wings of Nike, and was the first composer to explore the range between synchronic and asynchronic granular synthesis in 1986's Riverrun. The real-time technique emphasizes auditory s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1776033", "url": "https://en.wikipedia.org/wiki/List%20of%20word%20processors", "title": "List of word processors", "text": "The following is a list of notable word processors.\n\nFree and open-source software\nAbiWord\nApache OpenOffice Writer\nCalligra Words\nCollabora Online Writer - enterprise-ready edition of LibreOffice, included with Online, Mobile and Desktop apps\nEtherPad \u2013 real-time word processor\nGNU TeXmacs \u2013 document preparation system\nGroff\nJWPce \u2013 Japanese word processor, designed primarily for the English speaker who is reading or writing in Japanese\nKWord\nLibreOffice Writer\nLyX - TeX document processor\nOnly", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1794722", "url": "https://en.wikipedia.org/wiki/Age%20of%20Mythology", "title": "Age of Mythology", "text": "Age of Mythology (AoM) is a real-time strategy video game developed by Ensemble Studios and published by Microsoft Game Studios. It was released on October 30, 2002, in North America and a week later in Europe.\n\nA spin-off from the Age of Empires series, Age of Mythology takes some of its inspiration from mythology and legends of the Greeks, Egyptians, and Norse, rather than from actual historical events. Many gameplay elements are similar to the Age of Empires series. Its campaign follows an At", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1798512", "url": "https://en.wikipedia.org/wiki/SuperPower%202", "title": "SuperPower 2", "text": "SuperPower 2 is a real-time strategy wargame developed by Canadian based GolemLabs and published by DreamCatcher Interactive in 2004, following SuperPower. It was released between October 11 and November 19, 2004 in North America and Europe, respectively. On April 18, 2014, Nordic Games officially released SuperPower 2 on the Steam Store.\n\nPlayers may join a game as any of the 193 nations recognized by the United Nations at the time of its development. All standard games start in the year 2001,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1801805", "url": "https://en.wikipedia.org/wiki/Stronghold%20%282001%20video%20game%29", "title": "Stronghold (2001 video game)", "text": "Stronghold is a historical real-time strategy video game developed by Firefly Studios and published in 2001 by Take 2 Interactive and Gathering of Developers for Microsoft Windows and Mac OS X. The game focuses primarily on conquest and expansion through military pursuits but also has prominent economic and infrastructure development elements. There is both an economic and a military campaign to be played and both are discussed in the game manual. In the English version, the game takes place in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1814464", "url": "https://en.wikipedia.org/wiki/0%20A.D.%20%28video%20game%29", "title": "0 A.D. (video game)", "text": "0 A.D. is a free and open-source real-time strategy video game under development by Wildfire Games. It is a historical war and economy game focusing on the years between 500 BC and 1 BC, with the years between 1 AD and 500 AD planned to be developed in the future. The game is cross-platform, playable on Windows, macOS, Linux, FreeBSD, and OpenBSD. It is composed entirely of free software and free media, using the GNU GPLv2 (or later) license for the game engine source code, and the CC BY-SA lice", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1816632", "url": "https://en.wikipedia.org/wiki/Empire%20Earth%20II", "title": "Empire Earth II", "text": "Empire Earth II is a real-time strategy video game developed by Mad Doc Software and published by Vivendi Universal Games on April 26, 2005. It is a sequel to Empire Earth, which was developed by the now-defunct Stainless Steel Studios. The game features 15 epochs, 14 different civilizations and has three playable campaigns: a Korean, German, and American one, as well as several other playable scenarios. The game received a positive reaction, earning a 79% average rating on GameRankings.\n\nGamepl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1833004", "url": "https://en.wikipedia.org/wiki/Actions%20per%20minute", "title": "Actions per minute", "text": "Actions per minute, abbreviated to APM, is a term used in video games, particularly real-time strategy and fighting games which refers to the total number of actions that a player can perform in a minute. \nActions per minute are the number of actions (such as selecting units or issuing an order) completed within a minute of gameplay in real-time strategy games, most notably in StarCraft. High APM is often associated with skill, as it can indicate that a player both knows what to do in the game ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1844297", "url": "https://en.wikipedia.org/wiki/Video%20astronomy", "title": "Video astronomy", "text": "Video astronomy (aka - Camera Assisted Astronomy, aka electronically-assisted astronomy or \"EAA\") is a branch of astronomy for near real-time observing of relatively faint astronomical objects using very sensitive CCD or CMOS cameras. Unlike lucky imaging, video astronomy does not discard unwanted frames, and image corrections such as dark subtraction are often not applied, however, the gathered data may be retained and processed in more traditional ways.. Although the field has a long history r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1850284", "url": "https://en.wikipedia.org/wiki/OPC%20Data%20Access", "title": "OPC Data Access", "text": "The OPC Data Access Specification is the first of a group of specifications known as the OPC Classic Specifications.\n\nOPC Data Access is a group of client\u2013server standards that provides specifications for communicating real-time data from data acquisition devices such as PLCs to display and interface devices like Human\u2013Machine Interfaces (HMI), SCADA systems and also ERP/MES systems. The specifications focus on the continuous communication of data.\n\nThe OPC Data Access specification is also know", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1855744", "url": "https://en.wikipedia.org/wiki/Star%20Wars%3A%20Rebellion%20%28video%20game%29", "title": "Star Wars: Rebellion (video game)", "text": "Star Wars Rebellion (known as Star Wars Supremacy in the United Kingdom and Ireland) is a real-time strategy game released in 1998 by LucasArts and set in the fictional Star Wars expanded universe.\n\nGameplay\nAlthough an RTS in the wider sense of the term, Star Wars Rebellion belongs more to the genre of 4X games resembling Master of Orion. Elements of turn-based games are present, as the events of each in-game 'day' are processed at each day's end. The player commands the manufacturing of facili", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1861237", "url": "https://en.wikipedia.org/wiki/Dragon%20Force", "title": "Dragon Force", "text": "Dragon Force is a real-time strategy and tactics role-playing video game from Sega created for the Sega Saturn. It was created in Japan and translated for North American release by Working Designs in 1996, a translation that was also used by Sega in Europe under license from Working Designs. The game's main selling point was that battles involve up to 200 soldiers fighting on screen in real time, causing them to be often likened to the battle scenes in the then-recent film Braveheart.\n\nUpon its ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1872396", "url": "https://en.wikipedia.org/wiki/Rise%20of%20Nations%3A%20Rise%20of%20Legends", "title": "Rise of Nations: Rise of Legends", "text": "Rise of Nations: Rise of Legends is a science fantasy real-time strategy video game for Microsoft Windows, made by Big Huge Games, and published by Microsoft. It is a spin-off of the popular Rise of Nations, released in May 2003. However, rather than being a historical game, it is based in a fantasy world, where technology and magic co-exist. It was released on May 9, 2006 in North America and on various dates around May 26, 2006 in the rest of the world.\n\nGameplay\nRise of Legends retains most ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1878967", "url": "https://en.wikipedia.org/wiki/Summoner%20%28video%20game%29", "title": "Summoner (video game)", "text": "Summoner is an action role-playing game developed by Volition and published by THQ. It was released as a launch title for the PlayStation 2 in 2000, and was subsequently ported to Microsoft Windows and Mac OS the following year. In the game, the player plays the role of Joseph and can assemble a team of compatriots and summon powerful monsters. The game has a world map, involved storyline, and unique hybrid combat system involving real-time and turn-based mechanisms.\n\nA sequel, Summoner 2, was r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1880926", "url": "https://en.wikipedia.org/wiki/Utopia%20%28video%20game%29", "title": "Utopia (video game)", "text": "Utopia is a 1982 strategy video game by Don Daglow released for the Intellivision and Mattel Aquarius. It is often regarded as among the first city building games, and credited as \"arguably the earliest ancestor of the real-time strategy genre.\" In July 2010, the game was re-released on Microsoft's Game Room service for its Xbox 360 console and for Games for Windows Live.\n\nGameplay\n\nUtopia is a two-player game in which the two players each control one of the game's two islands. It lacks an AI op", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1880985", "url": "https://en.wikipedia.org/wiki/Backchannel", "title": "Backchannel", "text": "Backchannel is the practice of using networked computers to maintain a real-time online conversation alongside the primary group activity or live spoken remarks. The term was coined in the field of linguistics to describe listeners' behaviours during verbal communication. (See Backchannel (linguistics).)\n\nThe term \"backchannel\" generally refers to online conversation about the conference topic or speaker. Occasionally backchannel provides audience members a chance to fact-check the presentatio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1889529", "url": "https://en.wikipedia.org/wiki/Jordan%20Falcon", "title": "Jordan Falcon", "text": "The Jordan Falcon, a joint venture between the King Abdulla Design and Development Bureau and Jordan Aerospace Industries, is a compact tactical unmanned aerial vehicle (UAV) capable of performing a wide range of aerial robotic applications. It performs real-time day and night reconnaissance, remote sensing, surveillance and target acquisition up to a range of 50\u00a0km.\n\nThe Jordan Falcon is powered by a quiet 200cc two-stroke engine burning a conventional gas/oil mixture with fuel for a 4-hour fli", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1896160", "url": "https://en.wikipedia.org/wiki/Andy%20Wellings", "title": "Andy Wellings", "text": "Andy J. Wellings is a professor in the Computer Science department at the University of York in northern England. He works closely with Alan Burns on real-time systems, distributed, concurrent and real-time programming languages.\n\nAndy Wellings is a member of the team responsible for the creation of the Real-time specification for Java. He is also an Ada programming language expert.\n\nBooks \nWellings has written a number of books on programming, especially in Ada.\n\nReferences\n\nExternal links \n A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1909778", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Red%20Alert%202", "title": "Command & Conquer: Red Alert 2", "text": "Command & Conquer: Red Alert 2 is a real-time strategy video game which was released for Microsoft Windows on October 25, 2000 as the follow-up to Command & Conquer: Red Alert. Red Alert 2 picks up at the conclusion of the Allied campaign of the first game. Its expansion pack is Command & Conquer: Yuri's Revenge, released a year later in 2001. Red Alert 2 was principally developed by Westwood Pacific in collaboration with Westwood Studios.\n\nCommand and Conquer: Red Alert 2 contains two playable", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1912076", "url": "https://en.wikipedia.org/wiki/Polygonal%20modeling", "title": "Polygonal modeling", "text": "In 3D computer graphics, polygonal modeling is an approach for modeling objects by representing or approximating their surfaces using polygon meshes. Polygonal modeling is well suited to scanline rendering and is therefore the method of choice for real-time computer graphics. Alternate methods of representing 3D objects include NURBS surfaces, subdivision surfaces, and equation-based representations used in ray tracers.\n\nGeometric theory and polygons \nThe basic object used in mesh modeling is a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1913170", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Red%20Alert", "title": "Command & Conquer: Red Alert", "text": "Command & Conquer: Red Alert is a real-time strategy video game of the Command & Conquer franchise, produced by Westwood Studios and released by Virgin Interactive Entertainment in 1996. The second game to bear the Command & Conquer title, Red Alert is the prequel to the original Command & Conquer of 1995, and takes place in the alternate early history of Command & Conquer when Allied Forces battle an aggressive Soviet Union for control over the European mainland.\n\nIt was initially available for", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1913256", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Generals", "title": "Command & Conquer: Generals", "text": "Command & Conquer: Generals is a real-time strategy video game and the seventh installment in the Command & Conquer series. It was released for Microsoft Windows and Mac OS in 2003 and 2004. The Windows version of Generals was developed by EA Pacific and published by EA Games, the Mac OS X version was developed and published by Aspyr Media. The Mac OS X version was re-released by Aspyr for the Mac App Store on March 12, 2005. In the game, the player can choose from three different factions: the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1913727", "url": "https://en.wikipedia.org/wiki/Theocracy%20%28video%20game%29", "title": "Theocracy (video game)", "text": "Theocracy is a real-time strategy game for the PC developed by Philos Laboratories and published by Ubi Soft in 2000. The game takes place in Mexico and Central America in the 15th century. The player controls a tribe in this region, and has 100 years to prepare for a Spanish invasion by expanding their territory across the Central American map, by conquest, or by allying and trading with other tribes.\n\nStory\nIn Theocracy, the player is the leader of the Atlan tribe (a fictional tribe), who has ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1924219", "url": "https://en.wikipedia.org/wiki/Emperor%3A%20Battle%20for%20Dune", "title": "Emperor: Battle for Dune", "text": "Emperor: Battle for Dune is a Dune video game, released by Westwood Studios on June 12, 2001. It is based in Frank Herbert's science fiction Dune universe. It is the third real-time strategy game set in the Dune universe, following its predecessors, Dune II and Dune 2000. While Dune II was a totally distinct story to that of Dune, and Dune 2000 was a remake of Dune II, Emperor is a direct sequel to the previous games. In particular, it is a sequel to Dune 2000, carrying on from where it left off", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1932784", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires", "title": "Age of Empires", "text": "Age of Empires is a series of historical real-time strategy video games, originally developed by Ensemble Studios and published by Xbox Game Studios. The first game was Age of Empires, released in 1997. Nine total games within the series have been released so far as of 28 October 2021.\n\nAge of Empires focused on events in Europe, Africa and Asia, spanning from the Stone Age to the Iron Age; the expansion game explored the formation and expansion of the Roman Empire. The sequel, Age of Empires II", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1938385", "url": "https://en.wikipedia.org/wiki/Ravenscar%20profile", "title": "Ravenscar profile", "text": "The Ravenscar profile is a subset of the Ada tasking features designed for safety-critical hard real-time computing. It was defined by a separate technical report in Ada 95; it is now part of the Ada 2012 Standard. It has been named after the English village of Ravenscar, the location of the 8th International Real-Time Ada Workshop (IRTAW 8).\n\nRestrictions of the profile\n\nA Ravenscar Ada application uses the following compiler directive:\npragma Profile (Ravenscar);\nThis is the same as writing th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1938504", "url": "https://en.wikipedia.org/wiki/Ravenscar", "title": "Ravenscar", "text": "Ravenscar may refer to:\nRavenscar, North Yorkshire\nRavenscar railway station, in Ravenscar, North Yorkshire\n Ravenscar profile, a subset of the Ada programming language designed for safety-critical real-time computing\nRoger Comstock, Marquis of Ravenscar, a character in Neal Stephenson's The Baroque Cycle", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1938517", "url": "https://en.wikipedia.org/wiki/Neutron%20scanner", "title": "Neutron scanner", "text": "The neutron scanner technology is non-intrusive used to minimise the impact of security measures on rapid freight movement.\n\nThe main advantage of the Scanner over current and potential new scanners is its ability to accurately and rapidly analyse the composition, shape and density of an object - in real-time without unpacking freight containers.\n\nConventional X-ray scanners are good at detecting objects based on their density and shape - but not their composition.\n\nThe Scanner is unique in the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1950203", "url": "https://en.wikipedia.org/wiki/Elan%20Graphics", "title": "Elan Graphics", "text": "Elan Graphics is a computer graphics architecture for Silicon Graphics computer workstations. Elan Graphics was developed in 1991 and was available as a high-end graphics option on workstations released during the mid-1990s as part of the Express Graphics architectures family. Elan Graphics gives the workstation real-time 2D and 3D graphics rendering capability similar to that of even high-end PCs made over ten years after Elan's introduction, with the exception of texture mapping, which had to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1951473", "url": "https://en.wikipedia.org/wiki/Extreme%20Graphics", "title": "Extreme Graphics", "text": "Extreme Graphics is a computer graphics architecture for Silicon Graphics computer workstations. Extreme Graphics was developed in 1993 and was available as a high-end graphics option on workstations such as the Indigo2, released during the mid-1990s. Extreme Graphics gives the workstation real-time 2D and 3D graphics rendering capability similar to that of even high-end PCs made many years after Extreme's introduction, with the exception of texture rendering which is performed in software. Extr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1963417", "url": "https://en.wikipedia.org/wiki/Collaborative%20real-time%20editor", "title": "Collaborative real-time editor", "text": "A collaborative real-time editor is a type of collaborative software or web application which enables real-time collaborative editing, simultaneous editing, or live editing of the same digital document, computer file or cloud-stored data \u2013 such as an online spreadsheet, word processing document, database or presentation \u2013 at the same time by different users on different computers or mobile devices, with automatic and nearly instantaneous merging of their edits.\n\nReal-time editing performs automa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1971942", "url": "https://en.wikipedia.org/wiki/Data%20Distribution%20Service", "title": "Data Distribution Service", "text": "The Data Distribution Service (DDS) for real-time systems is an Object Management Group (OMG) machine-to-machine (sometimes called middleware or connectivity framework) standard that aims to enable dependable, high-performance, interoperable, real-time, scalable data exchanges using a publish\u2013subscribe pattern.\n\nDDS addresses the needs of applications like aerospace and defense, air-traffic control, autonomous vehicles, medical devices, robotics, power generation, simulation and testing, smart g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1972853", "url": "https://en.wikipedia.org/wiki/Nuke%20%28video%20games%29", "title": "Nuke (video games)", "text": "In many online video games (especially MMORPGs, MOBAs or real-time strategy games), the term nuke can describe a spell or skill that is capable of dealing a large amount of damage to its target, which is frequently a unit. Also in the context of video games, \"nuking\" may also describe the act of using a nuclear weapon while playing the game, such as the atomic bomb in Call of Duty games.\n\nThe term is notably dissimilar in different genres.\n\nIn an MMORPG, nuking may differ in meaning between diff", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1976821", "url": "https://en.wikipedia.org/wiki/Skype%20for%20Business%20Server", "title": "Skype for Business Server", "text": "Skype for Business Server (formerly Microsoft Office Communications Server and Microsoft Lync Server) is real-time communications server software that provides the infrastructure for enterprise instant messaging, presence, VoIP, ad hoc and structured conferences (audio, video and web conferencing) and PSTN connectivity through a third-party gateway or SIP trunk. These features are available within an organization, between organizations and with external users on the public internet or standard p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1982519", "url": "https://en.wikipedia.org/wiki/Weather%20Underground%20%28weather%20service%29", "title": "Weather Underground (weather service)", "text": "Weather Underground is a commercial weather service providing real-time weather information over the Internet. Weather Underground provides weather reports for most major cities around the world on its Web site, as well as local weather reports for newspapers and third-party sites. Its information comes from the National Weather Service (NWS), and over 250,000 personal weather stations (PWS). The site is available in many languages, and customers can access an ad-free version of the site with ad", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1983573", "url": "https://en.wikipedia.org/wiki/Nukernel", "title": "Nukernel", "text": "NuKernel is a microkernel which was developed at Apple Computer during the early 1990s. Written from scratch and designed using concepts from the operating system (OS) Mach 3.0, with extensive additions for soft real-time scheduling to improve multimedia performance, it was intended to be used as the basis for the OS Copland. Only one version was seen publicly, in the Copland alpha release. It proved to be very unstable. Development ended in 1996 with the cancellation of Copland.\n\nThe External R", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1984140", "url": "https://en.wikipedia.org/wiki/Call%20Admission%20Control", "title": "Call Admission Control", "text": "Call Admission Control (CAC) prevents oversubscription of VoIP networks. CAC is used in the call set-up phase and applies to real-time media traffic as opposed to data traffic. CAC mechanisms complement and are distinct from the capabilities of quality of service tools to protect voice traffic from the negative effects of other voice traffic and to keep excess voice traffic off the network. Since it averts voice traffic congestion, it is a preventive Congestion Control Procedure. It ensures t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1989803", "url": "https://en.wikipedia.org/wiki/Systems%20Applications%20Products%20audit", "title": "Systems Applications Products audit", "text": "Systems Applications Products audit is an audit of a computer system from SAP to check its security and data integrity. SAP is the acronym for Systems, Applications, Products. It is a system that provides users with a soft real-time business application. It contains a user interface and is considered very flexible. In an SAP audit the two main areas of concern are security and data integrity.\n\nOverview\nSystems, Applications, Products in data processing, or SAP, was originally introduced in the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1991826", "url": "https://en.wikipedia.org/wiki/Wiki%20%28disambiguation%29", "title": "Wiki (disambiguation)", "text": "A wiki (or wiki wiki) is a collaborative website.\n\nWiki or wiki wiki may also refer to the following:\n\nComputing and technology\n .wiki, a generic top-level domain overseen by ICANN\n PBworks (formerly PBwiki), a commercial real-time collaborative editing (RTCE) system \n Wiki software, software used to run a wiki website\n Wikimedia Foundation, a US non-profit charitable organization\n Wikimedia movement, or Wikimedia, the global community of contributors to Wikimedia Foundation projects\n Wikipedia,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "1994676", "url": "https://en.wikipedia.org/wiki/Gobby", "title": "Gobby", "text": "Gobby is a free software collaborative real-time editor available on Windows and Unix-like platforms. (It runs on Mac OS X using Apple's X11.app.) It was initially released in June 2005 by the 0x539 dev group (the hexadecimal value 0x539 is equal to 1337 in decimal).\nGobby uses GTK+ for its GUI widgets.\n\nDescription\nGobby features a client-server architecture which supports multiple documents in one session, document synchronisation on request, password protection and an IRC-like chat for commu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2016203", "url": "https://en.wikipedia.org/wiki/Jake%20in%20Progress", "title": "Jake in Progress", "text": "Jake in Progress is an American sitcom television series broadcast on ABC from March 13, 2005 to February 20, 2006. Created by Austin Winsberg, the show was originally conceived as a real-time comedy; the first season was to show the first date of Jake and a woman. This was dropped during development, and the show became more conventional and episodic. The first aired episode reflected the original plan, covering the first half-hour of a date.\n\nSynopsis\nThe main character is Jake (John Stamos)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2022760", "url": "https://en.wikipedia.org/wiki/Star%20Trek%3A%20Deep%20Space%20Nine%3A%20Dominion%20Wars", "title": "Star Trek: Deep Space Nine: Dominion Wars", "text": "Star Trek: Deep Space Nine: Dominion Wars is a 2001 space combat/real-time tactics video game for Microsoft Windows developed by Gizmo Games and published by Simon & Schuster. The game is based on the Star Trek TV show Star Trek: Deep Space Nine.\n\nGameplay\n\nSingle-player\n\nGameplay is a mix between real-time tactics and space combat simulation. The game allows simultaneous control of up to six different ships from any of the four main combatant powers in the Dominion War - the Federation, the Kli", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2031804", "url": "https://en.wikipedia.org/wiki/Lords%20of%20the%20Realm%20III", "title": "Lords of the Realm III", "text": "Lords of the Realm III (more commonly known as Lords 3) is a medieval themed real-time strategy computer game published in March 2004 by Sierra Entertainment, a subsidiary of Vivendi Universal Games. It is the third installment in the Lords of the Realm series, and the last game made by Impressions Games.\n\nGameplay\nAt the start of a game, the player must choose a noble by either selecting one of the default nobles or creating a new one. Nobles act as user accounts within the game, wherein comple", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2034034", "url": "https://en.wikipedia.org/wiki/Kessen", "title": "Kessen", "text": "is a real-time tactics video game produced by Koei and published by Electronic Arts. It was a launch game for the PlayStation 2 in Japan and North America. It was initially the only real-time wargame game available for the PlayStation 2.\n\nIt is a real-time tactics game set in feudal Japan, focusing upon a conflict between the eastern Tokugawa clan and western Toyotomi clan (with Ishida Mitsunari as the Toyotomi's guardian and protector) shogunates at the end of Sengoku Jidai. Tokugawa Ieyasu ser", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2036757", "url": "https://en.wikipedia.org/wiki/Knights%20and%20Merchants%3A%20The%20Shattered%20Kingdom", "title": "Knights and Merchants: The Shattered Kingdom", "text": "Knights and Merchants: The Shattered Kingdom is a medieval-time based real-time strategy (RTS) video game. It was developed by Joymania Entertainment (since changed to Joymania Development) and published by TopWare Interactive in 1998. The player takes the role of the captain of the palace guards and leads the soldiers and citizens to victory. An expansion pack was released in 2001, titled Knights and Merchants: The Peasants Rebellion.\n\nGameplay \nKnights and Merchants: The Shattered Kingdom has ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2042404", "url": "https://en.wikipedia.org/wiki/L3enc", "title": "L3enc", "text": "Fraunhofer l3enc was the first public software able to encode pulse-code modulation (PCM) .wav files to the MP3 format. The first public version was released on July 13, 1994. This commandline tool was shareware and limited to 112\u00a0kbit/s. It was available for MS-DOS, Linux, Solaris, SunOS, NeXTstep and IRIX. A licence that allowed full use (encoding up to 320\u00a0kbit/s) cost 350\u00a0Deutsche Mark, or about $250 (US).\n\nSince the release in September 1995 of Fraunhofer WinPlay3, the first real-time MP3 s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2052512", "url": "https://en.wikipedia.org/wiki/Knights%20of%20Honor%20%28video%20game%29", "title": "Knights of Honor (video game)", "text": "Knights of Honor is a real-time strategy (RTS) game developed by Bulgarian Black Sea Studios. It was published by Sunflowers Interactive in Europe in 2004 and Paradox Interactive in North America in 2005. The game takes place in Medieval Europe, spanning the early centuries of the second millennium in three historical time periods. The player can choose to play as one of over 100 playable kingdoms.\n\nIn 2019, a sequel titled Knights of Honor II: Sovereign is announced and the game is being devel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2053053", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%20%281995%20video%20game%29", "title": "Command & Conquer (1995 video game)", "text": "Command & Conquer (also known by the retronym Command & Conquer: Tiberian Dawn) is a 1995 real-time strategy video game developed by Westwood Studios and published by Virgin Interactive. Set in an alternate history, the game tells the story of a world war between two globalized factions: the Global Defense Initiative of the United Nations and a cult-like militant organization called the Brotherhood of Nod, led by the mysterious Kane. The groups compete for control of Tiberium, a mysterious subst", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2053056", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Tiberian%20Sun", "title": "Command & Conquer: Tiberian Sun", "text": "Command & Conquer: Tiberian Sun is a 1999 real-time strategy video game developed by Westwood Studios, published by Electronic Arts, and released exclusively for Microsoft Windows on August 27, 1999. The game is the sequel to the 1995 game Command & Conquer. It featured new semi-3D graphics, a more futuristic sci-fi setting, and new gameplay features such as vehicles capable of hovering or burrowing. The main story of the game focuses on a second war between the UN-backed Global Defense Initiati", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2056516", "url": "https://en.wikipedia.org/wiki/OpenCV", "title": "OpenCV", "text": "OpenCV (Open Source Computer Vision Library) is a library of programming functions mainly aimed at real-time computer vision. Originally developed by Intel, it was later supported by Willow Garage then Itseez (which was later acquired by Intel). The library is cross-platform and free for use under the open-source Apache 2 License. Starting with 2011, OpenCV features GPU acceleration for real-time operations.\n\nHistory\nOfficially launched in 1999 the OpenCV project was initially an Intel Research ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2075945", "url": "https://en.wikipedia.org/wiki/Golgotha%20%28video%20game%29", "title": "Golgotha (video game)", "text": "Golgotha is an unfinished video game that was being developed by Crack dot Com prior to shutting down in 1998. The game was to be a real-time strategy game, with elements from first-person shooter games. According to Dave Taylor, the game's name came from Shakespeare's King Lear tragedy, wherein Golgotha was a massive plain and a future battlefield.\n\nPlot \nThe game plays in the fictional future of the year 2048 AD, where a global nuclear disarmament and the coincidental murder of a beloved Ameri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2078995", "url": "https://en.wikipedia.org/wiki/TADIL-J", "title": "TADIL-J", "text": "TADIL-J refers to the system of standardized J-series messages which are known by NATO as Link 16. These are defined by U.S. military standard (MIL-STD) 6016. It is used by the U.S. Navy, U.S. Army, U.S. Marine Corps, U.S. Air Force, U.S. Coast Guard, the NSA, several NATO countries, and Japan as part of the Multi-Tactical Data Link Network, a Tactical Data Link.\n\nTADIL J was designed as an improved data link used to exchange near real-time (NRT) information. It is a communication, navigation,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2082269", "url": "https://en.wikipedia.org/wiki/Irregular%20Z-buffer", "title": "Irregular Z-buffer", "text": "The irregular Z-buffer is an algorithm designed to solve the visibility problem in real-time 3-d computer graphics. It is related to the classical Z-buffer in that it maintains a depth value for each image sample and uses these to determine which geometric elements of a scene are visible. The key difference, however, between the classical Z-buffer and the irregular Z-buffer is that the latter allows arbitrary placement of image samples in the image plane, whereas the former requires samples to b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2084197", "url": "https://en.wikipedia.org/wiki/Component-integrated%20ACE%20ORB", "title": "Component-integrated ACE ORB", "text": "The Component-Integrated ACE ORB (CIAO) is a CORBA component model (CCM) implementation built on top of TAO.\n\nCIAO is currently aiming to provide component-oriented paradigm to the distributed, real-time, embedded (DRE) system developers by abstracting DRE-critical systemic aspects, such as quality of service requirements, RT policies, as installable/configurable units supported by the component framework. Promoting these DRE-critical aspects as first-class metadata disentangles code for contro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2084272", "url": "https://en.wikipedia.org/wiki/TAO%20%28software%29", "title": "TAO (software)", "text": "The ACE ORB (TAO) is a freely available, open-source, and standards-compliant real-time C++ implementation of CORBA based upon the Adaptive Communication Environment (ACE).\n\nAvailability\n\nTAO can be downloaded from the Internet and freely used and redistributed without developer or run-time licensing costs. Commercial support, documentation, training, and consulting for TAO are available from multiple vendors. Many other third-party tools and services have also been integrated with TAO. Remedy I", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2093407", "url": "https://en.wikipedia.org/wiki/Business%20activity%20monitoring", "title": "Business activity monitoring", "text": "Business activity monitoring (BAM) is software that aids in monitoring of business activities, as those activities are implemented in computer systems.\n\nThe term was originally coined by analysts at Gartner, Inc. and refers to the aggregation, analysis, and presentation of real-time information about activities inside organizations and involving customers and partners. A business activity can either be a business process that is orchestrated by business process management (BPM) software, or a bu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2097755", "url": "https://en.wikipedia.org/wiki/Miller%20Puckette", "title": "Miller Puckette", "text": "Miller Smith Puckette (born 1959) is the associate director of the Center for Research in Computing and the Arts as well as a professor of music at the University of California, San Diego, where he has been since 1994.\nPuckette is known for authoring Max, a graphical development environment for music and multimedia synthesis, which he developed while working at IRCAM in the late 1980s. He is also the author of Pure Data (Pd), a real-time performing platform for audio, video and graphical program", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2124482", "url": "https://en.wikipedia.org/wiki/XMK", "title": "XMK", "text": "XMK may refer to:\n The ISO-639-3.5 code for the Ancient Macedonian language\n The eXtreme Minimal Kernel, a real-time operating system", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2125183", "url": "https://en.wikipedia.org/wiki/MicroKORG", "title": "MicroKORG", "text": "The microKORG is a MIDI-capable digital (virtual analog) synthesizer/vocoder from Korg featuring DSP analog modelling. The synthesizer is built in such a way that it is essentially a Korg MS-2000 with programmable step arpeggiator (MS-2000 has only six simple patterns), a less advanced vocoder (8 bands instead of 16 bands found on the MS-2000), lack of motion sequencing (MS-2000 had three motion sequences), lack of an XLR microphone input, and in a smaller case with fewer real-time control knobs", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2125485", "url": "https://en.wikipedia.org/wiki/Industrial%20Ethernet", "title": "Industrial Ethernet", "text": "Industrial Ethernet (IE) is the use of Ethernet in an industrial environment with protocols that provide determinism and real-time control. Protocols for industrial Ethernet include EtherCAT, EtherNet/IP, PROFINET, POWERLINK, SERCOS III, CC-Link IE, and Modbus TCP. Many industrial Ethernet protocols use a modified Media Access Control (MAC) layer to provide low latency and determinism. Some microcontrollers such as Sitara provide industrial Ethernet support.\n\nIndustrial Ethernet can also refer ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2128933", "url": "https://en.wikipedia.org/wiki/Earth%202160", "title": "Earth 2160", "text": "Earth 2160 is a real-time strategy video game, developed by Reality Pump Studios. A third entry in the Earth series, it is a direct sequel to Earth 2150. The release of the game was staggered, originally published in Russia, Germany, and Poland in June 2005, then released in the rest of Europe in September 2005 with North America receiving the latest release of the game November 2005. It was also released on Valve's Steam platform in April 2006, and later from Good Old Games in 2009. The game co", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2135319", "url": "https://en.wikipedia.org/wiki/ITRON%20project", "title": "ITRON project", "text": "The ITRON project is the first of several sub-architectures of the TRON project.\n\nOriginally undertaken in 1984, ITRON is a Japanese open standard for a real-time operating system (RTOS) initiated under the guidance of Ken Sakamura. This project aims to standardize the RTOS and related specifications for embedded systems, particularly small-scale embedded systems. The ITRON RTOS is targeted for consumer electronic devices, such as mobile phones and fax machines. Various vendors sell their own im", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2145860", "url": "https://en.wikipedia.org/wiki/Lords%20of%20EverQuest", "title": "Lords of EverQuest", "text": "Lords of EverQuest is a 3D fantasy real-time strategy game released in December 2003. It was developed by the short-lived startup company Rapid Eye Entertainment and published by Sony Online Entertainment (SOE). SOE distributes Lords of EverQuest.\n\nUnlike the original EverQuest, Lords of EverQuest is fundamentally a single player game, and after the initial payment for the software, does not require a recurring monthly fee in order to play.\n\nReception\n\nThe game received \"mixed\" reviews accordin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2152217", "url": "https://en.wikipedia.org/wiki/FreeRTOS", "title": "FreeRTOS", "text": "FreeRTOS is a real-time operating system kernel for embedded devices that has been ported to 35 microcontroller platforms. It is distributed under the MIT License.\n\nHistory \nThe FreeRTOS kernel was originally developed by Richard Barry around 2003, and was later developed and maintained by Barry's company, Real Time Engineers Ltd. In 2017, the firm passed stewardship of the FreeRTOS project to Amazon Web Services (AWS). Barry continues to work on FreeRTOS as part of an AWS team.\n\nImplementation\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2182616", "url": "https://en.wikipedia.org/wiki/GC2", "title": "GC2", "text": "GC2, GC-II, or variant may refer to:\n\n Autopista GC-2, a highway in Gran Canaria\n NGC 7, a.k.a. GC 2, a spiral galaxy in Sculptor Constellation\n Second Geneva Convention, a.k.a. GCII, one of the Geneva Conventions\n Groupe de Chasse II (GC II), a fighter group of the French Air Force, see Groupe de Chasse\n Galactic Civilizations II: Dread Lords, a turn-based strategy game\n Ground Control II: Operation Exodus, a real-time tactics game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2190017", "url": "https://en.wikipedia.org/wiki/SAP%20R/2", "title": "SAP R/2", "text": "SAP R/2 is an older version of real-time enterprise resource planning (ERP) software produced by the German company SAP AG, that was replaced by SAP R/3.\n\nSAP R/2 launched in 1979 and followed the company's first product, a materials management module called RM/1, which was launched in 1975 and became part of R/1. What was unique about R/2 was that it was a packaged software application that processed real-time on a mainframe computer taking advantage of Time Sharing Option and integrated all of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2195626", "url": "https://en.wikipedia.org/wiki/Battalion%20Wars", "title": "Battalion Wars", "text": "Battalion Wars, released as in Japan, is a real-time tactics game developed by Kuju Entertainment, and released by Nintendo for the GameCube in 2005. It is a spin-off of the Advance Wars series. The player controls a vast array of units ranging from infantry, armoured divisions and aircraft, completing missions through a mixture of unit management and strategic planning. In the game's story, the player operates as a commander of a battalion, who initially take part in a conflict between two nat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2203643", "url": "https://en.wikipedia.org/wiki/Henry%20Baker%20%28computer%20scientist%29", "title": "Henry Baker (computer scientist)", "text": "Henry Givens Baker Jr. is an American computer scientist who has made contributions in garbage collection, functional programming languages, and linear logic. He was also one of the founders of Symbolics, a company that designed and manufactured a line of Lisp machines. In 2006 he was recognized as a Distinguished Scientist by the Association for Computing Machinery.\n\nHe is notable for his research in garbage collection, particularly Baker's real-time copying collector, and on the Actor model.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2209184", "url": "https://en.wikipedia.org/wiki/F%C3%89LIN", "title": "F\u00c9LIN", "text": "F\u00c9LIN (Fantassin \u00e0 \u00c9quipement et Liaisons Int\u00e9gr\u00e9s, Integrated Infantryman Equipment and Communications) is the name for the French infantry combat system developed by Safran Electronics & Defense.\n\nIt combines a modified FAMAS rifle with a host of other electronics, clothing, pouches, and body armour. The helmet is an integral SPECTRA helmet fitted with real-time positioning and information system, and with light amplifiers for night vision.\nPower sources will be made of two rechargeable Li-io", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2216536", "url": "https://en.wikipedia.org/wiki/Labyrinth%3A%20The%20Computer%20Game", "title": "Labyrinth: The Computer Game", "text": "Labyrinth: The Computer Game is a 1986 graphic adventure game developed by Lucasfilm Games and published by Activision. Based on the fantasy film Labyrinth, it tasks the player with navigating a maze while solving puzzles and evading dangers. The player's goal is to find and defeat the main antagonist, Jareth, within 13 real-time hours. Unlike other adventure games of the period, Labyrinth does not feature a command-line interface. Instead, the player uses two scrolling \"word wheel\" menus on the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2231961", "url": "https://en.wikipedia.org/wiki/Enlight%20Software", "title": "Enlight Software", "text": "Enlight Software is a developer and publisher of video games. The company was founded by Trevor Chan in 1993, and their first project was the economic strategy game Capitalism, which was published by Interactive Magic in 1995. In 1997, they released Capitalism Plus (an updated version of Capitalism) and the real-time strategy game Seven Kingdoms. Later games include Virtual U, Capitalism II, Wars and Warriors: Joan of Arc, Seven Kingdoms II, Hotel Giant, Restaurant Empire, Zoo Empire, Marine Par", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2235851", "url": "https://en.wikipedia.org/wiki/CHAPS", "title": "CHAPS", "text": "The Clearing House Automated Payment System (CHAPS) is real-time gross settlement payment system used for sterling transactions in the United Kingdom.\n\nCHAPS was originally established in London by the Bankers Clearing House in February 1984, transferring to the CHAPS and Town Clearing Company Limited in December 1985. This company also operated the 'town clearing', where cheques cleared the same day between the 'town' bank branches in central London. Town clearing had been the forerunner of the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2239462", "url": "https://en.wikipedia.org/wiki/Carrier%20Command", "title": "Carrier Command", "text": "Carrier Command is a 1988 video game published by Rainbird for the Amiga, Atari ST, IBM PC compatibles, ZX Spectrum, Macintosh, Commodore 64, and Amstrad CPC. Carrier Command is a cross between a vehicle simulation game and a real-time strategy game where players control a robotic aircraft carrier.\n\nPlot\n\nThe game is set in the near future, where a team of scientists have developed two robotic aircraft carriers to colonise an archipelago of sixty four islands. Unfortunately, the more advanced ca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2239721", "url": "https://en.wikipedia.org/wiki/Dune%20II", "title": "Dune II", "text": "Dune II: The Building of a Dynasty (titled Dune II: Battle for Arrakis in Europe and Dune: The Battle for Arrakis for the North American Mega Drive/Genesis port respectively) is a real-time strategy Dune video game developed by Westwood Studios and released by Virgin Games in December 1992. It is based upon David Lynch's 1984 movie Dune, an adaptation of Frank Herbert's science fiction novel of the same name.\n\nWhile not the first real-time strategy (RTS) video game, Dune II established the forma", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2239953", "url": "https://en.wikipedia.org/wiki/UMTS%20Terrestrial%20Radio%20Access%20Network", "title": "UMTS Terrestrial Radio Access Network", "text": "UTRAN (short for \"'UMTS Terrestrial Radio Access Network\") is a collective term for the network and equipment that connects mobile handsets to the public telephone network or the Internet. It contains the base stations, which are called Node B's and Radio Network Controllers (RNCs) which make up the UMTS radio access network. This communications network, commonly referred to as 3G (for 3rd Generation Wireless Mobile Communication Technology), can carry many traffic types from real-time Circuit ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2245552", "url": "https://en.wikipedia.org/wiki/Jan%20Kleyna", "title": "Jan Kleyna", "text": "Jan T. Kleyna is a postdoctoral astronomy researcher at the University of Hawai'i Institute for Astronomy. His area of interest is galaxy dynamics, and he has worked to develop codes for the real-time detection of moving objects such as Jovian satellites. He has also co-discovered several of Saturn's moons.\n\nReferences\n\n21st-century British astronomers\nLiving people\nYear of birth missing (living people)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2246590", "url": "https://en.wikipedia.org/wiki/Specification%20and%20Description%20Language", "title": "Specification and Description Language", "text": "Specification and Description Language (SDL) is a specification language targeted at the unambiguous specification and description of the behaviour of reactive and distributed systems.\n\nOverview \nThe ITU-T has defined SDL in Recommendations Z.100 to Z.106. SDL originally focused on telecommunication systems; its current areas of application include process control and real-time applications in general. Due to its nature it can be used to represent simulation systems without ambiguity and with ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2248986", "url": "https://en.wikipedia.org/wiki/Trash%20%28video%20game%29", "title": "Trash (video game)", "text": "Trash is a real-time strategy computer game developed by Inhuman Games for the Microsoft Windows operating systems. It was released on September 20, 2005.\n\nStoryline\nThe game takes place in a post-apocalyptic future where, after the great nuclear war of 2015, peace treaties were signed, nuclear weapons were destroyed, and civilization was slowly rebuilt. However, 8 years after treaties were signed, a fleet of alien ships appeared outside Earth's atmosphere. Several super weapons were fired from", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2252734", "url": "https://en.wikipedia.org/wiki/War%20Wind", "title": "War Wind", "text": "War Wind is a science fantasy real-time strategy game developed by DreamForge Intertainment and published by Strategic Simulations, Inc. (SSI). It was released in 1996 for Microsoft Windows and used DirectX 2.0. The game features four unique playable alien races on the fictional planet of Yavaun, each with their own histories, ideologies, and story campaigns consisting of seven scenarios each and an ending unique to that race. The story explores themes of authoritarianism, slavery, revolution, a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2255337", "url": "https://en.wikipedia.org/wiki/Action%20role-playing%20game", "title": "Action role-playing game", "text": "An action role-playing game (often abbreviated action RPG or ARPG) is a subgenre of video games that combines core elements from both the action game and role-playing genre.\n\nDefinition \nThe games emphasize real-time combat where the player has direct control over the characters as opposed to turn or menu-based combat while still having a focus on character's Stats in order to determine relative strength and abilities. These games often use action game combat systems similar to hack and slash or", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2261397", "url": "https://en.wikipedia.org/wiki/Xpress%20Pro", "title": "Xpress Pro", "text": "Avid Xpress Pro was a non-linear video editing software aimed at professionals in the TV and movie industry. It was available for Microsoft Windows PCs and Apple Macintosh computers.\n\nXpress Pro included many of the high-end editing features offered by other Avid editing systems and was closely based on Avid's Media Composer systems. In conjunction with the Avid Mojo hardware, it provided real-time uncompressed video editing at a professional level. Xpress Pro was capable of sharing media files", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2261555", "url": "https://en.wikipedia.org/wiki/Society%20%28video%20game%29", "title": "Society (video game)", "text": "Society is a massively multiplayer online real-time strategy game in development by Stardock. It is to be initially released on their online distribution service, Impulse for free. First announced in 2005, development progress was slow in the coming years, and by February 2009, the game's development was placed on-hold in favor of wrapping up another of the company's games, Elemental: War of Magic. Upon its release in August 2010, development was restarted in January 2011, though the company has", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2263878", "url": "https://en.wikipedia.org/wiki/Desperados%3A%20Wanted%20Dead%20or%20Alive", "title": "Desperados: Wanted Dead or Alive", "text": "Desperados: Wanted Dead or Alive is a real-time tactics video game developed by Spellbound Entertainment and published by Infogrames for Microsoft Windows.\n\nIn the game, the player controls up to six characters in a wild west setting. The protagonist is a worldly knife-fighter and gunslinger, John Cooper. He takes on a bounty to capture a notorious train-robber named \"El Diablo\". As Cooper sets off on his quest, he is aided by five other friends and they work together in a real-time, stealth-bas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2270423", "url": "https://en.wikipedia.org/wiki/Inhuman%20Games", "title": "Inhuman Games", "text": "Inhuman Games is a game development firm known for its development of the real-time strategy game, Trash. Company co-founder and lead developer Mark Currie was previously known for creating the DOS game Chopper Commando. The firm is based in Redmond, Washington.\n\nExternal links \nOfficial Inhuman Games website\n\nVideo game companies of the United States\nCompanies based in Redmond, Washington", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2284578", "url": "https://en.wikipedia.org/wiki/The%20Call%20%28American%20TV%20program%29", "title": "The Call (American TV program)", "text": "The Call is an American television business news program which on CNBC between 11AM to 12 noon ET weekdays from August 2007 to October 2011. Previous programs shown in the same time slot were The Money Wheel with Ted David and Martha MacCallum and Market Watch and Morning Call. The Call offered a clear focus on real-time market coverage at the heart of the trading day.\n\nAbout the program\nUntil July 19, 2007, CNBC aired Morning Call from 10AM to 12 noon ET weekdays. The next day, CNBC replaced th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2285973", "url": "https://en.wikipedia.org/wiki/Real-Time%20Multiprogramming%20Operating%20System", "title": "Real-Time Multiprogramming Operating System", "text": "Real-Time Multiprogramming Operating System (RTMOS) was a 24-bit process control operating system developed in the 1960s by General Electric that supported both real-time computing and multiprogramming. Programming was done in assembly language or Process FORTRAN. The two languages could be used in the same program, allowing programmers to alternate between the two as desired.\n\nMultiprogramming operating systems are now considered obsolete, having been replaced by multitasking.\n\nReferences\n\nGen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2294250", "url": "https://en.wikipedia.org/wiki/Chaos%20Island%3A%20The%20Lost%20World", "title": "Chaos Island: The Lost World", "text": "Chaos Island: The Lost World (also known as Chaos Island and Chaos Island: The Lost World: Jurassic Park) is a real-time strategy video game for the PC, developed and published by DreamWorks Interactive, and based on the 1997 film The Lost World: Jurassic Park. Chaos Island was released in North America on October 30, 1997. In Chaos Island, the player controls characters displayed on a map, directing where they move with the mouse and giving them commands either with the mouse or from a menu.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2295738", "url": "https://en.wikipedia.org/wiki/Axis%20%26%20Allies%20%282004%20video%20game%29", "title": "Axis & Allies (2004 video game)", "text": "Axis & Allies is a real-time strategy World War II video game developed by TimeGate Studios and published by Atari for Microsoft Windows. The game was released on November 2, 2004. It is based on the board game series Axis & Allies from Milton Bradley and also on TimeGate's Kohan series. Set in the years after Japan and the United States entered into the war, the game allows the player to act as a World War II commander to build military forces to fight against other generals, using military uni", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2309424", "url": "https://en.wikipedia.org/wiki/Ground%20Control%20II%3A%20Operation%20Exodus", "title": "Ground Control II: Operation Exodus", "text": "Ground Control II: Operation Exodus is a 2004 real-time tactics video game developed by Massive Entertainment. It is a sequel to Ground Control, the award-winning game of the same genre. Much like its predecessor, it features 3D graphics and a fully rotational camera system.\n\nGameplay \nSimilar to the first Ground Control, Operation Exodus focuses on combat tactics rather than base construction or managing an economy. However, unlike its purely real-time tactics predecessor, Ground Control II has", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2318697", "url": "https://en.wikipedia.org/wiki/Indeo", "title": "Indeo", "text": "Indeo Video (commonly known now simply as \"Indeo\") is a family of audio and video formats and codecs first released in 1992, and designed for real-time video playback on desktop CPUs. While its original version was related to Intel's DVI video stream format, a hardware-only codec for the compression of television-quality video onto compact discs, Indeo was distinguished by being one of the first codecs allowing full-speed video playback without using hardware acceleration. Also unlike Cinepak a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2318758", "url": "https://en.wikipedia.org/wiki/Sacrifice%20%28video%20game%29", "title": "Sacrifice (video game)", "text": "Sacrifice is a real-time strategy video game published by Interplay Entertainment in 2000 for Microsoft Windows platform. Developed by Shiny Entertainment, the game features elements of action and other genres. Players control wizards who fight each other with spells and summoned creatures. The game was ported to Mac OS 9.2 in 2001.\n\nUnlike many of its contemporary real-time strategy games, Sacrifice places little emphasis on resource gathering and management. There is no system of workers; the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2327897", "url": "https://en.wikipedia.org/wiki/Eugen%20Systems", "title": "Eugen Systems", "text": "Eugen Systems is a French video game developer based in Paris, France. It was founded in January 2000 by Alexis Le Dressay, a DPLG architect, and Cedric Le Dressay, a software engineer. The company currently focuses on developing real-time strategy games for the PC and Macintosh platforms, but also has developed games for the PlayStation 3 and Xbox 360 in the past.\n\nList of video games\n\n2018 Labour Strike\nOn February 14, 2018, a statement was released through Le Syndicat des Travailleurs et Trav", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2331674", "url": "https://en.wikipedia.org/wiki/Dungeons%20%26%20Dragons%3A%20Dragonshard", "title": "Dungeons & Dragons: Dragonshard", "text": "Dungeons & Dragons: Dragonshard is a real-time strategy role-playing video game, developed for Microsoft Windows by Liquid Entertainment, and published by Atari in 2005. It takes place in Eberron, one of the official Dungeons & Dragons campaign settings. The game combines elements of traditional real-time strategy gameplay with role-playing elements such as hero units, and questing. Dragonshard includes two single-player campaigns, single-player skirmish maps, and multiplayer support. The single", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2339988", "url": "https://en.wikipedia.org/wiki/Dominion%3A%20Storm%20Over%20Gift%203", "title": "Dominion: Storm Over Gift 3", "text": "Dominion: Storm Over Gift 3 is a military science fiction real-time strategy video game developed by Ion Storm, published by Eidos Interactive, and released for Microsoft Windows in 1998. The game was originally developed as a spin-off of the mech simulation game G-Nome by 7th Level. Ion Storm acquired both Dominion and its lead designer, Todd Porter, from 7th Level for completion.\n\nProduction\nDominion was first made by Todd Porter and Jerry O'Flaherty's company Distant Thunder, that was sold to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2342946", "url": "https://en.wikipedia.org/wiki/Hillsfar", "title": "Hillsfar", "text": "Hillsfar is a role-playing video game released for DOS, Amiga, Atari ST, Commodore 64 in 1989. It was developed by Westwood Associates and published by Strategic Simulations, Inc. (SSI). It features a combination of real-time action and randomly generated quests. It also includes standard gameplay elements of the Advanced Dungeons & Dragons fantasy role-playing game, upon which the game is based. Hillsfar was later released for the Nintendo Entertainment System (NES) in 1993.\n\nHillsfar received ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2343348", "url": "https://en.wikipedia.org/wiki/International%20Programme%20for%20Antarctic%20Buoys", "title": "International Programme for Antarctic Buoys", "text": "The International Programme for Antarctic Buoys (IPAB) is a component of the WCRP.\n\nProgramme\nIt aims to establish and maintain a network of drifting buoys in the Antarctic sea-ice zone which monitor ice motion, pressure and temperature. This is to support research in the region related to global climate processes, provide real-time operational meteorological data for numerical weather forecast centres and establish a basis for on-going monitoring of atmospheric and oceanic climate in the Antarc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2348222", "url": "https://en.wikipedia.org/wiki/Syndicate%20Wars", "title": "Syndicate Wars", "text": "Syndicate Wars is an isometric real-time tactical and strategic game, developed by Bullfrog Productions and published by Electronic Arts. It was released for DOS in 1996 and for the PlayStation in 1997. It is the second video game title in the Syndicate series, retaining the core gameplay and perspective of the original Syndicate, but with a setting 95 years further into the future.\n\nA first-person shooter follow-up (simply titled Syndicate) was developed by Starbreeze Studios and released in Fe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2352372", "url": "https://en.wikipedia.org/wiki/Outpost%202%3A%20Divided%20Destiny", "title": "Outpost 2: Divided Destiny", "text": "Outpost 2: Divided Destiny is a real-time strategy computer game developed by Dynamix, released in 1997 by Sierra Entertainment. It reuses and refines some of the concepts from the original Outpost, but there is no direct continuity between the storylines or the gameplay.\n\nStoryline \n\nThe plot is revealed through a combination of the game's mission briefings and a novella which was written by J. Steven York and included with the game. The novella follows two characters: Axen Moon of Eden, and Em", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2360161", "url": "https://en.wikipedia.org/wiki/Ogre%20Battle%20Gaiden%3A%20Prince%20of%20Zenobia", "title": "Ogre Battle Gaiden: Prince of Zenobia", "text": "Ogre Battle Gaiden: Prince of Zenobia is a 2000 real-time tactical role-playing game developed and published by SNK for the Neo Geo Pocket Color. The game is a spin-off within the Ogre Battle series, originally created by Quest Corporation. The storyline takes place parallel to Ogre Battle: The March of the Black Queen, and follows the path of Prince Tristan of Zenobia during his quest to reclaim his kingdom. As with other Ogre Battle titles, the player controls squads of an army, moving to diff", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2361143", "url": "https://en.wikipedia.org/wiki/ThreadX", "title": "ThreadX", "text": "Azure RTOS ThreadX is a highly deterministic, embedded real-time operating system (RTOS) programmed mostly in the language C.\n\nOverview \nThreadX was originally developed and marketed by Express Logic of San Diego, California, United States. The author of ThreadX (and the original author of the Nucleus RTOS in 1990) is William Lamie, who was also President and CEO of Express Logic.\n\nExpress Logic was purchased for an undisclosed sum by Microsoft on April 18, 2019.\n\nThe name ThreadX is derived fro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2374372", "url": "https://en.wikipedia.org/wiki/CalWIN", "title": "CalWIN", "text": "CalWIN is an online, real-time computer program that supports the administration of welfare in California. These include CalWORKs (TANF), CalFresh (food stamps), Medi-Cal (Medicaid), General Assistance/General Relief, Foster Care, and case management functions for employment services. It facilitates accounting and management reports, interfaces with the California state government, and satisfies the US federal mandate for the Statewide Automated Welfare System (SAWS).\n\nCalWin stands for either C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2380443", "url": "https://en.wikipedia.org/wiki/Armies%20of%20Exigo", "title": "Armies of Exigo", "text": "Armies of Exigo is a real-time strategy video game for Microsoft Windows. The game was developed by Black Hole Entertainment, published by Cinergi Interactive and distributed by Electronic Arts. One unique aspect of the game is that it has an underground mode. This makes the game more challenging as the player has to work on two fronts and might have an army come from an unexpected area.\n\nIn October 2006, EA shut down the online servers for the game.\n\nGameplay \nThe gameplay appears to be very si", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2386098", "url": "https://en.wikipedia.org/wiki/Fantavision%20%28video%20game%29", "title": "Fantavision (video game)", "text": "is a 2000 puzzle video game developed and published by Sony Computer Entertainment, which released as a launch title for the PlayStation 2. It is a real-time puzzle video game involving fireworks. It relies on quick color matching and symbol recognition skills.\n\nFantavision originally started out as a tech demo for the PlayStation 2, but it surprised many as it was released as an actual game. Initially, the game was released in Japan, only featuring single-player mode. The American and European ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2407682", "url": "https://en.wikipedia.org/wiki/Fightball", "title": "Fightball", "text": "Fightball is a real-time card game designed by James Ernest and Mike Selinker and published by Cheapass Games in 2002. Fightball is the third real-time card game published by Cheapass Games, following the success of Falling and Brawl.\n\nGameplay\n\nIn Fightball, each player takes the role of a Coach of one of six futuristic basketball teams competing in the fictional sport of Fightball. Each player will have his own deck of cards representing that team.\n\nWhen the game begins, both participants si", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2412341", "url": "https://en.wikipedia.org/wiki/Real-time%20kinematic%20positioning", "title": "Real-time kinematic positioning", "text": "Real-time kinematic positioning (RTK) is the application of surveying to correct for common errors in current satellite navigation (GNSS) systems. It uses measurements of the phase of the signal's carrier wave in addition to the information content of the signal and relies on a single reference station or interpolated virtual station to provide real-time corrections, providing up to centimetre-level accuracy (see DGPS). With reference to GPS in particular, the system is commonly referred to as c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2414622", "url": "https://en.wikipedia.org/wiki/QuesTec", "title": "QuesTec", "text": "QuesTec was a digital media company that pioneered virtual replay from real-time measurement data for baseball and tennis. Years before competitors introduced similar products, QuesTec had established a reputation for accuracy and reliability. Although originally based on internally developed technology, in 1998 QuesTec moved to tracking technology provided by engineers at the Atlantic Aerospace Electronics Corporation (now a division of L-3 Communications). QuesTec is best known for its Umpire ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2418682", "url": "https://en.wikipedia.org/wiki/Front%20Mission%20Alternative", "title": "Front Mission Alternative", "text": "is a real-time tactics video game developed and published by Square, and was released in Japan on December 18, 1997. Front Mission Alternative is the second spin-off entry and the fourth entry overall in the Front Mission series. Unlike other Front Mission titles, Front Mission Alternative is the precursor to the serialized storyline and features a completely standalone story and cast of characters.\n\nGameplay \nAs a real-time strategy spin-off, the gameplay of Front Mission Alternative differs fr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2419337", "url": "https://en.wikipedia.org/wiki/Falling%20%28game%29", "title": "Falling (game)", "text": "Falling is a real-time card game from James Ernest in which all players are falling from the sky for no apparent reason. The object of the game is to hit the ground last. As the box copy says, \"It's not much of a goal, but it's all you could think of on the way down.\"\n\nGameplay\nThe game has an uncommon element in card games, in that one player is a dealer whose only role is to smoothly pass out cards in front of the other player. All players may play cards simultaneously, as in other real-time ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2419383", "url": "https://en.wikipedia.org/wiki/Real-time%20card%20game", "title": "Real-time card game", "text": "A real-time card game is a card game in which there are no turns and all players may act simultaneously (that is, in real-time).\n\nThe card game Set has a real-time element; in Set, the players are racing to identify patterns in the cards on the table. The concept was also used by James Ernest in his game Falling, and was later expanded in the games Brawl and Fightball.\n\nThere are also real-time card games that use a standard deck of 52 playing cards. A large number of real-time card games are in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2420760", "url": "https://en.wikipedia.org/wiki/Stonkers", "title": "Stonkers", "text": "Stonkers is a strategy video game for the ZX Spectrum published by Imagine Software in 1983. It was written by John Gibson with graphics by Paul Lindale. In 2013, TechRadar called it an early example of a real-time strategy game.\n\nGameplay\nStonkers is controlled either using keyboard or joystick. In the game, the player controls infantry, artillery, tank, and supply-truck units. Combat units consume supplies over time and the player must use the supply units to replenish them. Supply units are", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2428384", "url": "https://en.wikipedia.org/wiki/Battle%20Realms", "title": "Battle Realms", "text": "Battle Realms is a real-time strategy video game published and released by Crave Entertainment and Ubisoft in November 2001. It was the first game created by Liquid Entertainment. An expansion pack Battle Realms: Winter of the Wolf was released in November 2002. In 2012, the game was re-released on GOG.com. In 2019, the game was re-released on Steam as Battle Realms: Zen Edition, in its early access state with functioning online multiplayer.\n\nGameplay\n\nBattle Realms''' gameplay is like many othe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2430393", "url": "https://en.wikipedia.org/wiki/Abomination%3A%20The%20Nemesis%20Project", "title": "Abomination: The Nemesis Project", "text": "Abomination: The Nemesis Project, known in the United States as simply Abomination, is a real-time tactics/action video game released in 1999. In the game, the player leads a team of eight genetically altered supersoldiers (marines) to defeat an infestation of a global genetic plague which slowly turns into a superorganism.\n\nAbomination was met with mixed reception, with the game's A.I. being the most primary of grievances.\n\nPlot\nAbomination takes place in 1999 after the United States has been a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2432047", "url": "https://en.wikipedia.org/wiki/Membrane-introduction%20mass%20spectrometry", "title": "Membrane-introduction mass spectrometry", "text": "Membrane-introduction mass spectrometry (MIMS) is a method of introducing analytes into the mass spectrometer's vacuum chamber via a semipermeable membrane. Usually a thin, gas-permeable, hydrophobic membrane is used, for example polydimethylsiloxane. Samples can be almost any fluid including water, air or sometimes even solvents. The great advantage of the method of sample introduction is its simplicity. MIMS can be used to measure a variety of analytes in real-time, with little or no sampl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2437556", "url": "https://en.wikipedia.org/wiki/Mobile%20phone%20content%20advertising", "title": "Mobile phone content advertising", "text": "Mobile phone content advertising is the promotion of ring tones, games and other mobile phone services. Such services are usually subscription-based and use the short message service (SMS) system to join up to them. Another method is broadcasting messages to the mobile phone's idle-screen, enabling the mobile operators or advertisers to reach millions in real-time. The advertising and sale of ring tones in particular has seen a massive growth in recent years, with some commercial breaks, parti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2438526", "url": "https://en.wikipedia.org/wiki/DarkSpace", "title": "DarkSpace", "text": "DarkSpace is a massively multiplayer real-time strategy computer game developed by PaleStar. Released in December 2001, DarkSpace involves multiplayer spaceship combat between three player-controlled factions.\n\nDarkSpace takes place in a persistent universe, referred to in-game as \"The MetaVerse\", where players choose from several types of ships and fight for control of planets. It also uses instanced \"Scenario\" servers, where factions battle for control of a single solar system.\n\nDarkSpace has ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2446436", "url": "https://en.wikipedia.org/wiki/NetStorm%3A%20Islands%20At%20War", "title": "NetStorm: Islands At War", "text": "NetStorm: Islands At War, also known as just NetStorm, is a real-time strategy Windows game, developed by Titanic Entertainment and published by Activision in 1997. Although a single-player campaign and tutorial missions are included, Netstorm is chiefly designed for online play, allowing for games of up to eight players.\n\nGameplay\n\nFew moving units are used, in contrast to other real-time strategy games, such as Command & Conquer. The battle area consists of a number of islands, each one contro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2448753", "url": "https://en.wikipedia.org/wiki/Goblin%20Commander%3A%20Unleash%20the%20Horde", "title": "Goblin Commander: Unleash the Horde", "text": "Goblin Commander: Unleash the Horde is a 2003 real-time strategy video game developed and published by Jaleco USA for the Xbox, PlayStation 2 and GameCube consoles. It was released in North America for the Xbox and PS2 on November 11, 2003 and on the GameCube on December 16, 2003, and later in Europe on March 19, 2004, July 16, 2004 and March 11, 2005 for the Xbox, GameCube and PS2 respectively.\n\nSet in a fantasy world, the story follows the tale of a civil war between goblin clans after their c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2451951", "url": "https://en.wikipedia.org/wiki/Modcomp", "title": "Modcomp", "text": "Modcomp, Inc. (formerly Modular Computer Systems), was a small minicomputer vendor that specialized in real-time applications. They were founded in 1970 in Fort Lauderdale, Florida. In the 1970s and 1980s, they produced a line of 16 and 32-bit mini-computers. Through the 1980s, Modcomp lost market share as more powerful micro-computers became popular, and Digital Equipment Corporation's VAX and Alpha systems continued to grow. The company successfully survives today as a systems integrator op", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2461376", "url": "https://en.wikipedia.org/wiki/Continuous%20Data%20Protection", "title": "Continuous Data Protection", "text": "Continuous data protection (CDP), also called continuous backup or real-time backup, refers to backup of computer data by automatically saving a copy of every change made to that data, essentially capturing every version of the data that the user saves. In its true form it allows the user or administrator to restore data to any point in time. The technique was patented by British entrepreneur Pete Malcolm in 1989 as \"a backup system in which a copy [editor's emphasis] of every change made to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2472365", "url": "https://en.wikipedia.org/wiki/Soldiers%3A%20Heroes%20of%20World%20War%20II", "title": "Soldiers: Heroes of World War II", "text": "Soldiers: Heroes of World War II (, or Behind Enemy Lines) is the first in a series of real-time tactics video games set in World War II, developed by or under the supervision of Ukrainian company Best Way.\n\nWhile the most widely distributed edition by Codemasters bears the name Soldiers: Heroes of World War II, its original English language title is Outfront.\n\nThe player can take control of American, British, Soviet or German forces to play out battles that are set in World War II. The game is", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2477195", "url": "https://en.wikipedia.org/wiki/Blender%20Game%20Engine", "title": "Blender Game Engine", "text": "The Blender Game Engine is a discontinued component of Blender, a free and open-source 3D production suite, used for making real-time interactive content. The game engine was written from scratch in C++ as a mostly independent component, and includes support for features such as Python scripting and OpenAL 3D sound.\n\nHistory\nErwin Coumans and Gino van den Bergen developed the Blender Game Engine in 2000. The goal was to create a marketable commercial product to easily create games and other inte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2483919", "url": "https://en.wikipedia.org/wiki/The%20Lord%20of%20the%20Rings%3A%20The%20Battle%20for%20Middle-earth%20II", "title": "The Lord of the Rings: The Battle for Middle-earth II", "text": "The Lord of the Rings: The Battle for Middle-earth II is a 2006 real-time strategy video game developed and published by Electronic Arts. It is based on the fantasy novels The Lord of the Rings and The Hobbit by J. R. R. Tolkien and its live-action film series adaptation. It is the sequel to Electronic Arts' 2004 title The Lord of the Rings: The Battle for Middle-earth. Along with the standard edition, a Collector's Edition of the game was released, containing bonus material and a documentary ab", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2492532", "url": "https://en.wikipedia.org/wiki/John%20Bischoff%20%28musician%29", "title": "John Bischoff (musician)", "text": "John Lee Bischoff (born December 7, 1949)U.S. Public Records Index, Vols 1 & 2 (Provo, UT: Ancestry.com Operations, Inc.), 2010. is an American composer, musical performer, teacher and grassroots activist best known as an early pioneer of live computer music. He also gained fame for his solo constructions in real-time synthesis as well as his ground-breaking work in computer network bands.\n\nEarly life\nA native of San Francisco, John Bischoff is the son of painter Elmer Bischoff. After", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2503047", "url": "https://en.wikipedia.org/wiki/Windows%20CE%205.0", "title": "Windows CE 5.0", "text": "Windows CE 5.0 (codenamed \"Macallan\" because Magellan brand GPS units run it.) is a successor to Windows CE 4.2, the third release in the Windows CE .NET family. It was first released on July 9, 2004. Like its predecessors, Windows CE 5.0 is marketed towards the embedded device market and independent device vendors. Windows CE 5.0 is billed as a low-cost, compact, fast-to-market, real-time operating system available for x86, ARM, MIPS, and SuperH microprocessor-based systems.\n\nWindows CE 5.0 bui", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2518255", "url": "https://en.wikipedia.org/wiki/H.324", "title": "H.324", "text": "H.324 is an ITU-T recommendation for voice, video and data transmission over regular analog phone lines. It uses a regular 33,600 bit/s modem for transmission, the H.263 codec for video encoding and G.723.1 for audio. \n\nH.324 standard is formally known as Terminal for low bit-rate multimedia communication. H.324 covers the technical requirements for very low bit-rate multimedia telephone terminals operating over the General Switched Telephone Network (GSTN). H.324 terminals provide real-time vid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2530942", "url": "https://en.wikipedia.org/wiki/Phoenix-RTOS", "title": "Phoenix-RTOS", "text": "Phoenix-RTOS is a real-time operating system designed for Internet of Things appliances. The main goal of the system is to facilitate the creation of \"Software Defined Solutions\".\n\nHistory \nPhoenix-RTOS is the successor to the Phoenix operating system, developed from 1999 to 2001 by Pawel Pisarczyk at the Department of Electronics and Information Technology at Warsaw University of Technology. Phoenix was originally implemented for IA-32 microprocessors and was adapted to the ARM7TDMI processor ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2532881", "url": "https://en.wikipedia.org/wiki/Lim%20Yo-hwan", "title": "Lim Yo-hwan", "text": "Lim Yo-hwan (), known by the ID SlayerS_`BoxeR` (usually shortened to BoxeR), is a former professional player of the real-time strategy computer game StarCraft. He is often referred to as The Terran Emperor (), or simply \"The Emperor\", and is widely considered to be one of the most successful players of the genre as well as an esports icon. In late 2010, he retired from StarCraft: Brood War and founded the StarCraft II team SlayerS. Since the disbanding of SlayerS, he briefly returned to SK Tele", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2545935", "url": "https://en.wikipedia.org/wiki/Company%20of%20Heroes%20%28video%20game%29", "title": "Company of Heroes (video game)", "text": "Company of Heroes is a 2006 real-time strategy video game developed by Relic Entertainment and published by THQ for the Microsoft Windows and OS X operating systems. It is the first installment of the Company of Heroes series, and was the first title to make use of the Games for Windows label.\n\nCompany of Heroes is set during the Second World War and contains two playable factions. Players aim to capture strategic resource sectors located around the map, which they use to build base structures, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2575759", "url": "https://en.wikipedia.org/wiki/Firestarter%20%28firewall%29", "title": "Firestarter (firewall)", "text": "Firestarter is a personal firewall tool that uses the Netfilter (iptables/ipchains) system built into the Linux kernel. It has the ability to control both inbound and outbound connections. Firestarter provides a graphical interface for configuring firewall rules and settings. It provides real-time monitoring of all network traffic for the system. Firestarter also provides facilities for port forwarding, internet connection sharing and DHCP service.\n\nFirestarter is free and open-source software a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2575903", "url": "https://en.wikipedia.org/wiki/Duration%20calculus", "title": "Duration calculus", "text": "Duration calculus (DC) is an interval logic for real-time systems. It was originally developed by Zhou Chaochen with the help of Anders P. Ravn and C. A. R. Hoare on the European ESPRIT Basic Research Action (BRA) ProCoS project on Provably Correct Systems.\n\nDuration calculus is mainly useful at the requirements level of the software development process for real-time systems. Some tools are available (e.g., DCVALID, IDLVALID, etc.). Subsets of duration calculus have been studied (e.g., using dis", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2577552", "url": "https://en.wikipedia.org/wiki/Joint%20Data%20Network", "title": "Joint Data Network", "text": "The Joint Data Network (JDN) is an interconnected network of JTIDS\u2013based systems, which links air and missile defense command and control and weapons systems across United States armed forces. It provides a set of near-real-time data communications and information systems to facilitate situational awareness and the exchange and summary of Extended Air Defense engagement operations data (such as the Medium Extended Air Defense System) to centralized command centers, via inter-computer data and r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2582359", "url": "https://en.wikipedia.org/wiki/Homeworld", "title": "Homeworld", "text": "Homeworld is a real-time strategy video game developed by Relic Entertainment and published by Sierra Studios on September 28, 1999, for Microsoft Windows. Set in space, the science fiction game follows the Kushan exiles of the planet Kharak after their home planet is destroyed by the Taiidan Empire in retaliation for developing hyperspace jump technology. The survivors journey with their spacecraft-constructing mothership to reclaim their ancient homeworld of Hiigara from the Taiidan, encounter", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2584640", "url": "https://en.wikipedia.org/wiki/WinPlay3", "title": "WinPlay3", "text": "WinPlay3 was the first real-time MP3 audio player for PCs running Windows, both 16-bit (Windows 3.1) and 32-bit (Windows 95). Prior to this, audio compressed with MP3 had to be decompressed prior to listening. It was released by Fraunhofer IIS (\"Institute for Integrated Circuits\"), creators of the MP3 format, on September 9, 1995. The latest version was released on May 23, 1997. Since then, the Fraunhofer Society has removed any trace and mention of WinPlay3 from their web sites. However, the s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2603123", "url": "https://en.wikipedia.org/wiki/PEARL%20%28programming%20language%29", "title": "PEARL (programming language)", "text": "PEARL, or Process and experiment automation realtime language, is a computer programming language designed for multitasking and real-time programming. Being a high-level language, it is fairly cross-platform. Since 1977, the language has been going under several standardization steps by the Deutsches Institut f\u00fcr Normung. The current version is PEARL-90, which was standardized in 1998 as DIN 66253-2.\n\nFeatures\n\nPEARL supports both fixed-point and floating-point numeric values, character and char", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2606642", "url": "https://en.wikipedia.org/wiki/Colobot", "title": "Colobot", "text": "Colobot (Colonize with Bots) is an educational real-time strategy video game featuring 3D graphics, created by Swiss developer Epsitec SA. The objective of the game is to find a planet for colonization by the human race by establishing a basic infrastructure on the surface and eliminating any alien life forms endangering the expedition. The game takes place on the Earth, Moon, and seven fictional planets. The main feature of the game, which makes it educational, is the possibility for players to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2611441", "url": "https://en.wikipedia.org/wiki/Astron%20Belt", "title": "Astron Belt", "text": "Astron Belt (\u30a2\u30b9\u30c8\u30ed\u30f3\u30d9\u30eb\u30c8) is a laserdisc video game in the form of a third-person, space combat rail shooter, released in arcades in 1983 by Sega in Japan, and licensed to Bally Midway for release in North America. Developed in 1982, it was the first major arcade laserdisc video game. The game combines full-motion video (FMV) footage from the laserdisc with real-time 2D graphics. The arcade game was available in both upright and cockpit arcade cabinets, with the latter having illuminated buttons on", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2612583", "url": "https://en.wikipedia.org/wiki/Crew%20chief", "title": "Crew chief", "text": "Crew chief may refer to:\n\n Crew Chief, the in-flight aircraft maintenance technician with various aircrew duties and responsibilities in a military aircraft.\nCrew chief, the lead official in a basketball game\n Crew chief, the leader of the pit crew in NASCAR pit stops\n Crew chief, the most experienced baseball umpire in a crew\n Crew Chief, the real-time vehicle location and maintenance tracking application in the Ford Sync in-car entertainment", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2632136", "url": "https://en.wikipedia.org/wiki/Online%20counseling", "title": "Online counseling", "text": "Online counseling is a form of professional mental health counseling that is generally performed through the internet. Computer aided technologies are used by the trained professional counsellors and individuals seeking counselling services to communicate rather than conventional face-to-face interactions[17] . Online counselling is also referred to as teletherapy, e-therapy, cyber therapy, or web counselling[18]. Services are typically offered via email, real-time chat, and video conferencing. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2646608", "url": "https://en.wikipedia.org/wiki/Portal%20rendering", "title": "Portal rendering", "text": "In computer-generated imagery and real-time 3D computer graphics, portal rendering is an algorithm for visibility determination. For example, consider a 3D computer game environment, which may contain many polygons, only a few of which may be visible on screen at a given time. By determining which polygons are currently not visible, and not rendering those objects, significant performance improvements can be achieved.\n\nA portal system is based on using the partitioning of space to form generaliz", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2648815", "url": "https://en.wikipedia.org/wiki/Imperial%20Glory", "title": "Imperial Glory", "text": "Imperial Glory is a 2005 real-time tactics video game, developed by Pyro Studios and published by Eidos Interactive. Feral Interactive released a Mac OS X version of the game in December 2006.\n\nImperial Glory is set in the Revolutionary and Napoleonic eras, between 1789 and 1815, and allows the player to choose one of the great empires of the age \u2013 Great Britain, France, Austria, Russia or Prussia\u2013on their quest of conquering Europe, North Africa and the Middle East. The game is very similar to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2650529", "url": "https://en.wikipedia.org/wiki/Integrity%20%28disambiguation%29", "title": "Integrity (disambiguation)", "text": "Integrity is the ethical concept of basing of one's actions on a consistent framework of principles.\n\nIntegrity may also refer to:\n\nTechnology\nData integrity, a concept from information and telecommunications technology in general, and cryptography in particular\nSystem integrity, a telecommunications concept regarding the operation of a system\nIntegrity (operating system), a real-time operating system produced and marketed by Green Hills Software\nHPE Integrity Servers, a server line from Hewlett", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2652170", "url": "https://en.wikipedia.org/wiki/AVR%20Butterfly", "title": "AVR Butterfly", "text": "The AVR Butterfly is a battery-powered single-board microcontroller developed by Atmel. It consists of an Atmel ATmega169PV Microcontroller, a liquid crystal display, joystick, speaker, serial port, real-time clock (RTC), internal flash memory, and sensors for temperature and voltage. The board is the size of a name tag and has a clothing pin on back so it can be worn as such after the user enters their name onto the LCD.\n\nFeature set\n\nLCD \n\nThe AVRButterfly demonstrates LCD driving by running a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2665415", "url": "https://en.wikipedia.org/wiki/VertigoXmedia", "title": "VertigoXmedia", "text": "VertigoXmedia is a developer of broadcast graphics automation software and real-time character generators. The company's products and services were used by broadcasters for live TV productions, such as live news, sporting events such as the Super Bowl, and special events such as elections. VertigoXmedia is based in Montreal, Quebec, Canada.\n\nIn April 2006 Miranda Technologies Inc. purchased VertigoXmedia.\n\nSoftware companies of Canada", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2669160", "url": "https://en.wikipedia.org/wiki/Bokosuka%20Wars", "title": "Bokosuka Wars", "text": "is a 1983 action-strategy role-playing video game developed by K\u014dji Sumii (\u4f4f\u4e95\u6d69\u53f8) and released by ASCII for the Sharp X1 computer, followed by ports to the MSX, FM-7, NEC PC-6001, NEC PC-8801 and NEC PC-9801 computer platforms, as well as an altered version released for the Family Computer console and later the Virtual Console service. It revolves around a leader who must lead an army in phalanx formation across a battlefield in real-time against overwhelming enemy forces while freeing and recrui", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2676624", "url": "https://en.wikipedia.org/wiki/RedBoot", "title": "RedBoot", "text": "RedBoot (an acronym for Red Hat Embedded Debug and Bootstrap firmware) is an open-source application that uses the eCos real-time operating system Hardware Abstraction Layer to provide bootstrap firmware for embedded systems. RedBoot is used in both product development and in deployed products in the field, such as the entertainment systems on the Airbus A380s and Delta's Boeing 767.\n\nRedBoot allows download and execution of embedded applications via serial or Ethernet, including embedded Linux ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2688026", "url": "https://en.wikipedia.org/wiki/Kung-Fu%20Chess", "title": "Kung-Fu Chess", "text": "Kung-Fu Chess is a chess variant that removes the concept of turns and allows multiple pieces to move simultaneously. It was created by Shizmoo Games as a \"real-time\" in the early 2000s and remained on the company's website until the website shut down in 2008. Other online servers have since appeared.\n\nBackground\nThe game was conceptualized in the early 2000s by Dan Goldstein as a \"real-time\" version of chess; it was later developed by him and his brother Joshua Goldstein under the name \"Ultra S", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2706545", "url": "https://en.wikipedia.org/wiki/Nord-10", "title": "Nord-10", "text": "Nord-10 was a medium-sized general-purpose 16-bit minicomputer designed for multilingual time-sharing applications and for real-time multi-program systems, produced by Norsk Data. It was introduced in 1973. The later follow up model, Nord-10/S, introduced in 1975, introduced CPU cache, paging, and other miscellaneous improvements.\n\nThe CPU had a microprocessor, which was defined in the manual as a portmanteau of microcode processor, not to be confused with the then nascent microprocessor. The CP", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2713965", "url": "https://en.wikipedia.org/wiki/UNOS%20%28operating%20system%29", "title": "UNOS (operating system)", "text": "UNOS is the first, now discontinued, 32-bit Unix-like real-time operating system (RTOS) with real-time extensions. It was developed by Jeffery Goldberg, MS. who left Bell Labs after using Unix and became VP of engineering for Charles River Data Systems (CRDS), now defunct. UNOS was written to capitalize on the first 32-bit microprocessor, the Motorola 68k central processing unit (CPU). CRDS sold a UNOS based 68K system, and sold porting services and licenses to other manufacturers who had embedd", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2723268", "url": "https://en.wikipedia.org/wiki/Travian", "title": "Travian", "text": "Travian: Legends is a persistent, browser-based, massively multiplayer, online real-time strategy game developed by the German software company Travian Games. It was originally written and released in June 2004 as \"Travian\" by Gerhard M\u00fcller. Set in classical antiquity, Travian: Legends is a predominantly militaristic real-time strategy game.\n\nTravian has been translated into over 40 languages from the original German version, and at one time boasted over 5 million players on over 300 game serve", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2726365", "url": "https://en.wikipedia.org/wiki/Lost%20Kingdoms", "title": "Lost Kingdoms", "text": "Lost Kingdoms, known as in Japan, is a fantasy video game developed by FromSoftware and published by Activision in North America and Europe. The game was released in Japan on April 25, 2002; in North America on May 27, 2002; and in Europe on August 9, 2002. Lost Kingdoms is a card-based action role-playing game where battles are fought in real-time.\n\nA sequel, Lost Kingdoms II, was released a year later.\n\nStory\nThe story begins with a substance known in the game as black fog. This fog is known ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2728130", "url": "https://en.wikipedia.org/wiki/Real-time", "title": "Real-time", "text": "Real-time or real time describes various operations in computing or other processes that must guarantee response times within a specified time (deadline), usually a relatively short time. A real-time process is generally one that happens in defined time steps of maximum duration and fast enough to affect the environment in which it occurs, such as inputs to a computing system.\n\nExamples of real-time operations include:\n\nComputing\n Real-time computing, hardware and software systems subject to a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2728862", "url": "https://en.wikipedia.org/wiki/PSK63", "title": "PSK63", "text": "PSK63 (meaning Phase Shift Keying at a rate of 63 baud) is a digital radio modulation mode used primarily in the amateur radio field to conduct real-time keyboard-to-keyboard informal text chat between amateur radio operators.\n\nHistory \nIn April 2003, Skip Teller, KH6TY, the creator of Digipan, requested an addition to Moe (AE4JY) Wheatley's PSKCore DLL to support the PSK63 mode. Subsequently, another mode - PSK125 - has been added to the PSKCore DLL.\n Unlike PSK63F, PSK63 does not use forward e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2768858", "url": "https://en.wikipedia.org/wiki/Majesty%3A%20The%20Fantasy%20Kingdom%20Sim", "title": "Majesty: The Fantasy Kingdom Sim", "text": "Majesty: The Fantasy Kingdom Sim is a real-time strategy video game developed by Cyberlore Studios, and published by Hasbro Interactive under the MicroProse brand name for Windows in March 2000. MacPlay released a Mac OS port in December 2000. Infogrames released the expansion pack Majesty: The Northern Expansion for Windows in March 2001, and Majesty Gold Edition, a compilation for Windows bundling Majesty and The Northern Expansion, in January 2002. Linux Game Publishing released a Linux port ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2774999", "url": "https://en.wikipedia.org/wiki/Quantel%20Mirage", "title": "Quantel Mirage", "text": "The Quantel Mirage, or DVM8000/1 \"Digital Video Manipulator\", was a digital real-time video effects processor introduced by Quantel in 1982. It was capable of warping a live video stream by texture mapping it onto an arbitrary three-dimensional shape, around which the viewer could freely rotate or zoom in real-time. It could also interpolate, or morph, between two different shapes. It was considered the first real-time 3D video effects processor.\n\nThe Mirage was programmable - new shapes could b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2781797", "url": "https://en.wikipedia.org/wiki/Fedwire", "title": "Fedwire", "text": "Fedwire (formerly known as the Federal Reserve Wire Network) is a real-time gross settlement funds transfer system operated by the United States Federal Reserve Banks that allows financial institutions to electronically transfer funds between its more than 9,289 participants (as of March 19, 2009). Transfers can only be initiated by the sending bank once they receive the proper wiring instructions for the receiving bank. These instructions include: the receiving bank's routing number, account nu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2784419", "url": "https://en.wikipedia.org/wiki/OPC%20Historical%20Data%20Access", "title": "OPC Historical Data Access", "text": "This group of standards, created by the OPC Foundation, provides COM specifications for communicating data from devices and applications that provide historical data, such as databases. The specifications provides for access to raw, interpolated and aggregate data (data with calculations).\n\nOPC Historical Data Access, also known as OPC HDA, is used to exchange archived process data. This is in contrast to the OPC Data Access (OPC DA) specification that deals with real-time data. OPC technology i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2803058", "url": "https://en.wikipedia.org/wiki/Zoomed%20video%20port", "title": "Zoomed video port", "text": "In computing, a zoomed video port (often simply ZV port) is a unidirectional video bus allowing a device in a PC card slot to transfer video data directly into a VGA frame buffer, so as to allow laptops to display real-time video. The standard was created by the PCMCIA to allow devices such as TV tuners, video inputs and MPEG coprocessors to fit into a PC card form factor and provide a cheap solution for both the laptop manufacturer and consumer.\n\nThe ZV port is a direct connection between the P", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2810570", "url": "https://en.wikipedia.org/wiki/Z%20%28video%20game%29", "title": "Z (video game)", "text": "Z is a 1996 real-time strategy computer game by The Bitmap Brothers. It is about two armies of robots (red and blue) battling to conquer different planets.\n\nA sequel, Z: Steel Soldiers, was published in 2001.\n\nPlot\nThe game opens with Commander Zod shooting the Bitmap Brothers Logo off the screen. Meanwhile, a Supply Ship is adrift in space. Its occupants, two robots named Brad and Allan, wake up to the radio buzzer. The two find two new messages from Commander Zod. The first shows Zod telling a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2819069", "url": "https://en.wikipedia.org/wiki/Squirrel%20%28programming%20language%29", "title": "Squirrel (programming language)", "text": "Squirrel is a high level imperative, object-oriented programming language, designed to be a lightweight scripting language that fits in the size, memory bandwidth, and real-time requirements of applications like video games.\n\nMirthKit, a simple toolkit for making and distributing open source, cross-platform 2D games, uses Squirrel for its platform. It is used extensively by Code::Blocks for scripting and was also used in Final Fantasy Crystal Chronicles: My Life as a King. It is also used in Lef", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2842089", "url": "https://en.wikipedia.org/wiki/Stronghold%20%281993%20video%20game%29", "title": "Stronghold (1993 video game)", "text": "Stronghold is a Dungeons & Dragons city-building real-time strategy computer game published by SSI and developed by Stormfront Studios in 1993.\n\nGameplay\nPlayers balance resources to build a town with unique neighborhoods, each with its own unique architecture. Residents and craftspeople of each neighborhood can be summoned to defend any part of the city that comes under attack. Players can choose from a variety of neighborhood leaders, including Mages, Clerics, Thieves, Fighters, Elves (a combi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2845285", "url": "https://en.wikipedia.org/wiki/VAXELN", "title": "VAXELN", "text": "VAXELN (typically pronounced \"VAX-elan\") is a discontinued real-time operating system for the VAX family of computers produced by the Digital Equipment Corporation (DEC) of Maynard, Massachusetts.\n\nAs with RSX-11 and VMS, Dave Cutler was the principal force behind the development of this operating system. Cutler's team developed the product after moving to the Seattle, Washington area to form the DECwest Engineering Group; DEC's first engineering group outside New England. Initial target platfor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2848361", "url": "https://en.wikipedia.org/wiki/The%20Fuccons", "title": "The Fuccons", "text": "The Fuccons (), known as in Japan, is a Japanese sketch comedy series created by Yoshimasa Ishibashi. It features the Fuccons, a family of American expatriates living in Japan, with characters played by mannequins filmed at various locations in real-time.\n\nThe Fuccons first aired as recurring sketches titled on the Japanese sketch comedy series Vermilion Pleasure Night in 2000, which was also produced by Ishibashi. In January 2002, the series moved to its own late-night time slot and was broad", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2852029", "url": "https://en.wikipedia.org/wiki/The%20Outforce", "title": "The Outforce", "text": "The Outforce is a traditional top-down real-time strategy game played across a battlefield in space. It's the first game from O3 Games, which later became Starbreeze Studios.\n\nGameplay\nThe Outforce is a real-time strategy game set in the depths of space. There are three races from which to choose, and more than 120 different units available, including tow ships, phasing units, and self-destructing units. The 3-D environment features a free-floating camera with a variable zoom field. The game's a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2878102", "url": "https://en.wikipedia.org/wiki/Smart%20work%20zone", "title": "Smart work zone", "text": "A smart work zone or intelligent work zone refers to a site-specific configuration of traffic control technology deployed within a roadway work zone to increase the safety of construction workers, provide \"real-time\" travel information, and efficiently route motorists through a work zone. Smart work zones reduce the dependency on human \"flaggers\" and make the work zone safer for roadway workers. \n\nCommon terms used to describe equipment configuration used within smart work zones: \n\nSmar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2905806", "url": "https://en.wikipedia.org/wiki/Gordon%20Bell%20%28QNX%29", "title": "Gordon Bell (QNX)", "text": "Gordon Bell is a Canadian software developer and entrepreneur. He is one of the co-creators of the QNX microkernel real-time operating system.\n\nQNX\nBell and Dan Dodge began the project while students at the University of Waterloo in 1980. Bell and Dodge incorporated Quantum Software Systems in the Ottawa suburb of Kanata, Ontario to develop and sell the operating system, originally called QUNIX. AT&T requested the name be changed to avoid encroaching on their UNIX trademark, so QUNIX was renamed", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2905857", "url": "https://en.wikipedia.org/wiki/Dan%20Dodge", "title": "Dan Dodge", "text": "Dan Dodge is a cocreator of the QNX microkernel real-time operating system, with Gordon Bell. They began the project while students at the University of Waterloo in 1980. Dodge then moved to Kanata, Ontario, a high-tech area outside Ottawa, to start Quantum Software Systems. It was later renamed QNX Software Systems to avoid confusion with a hard drive manufacturer. The first commercial version of QNX was released for the Intel 8088 central processing unit (CPU) in 1982.\n\nIn 1998, Dodge became t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2930922", "url": "https://en.wikipedia.org/wiki/Urban%20Assault", "title": "Urban Assault", "text": "Urban Assault is a 3D combined first-person shooter and real-time strategy computer game developed by the German company TerraTools and published by Microsoft in the year 1998. \n\nIt was the third strategy title that was directly published by Microsoft Game Studios. The player creates and commands groups of tanks and aircraft, and can also take direct control of one vehicle at a time. Over the course of the game one can acquire upgrades and new vehicles.\n\nGameplay\nThe player is in command of a fu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2953200", "url": "https://en.wikipedia.org/wiki/Soldiers%20of%20Anarchy", "title": "Soldiers of Anarchy", "text": "Soldiers of Anarchy (SOA) is a 2002 squad-based real-time tactics video game released by Simon & Schuster.\n\nGameplay\n\nGameplay involves squad tactics, vehicles, and a wide variety of weapons and ammo.\n\nPlot\n\nThe game takes place in the year 2015, ten years after a deadly man-made virus (Spontaneous Genome Degeneration Syndrome) kills billions across the planet. The initial protagonists are four soldiers who have spent the last decade in a bunker at a Russian Kalinina military base. What greets t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2974004", "url": "https://en.wikipedia.org/wiki/Savage%3A%20The%20Battle%20for%20Newerth", "title": "Savage: The Battle for Newerth", "text": "Savage: The Battle for Newerth is a 2003 video game combining aspects of the real-time strategy and first-person shooter genres, developed by S2 Games. It takes place in a science fantasy distant future when mankind has rebuilt society after the apocalypse, but is threatened by intelligent beasts led by a sorceress.\n\nGameplay\nSavage is a solely online game, as it does not include a single-player mode. Each match takes place on a map of varying size. A single match has two or more teams, which c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2979024", "url": "https://en.wikipedia.org/wiki/Lagoon%20%28video%20game%29", "title": "Lagoon (video game)", "text": "is a top-view action/adventure video game for the X68000 and Super NES, in which Nasir (Nassel in the Japanese version), Champion of Light, must investigate the source of the world's corrupted water and return peace to Lakeland.\n\nLagoon is an action role-playing game with a fantasy setting, very similar to the early Ys games, combining real-time action gameplay with RPG elements such as experience levels and equipment management. The player travels through an assortment of towns, landscapes, and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2987338", "url": "https://en.wikipedia.org/wiki/Graphics%20Environment%20for%20Multimedia", "title": "Graphics Environment for Multimedia", "text": "Graphics Environment for Multimedia (GEM) is a set of externals (libraries) that provide OpenGL graphics functionality to Pure Data, a graphical programming language for real-time audio processing. It is free under the GNU General Public License (GPL).\n\nOriginally written by Mark Danks of Sony Computer Entertainment, it is now maintained by Johannes Zm\u00f6lnig of the Institute of Electronic Music and Acoustics. It was once (but is no longer) partly supported by a grant from the Intel Research Coun", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2990105", "url": "https://en.wikipedia.org/wiki/Pool%20of%20Radiance%3A%20Ruins%20of%20Myth%20Drannor", "title": "Pool of Radiance: Ruins of Myth Drannor", "text": "Pool of Radiance: Ruins of Myth Drannor is a Forgotten Realms Dungeons & Dragons role-playing video game released in 2001 by Ubi Soft. It is the fifth and latest game in the Pool of Radiance series.\n\nGameplay\nRuins of Myth Drannor takes place from an isometric third-person perspective, similar to the Baldur's Gate series. Unlike Baldur's Gate and other Infinity Engine games, Ruins of Myth Drannor features turn-based combat rather than real-time combat. The game uses three-dimensional characters ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2992760", "url": "https://en.wikipedia.org/wiki/Rise%20and%20Fall%3A%20Civilizations%20at%20War", "title": "Rise and Fall: Civilizations at War", "text": "Rise and Fall: Civilizations at War is a real-time strategy video game developed by both Stainless Steel Studios and Midway Games which was released on June 12, 2006. The game incorporates segments of both third-person and first-person shooter gameplay, by allowing the player to temporarily control a \"hero\". Rise and Fall is based in the first millennium BC, and features four playable civilizations: Persia, Greece, Egypt, and Rome. The game includes over eighty civilization-unique military units", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "2998007", "url": "https://en.wikipedia.org/wiki/Architecture%20Analysis%20%26%20Design%20Language", "title": "Architecture Analysis & Design Language", "text": "The Architecture Analysis & Design Language (AADL) is an architecture description language standardized by SAE. AADL was first developed in the field of avionics, and was known formerly as the Avionics Architecture Description Language.\n\nThe Architecture Analysis & Design Language is derived from MetaH, an architecture description language made by the Advanced Technology Center of Honeywell. AADL is used to model the software and hardware architecture of an embedded, real-time system. Due to its", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3004964", "url": "https://en.wikipedia.org/wiki/Blood%20%26%20Magic", "title": "Blood & Magic", "text": "Blood & Magic is a real-time strategy computer game released by Interplay Productions in 1996 which uses the Dungeons & Dragons license.\n\nThe first of Interplay's computer games inspired by TSR's AD&D roleplaying system, Blood & Magic is a real-time strategy game set in a previously uncharted area of the Forgotten Realms campaign setting.\n\nGameplay \nBlood & Magic is a real-time strategy game, where players take on the role of wizards, using blood magic to create monsters. The game is set in the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3012228", "url": "https://en.wikipedia.org/wiki/Take%20Command%20%28video%20game%29", "title": "Take Command (video game)", "text": "Take Command is a series of real-time tactics video games by American studio MadMinute Games. The series consist of two games, Take Command: Bull Run (2004) and Take Command - 2nd Manassas (2006). The games are real-time wargames depicting some of the major battles of the American Civil War. The developers describe the games as \"real-time combat simulators\". The first game was released under the Activision Value brand, which is Activision's budget line. The second game is released through Parado", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3019741", "url": "https://en.wikipedia.org/wiki/Conquest%3A%20Frontier%20Wars", "title": "Conquest: Frontier Wars", "text": "Conquest: Frontier Wars is a real-time strategy game released in 2001 by Ubi Soft and developed by Fever Pitch Studios. A good amount of the development was done at Digital Anvil in Austin, Texas, a startup developer originally owned by Chris Roberts, Erin Roberts, Eric Peterson, John Miles, Tony Zurovec, Marten Davies and Robert Rodriguez. Once Microsoft purchased Digital Anvil, Eric Peterson and Tom Mauer left to form Fever Pitch Studios Inc, and lead a team to complete the game as originally", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3020109", "url": "https://en.wikipedia.org/wiki/Fallout%20Tactics%3A%20Brotherhood%20of%20Steel", "title": "Fallout Tactics: Brotherhood of Steel", "text": "Fallout Tactics: Brotherhood of Steel is a turn-based real-time tactical role-playing game set in the post-apocalyptic Fallout universe. Developed by Micro Fort\u00e9 and published by 14 Degrees East, Fallout Tactics was released on 14 March 2001 for Microsoft Windows. It sold above 300,000 units worldwide by 2008.\n\nThe game follows a squad of the Brotherhood of Steel as it becomes engaged in a desperate war. Although the game takes place in the Fallout universe, it does not follow or continue the st", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3041911", "url": "https://en.wikipedia.org/wiki/Procedural%20animation", "title": "Procedural animation", "text": "A procedural animation is a type of computer animation, used to automatically generate animation in real-time to allow for a more diverse series of actions than could otherwise be created using predefined animations.\n\nProcedural animation is used to simulate particle systems (smoke, fire, water), cloth and clothing, rigid body dynamics, and hair and fur dynamics, as well as character animation.\n\nIn video games, it is often used for simple things like turning a character's head when a player look", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3041921", "url": "https://en.wikipedia.org/wiki/Total%20Annihilation%3A%20The%20Core%20Contingency", "title": "Total Annihilation: The Core Contingency", "text": "Total Annihilation: The Core Contingency is a 1998 expansion to the 1997 real-time strategy Video game Total Annihilation. It contains extra units and maps, as well as a campaign of 25 missions and a map editor.\n\nStory\nThe Core Contingency picks up where the original game finishes with the Arm ending, in which the Arm achieved final victory over the Core in its homeworld Core Prime, in their Galactic War of over 4,000 years. With the Core supposedly wiped out of existence, the Arm undergoes one-", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3050402", "url": "https://en.wikipedia.org/wiki/Gangland%20%28video%20game%29", "title": "Gangland (video game)", "text": "Gangland is a video game created by Danish studio Mediamobsters. It has the premise of mixing real-time strategy, role-playing video game and simulation game.\n\nStory\nThe player takes the role of Mario Mangano, whose four brothers, Romano, Angelo, Sonny, and the eldest Chico, are caporegime of the Mangano crime family based in Palermo. When their father, the Don of the Borgata, dies, a power struggle hits the family and ends with Chico being nominated as the new boss. Romano, Angelo, and Sonny mu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3053877", "url": "https://en.wikipedia.org/wiki/The%20Settlers%20III", "title": "The Settlers III", "text": "The Settlers III () is a real-time strategy video game with city-building elements, developed and published by Blue Byte. Released for Microsoft Windows in November 1998, it is the third game in The Settlers series, following The Settlers (1993) and The Settlers II (1996). In April 1999, Blue Byte released an expansion, The Settlers III Mission CD, featuring new single-player campaign missions, new maps for both single-player and multiplayer modes, and a map editor. In October, they released a s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3058051", "url": "https://en.wikipedia.org/wiki/Stieg%20Hedlund", "title": "Stieg Hedlund", "text": "Stieg Hedlund (born 1965) is a computer and video game designer, artist, and writer with over 25 years of experience who has worked on more than 30 games in the video game industry. Although he is probably best known for his work in action RPGs, he has also worked on games in each of the real-time strategy, tactical shooter, beat-'em-up and action-adventure genres on the PC and almost every dedicated game console. He has a professed interest in conlang and linguistics.\n\nDesign philosophy\nDespite", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3061321", "url": "https://en.wikipedia.org/wiki/Imperium%20Galactica%20II%3A%20Alliances", "title": "Imperium Galactica II: Alliances", "text": "Imperium Galactica II: Alliances is a video game featuring aspects of real-time tactics, real-time strategy and 4X elements from the Hungarian-based studio Digital Reality in 1999. It is the sequel to Digital Reality's previous game, Imperium Galactica. In 2016, the game was ported to iOS. The North American release is the final game to be released under the GT Interactive brand name, released shortly before Infogrames folded the label into its own studio in May 2000.\nIn the strategy game commun", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3087495", "url": "https://en.wikipedia.org/wiki/Conan%20%282004%20video%20game%29", "title": "Conan (2004 video game)", "text": "Conan is a 2004 action-adventure role-playing video game based on the literary character Conan the Barbarian created by Robert E. Howard. It was developed by Slovak developer Cauldron and released for the Xbox, GameCube, PlayStation 2, and Microsoft Windows in Europe.\n\nGameplay\nConan is a third-person action-adventure game with the majority of the action being real-time hack and slash combat, with additional puzzles. The player can acquire up to 14 different weapons and learn new fighting techni", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3093336", "url": "https://en.wikipedia.org/wiki/Talvisota", "title": "Talvisota", "text": "Talvisota may refer to:\n\nWinter War or , a 1939\u20141940 war between Finland and the Soviet Union\nTalvisota (film) or The Winter War, a 1989 Finnish film\nTalvisota, a novel by Antti Tuuri, basis for the film\nTalvisota: Icy Hell, a real-time action computer game\n \"Talvisota\", a song by Sabaton from The Art of War\n\nSee also\nSuomen Talvisota 1939\u20131940, a Finnish rock band\nWinter War (disambiguation)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3104687", "url": "https://en.wikipedia.org/wiki/Liquid%20Entertainment", "title": "Liquid Entertainment", "text": "Liquid Entertainment was an American independent video game developer based in Pasadena, California. The studio was founded in April 1999 by Ed Del Castillo and Mike Grayford.\n\nHistory \nLiquid Entertainment was founded in April 1999 by Ed Del Castillo and Mike Grayford.\n\nLiquid's first game was Battle Realms, published by Crave Entertainment in November 2001 to critical acclaim. Battle Realms is a real-time strategy PC game for Windows that features an unconventional approach to resource managem", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3105104", "url": "https://en.wikipedia.org/wiki/Facial%20motion%20capture", "title": "Facial motion capture", "text": "Facial motion capture is the process of electronically converting the movements of a person's face into a digital database using cameras or laser scanners. This database may then be used to produce computer graphics (CG), computer animation for movies, games, or real-time avatars. Because the motion of CG characters is derived from the movements of real people, it results in a more realistic and nuanced computer character animation than if the animation were created manually.\n\nA facial motion ca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3120542", "url": "https://en.wikipedia.org/wiki/Disk%20compression", "title": "Disk compression", "text": "A disk compression software utility increases the amount of information that can be stored on a hard disk drive of given size. Unlike a file compression utility, which compresses only specified files\u2014and which requires the user to designate the files to be compressed\u2014an on-the-fly disk compression utility works automatically through resident software without the user needing to be aware of its existence. On-the-fly disk compression is therefore also known as transparent, real-time or online disk", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3142580", "url": "https://en.wikipedia.org/wiki/Kye%20%28video%20game%29", "title": "Kye (video game)", "text": "Kye is a real-time puzzle game with a variety of interacting objects. It takes ideas from puzzle games like Sokoban and Boulder Dash, but the inclusion of active objects gives it a real-time component, and it can also produce arcade-game levels like those found in Pac-Man. Anyone can create new levels for the game.\n\nKye was created by Colin Garbutt of Towednack and first released in 1992. Starting with version 2.0, the game became charity shareware \u2013 registration required a donation to Save the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3149297", "url": "https://en.wikipedia.org/wiki/Locative%20media", "title": "Locative media", "text": "Locative media or location-based media (LBM) are media of communication functionally bound to a location. The physical implementation of locative media, however, is not bound to the same location to which the content refers.\n\nLocation-based media delivers multimedia and other content directly to the user of a mobile device dependent upon their location. Location information determined by means such as mobile phone tracking and other emerging real-time locating system technologies like Wi-Fi or R", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3154072", "url": "https://en.wikipedia.org/wiki/Tracking%20system", "title": "Tracking system", "text": "A tracking system, also known as a locating system, is used for the observing of persons or objects on the move and supplying a timely ordered sequence of location data for further processing. It is important to be aware of human tracking, further details are listed below.\n\nApplications \nA myriad of tracking systems exists. Some are 'lag time' indicators, that is, the data is collected after an item has passed a point for example a bar code or choke point or gate. Others are 'real-time' or 'near", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3157091", "url": "https://en.wikipedia.org/wiki/Pre-rendering", "title": "Pre-rendering", "text": "Pre-rendering is the process in which video footage is not rendered in real-time by the hardware that is outputting or playing back the video. Instead, the video is a recording of footage that was previously rendered on different equipment (typically one that is more powerful than the hardware used for playback). Pre-rendered assets (typically movies) may also be outsourced by the developer to an outside production company. Such assets usually have a level of complexity that is too great for the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3162717", "url": "https://en.wikipedia.org/wiki/Spring%20Engine", "title": "Spring Engine", "text": "The Spring Engine (also termed SpringRTS and formerly TA Spring), is a game engine for real-time strategy (RTS) video games. The game engine is free and open-source software, subject to the terms of the GNU General Public License v2.0 or later.\n\nHistory \n\nThe development was initiated by Stefan Johansson, Tomaz Kunaver, and Jelmer Cnossen, members of the Swedish Yankspankers game clan under the name TA Spring. Since 2005 it is being developed by the community. The project aimed originally to bri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3176460", "url": "https://en.wikipedia.org/wiki/Real%20time%20Java", "title": "Real time Java", "text": "Real time Java is a catch-all term for a combination of technologies that enables programmers to write programs that meet the demands of real-time systems in the Java programming language.\n\nJava's sophisticated memory management, native support for threading and concurrency, type safety, and relative simplicity have created a demand for its use in many domains. Its capabilities have been enhanced to support real time computational needs:\n\n Real time Java supports a strict priority based threadi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3197378", "url": "https://en.wikipedia.org/wiki/Hanjuku%20Hero", "title": "Hanjuku Hero", "text": "is a Japan-exclusive series of real-time strategy video games. It is directed by Takashi Tokita and published by Square Enix (formerly Square). The series contains four main titles and a spin-off game. The main titles are Hanjuku Hero (1988), Hanjuku Hero: Aa, Sekaiyo Hanjukunare...! (1992), Hanjuku Hero Tai 3D (2003), and Hanjuku Hero 4: 7-Nin no Hanjuku Hero (2005). The spinoff is a Nintendo DS game called Egg Monster Hero (2005), which is a role-playing game with an emphasis on touch-based ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3216623", "url": "https://en.wikipedia.org/wiki/Ecological%20interface%20design", "title": "Ecological interface design", "text": "Ecological interface design (EID) is an approach to interface design that was introduced specifically for complex sociotechnical, real-time, and dynamic systems. It has been applied in a variety of domains including process control (e.g. nuclear power plants, petrochemical plants), aviation, and medicine.\n\nEID differs from some interface design methodologies like user-centered design (UCD) in that the focus of the analysis is on the work domain or environment, rather than on the end user or a sp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3219908", "url": "https://en.wikipedia.org/wiki/First%20Internet%20Backgammon%20Server", "title": "First Internet Backgammon Server", "text": "The First Internet Backgammon Server (FIBS) began operating on July 19, 1992, allowing users to play backgammon in real-time against other people. It was hosted on the Internet, and could track player performance using a modified version of the Elo rating system.\n\nIt was created by Andreas \"Marvin\" Schneider in 1992. It has been maintained since 1996 by Patti Beadles. Anyone with access to the Internet can create a username and play for free. FIBS caters to a strong international community of ba", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3224123", "url": "https://en.wikipedia.org/wiki/PlayOK", "title": "PlayOK", "text": "PlayOK, also known as kurnik (\"chicken coop\"), is a website of classic board and card games to play online against live opponents in real-time. It was created in 2001 by Marek Futrega, and was initially a Polish-only website. As of early 2005 it supported over 30 board and card games, and the site is available in 33 languages so far.\n\nHistory\nIt is the most popular on-line board game website in Poland.\n\nSince 7 October 2004 all game rules at Kurnik's web pages are available under the Creative Co", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3234139", "url": "https://en.wikipedia.org/wiki/Metal%20Fatigue%20%28video%20game%29", "title": "Metal Fatigue (video game)", "text": "Metal Fatigue (also known as Metal Conflict), is a futuristic science fiction, real-time strategy computer game developed by Zono and published by Psygnosis (in Europe) and TalonSoft (in the United States).\n\nThe game was re-released on June 21, 2018 on GOG.com and Steam by Nightdive Studios, who had acquired the rights to the game.\n\nPlot\nDuring the 23rd century, man has discovered faster-than-light travel and has finally reached the stars. Galactic exploration had confirmed man's worst two fears", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3234418", "url": "https://en.wikipedia.org/wiki/The%20Lord%20of%20the%20Rings%3A%20War%20of%20the%20Ring", "title": "The Lord of the Rings: War of the Ring", "text": "The Lord of the Rings: War of the Ring is a 2003 real-time strategy game (RTS) developed by Liquid Entertainment and published by Sierra Entertainment, a subsidiary of Vivendi Universal Games. Set in J. R. R. Tolkien\u2019s fictional Middle-earth, it expands upon the events of the War of the Ring as told in his fantasy novel, The Lord of the Rings.\n\nWar of the Ring is unrelated to the films by Peter Jackson. The game is licensed by Tolkien Enterprises, as are other book-based (as opposed to film-base", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3247158", "url": "https://en.wikipedia.org/wiki/Trafficlink", "title": "Trafficlink", "text": "Trafficlink, now called INRIX, is the former name of the British company specialising in providing real-time traffic information. Clients include the BBC, ITN, ITV, Sky News and Transport Direct. In partnership with Global Traffic Network it provides traffic and travel information to the majority of UK commercial and community radio stations including Bauer Radio, Global Radio, Absolute Radio and GMG Radio. As of January 2012, the company is now known as INRIX following the acquisition of Tra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3247950", "url": "https://en.wikipedia.org/wiki/Realms%20%28video%20game%29", "title": "Realms (video game)", "text": "Realms is a 1991 real-time strategy game produced by Graftgold Ltd. for MS-DOS, Amiga, and Atari ST. It was published by Virgin Games. In Realms, the player has to build cities, collect taxes, create troops and fight enemy cities and troops in order to defeat their opponents.\n\nIntroduction\n\nRealms shows an intro as the game loads. During this intro, it tells the story of a prince watching his late father, the king being immolated at sea. Mourning, he sheds a tear, and his mourning is rewarded ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3251816", "url": "https://en.wikipedia.org/wiki/American%20Conquest", "title": "American Conquest", "text": "American Conquest is a real-time strategy video game developed by GSC Game World and published by CDV Software Entertainment. It is set between the 15th and the early 19th centuries in the American continents. There is also an expansion pack produced for American Conquest, called American Conquest: Fight Back and a gold edition, which has both the original and expansion pack bundled together. The latest installment in the series is American Conquest: Divided Nation. All three titles are availabl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3251934", "url": "https://en.wikipedia.org/wiki/Powermonger", "title": "Powermonger", "text": "Powermonger is a real-time strategy game developed by Bullfrog in 1990 for Amiga and Atari ST, derived from the Populous engine but presented using a 3-dimensional game map.\n\nGameplay\n\nThe game features a 3-dimensional game map, although camera movement is limited to rotating the map by 90 degrees or small discrete intervals and 8 pre-defined levels of zoom. Only the map topography itself is 3-dimensional; people, trees and other game objects are 2-dimensional sprites.\n\nThe game features a fairl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3263176", "url": "https://en.wikipedia.org/wiki/Diameter%20Credit-Control%20Application", "title": "Diameter Credit-Control Application", "text": "Diameter Credit-Control Application, is a networking protocol for Diameter application used to\nimplement real-time credit-control for a variety of end user services.\n\nIt is an IETF standard first defined in RFC 4006, and updated in RFC 8506.\n\nPurpose \nThe purpose of the diameter credit control application is to provide a framework for real-time charging, primarily meant for the communication between gateways/control-points and the back-end account/balance systems (typically an Online Charging Sy", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3291904", "url": "https://en.wikipedia.org/wiki/Star%20Trek%3A%20Starfleet%20Command%20II%3A%20Empires%20at%20War", "title": "Star Trek: Starfleet Command II: Empires at War", "text": "Star Trek Starfleet Command II: Empires at War (known in North America as Starfleet Command Volume II: Empires at War) is the sequel to Star Trek: Starfleet Command and the second in the series of real-time space combat games, developed by Taldren, Inc. and published by Interplay. A stand-alone expansion pack was released in July 2001 titled Starfleet Command: Orion Pirates.\n\nPlot\nThe game features three singleplayer campaigns, two storyline campaigns, and a general conquest campaign. The first ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3302313", "url": "https://en.wikipedia.org/wiki/Sintran%20III", "title": "Sintran III", "text": "Sintran III is a real-time, multitasking, multi-user operating system used with Norsk Data minicomputers from 1974. Unlike its predecessors Sintran I and II, it was written entirely by Norsk Data, in Nord Programming Language (Nord PL, NPL), an intermediate language for Norsk Data computers.\n\nOverview\nSintran was mainly a command-line interface based operating system, though there were several shells which could be installed to control the user environment more strictly, by far the most popular ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3305317", "url": "https://en.wikipedia.org/wiki/Death%20Tank", "title": "Death Tank", "text": "Death Tank is a 1996 competitive multiplayer, 2D artillery game developed by Ezra Dreisbach of Lobotomy Software. Influenced by Scorched Earth, the gameplay is real-time instead of turn-based. It supports two to seven players, represented by differently-colored tanks, with a range of weapons. The terrain on which this occurs is heavily deformed during play.\n\nThe original Death Tank was a hidden bonus game in the Sega Saturn port of PowerSlave (1996). An update, Death Tank Zwei, was hidden in the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3307829", "url": "https://en.wikipedia.org/wiki/MegaWars", "title": "MegaWars", "text": "MegaWars was a series of real-time online multiplayer space empire building games which were hosted on CompuServe in the 1980s and lasted well into the 1990s. The original MegaWars I was a port of Decwar, originally developed at the University of Texas at Austin. A port using a basic client/server protocol and a basic graphical interface on the TRS-80 Color Computer as MegaWars II was never released. MegaWars III followed, based on an entirely different engine originally developed by Kesmai.\n\nEx", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3324309", "url": "https://en.wikipedia.org/wiki/Board%20support%20package", "title": "Board support package", "text": "In embedded systems, a board support package (BSP) is the layer of software containing hardware-specific drivers and other routines that allow a particular operating system (traditionally a real-time operating system, or RTOS) to function in a particular hardware environment (a computer or CPU card), integrated with the RTOS itself. Third-party hardware developers who wish to support a particular RTOS must create a BSP that allows that RTOS to run on their platform. In most cases the RTOS image ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3326038", "url": "https://en.wikipedia.org/wiki/ZV", "title": "ZV", "text": "ZV or zv may refer to:\n V Air (IATA airline code ZV)\n Air Midwest (former IATA airline code ZV)\n Zettavolt, an SI unit of voltage\n Zoomed video port, a unidirectional video bus allowing laptops to display real-time vide\n Zivilverteidigung der DDR, German for the Civil defense of the GDR", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3335034", "url": "https://en.wikipedia.org/wiki/Local-area%20augmentation%20system", "title": "Local-area augmentation system", "text": "The local-area augmentation system (LAAS) is an all-weather aircraft landing system based on real-time differential correction of the GPS signal. Local reference receivers located around the airport send data to a central location at the airport. This data is used to formulate a correction message, which is then transmitted to users via a VHF Data Link. A receiver on an aircraft uses this information to correct GPS signals, which then provides a standard ILS-style display to use while flying a p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3344337", "url": "https://en.wikipedia.org/wiki/DREAM%20%28software%29", "title": "DREAM (software)", "text": "The Distributed Real-time Embedded Analysis Method (DREAM) is a platform-independent open-source tool for the verification and analysis of distributed real-time and embedded (DRE) systems which focuses on the practical application of formal verification and timing analysis to real-time middleware. DREAM supports formal verification of scheduling based on task timed automata using the Uppaal model checker and the Verimag IF toolset as well as the random testing of real-time components using a di", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3366697", "url": "https://en.wikipedia.org/wiki/Sudden%20Strike%202", "title": "Sudden Strike 2", "text": "Sudden Strike 2 or Sudden Strike II is a real-time tactics computer game set in World War II, the second game in the Sudden Strike series and the sequel to the original Sudden Strike.\n\nGameplay\nSudden Strike 2 was also developed by Russian developer Fireglow and published by CDV and was released in 2002. The game has since undergone minor changes in its game engine and now features a higher resolution setting and other graphical changes. The campaign still involves the Soviets and Allies, agains", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3367202", "url": "https://en.wikipedia.org/wiki/Distributed%20algorithm", "title": "Distributed algorithm", "text": "A distributed algorithm is an algorithm designed to run on computer hardware constructed from interconnected processors. Distributed algorithms are used in different application areas of distributed computing, such as telecommunications, scientific computing, distributed information processing, and real-time process control. Standard problems solved by distributed algorithms include leader election, consensus, distributed search, spanning tree generation, mutual exclusion, and resource allocatio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3370544", "url": "https://en.wikipedia.org/wiki/Kohan%3A%20Immortal%20Sovereigns", "title": "Kohan: Immortal Sovereigns", "text": "Kohan: Immortal Sovereigns is a real-time strategy video game developed by TimeGate Studios. It was published for Microsoft Windows by Strategy First, and ported to Linux by Loki Software, both in 2001. With a high fantasy setting, the game follows immortal beings named Kohan. It features a lengthy single-player campaign and skirmish maps playable in multiplayer or against the AI. The gameplay focuses on controlling companies instead of individual soldiers, a mechanic praised by critics for elim", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3371970", "url": "https://en.wikipedia.org/wiki/Live%20looping", "title": "Live looping", "text": "Live looping is the recording and playback of a piece of music in real-time using either dedicated hardware devices, called loopers or phrase samplers, or software running on a computer with an audio interface. Musicians can loop with either laptop software or loop pedals, which are sold for tabletop and floor-based use.\n\nHistory of the looping device \nBy the late 19th century, jazz and blues had heavily influenced popular music, encouraging musicians to experiment with rhythm, repetition, and m", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3376803", "url": "https://en.wikipedia.org/wiki/Lost%20Kingdoms%20II", "title": "Lost Kingdoms II", "text": "Lost Kingdoms II, known as in Japan, is a role-playing video game developed by FromSoftware and published by Activision in North America and Europe. It is the sequel to Lost Kingdoms. Lost Kingdoms II is a card-based action role-playing game where battles are fought in real-time.\n\nPlot\nGenerations after the events of Lost Kingdoms, Katia of Argwyll is now remembered as a legendary queen. The heroine of this story is Tara Grimface, a reserved member of a guild of thieves, who is trying to find ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3396664", "url": "https://en.wikipedia.org/wiki/Choice%202000", "title": "Choice 2000", "text": "Choice 2000 on-line School is California's 64 Charter school. Its real-time online service is provided to students in grades 9\u201312 in the southern California area.\n\nHistory\nThe original concept of this charter school was developed by Michael T. Allen in 1994. Under the California State rules, it received signatures of at least 50% of the teachers of the Perris Lake Continuation School and was submitted to Superintendent Stephen Thiel, and Asst. Superintendents Judy Smith and Donald Sauter. It was", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3409656", "url": "https://en.wikipedia.org/wiki/Optimized%20power%20control", "title": "Optimized power control", "text": "Optimized Power Control, also known as Optimum Power Calibration, abbreviated OPC, is a function of optical disc recorders. \n\nIt checks the proper writing power and reflection of the media in use, calculating the optimum laser power and adjusting it for writing the particular session. More sophisticated is Active OPC or Running OPC. Active OPC monitors writing power and reflection of the media in use, calculating the optimum laser power and adjusting it in real-time, which, in theory, should res", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3439755", "url": "https://en.wikipedia.org/wiki/Mobile%20ESPN", "title": "Mobile ESPN", "text": "Mobile ESPN was a mobile virtual network operator (MVNO) run by The Walt Disney Company using Sprint's EVDO wireless network from November 25, 2005 until December 2006. The service was widely considered overpriced and a failure.\n\nApplication\n\nMobile ESPN\u2019s key feature was a sports application that could access news, highlights, and scores. The Java-based application was able to provide real-time scores, such that the phone was frequently five or more seconds ahead of a television broadcast in up", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3470071", "url": "https://en.wikipedia.org/wiki/UFO%3A%20Aftershock", "title": "UFO: Aftershock", "text": "UFO: Aftershock is a real-time tactics/turn-based strategy video game developed by Altar Interactive and released by Cenega Publishing in Europe and Tri Synergy in North America in 2005. It is a squad combat game at its core with overlying strategic elements inspired by the 1994 classic X-COM: UFO Defense, though less than its own 2004 predecessor, UFO: Aftermath. It was followed by UFO: Afterlight in 2007.\n\nGameplay\nThe combat section of the game uses a real-time system with adjustable speed al", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3477191", "url": "https://en.wikipedia.org/wiki/VIX", "title": "VIX", "text": "VIX is the ticker symbol and the popular name for the Chicago Board Options Exchange's CBOE Volatility Index, a popular measure of the stock market's expectation of volatility based on S&P 500 index options. It is calculated and disseminated on a real-time basis by the CBOE, and is often referred to as the fear index or fear gauge.\n\nThe VIX traces its origin to the financial economics research of Menachem Brenner and Dan Galai. In a series of papers beginning in 1989, Brenner and Galai proposed", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3479482", "url": "https://en.wikipedia.org/wiki/DEFCON%20%28video%20game%29", "title": "DEFCON (video game)", "text": "DEFCON (stylised as DEFCO\u0418 and sometimes subtitled Everybody Dies in the North American version and Global Thermonuclear War in the European version) is a real-time strategy game created by independent British game developer Introversion Software. The gameplay is a simulation of a global nuclear war, with the game's screen reminiscent of the \"big boards\" that visually represented thermonuclear war in films such as Dr. Strangelove, Fail-Safe, and especially WarGames.\n\nThe game has been available ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3487107", "url": "https://en.wikipedia.org/wiki/Real-time%20polymerase%20chain%20reaction", "title": "Real-time polymerase chain reaction", "text": "A real-time polymerase chain reaction (real-time PCR) (Sometimes referred to as qPCR) is a laboratory technique of molecular biology based on the polymerase chain reaction (PCR). It monitors the amplification of a targeted DNA molecule during the PCR (i.e., in real time), not at its end, as in conventional PCR. Real-time PCR can be used quantitatively (quantitative real-time PCR) and semi-quantitatively (i.e., above/below a certain amount of DNA molecules) (semi-quantitative real-time PCR).\n\nTwo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3488740", "url": "https://en.wikipedia.org/wiki/Sword%20of%20the%20Stars", "title": "Sword of the Stars", "text": "Sword of the Stars is a space 4X game developed by Kerberos Productions. In the game the player chooses one of four unique races to form an interstellar empire and conquer the galaxy. In order to win, the player must expand territory by colonizing new star systems, exploit the resources available to their colonies, design and build starships, and improve their empire's technology through research and strategy.\n\nSword of the Stars consists of turn-based strategic gameplay highlighted by real-time", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3489420", "url": "https://en.wikipedia.org/wiki/UFO%3A%20Aftermath", "title": "UFO: Aftermath", "text": "UFO: Aftermath is a 2003 real-time tactics/turn-based strategy video game created by ALTAR Interactive. It is a homage to the X-COM game series, with roots in the unfinished game The Dreamland Chronicles: Freedom Ridge. It was followed by two sequels, UFO: Aftershock (2005) and UFO: Afterlight (2007).\n\nThe game's concept is similar to the unreleased X-COM: Genesis. The player assumes the role of commander of the last humans left on Earth and guides the forces through the crisis to eventually ove", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3495584", "url": "https://en.wikipedia.org/wiki/FateLords", "title": "FateLords", "text": "FateLords was one of the first browser based on massively multiplayer online, real-time strategy video games. It was played for 6 years since 2002, until officially closed in June 2008. During that time, it won a Golden Web Awards (2002, 2003, 2004), a Canadian Web award (2002), GameSpotter award, KTU Technorama and it was announced as the best Lithuanian product of information and communications technology in 2002. The game was created by Zygimantas Berziunas and later sold for Dokeda company, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3509827", "url": "https://en.wikipedia.org/wiki/Matrix%20Games", "title": "Matrix Games", "text": "Matrix Games is a publisher of PC games, specifically strategy games and wargames. The US LLC company is based out of Ohio (USA), and the UK Ltd company is based out of Epsom, Surrey (UK) . \n\nTheir focus is primarily but not exclusively on wargames and turn-based strategy. The product line-up also includes space sims (Starshatter: The Gathering Storm), sports management sims (Maximum-Football), and real-time strategy titles (Close Combat: Cross of Iron).\n\nMatrix Games publishes games from a var", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3539888", "url": "https://en.wikipedia.org/wiki/Commandos%202%3A%20Men%20of%20Courage", "title": "Commandos 2: Men of Courage", "text": "Commandos 2: Men of Courage is a real-time tactics video game, developed by Pyro Studios, published by Eidos Interactive, and released on September 20, 2001. It is a sequel to Commandos: Behind Enemy Lines and the second installment of the Commandos series, and is the only strategy game of the series to be designed not only for Microsoft Windows, but also for PlayStation 2 and Xbox. The game sees players taking control of a squad of commandos, along with various allied units, as they sneak behin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3550521", "url": "https://en.wikipedia.org/wiki/Castles%20II%3A%20Siege%20and%20Conquest", "title": "Castles II: Siege and Conquest", "text": "Castles II: Siege and Conquest is a 1992 real-time strategy game for the MS-DOS, developed by Quicksilver Software and published by Interplay Productions. Castles II is the sequel to the 1991 game Castles. Ports for the Amiga CD32, FM Towns, NEC PC-9801 were released in 1993. DOS CD-ROM version and Macintosh port were released in 1994. The Macintosh version of the game was published by Interplay's MacPlay brand name. GOG.com released an emulated version for Microsoft Windows in 2008.\n\nStory \nThe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3569625", "url": "https://en.wikipedia.org/wiki/David%20A.%20Smith%20%28computer%20scientist%29", "title": "David A. Smith (computer scientist)", "text": "David Alan Smith (born February 11, 1957 in Camp Lejeune, North Carolina) is an American computer scientist, inventor and entrepreneur. He is the founder and CTO of Croquet Corporation. He previously was the chairman of Gensym, one of the first public artificial intelligence companies, and later was Chief Innovation Officer and a Senior Fellow at Lockheed Martin Corporation, leading their augmented reality and virtual reality work.\n\nSmith developed the world\u2019s first 3D real-time adventure/shoote", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3595559", "url": "https://en.wikipedia.org/wiki/Real%20Fiction", "title": "Real Fiction", "text": "Real Fiction (; lit. \"State of Reality\") is a 2000 crime-drama film from South Korean director Kim Ki-duk. It stars Joo Jin-mo, Kim Jin-ah and Son Min-seok. It was shot entirely in real-time, with no retakes, on a mixture of low quality video and purposefully \"dirtied\" film. The film was entered into the 23rd Moscow International Film Festival.\n\nPlot\nReal Fiction follows a South Korean artist as he systematically seeks out, and then kills his real or imagined enemies.\n\nReferences\n\nExternal links", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3596312", "url": "https://en.wikipedia.org/wiki/Glest", "title": "Glest", "text": "Glest is a free and open-source real-time strategy computer game from 2004. Glest is set in a medieval fantasy world with two factions, and was compared with Warcraft III and the Empire Earth series. The game received positive to mixed reviews from the press, has been downloaded over two million times, and spawned several derivative continuation projects which are under active development.\n\nDevelopment\nThe game was started by a team based in Spain around 2004.\nRelease of version 3.0 added onlin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3597140", "url": "https://en.wikipedia.org/wiki/Ethernet%20Powerlink", "title": "Ethernet Powerlink", "text": "Ethernet Powerlink is a real-time protocol for standard Ethernet. It is an open protocol managed by the Ethernet POWERLINK Standardization Group (EPSG). It was introduced by Austrian automation company B&R in 2001.\n\nThis protocol has nothing to do with power distribution via Ethernet cabling or power over Ethernet (PoE), power line communication, or Bang & Olufsen's PowerLink cable.\n\nOverview \nEthernet Powerlink expands Ethernet with a mixed polling and timeslicing mechanism. This provides:\n\n Gu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3599809", "url": "https://en.wikipedia.org/wiki/Star%20Wolf", "title": "Star Wolf", "text": "Star Wolf or Starwolf may refer to:\n\n Star Wolf, a 1971 science-fiction novel by Ted White\n Star Wolf, a team of mercenaries from the Star Fox series of video games.\n Star Wolf (novel series), a series of science fiction novels by American writer David Gerrold\n Star Wolf (TV series), a Japanese science fiction TV series based on the novel series \n Starwolf (novel series), a series of three novels by Edmond Hamilton\n\nSee also\n Star Wolves, a real-time, futuristic video game developed by Russian v", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3600827", "url": "https://en.wikipedia.org/wiki/Police%20Quest%3A%20SWAT%202", "title": "Police Quest: SWAT 2", "text": "Police Quest: SWAT 2 (stylized as SWAT2) is a 1998 real-time tactics and police simulation video game released for Microsoft Windows. It is the sixth game in the Police Quest series. It uses an isometric projection camera view, somewhat similar to the squad-level real-time tactics video game in the mold of X-COM or Jagged Alliance games. Police Quest: SWAT 2s gameplay takes place in real-time, with the player issuing orders to individual avatars from a static isometric view of the level.\n\nDevelo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3602387", "url": "https://en.wikipedia.org/wiki/SIMNET", "title": "SIMNET", "text": "SIMNET was a wide area network with vehicle simulators and displays for real-time distributed combat simulation: tanks, helicopters and airplanes in a virtual battlefield. SIMNET was developed for and used by the United States military. SIMNET development began in the mid-1980s, was fielded starting in 1987, and was used for training until successor programs came online well into the 1990s.\n\nOrigination and Purpose \n\nJack Thorpe of the Defense Advanced Research Projects Agency (DARPA) saw the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3609378", "url": "https://en.wikipedia.org/wiki/Imperishable%20Night", "title": "Imperishable Night", "text": "is a 2004 vertical bullet hell scrolling shoot 'em up developed by Team Shanghai Alice. It is the eighth game in the Touhou Project series, and the third main Touhou game to be released specifically for the Windows operating system. \n\nImperishable Night introduces the 'partner' system, allowing the player a choice between four teams of two characters to switch between, each with their own shot type, in real-time.\n\nThe story centers around Gensokyo's moon being replaced by a fake during the Harve", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3616435", "url": "https://en.wikipedia.org/wiki/Interactive%20Ruby%20Shell", "title": "Interactive Ruby Shell", "text": "Interactive Ruby Shell (IRB or irb) is a REPL for programming in the object-oriented scripting language Ruby. The abbreviation irb is a portmanteau of the word \"interactive\" and the filename extension for Ruby files, \".rb\".\n\nThe program is launched from a command line and allows the execution of Ruby commands with immediate response, experimenting in real-time. It features command history, line editing capabilities, and job control, and is able to communicate directly as a shell script over the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3630638", "url": "https://en.wikipedia.org/wiki/Space%20Hulk%3A%20Vengeance%20of%20the%20Blood%20Angels", "title": "Space Hulk: Vengeance of the Blood Angels", "text": "Space Hulk: Vengeance of the Blood Angels is a video game published by Electronic Arts in 1995 for the 3DO which was later ported to PlayStation, Sega Saturn and Microsoft Windows. It is based on Games Workshop's board game Space Hulk and is the sequel to the 1993 video game Space Hulk. Like its predecessor, Vengeance of the Blood Angels combines first-person shooter gameplay with real-time tactical elements. Space Hulk: Vengeance of the Blood Angels is part of the Warhammer 40,000 universe.\n\nPl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3652088", "url": "https://en.wikipedia.org/wiki/Silent%20Hill%20%28video%20game%29", "title": "Silent Hill (video game)", "text": "is a 1999 survival horror game developed by Team Silent, a group in Konami Computer Entertainment Tokyo, and published by Konami. The first installment in the Silent Hill series, the game was released from February to July, originally for the PlayStation. Silent Hill uses a third-person view, with real-time rendering of 3D environments. To mitigate limitations of the console hardware, developers liberally used fog and darkness to muddle the graphics. Unlike earlier survival horror games that foc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3653968", "url": "https://en.wikipedia.org/wiki/WarBreeds", "title": "WarBreeds", "text": "WarBreeds is a real-time strategy video game developed and published by Red Orb Entertainment and Broderbund. The game is set in a far off galaxy where the humanoid amphibian race called the Yedda have died out due to famine, disease and civil war, leaving their four former servitor races to fight for supremacy for their planet. WarBreeds features the ability to fully customise the warriors with many types of weapons which provide over 35,000 unique combinations. The central theme and mechanic o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3673806", "url": "https://en.wikipedia.org/wiki/RTEMS", "title": "RTEMS", "text": "Real-Time Executive for Multiprocessor Systems (RTEMS), formerly Real-Time Executive for Missile Systems, and then Real-Time Executive for Military Systems, is a real-time operating system (RTOS) designed for embedded systems. It is free and open-source software.\n\nDevelopment began in the late 1980s with early versions available via File Transfer Protocol (ftp) as early as 1993. OAR Corporation is currently managing the RTEMS project in cooperation with a steering committee which includes user r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3684992", "url": "https://en.wikipedia.org/wiki/Tire-pressure%20monitoring%20system", "title": "Tire-pressure monitoring system", "text": "A tire-pressure monitoring system (TPMS) monitors the air pressure inside the pneumatic tires on vehicles. A TPMS reports real-time tire-pressure information to the driver, using either a gauge, a pictogram display, or a simple low-pressure warning light. TPMS can be divided into two different types\u00a0\u2013 direct (dTPMS) and indirect (iTPMS).\n\nTPMS are installed either at when vehicle made or after the vehicle is put to use. The goal of a TPMS is avoiding traffic accidents, poor fuel economy, and inc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3688803", "url": "https://en.wikipedia.org/wiki/Atropos%20scheduler", "title": "Atropos scheduler", "text": "In computer science, Atropos is a real-time scheduling algorithm developed at Cambridge University. It combines the earliest deadline first algorithm with a best effort scheduler to make use of slack time, while exercising strict admission control.\n\nExternal links \n The Atropos Scheduler\n\nScheduling algorithms\nReal-time computing", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3695999", "url": "https://en.wikipedia.org/wiki/Musical%20performance", "title": "Musical performance", "text": "Musical performance may refer to:\n\n Audition\n Concert, the performance of multiple pieces by an ensemble or soloist\n Recital, a performance which highlights a single performer, composer, or instrument\n Concerto\n Gig (musical performance), slang for a live musical performance\n Musical composition, and the interpretation by performers\n Musical improvisation, as opposed to musical composition\n Musical technique\n Musical phrasing\n Network musical performance, a real-time interaction over a computer ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3707677", "url": "https://en.wikipedia.org/wiki/Kure%20Software%20Koubou", "title": "Kure Software Koubou", "text": "Kure Software Koubou (\u5449\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u5de5\u623f), or KSK, is a Japanese game development company founded in 1985 that creates games for many platforms, but focusing mostly on home computers. KSK's games are well known for the \"Gochyakyara\" (\u30b4\u30c1\u30e3\u30ad\u30e3\u30e9 \"Multiple Character\") system which KSK invented, which was a unique hybrid between the real-time strategy, action role-playing game and tactical role-playing game genres. Some of their games also used a European art style in addition to a Japanese anime style. KSK is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3717207", "url": "https://en.wikipedia.org/wiki/Empire%20Earth%3A%20The%20Art%20of%20Conquest", "title": "Empire Earth: The Art of Conquest", "text": "Empire Earth: The Art of Conquest is the expansion pack for the real-time strategy game Empire Earth. Art of Conquest was developed by Mad Doc Software, and was released on September 17, 2002, in the United States. The game was released in Europe later in the year, and the following year in Japan. The Gold Edition of Empire Earth, which features both the original and the expansion, was released on May 6, 2003.\n\nArt of Conquest added several new features to the original Empire Earth, including un", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3723953", "url": "https://en.wikipedia.org/wiki/Pax%20Imperia%3A%20Eminent%20Domain", "title": "Pax Imperia: Eminent Domain", "text": "Pax Imperia: Eminent Domain is a real-time strategy video game. The game emphasizes empire building and customization. Pax Imperia is a Latin term, meaning \"peace from empire\". It is the sequel to the 1992 video game Pax Imperia.\n\nGameplay\nInstead of using a single large map as do most real-time strategy games, the game revolves around star systems connected by wormholes or jump points, which connect a system of star systems in a large web. The game allows the player to customise the species tha", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3727460", "url": "https://en.wikipedia.org/wiki/Br%C3%A9hat", "title": "Br\u00e9hat", "text": "Br\u00e9hat may refer to:\n\n \u00cele-de-Br\u00e9hat, an island located off the northern coast of Brittany.\n BR\u00c9HAT, a real-time localization system employed by SNCF.\n Great Brehat, a settlement in Newfoundland and Labrador, Canada\n\nSee also\n Paimpol\u2013Br\u00e9hat tidal farm, tidal turbine demonstration farm off \u00cele-de-Br\u00e9hat near Paimpol, France", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3728464", "url": "https://en.wikipedia.org/wiki/Clearing%20house", "title": "Clearing house", "text": "Clearing house or Clearinghouse may refer to:\n\nBanking and finance\n Clearing house (finance)\n Automated clearing house\n ACH Network, an electronic network for financial transactions in the U.S.\n Bankers' clearing house\n Cheque clearing\n Clearing House (EU), an EU intelligence body\n Clearing House Association, a New York trade group and banking association\n Clearing House Automated Transfer System (HK), a real-time gross settlement system in Hong Kong\n The Clearing House Payments Company, an Amer", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3729451", "url": "https://en.wikipedia.org/wiki/Nether%20Earth", "title": "Nether Earth", "text": "Nether Earth is one of the earliest computer real-time strategy games. It was released for the Amstrad CPC, ZX Spectrum and Commodore 64 in 1987. It was published in the United Kingdom by Argus Press Software and re-released in Spain by Mind Games Espana S.A.\n\nPlot\n\nThe player takes the control of the human side in a war against the mysterious Insignian race. All of the warfare is carried out by enormous military robots.\n\nGameplay\nThe player controls a flying machine which can fly over any part ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3731321", "url": "https://en.wikipedia.org/wiki/Star%20Trek%3A%20Legacy", "title": "Star Trek: Legacy", "text": "Star Trek: Legacy is a 2006 real-time tactics space combat video game for Microsoft Windows and Xbox 360 developed by Mad Doc Software and published by Bethesda Softworks in association with CBS Paramount Television and CBS Consumer Products. Originally slated for release in the fall of 2006 to coincide with the 40th anniversary of Star Trek, the Windows version was not released in North America until December 6, 2006, and the Xbox 360 version until December 15. In Europe, both the PC version an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3733342", "url": "https://en.wikipedia.org/wiki/Myth%20III%3A%20The%20Wolf%20Age", "title": "Myth III: The Wolf Age", "text": "Myth III: The Wolf Age is a 2001 real-time tactics video game developed by MumboJumbo and co-published by Take-Two Interactive and Gathering of Developers for Windows and by Take-Two and MacSoft for Mac OS. The Wolf Age is the third game in the Myth series, following 1997's Myth: The Fallen Lords and 1998's Myth II: Soulblighter, both of which were developed by Bungie. In 1999, Take-Two purchased 19.9% of Bungie's shares, but when Microsoft bought Bungie outright in 2000, the rights for Oni and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3746530", "url": "https://en.wikipedia.org/wiki/Virginia%20Bauer", "title": "Virginia Bauer", "text": "Virginia Samaras Bauer is an advocate for families of the victims of the September 11 terror attacks and a government leader in New Jersey. She currently is CFO of GTBM Inc., a security technology company that develops and markets proprietary software solutions to enable public and private sector users to wirelessly conduct real-time queries which directly access local, state, and. federal crime intelligence and motor vehicle databases. She serves as Director of the Newmark Group, Inc. which is", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3779460", "url": "https://en.wikipedia.org/wiki/Mud%20%28disambiguation%29", "title": "Mud (disambiguation)", "text": "Mud is a liquid or semi-liquid mixture of water and soil.\n\nMUD is a multiplayer real-time virtual world (originally Multi-User Dungeon, Multi-User Dimension, or Multi-User Domain)\n\nMud or MUD may also refer to:\n\nConstruction material\nDrilling fluid, commonly called drilling mud\nJoint compound, powdered gypsum mixed with water\n\nFilm and television\nMud (TV series), a BBC television program\nMud (1997 film), a Bulgarian short film\nMud (2012 film), a coming-of-age drama film directed by Jeff Nichols\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3790508", "url": "https://en.wikipedia.org/wiki/Medieval%20II%3A%20Total%20War", "title": "Medieval II: Total War", "text": "Medieval II: Total War is a strategy video game developed by The Creative Assembly and published by Sega. It was released for Microsoft Windows on 10 November 2006. Feral Interactive published versions of the game for MacOS and Linux on 14 January 2016. It is the sequel to 2002's Medieval: Total War and the fourth title in the Total War series.\n\nGameplay is divided between a turn-based strategic campaign and real-time tactical battles. The campaign is set between the years 1080 and 1530. Players", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3792453", "url": "https://en.wikipedia.org/wiki/Divided%20We%20Fall", "title": "Divided We Fall", "text": "Divided We Fall may refer to:\n \"United we stand, divided we fall\", a motto\n\n \"Divided We Fall\" (short story), by Raymond F. Jones\n Divided We Fall (film), a 2000 Czech film directed by Jan H\u0159ebejk\n Divided We Fall (album), a 2016 album by Flaw\n Divided We Fall (video game), a 2016 real-time strategy game\n \"Divided We Fall\" (Justice League Unlimited episode), a 2005 episode of Justice League Unlimited\n\nSee also\n\n \n \n United We Stand (disambiguation)\n United We Fall (disambiguation)\n Divided We St", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3817206", "url": "https://en.wikipedia.org/wiki/BLI", "title": "BLI", "text": "BLI may refer to:\n\nBiology\n Bio-layer interferometry, a real-time technique to study biomolecular interactions\n Bioluminescence imaging, a technology that allows for the noninvasive study of small laboratory animals\n\nOrganizations\n Bible Lessons International, an American Bible study ministry\n BirdLife International, the international conservation organization working to protect the world's birds and their habitats\n\nOther\n Bellingham International Airport, a public airport located three miles (5", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3828426", "url": "https://en.wikipedia.org/wiki/Kst%20%28software%29", "title": "Kst (software)", "text": "Kst is a plotting and data viewing program. It is a general purpose plotting software program that evolved out of a need to visualize and analyze astronomical data, but has also found subsequent use in the real time display of graphical information. Kst is a KDE application and is freely available for anyone to download and use under the terms of the GPL. It is noted for being able to graph real-time data acquisition.\n\nHistory\nKst was initially developed by Barth Netterfield, an astrophysicist", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3843277", "url": "https://en.wikipedia.org/wiki/Cossacks%3A%20European%20Wars", "title": "Cossacks: European Wars", "text": "Cossacks: European Wars is a real-time strategy video game for Microsoft Windows made by the Ukrainian developer GSC Game World. It was released on 24 April 2001. The game has an isometric view and is set in the 17th and 18th centuries of Europe. It features sixteen playable nations each with its own architectural styles, technologies and no limit on unit numbers.\n\nPlayers must avoid famine and engage in army expansion, building construction and simple resource gathering. Mission scenarios range", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3851464", "url": "https://en.wikipedia.org/wiki/Real-time%20tactics", "title": "Real-time tactics", "text": "Real-time tactics (RTT) is a subgenre of tactical wargames played in real-time simulating the considerations and circumstances of operational warfare and military tactics. It is differentiated from real-time strategy gameplay by the lack of classic resource micromanagement and base or unit building, as well as the greater importance of individual units and a focus on complex battlefield tactics.\n\nCharacteristics\n\nTypical real-time strategy titles encourage the player to focus on logistics and p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3857135", "url": "https://en.wikipedia.org/wiki/Pax%20Imperia", "title": "Pax Imperia", "text": "Pax Imperia is a 4X game for the Apple Macintosh, released in 1992. The game won praise for its complex gameplay, real-time mode and ability for up to 16 players to join a single game using AppleTalk.\n\nPax Imperia: Eminent Domain was released in 1997 as a sequel, for both the Mac and PC.\n\nPax Imperia is a Latin term, meaning \"peace of the empires\".\n\nGameplay\n\nLike most 4X games, Pax Imperia'''s basic gameplay involved building spaceships and flying to other worlds in order to take them over. Onc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3868589", "url": "https://en.wikipedia.org/wiki/LostMagic", "title": "LostMagic", "text": "is a real-time strategy role-playing video game developed by Taito for the Nintendo DS system. It supports the Nintendo Wi-Fi Connection.\n\nGameplay\nThere are two primary elements to this game: the magic system, and the use of captured monsters as soldiers. Since mages, such as the one the player controls, cannot physically attack, the player must rely on magic. The player can launch a wide variety of magical spells by drawing runes on the DS's touch screen. Runes drawn more accurately result in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3884544", "url": "https://en.wikipedia.org/wiki/World%20Area%20Forecast%20Center", "title": "World Area Forecast Center", "text": "A World Area Forecast Centre (WAFC) is a meteorological centre that provides real-time meteorological information broadcasts for aviation purposes. These broadcasts are supervised by International Civil Aviation Organization (ICAO) in order to fulfill requirements of the ICAO Annex 3 covering meteorological information which is necessary for flights. The role of the WAFCs is to provide meteorological messages with worldwide coverage for pilot briefing. They are usually part of the Pre-Flight Inf", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3895745", "url": "https://en.wikipedia.org/wiki/Smart%20meter", "title": "Smart meter", "text": "A smart meter is an electronic device that records information such as consumption of electric energy, voltage levels, current, and power factor. Smart meters communicate the information to the consumer for greater clarity of consumption behavior, and electricity suppliers for system monitoring and customer billing. Smart meters typically record energy near real-time, and report regularly, short intervals throughout the day. Smart meters enable two-way communication between the meter and the ce", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3902584", "url": "https://en.wikipedia.org/wiki/Sea%20Legends", "title": "Sea Legends", "text": "Sea Legends () is an MS-DOS based game developed by the Russian company Mir Dialogue (later Nival), published by New Media Generation (in Russia) and Ocean of America (North America) and distributed by GTE Entertainment. First big project by the veteran of the Russian gaming industry Sergey Orlovskiy, it was among the pioneers of the voxel technology in video games, combining 3D environment with 2D sprites, which allowed for an open world sea basin and real-time naval battles.\n\nSea Legends was i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3913934", "url": "https://en.wikipedia.org/wiki/Nokia%20N71", "title": "Nokia N71", "text": "The Nokia N71 is a smartphone announced by Nokia on November 2, 2005 and released in June 2006. It was Nokia's joint-first clamshell smartphone, like the N92 announced on the same day. The N71 runs on Symbian OS v9.1 (S60 3rd Edition).\n\nFeatures\n\nFeatures include a 2 megapixel camera, a built-in flash, a front VGA camera to allow real-time video calling, FM radio, Bluetooth, digital music player functionality, comes standard with a full Web browser, and has support for 3D Java games. It also has", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3931698", "url": "https://en.wikipedia.org/wiki/KKnD%20%28series%29", "title": "KKnD (series)", "text": "KKnD, or Krush, Kill 'n' Destroy is a series of post-apocalyptic real-time strategy games by Beam Software. KKnD was released in 1997, while a sequel - KKND2: Krossfire was released in 1998. KKnD Xtreme, an expanded version of the original, featuring extra missions and enhancements, was released in 1997, and later re-released on GOG.com in 2012.\n\nAll games in the series feature a campaign for each of the different factions in each game, alongside multiplayer capabilities.\n\nGames in the series\nKK", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3932551", "url": "https://en.wikipedia.org/wiki/WC2", "title": "WC2", "text": "WC2 may stand for: \n WC2, a postcode district in the WC postcode area for central London\n White Collar-2, a blue light photoreceptor in fungi\n Wing Commander II: Vengeance of the Kilrathi, a 1991 space combat simulation video game\n Warcraft II: Tides of Darkness, a 1995 real-time strategy video game\n Warcraft II: Beyond the Dark Portal, expansion pack to Tides of Darkness\n WC2 University Network, a network of universities around the world", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3943054", "url": "https://en.wikipedia.org/wiki/QuickTime%20Streaming%20Server", "title": "QuickTime Streaming Server", "text": "QuickTime Streaming Server (QTSS) is a server or service daemon that was built into Apple's Mac OS X Server until OS X Server 10.6.8. It delivers video and audio on request to users over a computer network, including the Internet. Its primary GUI configuration tool is QTSS Publisher and its web-based administration port is 1220. It also uses port UDP/7100. When used in conjunction with QuickTime Broadcaster, it is possible to deliver live real-time video and audio to multiple users over network", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3964856", "url": "https://en.wikipedia.org/wiki/MechWarrior%202%3A%2031st%20Century%20Combat", "title": "MechWarrior 2: 31st Century Combat", "text": "MechWarrior 2: 31st Century Combat is a vehicle simulation game developed and published by Activision, released in 1995 as part of the MechWarrior series of video games in the BattleTech franchise. The game is set in 3057, and is played as a tactical simulation that incorporates aspects of real-time first-person combat and the physical simulation of the player's mech. It is a game recreation of the \"Refusal War.\" The player can join one of the clans, Clan Jade Falcon or Clan Wolf while engaging ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "3984230", "url": "https://en.wikipedia.org/wiki/Ensonido", "title": "Ensonido", "text": "Ensonido is a real-time post processing algorithm that allows users to play back MP3 Surround files in standard headphones.\nEnsonido was developed by the Fraunhofer Society. It simulates the natural reception of surround sound by the human ear, which usually receives tones from surrounding loudspeakers and from reflections and echoes of the listening room. The out-of-head localization achieved that way increases the listening comfort noticeably in contrast to conventional stereo headphone listen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4010858", "url": "https://en.wikipedia.org/wiki/Video%20relay%20service", "title": "Video relay service", "text": "A video relay service (VRS), also sometimes known as a video interpreting service (VIS), is a video telecommunication service that allows deaf, hard-of-hearing, and speech-impaired (D-HOH-SI) individuals to communicate over video telephones and similar technologies with hearing people in real-time, via a sign language interpreter.\n\nA similar video interpreting service called video remote interpreting (VRI) is conducted through a different organization often called a \"Video Interpreting Service P", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4018271", "url": "https://en.wikipedia.org/wiki/T.120", "title": "T.120", "text": "T.120 is a suite of point-to-multipoint communication protocols for teleconferencing, videoconferencing, and computer-supported collaboration. It provides for application sharing, online chat, file sharing, and other functions. The protocols are standardised by the ITU Telecommunication Standardization Sector (ITU-T).\n\nT.120 has been implemented in various real-time collaboration programmes, including WebEx and NetMeeting. IBM Sametime switched from the T.120 protocols to HTTP(S) in version 8.5.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4039380", "url": "https://en.wikipedia.org/wiki/Media%20processor", "title": "Media processor", "text": "A media processor, mostly used as an image/video processor, is a microprocessor-based system-on-a-chip which is designed to deal with digital streaming data in real-time (e.g. display refresh) rates. These devices can also be considered a class of digital signal processors (DSPs).\n\nUnlike graphics processing units (GPUs), which are used for computer displays, media processors are targeted at digital televisions and set-top boxes.\n\nThe streaming digital media classes include:\n uncompressed video\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4040200", "url": "https://en.wikipedia.org/wiki/Track%20and%20trace", "title": "Track and trace", "text": "In the distribution and logistics of many types of products, track and trace or tracking and tracing concerns a process of determining the current and past locations (and other information) of a unique item or property.\n\nThis concept can be supported by means of reckoning and reporting of the position of vehicles and containers with the property of concern, stored, for example, in a real-time database. This approach leaves the task to compose a coherent depiction of the subsequent status report", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4074609", "url": "https://en.wikipedia.org/wiki/Fetendo", "title": "Fetendo", "text": "Fetendo is a form of fetal intervention in the treatment of birth defects and other fetal problems. The procedure uses real-time video imagery from fetoscopy and ultrasonography to guide very small surgical instruments into the uterus in order to surgically help the fetus. The name Fetendo was adopted for the procedure because of how the video-based manipulation recalls a video game.\n\n\nOverview\nFetendo intervention is less invasive than open fetal surgery. It can be often be achieved with just a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4074782", "url": "https://en.wikipedia.org/wiki/IceRocket", "title": "IceRocket", "text": "IceRocket was an Internet search engine which specialized in real-time search. Based in Dallas, Texas, it launched in 2004 hoping to market itself solely through word of mouth.\n \nIceRocket was backed by Mark Cuban and headquartered in Dallas, Texas. The company has received angel funding from Mr. Cuban.\n\nHistory and growth\nIcerocket launched in 2004. The search engine originally launched with features designed to make web searches on a PDA much easier, for instance allowing users to email a quer", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4109362", "url": "https://en.wikipedia.org/wiki/DataMirror", "title": "DataMirror", "text": "DataMirror Corporation, founded in 1993, is a computer software company based in Markham, Ontario, Canada with offices in several countries. The company provides real-time data integration, protection, and Java database products, and in 2006 claimed to have over 2100 business customers in industries including healthcare, retail, telecommunications, and financial services. As of 2007, the company is a wholly owned subsidiary of the IBM Corporation.\n\nHistory\n 1993 - DataMirror was founded\n 1996 -", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4110111", "url": "https://en.wikipedia.org/wiki/Clones%20%28video%20game%29", "title": "Clones (video game)", "text": "Clones is a puzzle real-time strategy by Canadian developer Tomkorp for Microsoft Windows, released on November 18, 2010 through Steam. Clones was created by independent game developer Tomkorp Computer Solutions as their first game. It features alien creatures named clones to which the player can assign a variety of morph commands which cause the clones to deform their body in order to navigate the terrain. Multiple game types are supported as well as both singleplayer and multiplayer modes.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4117267", "url": "https://en.wikipedia.org/wiki/Sid%20Meier%27s%20Antietam%21", "title": "Sid Meier's Antietam!", "text": "Sid Meier's Antietam! is a real-time computer wargame designed by Sid Meier, the co-founder of Firaxis Games, then released in December 1999. It is the sequel to the 1997 Sid Meier's Gettysburg!.\n\nGameplay\nThe game allows the player to control either the Confederate or Union troops during the Battle of Antietam of the American Civil War. It can be played as a single scenario, or as a campaign of linked scenarios, either recounting the original history or exploring alternate possibilities.\n\nDevel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4145914", "url": "https://en.wikipedia.org/wiki/The%20Settlers%20II", "title": "The Settlers II", "text": "The Settlers II (), originally released as The Settlers II: Veni, Vidi, Vici, is a city-building game with real-time strategy elements, developed and published by Blue Byte Software. Released in Germany for DOS in April 1996, and in the United Kingdom and North America in August, it is the second game in The Settlers series, following The Settlers (1993). In December, Blue Byte released an expansion, The Settlers II Mission CD, featuring new single-player campaign missions, new maps for both sin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4154882", "url": "https://en.wikipedia.org/wiki/Littoral%20Airborne%20Sensor/Hyperspectral", "title": "Littoral Airborne Sensor/Hyperspectral", "text": "The Littoral Airborne Sensor/Hyperspectral (LASH) imaging system developed by the United States Navy combines optical imaging hardware, navigation and stabilization, and advanced image processing and algorithms to provide real-time submarine target detection,\nclassification, and identification in littoral waters. Operating in visible and near infrared spectrum (390 to 710\u00a0nm), LASH collects hyperspectral imagery using many spectral channels (colors) to exploit subtle color features associated wi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4160367", "url": "https://en.wikipedia.org/wiki/Planet%27s%20Edge", "title": "Planet's Edge", "text": "Planet's Edge is a 1992 space science fiction role-playing video game developed by New World Computing with Eric Hyman as the lead designer. The game's plot centers on investigating the sudden disappearance of planet Earth, by venturing out into the universe from a Moon base. There are two main play modes: real-time exploration and combat using various spacecraft, and turn-based exploration, problem solving, and combat on the surface of dozens of planets. The game features a variety of objects, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4162970", "url": "https://en.wikipedia.org/wiki/Live%20performance", "title": "Live performance", "text": "live performance may refer to:\n\nA play (theatre) or musical\nA concert, a live performance (typically of music) before an audience\nA concert performance of opera or musical theatre without theatrical staging\nA concert dance, performed live for an audience.\n Live radio, radio broadcast without delay\n Live television, refers to a television production broadcast in real-time, as events happen, in the present\n Live Performance, a 1971 live album by Jake Thackray\n\nSee also\n Musical performance (disamb", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4166124", "url": "https://en.wikipedia.org/wiki/S2%20Games", "title": "S2 Games", "text": "S2 Games was a video game development company which was founded by Marc \"Maliken\" DeForest, Jesse Hayes, and Sam McGrath, based in Rohnert Park, California. They also had a development location in Kalamazoo, Michigan.\n\nThe company slogan was Dedicated employees serving dedicated gamers. Continuous development. Never-ending improvement.\n\nHistory\nTheir first project (a real-time strategy, third-person shooter and role-playing game hybrid), Savage: The Battle for Newerth, was released in the Summe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4169615", "url": "https://en.wikipedia.org/wiki/Real-time%20data", "title": "Real-time data", "text": "Real-time data (RTD) is information that is delivered immediately after collection. There is no delay in the timeliness of the information provided. Real-time data is often used for navigation or tracking. Such data is usually processed using real-time computing although it can also be stored for later or off-line data analysis.\n\nReal-time data is not the same as dynamic data. Real-time data can be dynamic (e.g. a variable indicating current location) or static (e.g. a fresh log entry indicating", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4177264", "url": "https://en.wikipedia.org/wiki/XMK%20%28operating%20system%29", "title": "XMK (operating system)", "text": "The eXtreme Minimal Kernel (XMK) is a real-time operating system (RTOS) that is designed for minimal RAM/ROM use. It achieves this goal, though it is almost entirely written in the C programming language. As a consequence it can be easily ported to any 8-, 16-, or 32-bit microcontroller.\n\nXMK comes as two independent packages: the XMK Scheduler that contains the core kernel, everything necessary to run a multithreaded embedded application, and the Application Programming Layer (APL) that provide", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4193490", "url": "https://en.wikipedia.org/wiki/Warhammer%3A%20Mark%20of%20Chaos", "title": "Warhammer: Mark of Chaos", "text": "Warhammer: Mark of Chaos is a real-time tactics game set in the Warhammer universe. It was developed by Black Hole Entertainment and co-published by Namco Bandai Games in the US and Deep Silver in PAL territories. The game was released for Microsoft Windows in the US on November 14, 2006, with subsequent release in PAL territories on November 23, 2006.\n\nAn expansion, Battle March, was released on September 2, 2008. It contains one new campaign and the addition of Dark Elves and Orcs & Goblins as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4212408", "url": "https://en.wikipedia.org/wiki/I-Logix", "title": "I-Logix", "text": "I-Logix was a leading provider of Collaborative Model driven development (MDD) solutions for systems design through software development focused on real-time embedded applications. Founded in 1987, the Andover, Massachusetts-based company product line enhanced collaboration among engineers, graphically modeling the requirements, behavior, and functionality of embedded systems. In addition, I-Logix was a member of the UML Partners, a group devoted to the development of the Unified Modeling Langua", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4221385", "url": "https://en.wikipedia.org/wiki/Java%20Optimized%20Processor", "title": "Java Optimized Processor", "text": "Java Optimized Processor (JOP)\nis a Java processor, an implementation of Java virtual machine (JVM) in hardware.\n\nJOP is free hardware under the GNU General Public License, version 3.\n\nThe intention of JOP is to provide a small hardware JVM for embedded real-time systems. The main feature is the predictability of the execution time of Java bytecodes. JOP is implemented over an FPGA.\n\nSee also\n\n List of Java virtual machines\n SimpCon\n\nReferences\n\nExternal links\n JOP website\n JOP Github reposito", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4226856", "url": "https://en.wikipedia.org/wiki/Amadeus%20IT%20Group", "title": "Amadeus IT Group", "text": "Amadeus IT Group, S.A. () is a major Spanish IT provider for the global travel and tourism industry.\n\nCompany profile\nThe company is structured around two areas: its global distribution system and its Information Technology business. Amadeus provides search, pricing, booking, ticketing and other processing services in real-time to travel providers and travel agencies through its Amadeus CRS distribution business area. It also offers computer software that automates processes such as reservations", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4298464", "url": "https://en.wikipedia.org/wiki/Seven%20Kingdoms%20%28video%20game%29", "title": "Seven Kingdoms (video game)", "text": "Seven Kingdoms () is a real-time strategy (RTS) computer game developed by Trevor Chan of Enlight Software. The game enables players to compete against up to six other kingdoms allowing players to conquer opponents by defeating them in war (with troops or machines), capturing their buildings with spies, or offering opponents money for their kingdom. The Seven Kingdoms series went on to include a sequel, Seven Kingdoms II: The Fryhtan Wars. In 2007, Enlight released a further title in the Seven K", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4314810", "url": "https://en.wikipedia.org/wiki/Stronghold%20%28disambiguation%29", "title": "Stronghold (disambiguation)", "text": "A stronghold or fortification is a military construction or building designed for defense.\n\nStronghold may also refer to:\n\nComputing and gaming\n Stronghold (1993 video game), a real-time strategy game by Stormfront Studios\n Stronghold (2001 video game), a real-time strategy game by Firefly Studios\n Stronghold (Magic: The Gathering), a 1998 expansion set for Magic: the Gathering from the Rath block\n Stronghold, a town alignment in Heroes of Might and Magic III: The Restoration of Erathia\n Strongh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4315198", "url": "https://en.wikipedia.org/wiki/Geometry%20instancing", "title": "Geometry instancing", "text": "In real-time computer graphics, geometry instancing is the practice of rendering multiple copies of the same mesh in a scene at once. This technique is primarily used for objects such as trees, grass, or buildings which can be represented as repeated geometry without appearing unduly repetitive, but may also be used for characters. Although vertex data is duplicated across all instanced meshes, each instance may have other differentiating parameters (such as color, or skeletal animation pose) ch", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4324425", "url": "https://en.wikipedia.org/wiki/Javolution", "title": "Javolution", "text": "Javolution is a real-time library aiming to make Java or Java-Like/C++ applications faster and more time predictable. Indeed, time-predictability can easily be ruined by the use of the standard library (lazy \ninitialization, array resizing, etc.) which is not acceptable for safety-critical systems. The open source Javolution library addresses these concerns for the Java platform and native applications. It provides numerous high-performance classes and utilities useful to non real-time applicat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4342215", "url": "https://en.wikipedia.org/wiki/MIKEY", "title": "MIKEY", "text": "Multimedia Internet KEYing (MIKEY) is a key management protocol that is intended for use with real-time applications. It can specifically be used to set up encryption keys for multimedia sessions that are secured using SRTP, the security protocol commonly used for securing real-time communications such as VoIP.\n\nMIKEY was first defined in RFC 3830. Additional MIKEY modes have been defined in RFC 4650, RFC 4738, RFC 6043, RFC 6267 and RFC 6509.\n\nPurpose of MIKEY \nAs described in RFC 3830, the MIK", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4342236", "url": "https://en.wikipedia.org/wiki/Dungeons%20of%20Daggorath", "title": "Dungeons of Daggorath", "text": "Dungeons of Daggorath is one of the first real-time, first-person perspective role-playing video games. It was produced by DynaMicro for the TRS-80 Color Computer in 1982. A sequel, Castle of Tharoggad, was released in 1988.\n\nGameplay\nDungeons of Daggorath was one of the first games that attempted to portray three-dimensional space in a real-time environment, using angled lines to give the illusion of depth. It followed the 1974 games Maze War and Spasim, written for research computers, and the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4344483", "url": "https://en.wikipedia.org/wiki/List%20of%20browser%20games", "title": "List of browser games", "text": "This is a selected list of browser games, playable in internet browsers or with software such as Adobe Flash.\n\nSingle-player games\n\nMultiplayer games\nThis is a selected list of multiplayer browser games. These games are usually free, with extra, payable options sometimes available. See the List of browser games for single-player browser games.\n\nThe game flow of the games may be either turn-based, where players are given a number of \"turns\" to execute their actions or real-time, where player acti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4350252", "url": "https://en.wikipedia.org/wiki/Ubicom", "title": "Ubicom", "text": "Ubicom was a company which developed communications and media processor (CMP) and software platforms for real-time interactive applications and multimedia content delivery in the digital home. The company provided optimized system-level solutions to OEMs for a wide range of products including wireless routers, access points, VoIP gateways, streaming media devices, print servers and other network devices. Ubicom was a venture-backed, privately held company with corporate headquarters in San Jose,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4352466", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Red%20Alert%20%28series%29", "title": "Command & Conquer: Red Alert (series)", "text": "Command & Conquer: Red Alert is a series of real-time strategy video games set within the Command & Conquer series.\n\nThe Red Alert series takes place in an alternate timeline, created when Albert Einstein travels back to the past and eliminates Adolf Hitler in an attempt to prevent World War II from taking place. This plan indirectly backfires and results in an unchecked Soviet invasion of Europe by Joseph Stalin in 1946. The Stalin-led invasion of Europe serves as the backdrop for the first Com", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4398392", "url": "https://en.wikipedia.org/wiki/Scanned%20synthesis", "title": "Scanned synthesis", "text": "Scanned synthesis represents a powerful and efficient technique for animating wave tables and controlling them in real-time . Developed by Bill Verplank, Rob Shaw, and Max Mathews between 1998 and 1999 at Interval Research, Inc., it is based on the psychoacoustics of how we hear and appreciate timbres and on our motor control (haptic) abilities to manipulate timbres during live performance \n\nScanned synthesis involves a slow dynamic system whose frequencies of vibration are below about 15\u00a0Hz . T", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4412924", "url": "https://en.wikipedia.org/wiki/MASSCOMP", "title": "MASSCOMP", "text": "The Massachusetts Computer Corporation (MASSCOMP) was a computer manufacturer based in Westford, Massachusetts. Originally conceived by C.\u00a0Forbes Dewey of MIT and inventor Chester Schuler, it was founded formally in 1981. Its target market was real-time computing, with a focus on high-speed data acquisition. Its major innovation was that it created the first widely available computer product which was able to sample analog signals at one million samples per second and store the resulting data t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4418527", "url": "https://en.wikipedia.org/wiki/Beasts%20and%20Bumpkins", "title": "Beasts and Bumpkins", "text": "Beasts and Bumpkins is a single player real-time strategy video game. It was developed by Worldweaver Ltd and published by Electronic Arts in 1997 and is available for the Windows platform.\n\nIn the game's storyline, the player was exiled by the king. They begin with limited resources and a few peasants to control. After building an empire and increasing their resources, the player can challenge Dark Lord Sabellian, who attacks the surrounding area.\n\nGameplay\nThe game is a standard isometric 'go", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4419469", "url": "https://en.wikipedia.org/wiki/Adaptive%20partition%20scheduler", "title": "Adaptive partition scheduler", "text": "Adaptive partition schedulers are a relatively new type of partition scheduler, which in turn is a kind of scheduling algorithm, pioneered with the most recent version of the QNX operating system. Adaptive partitioning, or AP, allows the real-time system designer to request that a percentage of processing resources be reserved for a particular partition (group of threads and/or processes making up a subsystem). The operating system's priority-driven pre-emptive scheduler will behave in the same", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4424603", "url": "https://en.wikipedia.org/wiki/EKA1", "title": "EKA1", "text": "EKA1 (EPOC Kernel Architecture 1) is the first-generation kernel for the operating system Symbian OS. EKA1 originated in the earlier operating system EPOC. It offers preemptive computer multitasking and memory protection, but no real-time computing guarantees, and a single-threaded device driver model. It was largely been superseded by EKA2.\n\nMuch of EKA1 was developed by a single software engineer, Colly Myers, when he was working for Psion Software in the early 1990s. Myers went on to act as C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4424760", "url": "https://en.wikipedia.org/wiki/EKA2", "title": "EKA2", "text": "EKA2 (EPOC Kernel Architecture 2) is the second-generation Symbian platform real-time operating system kernel, which originated in the earlier operating system EPOC.\n\nEKA2 began with a proprietary software license. In October 2009, it was released as free and open-source software under an Eclipse Public License. In April 2011, it was reverted to a proprietary license. \n\nLike its predecessor, EKA1, it has preemptive multithreading and full memory protection. The main differences are:\n Real-time g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4424842", "url": "https://en.wikipedia.org/wiki/Mudcraft", "title": "Mudcraft", "text": "Mudcraft is a web-based shockwave real-time strategy single player game developed by students at Michigan State University. In the RTS genre, it uses gender-neutral gameplay designed for both core and casual gamers. Players control mud people, attempting to create structures and more mud people, as well as stay alive despite the elements and animals. The gameplay is similar to games such as StarCraft and Warcraft, thus the \"craft\" suffix. The biggest difference is a lack of violence.\n\nMudcraft w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4439374", "url": "https://en.wikipedia.org/wiki/War%20in%20Middle%20Earth", "title": "War in Middle Earth", "text": "War in Middle Earth is a real-time strategy game released for the ZX Spectrum, MSX, Commodore 64, Amstrad CPC, DOS, Commodore Amiga, Apple IIGS, and Atari ST in 1988 by Virgin Mastertronic on the Melbourne House label.\n\nThe game combined both large scale army unit level and small scale character level. All the action happened simultaneously in game world and places could be seen from the map or at the ground level. Individual characters could also be seen in larger battles (in which they either ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4441677", "url": "https://en.wikipedia.org/wiki/Apple%20II%20system%20clocks", "title": "Apple II system clocks", "text": "Apple II system clocks, also known as real-time clocks, were devices in the early years of microcomputing. A clock/calendar did not become standard in the Apple II line of computers until 1986 with the introduction of the Apple IIGS. Although many productivity programs as well as the ProDOS operating system implemented time and date functions, users would have to manually enter this information every time they turned the computer on. Power users often had their Apple II's peripheral slots comple", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4444063", "url": "https://en.wikipedia.org/wiki/Two%20Worlds%20%28video%20game%29", "title": "Two Worlds (video game)", "text": "Two Worlds is a 2007 high fantasy action role-playing game developed by Reality Pump and published by TopWare Interactive in Europe and by SouthPeak Games in North America for the Xbox 360 and Microsoft Windows. A sequel, Two Worlds II, was released in Europe in 2010 and in North America in 2011.\n\nGameplay\nThe game takes place in a real-time three-dimensional fantasy landscape. As such it has drawn comparison with The Elder Scrolls IV: Oblivion. Much like in Oblivion and Gothic 3, the gameplay i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4447075", "url": "https://en.wikipedia.org/wiki/FlightAware", "title": "FlightAware", "text": "FlightAware is an American multi-national technology company that provides real-time, historical, and predictive flight tracking data and products. It is currently the world's largest flight tracking platform with a network of over 32,000 ADS-B ground stations in 200 countries. FlightAware also provides aviation data and predicted ETAs to airlines, airport operators, and software developers. FlightAware is privately held, with headquarters in Eleven Greenway Plaza in Houston and sales offices i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4449918", "url": "https://en.wikipedia.org/wiki/John%20Nissen", "title": "John Nissen", "text": "John Nissen is a British inventor, technologist and musician. He was a music scholar at Bryanston and a student at Clare College, Cambridge where he obtained a degree in Natural Sciences.\n\nEarly career\nNissen worked for many years at GEC in telecommunications as a software engineer, designing the instruction set and real-time operating system for Mark 2BL processor, possibly the world's first commercial fault-tolerant load-balancing multiprocessing computer, which was selected for use in the con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4483900", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20III%3A%20The%20WarChiefs", "title": "Age of Empires III: The WarChiefs", "text": "Age of Empires III: The WarChiefs is the first expansion pack for the real-time strategy game Age of Empires III. It was released on October 17, 2006 in the United States. The expansion pack was bundled with the full game of Age of Empires III, called Age of Empires III Gold Edition on October 23, 2007. The Mac version was ported over, developed and published by Destineer's MacSoft. The full game for Mac was released on June 12, 2007 in the United States. It was followed by a second expansion p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4496727", "url": "https://en.wikipedia.org/wiki/MechCommander%202", "title": "MechCommander 2", "text": "MechCommander 2 is a 2001 real-time tactics video game based on the BattleTech/MechWarrior franchise, developed by FASA Interactive and distributed by Microsoft. It is a sequel to MechCommander.\n\nDevelopment history\nIn 2006, Microsoft released a portion of the source code along with most game assets (i.e. everything needed to compile the game without networking support and without all the art) under a Shared Source licence in order to demonstrate its XNA Build system. The source release document", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4499888", "url": "https://en.wikipedia.org/wiki/StreamSQL", "title": "StreamSQL", "text": "StreamSQL is a query language that extends SQL with the ability to process real-time data streams. SQL is primarily intended for manipulating relations (also known as tables), which are finite bags of tuples (rows). StreamSQL adds the ability to manipulate streams, which are infinite sequences of tuples that are not all available at the same time. Because streams are infinite, operations over streams must be monotonic. Queries over streams are generally \"continuous\", executing for long periods o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4528279", "url": "https://en.wikipedia.org/wiki/Spherical%20harmonic%20lighting", "title": "Spherical harmonic lighting", "text": "Spherical harmonic (SH) lighting is a family of real-time rendering techniques that can produce highly realistic shading and shadowing with comparatively little overhead. All SH lighting techniques involve replacing parts of standard lighting equations with spherical functions that have been projected into frequency space using the spherical harmonics as a basis. To take a simple example, a cube map used for environment mapping might be reduced to just nine SH coefficients if preserving high-fr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4528431", "url": "https://en.wikipedia.org/wiki/Enemy%20Nations", "title": "Enemy Nations", "text": "Enemy Nations is a real-time strategy game, created by Windward Studios. The game received very high rankings in video game magazines, but the publisher went out of business shortly after the game's release; the developer then sold the game exclusively from its website.\n\nPlot \nThe development of the Hyperspace-Drive triggers a gold rush-like colonization attempt by Earth governments, only to find that habitable (the game takes these as Earth-like) planets are either homeworlds for other sapient ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4533683", "url": "https://en.wikipedia.org/wiki/Fallout%203", "title": "Fallout 3", "text": "Fallout 3 is a 2008 action role-playing game developed by Bethesda Game Studios and published by Bethesda Softworks. The third major installment in the Fallout series, it is the first game to be developed by Bethesda after acquiring the rights to the franchise from Interplay Entertainment. The game marks a major shift in the series by using 3D graphics and real-time combat, replacing the 2D isometric graphics and turn-based combat of previous installments. It was released worldwide in October 20", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4536630", "url": "https://en.wikipedia.org/wiki/Ptolemy%20Project", "title": "Ptolemy Project", "text": "The Ptolemy Project is an ongoing project aimed at modeling, simulating, and designing concurrent, real-time, embedded systems. The focus of the Ptolemy Project is on assembling concurrent components. The principal product of the project is the Ptolemy II model based design and simulation tool. The Ptolemy Project is conducted in the Industrial Cyber-Physical Systems Center (iCyPhy) in the Department of Electrical Engineering and Computer Sciences of the University of California at Berkeley, and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4545242", "url": "https://en.wikipedia.org/wiki/Centurion%3A%20Defender%20of%20Rome", "title": "Centurion: Defender of Rome", "text": "Centurion: Defender of Rome is a turn-based strategy video game with real-time battle sequences, designed by Kellyn Beck and Bits of Magic and published by Electronic Arts. Originally released for MS-DOS in 1990, the game was later ported to the Amiga and the Sega Genesis in 1991. Centurion shares much of the concept and feel with Beck's earlier game Defender of the Crown (1987).\n\nStory\nThe game begins in Ancient Rome in the year 275 BC, placing the player in the sandals of a centurion in the Ro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4551565", "url": "https://en.wikipedia.org/wiki/Telexistence", "title": "Telexistence", "text": "Telexistence is fundamentally a concept named for the general technology that enables a human being to have a real-time sensation of being at a place other than where they actually exist, and being able to interact with the remote environment, which may be real, virtual, or a combination of both. It also refers to an advanced type of teleoperation system that enables an operator at the control to perform remote tasks dexterously with the feeling of existing in a surrogate robot working in a remo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4555184", "url": "https://en.wikipedia.org/wiki/Trade%20Empires", "title": "Trade Empires", "text": "Trade Empires is a pausable real-time strategy game developed by Frog City Software in San Francisco and published by Take-Two Interactive and Eidos Interactive. In the game, players build transportation and trade networks that that evolve over the course of centuries as technology develops. It was released on October 20, 2001 for Microsoft Windows. During development its working title was The Silk Road; however, this was changed by Take-Two and Eidos as they were concerned about the title being", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4559077", "url": "https://en.wikipedia.org/wiki/Matt%20Uelmen", "title": "Matt Uelmen", "text": "Matt Uelmen (; born July 31, 1972) is an American video game music composer and sound designer. He is best known for his work in Blizzard Entertainment's Diablo series, which was recognized with the inaugural Excellence in Audio award by the IGDA in 2001. He also worked as a sound designer for the real-time strategy game StarCraft, and worked on World of Warcrafts expansion The Burning Crusade in 2007. From 2009 until the studio's closure in 2017, Matt Uelmen worked as a member of the Runic Game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4559300", "url": "https://en.wikipedia.org/wiki/Trash80", "title": "Trash80", "text": "Trash80 is a micromusic/bitpop project from Timothy Lamb (born on March 5, 1979), a pioneer of independent Game Boy music. He has published several songs online under a Creative Commons license (BY-NC-ND) under the Trash80 and Tresk banners. Whereas many Trash80 songs are ambient soundscapes featuring the use of Game Boy sounds, Tresk songs feature simple piano lines. Most prominently, Lamb's music has been featured on the soundtrack of the real-time strategy game Darwinia.\n\nThe name \"Trash80\" ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4578333", "url": "https://en.wikipedia.org/wiki/Tremulous", "title": "Tremulous", "text": "Tremulous is a free and open source asymmetric team-based first-person shooter with real-time strategy elements. Being a cross-platform development project the game is available for Windows, Linux, and Mac OS X.\n\nThe game features two opposing teams: humans and aliens. Each team must attack the enemy's base and team members while defending their own base.\n\nGameplay \nTremulous is an asymmetric team-based first-person shooter with elements of real time strategy. Each team may construct and defend", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4583614", "url": "https://en.wikipedia.org/wiki/TIM-100", "title": "TIM-100", "text": "The TIM-100 was a PTT teller microcomputer developed by Mihajlo Pupin Institute (Serbia) in 1985 (Ref.lit. #1). It was based on the Intel microprocessors types 80x86 and VLSI circuitry. RAM had capacity max.8MB, and the external memory were floppy disks of 5.25 or 3.50\u00a0inch. (Ref.literature #2, #3 and #4).\nMultiuser, multitasking Operating system was real-time NRT and also TRANOS (developed by PTT office).\n\nSee also\n Mihajlo Pupin Institute\n History of computer hardware in the SFRY\n Microcom", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4602515", "url": "https://en.wikipedia.org/wiki/Nightfall%20%28video%20game%29", "title": "Nightfall (video game)", "text": "Nightfall is an American computer game released in 1998 by Altor Systems, Inc. Although claimed to be the first real-time 3D first person adventure game, there are earlier examples of 3D first person adventure games, however, such as Total Eclipse, released in 1988. It employs a three dimensional world and sprites for objects such as vases and rats, as well as true 3D objects such as blocks and statues. Essentially, the gameplay is a combination of 3D first-person shooters such as Doom, the gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4614431", "url": "https://en.wikipedia.org/wiki/Strength%20%26%20Honour", "title": "Strength & Honour", "text": "Strength & Honour by Canadian studio Magitech is a Microsoft Windows PC game of global domination that combines turn-based empire building and epic real-time tactics. Nations can belong to civilizations ranging from the Romans and Carthaginians in the west, to the West Indians and Chinese in the east. \n\nThe setting is around 200 BC. You choose your ruler and kingdom. You hand pick the members of your cabinet, governors of your cities, and the marshals and generals of your armies. Each Character ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4641911", "url": "https://en.wikipedia.org/wiki/World%20in%20Conflict", "title": "World in Conflict", "text": "World in Conflict is a 2007 real-time strategy (RTS) video game developed by the Swedish video game company Massive Entertainment and published by Vivendi Games for Microsoft Windows. The game was released in September 2007, receiving generally favorable reviews and several awards. The game is considered by some to be the spiritual successor of Ground Control, another game by Massive Entertainment, and is generally conceived by its designers to be a real-time tactical game, despite being market", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4646227", "url": "https://en.wikipedia.org/wiki/Traffic%20reporting", "title": "Traffic reporting", "text": "Traffic reporting is the near real-time distribution of information about road conditions such as traffic congestion, detours, and traffic collisions. The reports help drivers anticipate and avoid traffic problems. Traffic reports, especially in cities, may also report on major delays to mass transit that does not necessarily involve roads. In addition to periodic broadcast reports, traffic information can be transmitted to GPS units, smartphones, and personal computers.\n\nMethods of gathering in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4655983", "url": "https://en.wikipedia.org/wiki/Beacon%20Institute", "title": "Beacon Institute", "text": "Beacon Institute for Rivers and Estuaries, Clarkson University, with offices in City of Beacon and Troy, New York, is a 501(c)(3) not-for-profit environmental research organization focusing on real-time monitoring of river ecosystems. The institute's mission is to \"create and maintain a global center for scientific and technological innovation that advances research, education and public policy regarding rivers and estuaries.\"\n\nIn 2011, Beacon Institute for Rivers and Estuaries and Clarkson Univ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4672906", "url": "https://en.wikipedia.org/wiki/Light%20Airborne%20Multi-Purpose%20System", "title": "Light Airborne Multi-Purpose System", "text": "The Light Airborne Multi-Purpose System (LAMPS) is the United States Navy's program that develops manned helicopters to assist the surface fleet in anti-submarine warfare.\n\nThe purpose of LAMPS is to scout outside the limits of a fleet's radar and sonar range to detect and track enemy submarines or missile-equipped escort ships and feed the real-time data back to their LAMPS mothership. They also have the capability to directly engage enemy targets with depth charges or torpedoes, or indirectly ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4732258", "url": "https://en.wikipedia.org/wiki/Moon%20%28gamer%29", "title": "Moon (gamer)", "text": "Jang Jae-ho (known as spirit_moon or moon) is a South Korean professional gamer of the popular Blizzard real-time strategy games Warcraft III and StarCraft II. He is seen by many as the best Night Elf player in the world. Jang Jae-ho is a five time world champion and has won three televised national Korean WarCraft III Championships as well as four seasons of MBCGame's World War. He is particularly known for his excellent micromanagement and innovative strategies. He is often seen using strategi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4733487", "url": "https://en.wikipedia.org/wiki/AstroPop", "title": "AstroPop", "text": "AstroPop is a real-time puzzle video game developed and published by PopCap Games. The Adobe Flash version can be played online for free at several different websites, or a deluxe version can be downloaded and unlocked for a fee. The game is available for Xbox and Xbox 360 through Xbox Live Arcade. AstroPop was ported over to the PlayStation 2 in 2007 alongside another PopCap game, Bejeweled 2 which was released as a two-game compilation pack as PopCap Hits! Volume 1. The game has also been por", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4734614", "url": "https://en.wikipedia.org/wiki/Joint%20precision%20approach%20and%20landing%20system", "title": "Joint precision approach and landing system", "text": "The joint precision approach and landing system (JPALS) is a ship's system (CVN and LH type), all-weather landing system based on real-time differential correction of the Global Positioning System (GPS) signal, augmented with a local area correction message, and transmitted to the user via secure means. The onboard receiver compares the current GPS-derived position with the local correction signal, deriving a highly accurate three-dimensional position capable of being used for all-weather appro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4755946", "url": "https://en.wikipedia.org/wiki/List%20of%20machinima%20festivals", "title": "List of machinima festivals", "text": "This is a list of film festivals dedicated to machinima, the use of real-time 3-D engines in filmmaking. The Academy of Machinima Arts & Sciences (AMAS) regularly holds such festivals, and recognizes exemplary machinima works through awards nicknamed the Mackies.\n\nMachinima Expo\nThe Machinima Expo (or \"MachinExpo\") is an annual international machinima festival started in 2008. In 2010 the organization expanded and is now run with help of a large team of volunteers. Submission is accepted during ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4761644", "url": "https://en.wikipedia.org/wiki/NOAA%27s%20Environmental%20Real-time%20Observation%20Network", "title": "NOAA's Environmental Real-time Observation Network", "text": "The NOAA Environmental Real-time Observation Network (NERON) is a project to establish a nationwide network of high quality near real-time weather monitoring stations across the United States. A 20-mile by 20-mile grid has been established, with the hopes of having one observation system within each grid cell. Effort is being put forth by local National Weather Service (NWS) offices and other state climate groups to ensure that sites in the network meet important criteria. The network will be co", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4775162", "url": "https://en.wikipedia.org/wiki/Chyron%20Corporation", "title": "Chyron Corporation", "text": "The Chyron Corporation, formerly ChyronHego Corporation, headquartered in Melville, New York, is a company that specializes in broadcast graphics creation, playout, and real-time data visualization for live television, news, weather, and sports production. Chyron's graphics offerings include hosted services for graphics creation and order management, on-air graphics systems, channel branding, weather graphics, graphics asset management, clip servers, social media and second screen applications, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4791595", "url": "https://en.wikipedia.org/wiki/Left%20Behind%3A%20Eternal%20Forces", "title": "Left Behind: Eternal Forces", "text": "Left Behind: Eternal Forces is a Christian real-time strategy game developed and published by Inspired Media Entertainment (formerly Left Behind Games) for Microsoft Windows. It was released on November 7, 2006. The game is based on the evangelical Christian Left Behind series of novels.\n\nGameplay\nThe game features a single-player campaign and an online multiplayer mode.\n\nIn the single-player campaign, the player controls the Tribulation Force, a Christian group in a post-Rapture New York City, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4796459", "url": "https://en.wikipedia.org/wiki/Eagle%20%28application%20server%29", "title": "Eagle (application server)", "text": "EAGLE is a Web-based, mainframe-powered application server which provides direct, secure, high performance Internet access to mainframe computer data and transactions using real-time transaction processing rather than middleware or external gateways.\n\nOriginally based in an IBM 3270 environment developed at the University of Florida to reduce the delivery time of student record applications, the engine was configured for the Web in 1996 and removed the need for a screen scraping interface.\n\nWhat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4808443", "url": "https://en.wikipedia.org/wiki/Atlantis%20Underwater%20Tycoon", "title": "Atlantis Underwater Tycoon", "text": "Atlantis Underwater Tycoon is an underwater city-building simulation game in which the player acts as a tycoon to simulate the real-time design and management of an underwater civilization. It was developed by American studio Anarchy Enterprises and published by Activision Value, and released on March 21, 2003 for Microsoft Windows.\n\nAtlantis Underwater Tycoon was the first building sim to be set underwater.\n\nGameplay\nIn Atlantis Underwater Tycoon, the player can choose to play in missions or in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4851736", "url": "https://en.wikipedia.org/wiki/Casper%20250", "title": "Casper 250", "text": "The Casper 250/SOFAR is a civilian-developed \"backpack\" unmanned air vehicle made in co-operation by Top I Vision Ltd and WB Electronics Sp. z o.o. The aircraft is produced by both companies on the same rights: WB Electronics produces it in Poland as WB Electronics SOFAR and Top I Vision in Israel as Casper 250. It is designed as a reconnaissance platform with real-time data acquisition. \nThe Casper 250 system consists of the aircraft, its payload, ground controlling system and data-link compone", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4864009", "url": "https://en.wikipedia.org/wiki/Deformable%20mirror", "title": "Deformable mirror", "text": "Deformable mirrors (DM) are mirrors whose surface can be deformed, in order to achieve wavefront control and correction of optical aberrations. Deformable mirrors are used in combination with wavefront sensors and real-time control systems in adaptive optics. In 2006 they found a new use in femtosecond pulse shaping.\n\nThe shape of a DM can be controlled with a speed that is appropriate for compensation of dynamic aberrations present in the optical system. In practice the DM shape should be chang", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4868810", "url": "https://en.wikipedia.org/wiki/The%20Settlers%20IV", "title": "The Settlers IV", "text": "The Settlers IV (), released as The Settlers: Fourth Edition in North America, is a real-time strategy video game with city-building elements, developed by Blue Byte and published by Ubi Soft. Released in Germany for Microsoft Windows in February 2001, in the United Kingdom in March, and in North America in August, it is the fourth game in The Settlers series, following The Settlers (1993), The Settlers II (1996) and The Settlers III (1998). In August, Blue Byte released an expansion, The Settle", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4873933", "url": "https://en.wikipedia.org/wiki/SAGE%20%28game%20engine%29", "title": "SAGE (game engine)", "text": "SAGE (Strategy Action Game Engine) is a game engine used primarily for real-time strategy games developed by Westwood Studios and Electronic Arts. Earlier implementations of the engine were known as W3D (Westwood 3D) while later versions were branded SAGE 2.0.\n\nHistory\nThe first version of the engine, originally named W3D, was a major modification of the SurRender 3D engine developed by Hybrid Graphics Ltd. Westwood first used W3D for their first-person shooter Command & Conquer: Renegade and th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4875105", "url": "https://en.wikipedia.org/wiki/Fallen%20Earth", "title": "Fallen Earth", "text": "Fallen Earth is a free-to-play massively multiplayer online role-playing game developed by Reloaded Productions (formerly by North Carolina-based Icarus Studios and Fallen Earth). The game takes place in a post-apocalyptic wasteland located around the American Grand Canyon. Fallen Earth's gameplay features FPS/RPG hybridization, first-person/third person views, hundreds of items, including improvised equipment and weapons, a variety of functional vehicles, a real-time, in-depth crafting system (", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4903304", "url": "https://en.wikipedia.org/wiki/Eccky", "title": "Eccky", "text": "Eccky is an online game. Until 2009, it was an MSN-based social simulation game in which two people work together to create and raise a virtual baby. Eccky won the 2005 SpinAwards for Innovation and for Best Interactive Concept. In 2009, the game play changed to a real-time virtual world on Hyves.\n\nHistory \nEccky was created in August 2005 by Dutch developer Media Republic in association with MSN in the Netherlands. Eccky has characteristics of life simulation and virtual pet games. The gameplay", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4910276", "url": "https://en.wikipedia.org/wiki/Baudline", "title": "Baudline", "text": "The baudline time-frequency browser is a signal analysis tool designed for scientific visualization. It runs on several Unix-like operating systems under the X Window System. Baudline is useful for real-time spectral monitoring, collected signals analysis, generating test signals, making distortion measurements, and playing back audio files.\n\n\nApplications\n Acoustic cryptanalysis\n Audio codec lossy compression analysis \n Audio signal processing\n Bioacoustics research\n Data acquisition (DAQ)\n Gra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4935504", "url": "https://en.wikipedia.org/wiki/Plasma%20effect", "title": "Plasma effect", "text": "The plasma effect is a computer-based visual effect animated in real-time. It uses cycles of changing colours warped in various ways to give an illusion of liquid, organic movement.\n\nPlasma was the name of a VGA graphics demo created by Bret Mulvey in 1988 and released on CompuServe. It used a diamond-square algorithm to generate a 2D pattern, and then cycled the colors using VGA's hardware palette in its 256-color mode.\n\nPlasma was picked up by demo coders for their demos where the effect was h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4935781", "url": "https://en.wikipedia.org/wiki/Scorched%203D", "title": "Scorched 3D", "text": "Scorched 3D is a free and open source artillery game modeled after the MS-DOS game Scorched Earth. Scorched 3D changes its gameplay from the original by including fully destructible 3D environments, new weapons and defensive gadgets, LAN play, online multiplayer, free player generated content, and a choice of real-time or turn-based play modes.\n\nScorched 3D is an open source game licensed under the GNU GPL-2.0-or-later, and supports numerous platforms: Windows, Unix-like systems (Linux, FreeBSD,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4942988", "url": "https://en.wikipedia.org/wiki/Gato%20%28video%20game%29", "title": "Gato (video game)", "text": "GATO is a real-time submarine simulator first published in 1984 by Spectrum HoloByte for DOS. It simulates combat operations aboard the Gato-class submarine in the Pacific Theater of World War II. GATO was later ported to the Apple IIe, Atari ST, and Macintosh. In 1987, Atari Corporation published a version on cartridge for the Atari 8-bit family, to coincide with the launch of the Atari XEGS.\n\nGameplay \nThe player is tasked with chasing Japanese shipping across a 20-sector map while returning ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4944013", "url": "https://en.wikipedia.org/wiki/Summoner%202", "title": "Summoner 2", "text": "Summoner 2 is an action role-playing game developed by Volition and published by THQ as the sequel to Summoner. It was originally released for PlayStation 2 in 2002 and was re-released for the GameCube in 2003 with some visual changes as Summoner: A Goddess Reborn. The game features improved visuals and a more real-time, action-oriented combat system from the original.\n\nInstead of Joseph, the player now takes on the role of Maia, Queen of Halassar, who is the goddess Laharah reborn, and can tran", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4956803", "url": "https://en.wikipedia.org/wiki/24", "title": "24", "text": "24 may refer to:\n\n 24 (number), the natural number following 23 and preceding 25\n one of the years 24 BC, AD 24, 1924, 2024\n\nFilm and television \n 24 frames per second, a common frame rate in film and television\n 24 (TV series), an American show depicting the events of a single day in 24 real-time episodes per season\n 24: Live Another Day, a 2014 limited series continuation of the original series\n 24: Redemption, a 2008 television movie related to the television series\n 24: The Game, a 2006 vide", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4979591", "url": "https://en.wikipedia.org/wiki/OpenSG", "title": "OpenSG", "text": "OpenSG is a scene graph system to create real-time graphics programs, e.g. for virtual reality applications. It is developed following Open Source principles, LGPL licensed, and can be used freely. It runs on Windows, Linux, Solaris and OS X and is based on OpenGL.\n\nIts main features are advanced multithreading and clustering support (with sort-first and sort-last rendering, amongst other techniques), although it is perfectly usable in a single-threaded single-system application as well.\n\nIt is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4979813", "url": "https://en.wikipedia.org/wiki/Black%20Isle%27s%20Torn", "title": "Black Isle's Torn", "text": "Black Isle's Torn was a role-playing video game developed for Windows by Black Isle Studios, announced on March 22, 2001 and cancelled in July of that year. The game was to use a modified version of the SPECIAL role-playing system, which had been implemented in the Fallout series. Developed on various editions of the Lithtech engine, Torn possessed features unseen in previous Black Isle Studios games, such as 3D graphics and real-time camera movement.\n\nIn Torn, the player assumed the role of a w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4992055", "url": "https://en.wikipedia.org/wiki/Namhae%20Bridge", "title": "Namhae Bridge", "text": "The Namhae Bridge is a suspension bridge that connects Hadong Noryang and Namhae Noryang, South Korea. The bridge, completed in 1973 has a total length of 660 meters. The bridge has a real-time monitoring system installed to monitor its performance.\n\nSee also\nBusan\nTransportation in South Korea\n\nReferences\n\nBridges in South Korea\nSuspension bridges in South Korea\nBridges completed in 1973", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "4994817", "url": "https://en.wikipedia.org/wiki/Mortal%20Coil%3A%20Adrenalin%20Intelligence", "title": "Mortal Coil: Adrenalin Intelligence", "text": "Mortal Coil: Adrenalin Intelligence is a first-person shooter developed by Crush and released in 1995 by Virgin Interactive Entertainment.\nThe game featured a tactical element where the player would control four different characters and plan their movement either by moving them in real-time, or through a planning perspective similar to Rainbow Six.\n\nExternal links\n\n1995 video games\nDOS games\nDOS-only games\nFirst-person shooters\nTactical shooter video games\nVideo games developed in the United Kin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5004905", "url": "https://en.wikipedia.org/wiki/Lightspeed%20%28video%20game%29", "title": "Lightspeed (video game)", "text": "Lightspeed is a video game developed and released by MicroProse in 1990. It features a space flight simulator game and action game elements with an emphasis on strategy and exploration. The box describes the title as an \"Interstellar Action and Adventure\" game. The game features space exploration, trade, combat and diplomacy in the same vein as 4X s such as Master of Orion. Lightspeed, unlike the popular series of turn-based strategy games, plays out in real-time.\n\nA sequel, entitled Hyperspeed,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5025013", "url": "https://en.wikipedia.org/wiki/The%20Settlers%3A%20Heritage%20of%20Kings", "title": "The Settlers: Heritage of Kings", "text": "The Settlers: Heritage of Kings (), released as Heritage of Kings: The Settlers in North America, is a real-time strategy video game developed by Blue Byte and published by Ubisoft. Released in Germany for Microsoft Windows in November 2004, and in the United Kingdom, North America, and Australia in February 2005, it is the fifth game in The Settlers series. In 2005, Blue Byte released two expansions, The Settlers: Heritage of Kings - Expansion Disc () and The Settlers: Heritage of Kings - Legen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5032452", "url": "https://en.wikipedia.org/wiki/Coupland%20Digital%20Music%20Synthesizer", "title": "Coupland Digital Music Synthesizer", "text": "The Coupland Digital Music Synthesizer is a 16-voice polyphonic real-time instrument with a full 88 key keyboard, developed in the 1970s but never released commercially. \n\nThe idea was first conceived and the basic concepts invented in 1973 by Rick Coupland and John Moore, old friends and systems programmers who were working at Ramada Inns Micor division (Phoenix, AZ) at the time. The project lasted from 1973 until 1979, included two product version, but never reached commercial success due to i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5042700", "url": "https://en.wikipedia.org/wiki/Kingdom%20Under%20Fire%3A%20Circle%20of%20Doom", "title": "Kingdom Under Fire: Circle of Doom", "text": "Kingdom Under Fire: Circle of Doom is a 2007 action role-playing game developed by Blueside and published by Microsoft Game Studios for the Xbox 360. It is the fourth installment in the Kingdom Under Fire series. Chronologically the game's story follows Kingdom Under Fire: The Crusaders released in 2004. Unlike the previous Kingdom Under Fire games, Circle of Doom lacks the real-time strategy elements, with much of the gameplay focus being on hack and slash combat.\n\nIt was released in Australia ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5050486", "url": "https://en.wikipedia.org/wiki/Battalion%20Wars%202", "title": "Battalion Wars 2", "text": "Battalion Wars 2, released as in Japan, is a real-time tactics video game, developed by Kuju Entertainment, and released by Nintendo exclusively for the Wii console on 29 October 2007. It is the sequel to the 2005 game Battalion Wars, in which players take command of a battalion of troops to complete missions and defeat opposing forces in battle. The game amended some existing gameplay from the previous title, while introducing new elements, including multiplayer modes, naval units, and base st", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5069239", "url": "https://en.wikipedia.org/wiki/Final%20Fantasy%20Type-0", "title": "Final Fantasy Type-0", "text": "is an action role-playing game developed and published by Square Enix for the PlayStation Portable (PSP). Released in Japan on October 27, 2011, Type-0 is part of the Fabula Nova Crystallis subseries, a set of games sharing a common mythos which includes Final Fantasy XIII and Final Fantasy XV. The gameplay, similar to Crisis Core: Final Fantasy VII, has the player taking control of characters in real-time combat during missions across Orience. The player also engages in large-scale strategy-bas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5080859", "url": "https://en.wikipedia.org/wiki/Gruntz", "title": "Gruntz", "text": "Gruntz is a puzzle/strategy game for PC, developed and published in February 1999 by Monolith Productions. It is packaged with a level editor and can be played in single and multiplayer modes.\n\nThe game received mostly average to very positive reviews from critics.\n\nGameplay\nThe player controls a number of \"Gruntz\", diminutive, goblinoid creatures made of baked clay (\"goo\"), via the mouse. The controls are those of a typical real-time strategy game: commands are issued to Gruntz via first select", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5088635", "url": "https://en.wikipedia.org/wiki/ACE%20%28editor%29", "title": "ACE (editor)", "text": "ACE (ACE - a collaborative editor) is a platform-independent, collaborative real-time editor. It is a real-time cooperative editing system that allows multiple geographically dispersed users to view and edit a shared text document at the same time.\n\nIntroduction\nACE is a simple text editor with standard features such as copy/paste and load/save. Multiple documents can be edited at the same time. Furthermore, ACE can share documents with other users on different computers, connected by communicat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5101171", "url": "https://en.wikipedia.org/wiki/Maelstrom%3A%20The%20Battle%20for%20Earth%20Begins", "title": "Maelstrom: The Battle for Earth Begins", "text": "Maelstrom: The Battle for Earth Begins is a real-time strategy game developed by KD-Vision in Russia and published by Codemasters.\n\nPlot\nMaelstrom: The Battle for Earth Begins is set in 2050 in a post-apocalyptic future following an ecological disaster which results in much of the planet's submersion, as well as the subsequent nuclear holocaust over the remaining resources. Most of humankind has taken refuge beneath the surface, taking shelter from a long-standing war between the guerilla-warfar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5113242", "url": "https://en.wikipedia.org/wiki/Command%20HQ", "title": "Command HQ", "text": "Command HQ is a real-time strategy world domination game. It was released in 1990 by Microplay Software and was created by designer Danielle Bunten.\n\nTommo purchased the rights to this game in 2013 and digitally publishes it through its Retroism brand in 2015.\n\nOverview\nWhile Command HQ was recognized as one of the earliest real-time strategy games for the PC, it was preceded by the Ancient Art of War and other trailblazers. Unlike these games it has elements of unit production and resource us", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5140187", "url": "https://en.wikipedia.org/wiki/Timed%20text", "title": "Timed text", "text": "Timed text refers to the presentation of text media in synchrony with other media, such as audio and video.\n\nApplications\nTypical applications of timed text are the real-time subtitling of foreign-language movies on the Web, captioning for people lacking audio devices or having hearing impairments, karaoke, scrolling news items or teleprompter applications.\n\nTimed text for MPEG-4 movies and cellphone media is specified in MPEG-4 Part 17 Timed Text, and its MIME type is specified by RFC 3839.\n\nMa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5145378", "url": "https://en.wikipedia.org/wiki/SkyBitz", "title": "SkyBitz", "text": "SkyBitz is an American company based in Herndon, Virginia, that provides machine to machine (M2M) solutions for the tracking and management of mobile assets. Parent company Telular Corporation is a wholly owned subsidiary of Avista Capital Partners, an American private equity firm. SkyBitz is a remote asset tracking and information management service provider, specializing in real-time decision-making tools for companies with unpowered assets such as tractor-trailers, intermodal containers, ch", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5146083", "url": "https://en.wikipedia.org/wiki/Desert%20Rats%20vs.%20Afrika%20Korps", "title": "Desert Rats vs. Afrika Korps", "text": "Desert Rats vs. Afrika Korps, released as Afrika Korps vs. Desert Rats outside the UK and U.S., is a real-time tactics game that is based on the North African campaign of World War II. The single player missions are playable as the German Afrika Korps or the British Desert Rats. There is also an option for online multiplayer.\n\nGameplay\n\nReception\n\nThe game received \"average\" reviews according to the review aggregation website Metacritic.\n\nSee also\nD-Day\n\nReferences\n\nExternal links\n\n2004 video ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5148903", "url": "https://en.wikipedia.org/wiki/Anno%201701", "title": "Anno 1701", "text": "Anno 1701, also marketed as 1701 A.D., is a real-time strategy and city building video game, part of the Anno series. It is developed by Related Designs and published by Sunflowers Interactive Entertainment Software. It revolves around building and maintaining an 18th-century colony in the \"New World\". With a budget of \u20ac10 million, it was the most expensive German game ever produced by 2006.\n\nIt is the sequel to Anno 1602 and Anno 1503 and was followed by Anno 1404.\n\nGameplay\nAnno 1701, like the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5176252", "url": "https://en.wikipedia.org/wiki/Diary%20of%20a%20Camper", "title": "Diary of a Camper", "text": "Diary of a Camper is a short American film made using id Software's 1996 first-person shooter video game Quake, released in 1996. It was created by United Ranger Films, then a subdivision of a popular group of video game players, or clan, known as the Rangers. The film was first released over the Internet as a non-interactive game demo file. The video is generally considered the first known example of machinima\u2014the art of using real-time, virtual 3D environments, often game engines, to create an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5182237", "url": "https://en.wikipedia.org/wiki/1701%20%28disambiguation%29", "title": "1701 (disambiguation)", "text": "1701 may refer to:\n\n1701 (number)\n1701, the year\n1701 Naval Air Squadron of the Fleet Air Arm\nAnno 1701, alternatively titled 1701 A.D., a real-time strategy computer game.\nCommodore 1701, a Commodore 64 peripheral\nStarship Enterprise, a ship in the fictional Star Trek universe which has the registry number of NCC-1701. Each successive Enterprise has an alphanumeric suffix running from A to at least J.\nUnited Nations Security Council Resolution 1701", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5191987", "url": "https://en.wikipedia.org/wiki/Service%20Objects", "title": "Service Objects", "text": "Service Objects is a contact and data validation company.\n\nOperations\nService Objects provides multiple address verification products and email validation services via batch or real-time API.\n\nIn 2013, the company launched the DOTS Address Validation-US3 API, which automatically verifies, corrects, and appends address information to contact data records in real time. The DOTS Address Validation-US3 API utilizes the USPS CASS-certified address engine of over 165 million addresses to validate and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5196721", "url": "https://en.wikipedia.org/wiki/Richard%20Evans%20%28AI%20researcher%29", "title": "Richard Evans (AI researcher)", "text": "Richard Evans (born 23 October 1969) is an artificial intelligence (AI) research scientist at DeepMind. His research focuses on integrating declarative interpretable logic-based systems with neural networks, and on formal models of Kant's Critique of Pure Reason\n\nPreviously, he designed the AI for a number of computer games. He was the co-founder, along with Emily Short, of Little Text People, developing real-time multiplayer interactive fiction. Little Text People was acquired by Linden Lab in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5199213", "url": "https://en.wikipedia.org/wiki/Phasor%20measurement%20unit", "title": "Phasor measurement unit", "text": "A phasor measurement unit (PMU) is a device used to estimate the magnitude and phase angle of an electrical phasor quantity (such as voltage or current) in the electricity grid using a common time source for synchronization. Time synchronization is usually provided by GPS or IEEE 1588 Precision Time Protocol, which allows synchronized real-time measurements of multiple remote points on the grid. PMUs are capable of capturing samples from a waveform in quick succession and reconstructing the phas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5213325", "url": "https://en.wikipedia.org/wiki/Game%20replay", "title": "Game replay", "text": "A game replay, also known as a demo, is a form of user-generated content. In most instances, a game replay is a recording of a battle between opponents in a video game which can then be viewed by other players.\n\nIt is most common in real-time strategy games like StarCraft, Command & Conquer, World in Conflict, Company of Heroes, and Age of Empires, as well as some first-person shooter games such as Counter-Strike (via console command). Recently, game replays are being used on non-computer platfo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5246698", "url": "https://en.wikipedia.org/wiki/Commotion%20%28animation%29", "title": "Commotion (animation)", "text": "Commotion is a visual effects application, originally released by Puffin Designs. Puffin Designs was founded by Scott Squires (Visual Effects Supervisor at Industrial Light and Magic) and Forest Key to market Commotion.\n\nCommotion set a high standard for a rotoscoping application, introducing rotosplines and offering features like motion tracking and motion blurring for masks.\nIt was the first desktop application to allow real-time playback of full quality video clips from RAM.\n\nPuffin Designs w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5247207", "url": "https://en.wikipedia.org/wiki/National%20Captioning%20Institute", "title": "National Captioning Institute", "text": "The National Captioning Institute, Inc. (NCI) is a 501(c)(3) nonprofit organization that provides real-time and off-line closed captioning, subtitling and translation, described video, web captioning, and Spanish captioning for television and films. Created in 1979 and headquartered in Chantilly, Virginia, the organization was the first to caption live TV and home video, and holds the trademark on the display icon featuring a simple geometric rendering of a television set merged with a speech ba", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5256597", "url": "https://en.wikipedia.org/wiki/Praetorians%20%28video%20game%29", "title": "Praetorians (video game)", "text": "Praetorians is a 3D real-time tactics video game developed by Pyro Studios and published by Eidos Interactive in 2003, based on Julius Caesar's historical campaigns in Gaul and Britain, Crassus' battles in Parthia, and the events of Caesar's Civil War during the 1st century BC. The player controls either the Roman Republic, the Ptolemaic Kingdom (inaccurately represented as the New Kingdom of Egypt), or a generic barbarian tribe based on the Helvetii, Gauls, and Celts.\n\nGameplay \nUnlike most rea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5273168", "url": "https://en.wikipedia.org/wiki/Desperados%202%3A%20Cooper%27s%20Revenge", "title": "Desperados 2: Cooper's Revenge", "text": "Desperados 2: Cooper's Revenge is a real-time tactics video game developed by Spellbound Entertainment and published by Atari exclusively for Microsoft Windows. It is the sequel to Desperados: Wanted Dead or Alive. The game was followed by a spin-off/sequel Helldorado in 2007 for Windows, and a successor, Desperados III, released for Windows, PlayStation 4 and Xbox One in 2020 by THQ Nordic.\n\nPlot \nUS Marshal Ross Cooper, John Cooper's brother, has been tortured to death by the henchmen of a cri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5275688", "url": "https://en.wikipedia.org/wiki/Port%20Royale%202", "title": "Port Royale 2", "text": "Port Royale 2 is the sequel to the business simulation game Port Royale: Gold, Power and Pirates. It is set in the Caribbean during the 17th century. Created by Ascaron Entertainment in 2004, it combines a business simulator with real-time battles and towns that can be owned, built, developed or razed. A sequel, Port Royale 3: Pirates & Merchants, was released in 2012.\n\nGameplay\nPort Royale 2 is an open-ended game, so the player can choose to pursue any career they wish. This could range from a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5289369", "url": "https://en.wikipedia.org/wiki/Capital%20Markets%20Index", "title": "Capital Markets Index", "text": "The Capital Markets Index (CPMKTS) was an investment tool that tracked the value of traditional investment-grade U.S. capital market securities. CPMKTS was a real-time, market-weighted index. It included approximately 9,500 equity, fixed income, and money market instruments.\n\nCPMKTS index was launched by Dorchester Capital Management Company of Houston, Texas on May 4, 2006. The Capital Markets Index was carried on the American Stock Exchange under the symbol CPMKTS with updates every 15 seconds", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5297107", "url": "https://en.wikipedia.org/wiki/Full%20Spectrum%20Warrior%3A%20Ten%20Hammers", "title": "Full Spectrum Warrior: Ten Hammers", "text": "Full Spectrum Warrior: Ten Hammers is a real-time tactics video game developed by Pandemic Studios and published by THQ for Microsoft Windows, PlayStation 2 and Xbox.\n\nGameplay\nThe game features improvements and additions in gameplay. New gameplay mechanics such as splitting up fireteams into groups of two were added. The player is given the ability to position fireteams in interior firing positions that negate an enemy's cover.\n\nThe game's multiplayer mode enables you to choose between co-op an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5297662", "url": "https://en.wikipedia.org/wiki/EtherCAT", "title": "EtherCAT", "text": "EtherCAT (Ethernet for Control Automation Technology) is an Ethernet-based fieldbus system invented by Beckhoff Automation. The protocol is standardized in IEC 61158 and is suitable for both hard and soft real-time computing requirements in automation technology.\n\nThe goal during development of EtherCAT was to apply Ethernet for automation applications requiring short data update times (also called cycle times; \u2264 100 \u03bcs) with low communication jitter (for precise synchronization purposes; \u2264 1 \u03bcs", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5396420", "url": "https://en.wikipedia.org/wiki/OS2000", "title": "OS2000", "text": "Baget RTOS (rus. \u041e\u0421\u0420\u0412 \u0411\u0430\u0433\u0435\u0442) is a real-time operating system developed by the Scientific Research Institute of System Development of the Russian Academy of Sciences for a MIPS architecture (Baget-MIPS variant) and Intel board support packages (BSPs) (x86 architecture). Baget is intended for software execution in a hard real-time embedded systems (firmware).\n\nX Window System (client and server) was ported to Baget. It also has ethernet support (Network File System (NFS), File Transfer Protocol (F", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5421172", "url": "https://en.wikipedia.org/wiki/The%20Tone%20Rebellion", "title": "The Tone Rebellion", "text": "The Tone Rebellion is a science fiction real-time strategy game created by The Logic Factory. Released in 1997, it was the company's second release after Ascendancy, a space strategy game.\n\nBackground\nThe Tone Rebellion is a pseudo-3D real-time strategy game with some RPG and puzzle-solving elements. Similar to Alien Legacy and Maelstrom, there is a plot that runs throughout the game and unfolds with progress. You are leader of the Floaters, jellyfish-like aliens fight to release the Tone, the l", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5431230", "url": "https://en.wikipedia.org/wiki/Zono", "title": "Zono", "text": "Zono Inc. was an American video game developer based in El Segundo, California. The company was founded on July 25, 1991, by Ed Zobrist and William Novak, originally located in Costa Mesa, California. They are best known for their 2000 real-time strategy game Metal Fatigue.\n\nIn 2005, Zono was acquired by MumboJumbo and renamed MumboJumbo LA. In 2007, the company was moved to El Segundo, California. In December 2007, MumboJumbo closed MumboJumbo LA and terminated all employees.\n\nGames \n\nVideo gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5431341", "url": "https://en.wikipedia.org/wiki/Audio%20over%20Ethernet", "title": "Audio over Ethernet", "text": "In audio and broadcast engineering, Audio over Ethernet (sometimes AoE\u2014not to be confused with ATA over Ethernet) is the use of an Ethernet-based network to distribute real-time digital audio. AoE replaces bulky snake cables or audio-specific installed low-voltage wiring with standard network structured cabling in a facility. AoE provides a reliable backbone for any audio application, such as for large-scale sound reinforcement in stadiums, airports and convention centers, multiple studios or st", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5461628", "url": "https://en.wikipedia.org/wiki/The%20Settlers%20II%20%2810th%20Anniversary%29", "title": "The Settlers II (10th Anniversary)", "text": "The Settlers II (10th Anniversary) (), is a city-building game with real-time strategy elements, developed by Blue Byte and published by Ubisoft. Released for Microsoft Windows in September 2006, it is a remake of The Settlers II (1996). In March 2007, Blue Byte released a German-language expansion, Die Siedler II: Die n\u00e4chste Generation - Wikinger (), featuring new single-player campaign missions, new maps for both single-player and multiplayer modes, a random map generator, and minor gameplay", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5471199", "url": "https://en.wikipedia.org/wiki/Sins%20of%20a%20Solar%20Empire", "title": "Sins of a Solar Empire", "text": "Sins of a Solar Empire is a 2008 science fiction real-time strategy video game developed by Ironclad Games and published by Stardock Entertainment for Microsoft Windows operating systems. It is a real-time strategy (RTS) game that incorporates some elements from 4X games; its makers describe it as \"RT4X\". Players are given control of a spacefaring empire in the distant future, and are tasked with conquering star systems using military, economic and diplomatic means.\n\nThe game was released on Feb", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5476620", "url": "https://en.wikipedia.org/wiki/Demo%20effect", "title": "Demo effect", "text": "Demo effect is computer-based real-time visual effects found in demos created by the demoscene.\n\nThe main purpose of demo effects in demos is to show off the skills of the programmer. Because of this, demo coders have often attempted to create new effects whose technical basis cannot be easily figured out by fellow programmers.\n\nSometimes, particularly in the case of severely limited platforms such as the Commodore 64, a demo effect may make the target machine do things that are supposedly beyon", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5484542", "url": "https://en.wikipedia.org/wiki/Ironclad%20Games", "title": "Ironclad Games", "text": "Ironclad Games is a Canadian PC game developer. The company was founded in 2003 by former employees of Rockstar Vancouver. Ironclad is located in Burnaby, British Columbia.\n\nTitles\nIronclad released their first game, Sins of a Solar Empire on February 4, 2008, a game that features a mix of components from real-time strategy and 4X strategy games. They released the Entrenchment expansion on February 11, 2009. The second expansion pack, Diplomacy, was released on February 9, 2010: the Sins of a So", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5487564", "url": "https://en.wikipedia.org/wiki/Power%20Plus%20Pro", "title": "Power Plus Pro", "text": "Power Plus Pro is a piece of financial software produced by Reuters Group in the form of an addin for Microsoft Office Excel. A real-time data engine, it pushes new data into Excel when it receives notification of updates from a Reuters TIBCO bus or from Thomson Reuters' RMDS. This commonly involves live market data, such as stock prices, from a financial exchange. Using the addin, Excel can also contribute information to the TIBCO bus or to RMDS; such information then becomes available to othe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5495600", "url": "https://en.wikipedia.org/wiki/TVMobile", "title": "TVMobile", "text": "MediaCorp TV TVMobile (Chinese: \u6d41\u52a8\u7535\u89c6) was a subsidiary of MediaCorp Singapore and was the first channel in the world to pioneer the use of Digital Video Broadcast (DVB) technology to deliver television programmes to commuters. With 89.3 MHz, TVMobile provided the latest infotainment, entertainment programmes and real-time news; keeping travellers informed while travelling.\n\nTVMobile had outdoor-advertising platforms at shopping mall food courts, ferries, academic institutions, taxis and selected", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5506845", "url": "https://en.wikipedia.org/wiki/Gabriela%20Montero", "title": "Gabriela Montero", "text": "Gabriela Montero (born May 10, 1970) is a Venezuelan pianist, known in particular for her real-time improvisation of complex musical pieces on themes suggested by her audience and other sources, as well as for performances of standard classical repertoire.\n\nBiography \nBorn in Caracas, Venezuela, of an American-born mother and a Venezuelan father, Montero was seven months old when her parents, at the insistence of her maternal grandmother, placed a toy piano in her playpen. It had been bought as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5524046", "url": "https://en.wikipedia.org/wiki/National%20Atmospheric%20Release%20Advisory%20Center", "title": "National Atmospheric Release Advisory Center", "text": "The National Atmospheric Release Advisory Center (NARAC) is located at the University of California's Lawrence Livermore National Laboratory. It is a national support and resource center for planning, real-time assessment, emergency response, and detailed studies of incidents involving a wide variety of hazards, including nuclear, radiological, chemical, biological, and natural emissions.\n\nNARAC provides tools and services to federal, state and local governments, that map the probable spread of ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5541694", "url": "https://en.wikipedia.org/wiki/Brawl", "title": "Brawl", "text": "Brawl or Brawling may refer to:\n Brawl, a large-scale fist fight usually involving multiple participants\nBrawl Stars, a game desarrollated by Supercell, created at 2018\nBrawl, Scotland, a crofting community on the north coast of Scotland\nBrawling (legal definition), a rowdy argument on church property\nBench-clearing brawl, a large-scale fight occurring during a game or match\n Brawl (band), an American hard rock band that was later renamed Disturbed\nBrawl (game), a real-time card game\nBrawl (Tran", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5544421", "url": "https://en.wikipedia.org/wiki/Blitzkrieg%202", "title": "Blitzkrieg 2", "text": "Blitzkrieg 2 () is a real-time tactics computer game based on the events of World War II, the game is an evolution of its predecessor Blitzkrieg and is the second title in the Blitzkrieg (video game series). The game takes place in North Africa, the Pacific and Europe, and features the 6 different factions portrayed in the game that fought in their battle respective grounds during the war.\n\nGameplay\nAs its predecessor and the similar Sudden Strike games, Blitzkrieg 2 focuses on the battles of Wo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5574420", "url": "https://en.wikipedia.org/wiki/GPS%C2%B7C", "title": "GPS\u00b7C", "text": "GPS\u00b7C, short for GPS Correction, was a Differential GPS data source for most of Canada maintained by the Canadian Active Control System, part of Natural Resources Canada. When used with an appropriate receiver, GPS\u00b7C improved real-time accuracy to about 1\u20132 meters, from a nominal 15 m accuracy.\n\nReal-time data was collected at fourteen permanent ground stations spread across Canada, and forwarded to the central station, \"NRC1\", in Ottawa for processing.\n\nVisiting the external webpage for this se", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5581581", "url": "https://en.wikipedia.org/wiki/Flight%20information%20display%20system", "title": "Flight information display system", "text": "A flight information display system (FIDS) is a computer system used in airports to display flight information to passengers, in which a computer system controls mechanical or electronic display boards or TV screens in order to display arriving and departing flight information in real-time. The displays are located inside or around an airport terminal. A virtual version of a FIDS can also be found on most airport websites and teletext systems. In large airports, there are different sets of FIDS ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5596604", "url": "https://en.wikipedia.org/wiki/War%20Front%3A%20Turning%20Point", "title": "War Front: Turning Point", "text": "War Front: Turning Point is a real-time strategy video game set in an alternate World War II. It was developed by Digital Reality, and published by CDV and released in 2007 for Microsoft Windows.\n\nThe game is set in a fictional, alternate World War II in which Adolf Hitler is assassinated in the early days of the war, and under the new chancellor, Germany occupies Great Britain. Eventually, Nazi Germany is defeated, but this allows the Soviet Union to advance into Western Europe. The game featur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5598889", "url": "https://en.wikipedia.org/wiki/Time%20of%20Defiance", "title": "Time of Defiance", "text": "Time of Defiance was a Massively multiplayer online real-time strategy (MMORTS), featuring floating islands on a planet called Nespanona. Players capture and extract resources from these floating islands. Because the game runs in real-time, the game world continues to alter when players are logged out. All in-game enemies consist of other players, who must be repelled by force or prevented from attacking through diplomatic intervention. It was made free to play on August 19, 2009 and was closed ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5645723", "url": "https://en.wikipedia.org/wiki/Gorky%2017", "title": "Gorky 17", "text": "Gorky 17 (released as Odium in North America) is a turn-based tactics tactical role-playing game developed by Polish studio Metropolis Software and published by Monolith Productions for Microsoft Windows in 1999. The game was later ported to Linux by Hyperion Entertainment and published by Linux Game Publishing in 2006. The AmigaOS 4 version was released in 2015.\n\nGameplay \nThe game features two modes: In the real-time 'exploration' mode, the player controls game characters using a mouse in a po", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5649740", "url": "https://en.wikipedia.org/wiki/Fleet%20Command", "title": "Fleet Command", "text": "Fleet Command, previously labelled as Jane's Fleet Command, is a real-time tactics naval warfare simulation computer game released in May 1999. It was developed by Sonalysts Inc. and published by Electronic Arts (EA). The game licensed parts of Jane's Information Group's military information database, which was used as an in-game \"Jane's Library\", reference material that the player could refer to while in-game. Jane's also licensed to EA the \"Jane's\" name and the \"Jane's Combat Simulations\" logo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5663515", "url": "https://en.wikipedia.org/wiki/Webhelp", "title": "Webhelp", "text": "Webhelp is a business process outsourcing and consultancy company headquartered in Paris.\n\nHistory\nFounded in June 2000 by Fr\u00e9d\u00e9ric Jousset and Olivier Duha, Webhelp originally offered a real-time IT support services, before expanding into call center operations and business support.\n\nIn 2011, London-based private equity firm Charterhouse Capital Partners acquired a major stake in the company. In February 2013, the group purchased Falkirk call centre firm HEROtsc.\n\nIn June 2016, Webhelp acquired", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5664008", "url": "https://en.wikipedia.org/wiki/Tadiran%20Mastiff", "title": "Tadiran Mastiff", "text": "The Tadiran Mastiff is a battlefield UAV built by Tadiran Electronic Industries, regarded by some military historians as the world's first modern military drone.\n\nDesign and development\nIt first flew in 1973. It featured a data-link system and miniaturized electronics that fed live and high-resolution video coverage of the targeted area to operators. It is thus seen by some as the first modern surveillance UAV. The combination of its long flight endurance of over 7 hours and real-time video stre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5679572", "url": "https://en.wikipedia.org/wiki/Haegemonia%3A%20Legions%20of%20Iron", "title": "Haegemonia: Legions of Iron", "text": "Haegemonia: Legions of Iron, or Hegemonia: Legions of Iron, is a 3D real-time strategy game developed by Digital Reality for Microsoft Windows, and by Micro\u00efds for iOS.\n\nStoryline \n\nHaegemonia takes place in the distant future where humanity has colonized the Solar System and tensions are high between the World Government of Earth and colonial Mars. A summit on Earth's Moon is planned to ease tensions, but the Martian representative's shuttle is destroyed en route by a third, currently unknown, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5688479", "url": "https://en.wikipedia.org/wiki/Dogs%20of%20War%20%282000%20video%20game%29", "title": "Dogs of War (2000 video game)", "text": "Dogs of War is a science fiction real-time strategy game developed by Silicon Dreams Studio and published by TalonSoft.\n\nThe game is particular in that it does not simply provide a top-down view to command one's army, but also allows the player to control units individually in third-person view.\n\nPlot\nAround 2200, the Empire on Earth sends colonists to space to seek resources for the now-depleted Earth. The first settlement is on Primus IV. Its colonists are applauded and praised for their brave", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5720051", "url": "https://en.wikipedia.org/wiki/Conflict%20Zone", "title": "Conflict Zone", "text": "Conflict Zone is a war-themed real-time strategy game, developed by MASA Group and published by Ubi Soft for Dreamcast, PlayStation 2, and Microsoft Windows.\n\nStory\nIn 2010, the majority of the world's developed countries have formed a centralised organisation, known as the International Corps for Peace, dedicated to bringing about world peace through worldwide media. However, not all developing countries are keen to be involved. Ghost, a secret organisation, seeks only the economic interests of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5720835", "url": "https://en.wikipedia.org/wiki/Sydney%20Coordinated%20Adaptive%20Traffic%20System", "title": "Sydney Coordinated Adaptive Traffic System", "text": "The Sydney Coordinated Adaptive Traffic System, abbreviated SCATS, is an intelligent transportation system that manages the dynamic (on-line, real-time) timing of signal phases at traffic signals, meaning that it tries to find the best phasing (i.e. cycle times, phase splits and offsets) for a traffic situation (for individual intersections as well as for the whole network). SCATS is based on the automatic plan selection from a library in response to the data derived from loop detectors or other", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5748599", "url": "https://en.wikipedia.org/wiki/PUFF-PLUME", "title": "PUFF-PLUME", "text": "PUFF-PLUME is a model used to help predict how air pollution disperses in the atmosphere. It is a Gaussian atmospheric transport chemical/radionuclide dispersion model that includes wet and dry deposition, real-time input of meteorological observations and forecasts, dose estimates from inhalation and gamma shine (i.e., radiation), and puff or continuous plume dispersion modes. It was first developed by the Pacific Northwest National Laboratory (PNNL) in the 1970s.\n\nIt is the primary model for e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5764616", "url": "https://en.wikipedia.org/wiki/Battle%20Bugs", "title": "Battle Bugs", "text": "Battle Bugs is a real-time tactics video game developed for MS-DOS by Epyx and released by Sierra On-Line in 1994. A PlayStation port was published in Japan in 1997.\n\nGameplay\nThe game details a war of one group of insects battling against another. The battlefields are common household places such as the kitchen floor or the backyard. The player must navigate their bugs, each with special skills, and engage the enemies\u2019 bugs.\n\nThe main objective of each battle is to either eradicate all of the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5776653", "url": "https://en.wikipedia.org/wiki/SpellForce%3A%20The%20Order%20of%20Dawn", "title": "SpellForce: The Order of Dawn", "text": "SpellForce: The Order of Dawn is a 2003 real-time strategy and role-playing video game, developed by Phenomic Game Development and published by Encore, Inc. The first instalment in the SpellForce series, the game takes place within a high-fantasy world in the years following a devastating cataclysmic event that has shattered the lands into several islands. The story itself focuses on an immortal slave who is granted their freedom in order to investigate growing troubles amongst some of these isl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5826992", "url": "https://en.wikipedia.org/wiki/Malicious%20Software%20Removal%20Tool", "title": "Malicious Software Removal Tool", "text": "\n\nMicrosoft Windows Malicious Software Removal Tool is a freely distributed virus removal tool developed by Microsoft for the Microsoft Windows operating system. First released on January 13, 2005, it is an on-demand anti-virus tool (\"on-demand\" means it lacks real-time protection) that scans the computer for specific widespread malware and tries to eliminate the infection. It is automatically distributed to Microsoft Windows computers via the Windows Update service but can also be separately d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5869719", "url": "https://en.wikipedia.org/wiki/Real-time%20business%20intelligence", "title": "Real-time business intelligence", "text": "Real-time business intelligence (RTBI) is a concept describing the process of delivering business intelligence (BI) or information about business operations as they occur. Real time means near to zero latency and access to information whenever it is required.\n\nThe speed of today's processing systems has allowed typical data warehousing to work in real-time. The result is real-time business intelligence. Business transactions as they occur are fed to a real-time BI system that maintains the curre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5877247", "url": "https://en.wikipedia.org/wiki/SpellForce%202%3A%20Shadow%20Wars", "title": "SpellForce 2: Shadow Wars", "text": "SpellForce 2: Shadow Wars is a 2006 real-time strategy and role-playing video game, developed by Phenomic and published by JoWooD Productions. The second instalment in the SpellForce series, the game takes place several years after the events of 2003's SpellForce: The Order of Dawn, with players assuming the role of an immortal warrior who seeks aid to protect his homeland from invaders, only to be drawn on a quest to defeat a powerful alchemist responsible for creating the immortality of the wa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5888918", "url": "https://en.wikipedia.org/wiki/Seven%20Kingdoms%20II%3A%20The%20Fryhtan%20Wars", "title": "Seven Kingdoms II: The Fryhtan Wars", "text": "Seven Kingdoms II: The Fryhtan Wars is a history-fantasy real-time strategy video game developed by Enlight, released in 1999. Seven Kingdoms II is the sequel to the original Seven Kingdoms game and its updated re-release Seven Kingdoms: Ancient Adversaries.\n\nGameplay\nFryhtan Wars retains a great deal of concepts from its predecessors that distinguished it from other strategy games.\n\nAs was in the original, players must seek to strike a balance between a powerful army for defeating enemy Kingdom", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5926426", "url": "https://en.wikipedia.org/wiki/Newton%20Game%20Dynamics", "title": "Newton Game Dynamics", "text": "Newton Game Dynamics is an open-source physics engine for realistically simulating rigid bodies in games and other real-time applications. Its solver is deterministic and not based on traditional LCP or iterative methods.\n\nNewton Game Dynamics is actively developed by Julio Jerez. Currently a new version which will take advantage of multi-core CPUs and GPUs is being developed.\n\nGames that used Newton \nThis is a select list of games using Newton Game Dynamics.\n Amnesia: Rebirth\n Amnesia: A Machi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5929146", "url": "https://en.wikipedia.org/wiki/PikeOS", "title": "PikeOS", "text": "PikeOS is a commercial, hard real-time operating system (RTOS) that offers a separation kernel based hypervisor with multiple logical partition types for many other operating systems (OS), each called a GuestOS, and applications. It enables users to build certifiable smart devices for the Internet of things (IoT) according to the high quality, safety and security standards of different industries. For safety and security critical real-time applications on controller-based systems without memory ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5954484", "url": "https://en.wikipedia.org/wiki/BattleTech%3A%20The%20Crescent%20Hawk%27s%20Revenge", "title": "BattleTech: The Crescent Hawk's Revenge", "text": "BattleTech: The Crescent Hawks' Revenge is a real-time tactics game based in the FASA BattleTech universe. It is a direct sequel to BattleTech: The Crescent Hawk's Inception, though the gameplay is considerably different from that of the first title, which was primarily an adventure/role-playing game. Developed by Westwood Associates for Mediagenic, and produced by Scott Berfield, the game serves as a prototype for what later became Dune II, the first real-time strategy title on the PC.\n\nGamepla", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "5963113", "url": "https://en.wikipedia.org/wiki/Space%20of%20flows", "title": "Space of flows", "text": "The space of flows is a high-level cultural abstraction of space and time, and their dynamic interactions with digital age society. The concept was created by the sociologist and cybernetic culture theoretician Manuel Castells to \"reconceptualize new forms of spatial arrangements under the new technological paradigm\"; a new type of space that allows distant synchronous, real-time interaction (Castells, p.\u00a0146). The space of flows first was mentioned in The Informational City: Information Technol", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6002040", "url": "https://en.wikipedia.org/wiki/FreeSWITCH", "title": "FreeSWITCH", "text": "FreeSWITCH is a free and open-source application server for real-time communication, WebRTC, telecommunications, video and Voice over Internet Protocol (VoIP). Multiplatform, it runs on Linux, Windows, macOS and FreeBSD. It is used to build PBX systems, IVR services, videoconferencing with chat and screen sharing, wholesale least-cost routing, Session Border Controller (SBC) and embedded communication appliances. It has full support for encryption, ZRTP, DTLS, SIPS. It can act as a gateway betwe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6018491", "url": "https://en.wikipedia.org/wiki/Stalingrad%20%282005%20video%20game%29", "title": "Stalingrad (2005 video game)", "text": "Stalingrad (also known as Great Battles of WWII: Stalingrad) is a 2005 real-time tactics video game developed by Russian studio DTF Games for Microsoft Windows. The game is built-up upon Nival Interactive's Enigma Engine that was used in the Blitzkrieg game and is a fully stand-alone product.\n\nSetting \nStalingrad is set during Operation Barbarossa, the invasion of the Soviet Union by Nazi Germany in World War II, and is based around the Battle of Stalingrad between summer 1942 and early 1943. T", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6031581", "url": "https://en.wikipedia.org/wiki/Gunlok", "title": "Gunlok", "text": "Gunlok is a squad based action-adventure real-time strategy video game developed by Rebellion Developments, released in 2000; it was re-released in 2009 on GamersGate.\n\nPlot\nSet in a post apocalyptic earth, robots have almost completely wiped out mankind. However, a few pockets of human resistance fight on. Gunlok, a warrior in modular power armor powered by energy from Earth's core, fights on. As a member of Earth's elite Special Forces, Gunlok leads a campaign against the massive robot army.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6040384", "url": "https://en.wikipedia.org/wiki/Robin%20Hood%3A%20The%20Legend%20of%20Sherwood", "title": "Robin Hood: The Legend of Sherwood", "text": "Robin Hood: The Legend of Sherwood is a 2002 stealth-based real-time tactics video game developed by Spellbound Studios. It is similar to games such as Desperados: Wanted Dead or Alive and the Commandos series. In the game, the player controls up to five characters in a setting based on the stories of the protagonist, Robin Hood. The player can also control Robin Hood's Merry Men, including Little John, Friar Tuck, Will Scarlet, Will Stutely, and Maid Marian. Robin and his crew must evade the cr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6049662", "url": "https://en.wikipedia.org/wiki/Parametric%20animation", "title": "Parametric animation", "text": "Parametric animation is an animation technique used in video game graphics that combines two or more separate animations together to form a new composite animation. This new animation is constructed in real-time by the game engine rather than being stored in a separate file. Parametric animations can reduce artist workload during game development and provide a smoother appearance.\n\nThis technique was first used in an early version of the game Team Fortress 2.\n\nMotivation\n\nIn game development, an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6052050", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%203%3A%20Tiberium%20Wars", "title": "Command & Conquer 3: Tiberium Wars", "text": "Command & Conquer 3: Tiberium Wars is a 2007 science fiction real-time strategy video game developed and published by Electronic Arts for Windows, Mac OS X and Xbox 360 platforms, and released internationally in March 2007. The game is a direct sequel to the 1999 game Command & Conquer: Tiberian Sun, and takes place roughly seventeen years after the game's expansion pack Firestorm, in which Tiberium has grown to become a considerable threat to the planet, leading to the world's political borders", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6058181", "url": "https://en.wikipedia.org/wiki/Trip%20computer", "title": "Trip computer", "text": "A trip computer is a computer fitted to some cars; most modern trip computers record, calculate, and display the distance travelled, the average speed, the average fuel consumption, and real-time fuel consumption.\n\nThe first, mechanical trip computers, such as the Halda Speedpilot, produced by a Swedish taximeter manufacturer, were made in the 1950s as car accessories to enable the driver to maintain a given time schedule, particularly useful in rallying. One was installed as standard equipment ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6062621", "url": "https://en.wikipedia.org/wiki/Rising%20Lands", "title": "Rising Lands", "text": "Rising Lands is a fantasy-based real-time strategy computer game developed by Micro\u00efds, released in 1997.\n\nRising Lands takes place in a not too distant future, where earth has been devastated by a comet. The survivors have formed small tribes, and as the leader of one of these tribes, the player's mission is to guide their people to become rulers of the post-apocalyptic earth.\n\nGameplay is similar to most real-time strategy games. The player collects three different resources (food, stones and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6065072", "url": "https://en.wikipedia.org/wiki/Napoleon%20Senki", "title": "Napoleon Senki", "text": "is a real-time tactics strategy video game developed by Lenar and published by Irem in March 1988 for the Family Computer. In August that same year, Broderbund announced that it would be released for the North American NES console as The Battlefields of Napoleon; which was eventually cancelled.\n\nThis video game allows the player to re-enact the Napoleonic Wars using a bird's-eye view. Starting with earliest battles against the Holy Roman Empire to grab territory for the fledgling French Republic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6084017", "url": "https://en.wikipedia.org/wiki/Ewido%20Networks", "title": "Ewido Networks", "text": "Ewido Networks was a software company based in Germany known for creating Ewido Anti-Spyware. Ewido Anti-Spyware was software used to remove malware such as spyware, trojan horses, adware, dialers, and worms. It also featured real-time protection, automatic updates, and other privacy features. Ewido had both a free version, and a paid version which added realtime protection, and automatic updates.\n\nHistory\nEwido networks was founded in Germany in 2004 by Andreas Rudyk, Peter Klapprodt and Tobia", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6102398", "url": "https://en.wikipedia.org/wiki/Alexander%20%28disambiguation%29", "title": "Alexander (disambiguation)", "text": "Alexander is a male given name.\n\nAlexander may also refer to:\n\nArts and entertainment\n\nFilms\n Alexander (1996 film), a Tamil action film\n Alexander (2004 film), an epic about Alexander the Great directed by Oliver Stone\n Alexander (2008 film), a Russian historical film about Alexander Nevsky\n\nGaming\n Alexander (video game), a real-time strategy game \n Rome: Total War: Alexander, a PC game\n\nMusic\n Alexander (soundtrack), the Vangelis score of the 2004 film Alexander\n Alexander (Alex Ebert album),", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6123938", "url": "https://en.wikipedia.org/wiki/Text%20over%20IP", "title": "Text over IP", "text": "Text over IP (or ToIP) is a means of providing a real-time text (RTT) service that operates over IP-based networks. It complements Voice over IP (VoIP) and Video over IP.\n\nReal-time text is streaming text that is transmitted as it is produced, allowing text to be used conversationally. Real-time text is defined in ITU-T Multimedia Recommendation F.700 2.1.2.1 . Real-time text is designed for conversational use where people interactively converse with each other. To achieve this, particular user ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6129664", "url": "https://en.wikipedia.org/wiki/Virtual%20reality%20in%20telerehabilitation", "title": "Virtual reality in telerehabilitation", "text": "Virtual reality in telerehabilitation is a method used first in the training of musculoskeletal patients using asynchronous patient data uploading, and an internet video link. Subsequently, therapists using virtual reality-based telerehabilitation prescribe exercise routines via the web which are then accessed and executed by patients through a web browser. Therapists then monitor the patient's progress via the web and modify the therapy asynchronously without real-time interaction or training.\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6151085", "url": "https://en.wikipedia.org/wiki/Deep%20Fear", "title": "Deep Fear", "text": "is a 1998 survival horror video game developed by Sega AM7 and System Sacom for the Sega Saturn. It was the last Saturn game released in Europe. The game offers unique gameplay features such as buttons that allow the player to use items in real-time, aiming while moving, and falling oxygen levels. The music was composed by Kenji Kawai, and the creatures and characters were designed by illustrator Yasushi Nirasawa.\n\nGameplay \nPlayers move John Mayor through the pre-rendered rooms of The Big Table", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6205222", "url": "https://en.wikipedia.org/wiki/Joint%20Task%20Force%20%28video%20game%29", "title": "Joint Task Force (video game)", "text": "Joint Task Force is a Windows real-time tactics game where players command military forces in combat situations based on modern day conflicts.\n\nThe game includes officially licensed vehicles and weapons systems from major defense contractors including Boeing, Lockheed Martin, General Dynamics, Northrop Grumman and Sikorsky.\n\nJoint Task Force was developed by Hungarian studio Most Wanted Entertainment and was co-published by HD Publishing and Sierra Entertainment in September 2006.\n\nSetting\n\nJoin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6218028", "url": "https://en.wikipedia.org/wiki/Dark%20Colony", "title": "Dark Colony", "text": "Dark Colony is a real-time strategy video game developed by Alternative Reality Technologies and published by Strategic Simulations. The game was released for Microsoft Windows and Mac OS in September 1997.\n\nOverview\nThe game is set on a fictional Mars colony - the so-called \"Dark Colony\" - in the year 2137. Humans have discovered a \"remarkable energy source\" by the name of Petra-7 on the red planet. Figuring they'd rather not choke on the atmosphere of Mars whilst mining Petra-7, the Humans be", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6238800", "url": "https://en.wikipedia.org/wiki/Aspley%20bus%20station", "title": "Aspley bus station", "text": "The Aspley Bus Station, at Aspley, Queensland, Australia, is served by TransLink bus routes. It is part of the Aspley Hypermarket Shopping Centre. It is in Zone 2 of the TransLink integrated public transport system.\n\nThe station is being upgraded with enhanced waiting areas, an enclosed lounge, improved accessibility and real-time passenger information, as part of TransLink's wider project for upgrading bus stations in South East Queensland.\n\nAn additional service has been added in 2008 which of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6256906", "url": "https://en.wikipedia.org/wiki/Communications%20%26%20Information%20Services%20Corps", "title": "Communications & Information Services Corps", "text": "The Communications and Information Services Corps (CIS) () \u2013 formerly the Army Corps of Signals \u2013 is one of the combat support corps of the Irish Defence Forces, the military of Ireland. It is responsible for the installation, maintenance and operation of communications and information systems for the command, control and administration of the Defence Forces, and the facilitation of accurate, real-time sharing of intelligence between the Army, Naval Service and Air Corps branches at home and ove", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6282756", "url": "https://en.wikipedia.org/wiki/Interactive%20skeleton-driven%20simulation", "title": "Interactive skeleton-driven simulation", "text": "Interactive skeleton-driven simulation (or Interactive skeleton-driven dynamic deformations) is a scientific computer simulation technique used to approximate realistic physical deformations of dynamic bodies in real-time. It involves using elastic dynamics and mathematical optimizations to decide the body-shapes during motion and interaction with forces. It has various applications within realistic simulations for medicine, 3D computer animation and virtual reality.\n\nBackground\nMethods for simu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6300255", "url": "https://en.wikipedia.org/wiki/Faces%20of%20War", "title": "Faces of War", "text": "Faces of War (originally known as Outfront II, , or Behind Enemy Lines 2) is a real-time strategy and real-time tactics war video game developed by Ukrainian developer Best Way and published by Russian publisher 1C Company. The game is a sequel to 2004's Soldiers: Heroes of World War II. Whereas Soldiers had the player controlling a handful of squad members alone in enemy territory, Faces of War engages the player and his squad in massive battles fighting alongside AI controlled squads. The game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6312116", "url": "https://en.wikipedia.org/wiki/H.323", "title": "H.323", "text": "H.323 is a Recommendation from the ITU Telecommunication Standardization Sector (ITU-T) that defines the protocols to provide audio-visual communication sessions on any packet network. The H.323 standard addresses call signaling and control, multimedia transport and control, and bandwidth control for point-to-point and multi-point conferences.\n\nIt is widely implemented by voice and videoconferencing equipment manufacturers, is used within various Internet real-time applications such as GnuGK and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6325817", "url": "https://en.wikipedia.org/wiki/Takeda%20%28video%20game%29", "title": "Takeda (video game)", "text": "Takeda is a real-time tactics video game based on the life of Takeda Shingen. Takeda was developed by Magitech Corporation.\n\nSequels\n\nMagitech Corporation also has produced a sequel, Takeda 2, which incorporates more aspects of the individual development of the generals, aspects such as leadership, etc.\n\nTakeda 3 was completed on February 2009.\n\nReferences\n\nExternal links\nTakeda - Official Takeda homepage\nMagitech Corporation - Official site of Magitech Corporation\nTakeda 2 - Official Takeda 2 h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6328175", "url": "https://en.wikipedia.org/wiki/Hume%20%28programming%20language%29", "title": "Hume (programming language)", "text": "Hume is a functionally based programming language developed at the University of St Andrews and Heriot-Watt University in Scotland since the year 2000. The language name is both an acronym meaning 'Higher-order Unified Meta-Environment' and an honorific to the 18th Century philosopher David Hume. It targets real-time embedded systems, aiming to produce a design that is both highly abstract, yet which will still allow precise extraction of time and space execution costs. This allows programmers t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6358178", "url": "https://en.wikipedia.org/wiki/The%20Lord%20of%20the%20Rings%3A%20The%20Battle%20for%20Middle-earth%20II%3A%20The%20Rise%20of%20the%20Witch-king", "title": "The Lord of the Rings: The Battle for Middle-earth II: The Rise of the Witch-king", "text": "The Lord of the Rings: The Battle for Middle-earth II: The Rise of the Witch-king (aka LOTRBFME2ROTWK) is a real-time strategy video game published by Electronic Arts, based on the Lord of the Rings film series based on the book, directed by Peter Jackson. The Rise of the Witch-king is the official expansion to The Lord of the Rings: The Battle for Middle-earth II, which was published by the same company and released in 2006, for Microsoft Windows. The Rise of the Witch-king was shipped to store", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6399477", "url": "https://en.wikipedia.org/wiki/Nuclear%20Dawn", "title": "Nuclear Dawn", "text": "Nuclear Dawn is a post-apocalyptic first-person shooter real-time strategy hybrid video game. It was originally announced in February 2006 as an amateur mod for the Source engine, but in April 2009 was revealed to have become a commercial project, still using Source, aimed at Windows PCs and Mac OS X. It was released on September 26, 2011.\n\nGameplay \nOne player on each team is a 'commander', who directs the team from an overhead view. The remainder are soldiers who have standard FPS player capab", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6452846", "url": "https://en.wikipedia.org/wiki/Army%20Men%3A%20Toys%20in%20Space", "title": "Army Men: Toys in Space", "text": "Army Men: Toys in Space is a real-time tactics video game developed and published by The 3DO Company exclusively for Microsoft Windows. It is the only game in the series to feature Tina Tomorrow and the Space Aliens.\n\nPlot\nThe great, main war between the Green and Tan nations has whittled down to skirmishes and recon missions for both sides, leaving the soldiers little new action or unknown combat factors.\n\nThis stalemate comes to an abrupt end when a flying saucer-like spaceship from outer spac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6509757", "url": "https://en.wikipedia.org/wiki/Jefferson%20Han", "title": "Jefferson Han", "text": "Jefferson Y. \"Jeff\" Han (born 1975) is a computer scientist who worked for New York University's (NYU) Courant Institute of Mathematical Sciences until 2006. He is one of the main developers of \"multi-touch sensing\", which, unlike older touch-screen interfaces, is able to recognize multiple points of contact.\n\nHan also works on other projects in the fields of autonomous robot navigation, motion capture, real-time computer graphics, and human-computer interaction.\n\nCareer\nHe presented his multi-t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6527837", "url": "https://en.wikipedia.org/wiki/Mnesia", "title": "Mnesia", "text": "Mnesia is a distributed, soft real-time database management system written in the Erlang programming language. It is distributed as part of the Open Telecom Platform.\n\nDescription \nAs with Erlang, Mnesia was developed by Ericsson for soft real-time distributed and high-availability computing work related to telecoms. It was not intended as a general office-based data processing database management system, nor to replace SQL-based systems. Instead Mnesia exists to support Erlang, where DBMS-like", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6531559", "url": "https://en.wikipedia.org/wiki/Multiverse%20Network", "title": "Multiverse Network", "text": "The Multiverse Network, Inc. was an American startup company creating a network and platform for Massively Multiplayer Online Games (MMOGs) and 3D virtual worlds. Multiverse's stated aim was to lower the barrier of entry for development teams by providing a low-cost software platform for online game and virtual world development.\n\nIn 2009, the company extended its development platform to support Flash and built a series of real-time multiplayer games to demo the technology. As part of the worldw", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6535489", "url": "https://en.wikipedia.org/wiki/S.W.I.N.E.", "title": "S.W.I.N.E.", "text": "S.W.I.N.E. (Strategic Warfare In a Nifty Environment) is a real-time tactics video game designed by Hungarian video game developer StormRegion and published by Ravensburger Interactive Media under their mature game label Fishtank Interactive. The player chooses to fight as either the brutal invading pigs or the campy rabbits, and plays a series of missions. There are many units, including mortar, artillery, and tank units. There are also 10 multiplayer campaigns, each with many modes of play, in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6549167", "url": "https://en.wikipedia.org/wiki/Apollo%2011%20missing%20tapes", "title": "Apollo 11 missing tapes", "text": "The Apollo 11 missing tapes were those that were recorded from Apollo 11's slow-scan television (SSTV) telecast in its raw format on telemetry data tape at the time of the first Moon landing in 1969 and subsequently lost. The data tapes were used to record all transmitted data (video as well as telemetry) for backup.\n\nTo broadcast the SSTV transmission on standard television, NASA ground receiving stations performed real-time scan conversion to the NTSC television format. The moonwalk's converte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6582268", "url": "https://en.wikipedia.org/wiki/Ulead%20MediaStudio%20Pro", "title": "Ulead MediaStudio Pro", "text": "Ulead MediaStudio Pro (MSP) is real-time, timeline based prosumer level video editing software by Ulead Systems. It is a suite of 5 digital video and audio applications, including: Video Capture, Video Paint, CG Infinity, Audio Editor and Video Editor. MSP is only available on the Windows platform.\n\nSince version 8.0, CG Infinity and Video Paint are separate from the MSP suite, and are being sold as a combination product called VideoGraphics Lab (VGL).\n\nOn June 18, 2008, Corel formally announced", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6595580", "url": "https://en.wikipedia.org/wiki/JackBe", "title": "JackBe", "text": "JackBe Corporation was a privately held vendor of enterprise mashup software for real-time intelligence applications. In August 2013 JackBe was acquired by Software AG\n\nJackBe's flagship product is an enterprise mashup platform called Presto, which is used for enterprise mashups, business management dashboards, and real-time intelligence applications.\n\nEnterprise Mashup Products\nJackBe\u2019s main product, Presto, is an enterprise mashup platform. Presto provides real-time intelligence through func", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6624042", "url": "https://en.wikipedia.org/wiki/Wars%20and%20Warriors%3A%20Joan%20of%20Arc", "title": "Wars and Warriors: Joan of Arc", "text": "Wars & Warriors: Joan of Arc is a historically based computer game. Developed and published by Enlight, it was released in 2004. The player assumes the persona of Joan of Arc and leads the French in their attempt to win the Hundred Years' War. The game combines aspects of real-time strategy and action.\n\nGameplay\nWhile the game has both action and strategy aspects, action predominates. Playing as Joan or one of several other French commanders, the player uses a variety of weapons to defeat enemy ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6627226", "url": "https://en.wikipedia.org/wiki/Dark%20Reign%202", "title": "Dark Reign 2", "text": "Dark Reign 2 is a 3D real-time strategy video game developed by Pandemic Studios and released by Activision on July 3, 2000, for Microsoft Windows. A prequel to Dark Reign: The Future of War and its expansion pack, Dark Reign 2s storyline focuses on what came before the conflict in the first Dark Reign.\n\nGameplay\nDark Reign 2 features three modes: campaign, online multiplayer, and an instant action mode. Multiplayer functionality allows up to 32 players at once, featuring four 'rulesets: Glutton", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6640826", "url": "https://en.wikipedia.org/wiki/ParaWorld", "title": "ParaWorld", "text": "ParaWorld is a real-time strategy PC game released on September 25, 2006. It was developed by the German company SEK (Spieleentwicklungskombinat), based in Berlin. The game features more than 50 prehistoric animals, especially dinosaurs and Pleistocene mammals. The game uses TAGES, and therefore installs a driver on the system for copy protection.\n\nGameplay\nThe game-concept is similar to \"Age of Empires\", which is a real-time strategy game. ParaWorld features food, wood, and stone as resources.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6645610", "url": "https://en.wikipedia.org/wiki/World%20War%20III%3A%20Black%20Gold", "title": "World War III: Black Gold", "text": "World War III: Black Gold is a real-time strategy video game developed by Reality Pump and published in 2001 by JoWood Productions, and then later republished in 2006 by TopWare Interactive.\n\nGameplay\nThe player has the option of playing as Iraq, Russia, or the United States. Each military power has its own unique units, abilities, and corresponding strategies. For example, Iraqi units all have a camouflage ability, allowing them to remain undetected in the absence of radar. The game features m", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6719779", "url": "https://en.wikipedia.org/wiki/Tzar%3A%20The%20Burden%20of%20the%20Crown", "title": "Tzar: The Burden of the Crown", "text": "Tzar: The Burden of the Crown (\u0426\u0430\u0440: \u0422\u0435\u0436\u0435\u0441\u0442\u0442\u0430 \u043d\u0430 \u043a\u043e\u0440\u043e\u043d\u0430\u0442\u0430 in Bulgarian), also known as simply Tzar, is a real-time strategy game for Microsoft Windows published by TalonSoft and developed by the Bulgarian game developer company Haemimont Games. The game was met with moderate success; however, it got mild recognition and audience when it was published as a demo in several gaming magazines.\n\nThe game was considered by Linux Game Publishing to be ported to Linux, but was rejected due to concerns wit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6768525", "url": "https://en.wikipedia.org/wiki/Rush%20for%20Berlin", "title": "Rush for Berlin", "text": "Rush for Berlin is a real-time tactics game set in World War II.\n\nIn the contest for the German capital Berlin, the player must fight with the American, British, French, and Soviet armies. As the players approach Berlin, they must face more and more challenges, as German defense becomes more focused and stubborn. The German campaign must be unlocked by beating either the Soviet campaign or the Anglo-American Alliance (US and UK) campaign. The Free French is an unlockable, albeit difficult, facti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6789205", "url": "https://en.wikipedia.org/wiki/Chosun%20Journal", "title": "Chosun Journal", "text": "The Chosun Journal is an independent, non-profit website that networks communities for human rights in North Korea. It was started in February 2001 and purports to be North Korea's first virtual holocaust museum set in real-time. \n\nIn addition to serving as a portal to the latest news related to North Korean human rights, the journal networks rescuers, refugees, defectors, government officials, intelligentsia, and the media to bring further momentum to the North Korean human rights movement. I", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6791814", "url": "https://en.wikipedia.org/wiki/Stronghold%3A%20Crusader", "title": "Stronghold: Crusader", "text": "Stronghold: Crusader is the successor to Firefly Studios's 2001 real-time strategy video game Stronghold. Crusader has much in common with the original Stronghold, but differs from its predecessor in the fact that the game is no longer set in England, instead being set in the Middle East during the Crusades. Another prominent addition not found in its predecessor is a skirmish mode in single-player, allowing customized battles with AI opponents instead of the linear campaign. The game was also r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6802811", "url": "https://en.wikipedia.org/wiki/War%20Wind%20II%3A%20Human%20Onslaught", "title": "War Wind II: Human Onslaught", "text": "War Wind II: Human Onslaught is a real-time strategy computer game from developer DreamForge Intertainment that was published by Strategic Simulations, Inc. in 1997. It is the sequel to DreamForge's 1996 release War Wind.\n\nOverview\n\nThough favorably reviewed overall, like its predecessor War Wind, Human Onslaught was overshadowed by higher-profile RTS titles such as Age of Empires and StarCraft.\n\nPlot\n\nThe storyline of War Wind II involves the discovery of one of the tablets of Naga'Rom in the n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6811667", "url": "https://en.wikipedia.org/wiki/MotionDSP", "title": "MotionDSP", "text": "MotionDSP is a Burlingame, California-based company making real-time, GPU-accelerated image processing software for Full Motion Video (FMV) and Wide Area Motion Imagery (WAMI). MotionDSP's \u201cIkena\u201d family of Windows-based products improve the quality of video from ISR platforms, as well as a variety of video formats such as mobile phones and security cameras (CCTV). \"Ikena ISR\" is designed for real-time FMV applications (military and homeland security markets), and \"Ikena\" is designed for forensi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6814241", "url": "https://en.wikipedia.org/wiki/Bounding%20interval%20hierarchy", "title": "Bounding interval hierarchy", "text": "A bounding interval hierarchy (BIH) is a partitioning data structure similar to that of bounding volume hierarchies or kd-trees. Bounding interval hierarchies can be used in high performance (or real-time) ray tracing and may be especially useful for dynamic scenes.\n\nThe BIH was first presented under the name of SKD-Trees, presented by Ooi et al., and BoxTrees, independently invented by Zachmann.\n\nOverview \nBounding interval hierarchies (BIH) exhibit many of the properties of both bounding volum", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6817345", "url": "https://en.wikipedia.org/wiki/Fulldome", "title": "Fulldome", "text": "Fulldome refers to immersive dome-based video display environments. The dome, horizontal or tilted, is filled with real-time (interactive) or pre-rendered (linear) computer animations, live capture images, or composited environments.\n\nAlthough the current technology emerged in the early-to-mid 1990s, fulldome environments have evolved from numerous influences, including immersive art and storytelling, with technological roots in domed architecture, planetariums, multi-projector film environments", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6829692", "url": "https://en.wikipedia.org/wiki/Burn%20Cycle", "title": "Burn Cycle", "text": "Burn Cycle (stylized as Burn:Cycle) is a 1994 surrealist cyberpunk point-and-click adventure video game for the CD-i that incorporates full motion video. The game's star, Sol Cutter, is a computer hacker and small-time data thief whose latest steal at the beginning of the game comes with a nasty sting. The Burn Cycle virus has been implanted in his head and has given him a two-hour real-time deadline to find a cure before his brain deteriorates completely. The player must guide Sol out of Softec", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6840891", "url": "https://en.wikipedia.org/wiki/NHL%20Eastside%20Hockey%20Manager%202007", "title": "NHL Eastside Hockey Manager 2007", "text": "NHL Eastside Hockey Manager 2007 (often abbreviated as NHL EHM 2007 or just EHM 2007) is an ice hockey management simulation game in the Eastside Hockey Manager series. It is developed by Sports Interactive (SI Games) and published by Sega. The game was released via digital download on September 22, 2006.\n\nThe game adds a number of features such as a fantasy draft and a new real-time 2D engine. Just like in NHL EHM 2005, many areas of the game, such as the interface, are upgraded based on the fe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6842088", "url": "https://en.wikipedia.org/wiki/Blitzkrieg%20%28disambiguation%29", "title": "Blitzkrieg (disambiguation)", "text": "Blitzkrieg is a military term describing the use of overwhelming force and rapid speed.\n\nBlitzkrieg may also refer to:\n\nIn entertainment and media\n Blitzkrieg Boys, the Russian team in the anime series Beyblade, known as the Demolition Boys in the show's first season\n Team Blitzkrieg, the German team in the film DodgeBall: A True Underdog Story (2004)\n\nGames\n Blitzkrieg (video game series), a World War II computer game\n Blitzkrieg (video game), a 2003 real-time tactics computer game\n Blitzkrieg ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6855350", "url": "https://en.wikipedia.org/wiki/Space%20colony", "title": "Space colony", "text": "Space colony may refer to:\n\n Space colonization, any colony outside the planet Earth\n Space habitat, a free-floating extraterrestrial habitat labeled colony specifically\n\nFiction\n Space Colony (video game), a real-time strategy video game.\n Colony in Space, a season 8 serial from Doctor Who", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6860550", "url": "https://en.wikipedia.org/wiki/Original%20War", "title": "Original War", "text": "Original War is a real-time strategy video game developed by Czech company Altar Interactive and released by Virgin Interactive on June 15, 2001. It was re-released in the United Kingdom under the budget Sold Out label in 2004, and was later re-released again by Good Old Games in 2008.\n\nIn North America, the game was part of a $20 budget range from Titus Interactive which was branded using the Virgin Interactive name alongside Screamer 4x4, Codename: Outbreak and Nightstone.\n\nIn the game Origina", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6893706", "url": "https://en.wikipedia.org/wiki/Ext3cow", "title": "Ext3cow", "text": "Ext3cow or third extended filesystem with copy-on-write is an open source, versioning file system based on the ext3 file system. Versioning is implemented through block-level copy-on-write. It shares many of its performance characteristics with ext3.\n\nExt3cow provides a time-shifting interface that permits a real-time and continuous view of data in the past. Time-shifting is a novel interface, introduced in ext3cow, allowing users to navigate through and access past namespaces by adding a tim", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6894243", "url": "https://en.wikipedia.org/wiki/Terrorist%20%28video%20game%29", "title": "Terrorist (video game)", "text": "Terrorist is a real-time, two player strategy game developed by Steven Pederson of Edu-Ware Services in 1980 for the Apple II. One player plays the government authority, while the other plays a terrorist organization in three scenarios: the capture of a building and taking of hostages, air piracy, and nuclear blackmail. Players make their moves at the same time through the use of game paddles. Winner and loser is judged by an elaborate scoring system based upon the government player's societa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6894697", "url": "https://en.wikipedia.org/wiki/Windfall%3A%20The%20Oil%20Crisis%20Game", "title": "Windfall: The Oil Crisis Game", "text": "Windfall: The Oil Crisis Game is a real-time business simulation game developed by David Mullich and published by Edu-Ware in 1980 for the Apple II. Based upon queuing theory and released after the 1979 energy crisis, the game puts the player in the role of chief executive of Engulf Oil, setting gas prices and worker salaries, monitoring gas station lines, scheduling oil tanker arrivals, and negotiating oil prices with OPEC countries in a race against the clock to maximize profits. As with most ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6901481", "url": "https://en.wikipedia.org/wiki/Global%20distribution%20system", "title": "Global distribution system", "text": "A global distribution system (GDS) is a computerised network system owned or operated by a company that enables transactions between travel industry service providers, mainly airlines, hotels, car rental companies, and travel agencies. The GDS mainly uses real-time inventory (e.g. number of hotel rooms available, number of flight seats available, or number of cars available) from the service providers. Travel agencies traditionally relied on GDS for services, products and rates in order to provi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6903579", "url": "https://en.wikipedia.org/wiki/Performance%20supervision%20system", "title": "Performance supervision system", "text": "A performance supervision system (PSS) is a software system used to improve the performance of a process plant. Typical process plants include oil refineries, paper mills, and chemical plants.\n\nThe PSS gathers real-time data from the process control system, typically a distributed control system. Using this data, the PSS can calculate performance metrics for process equipment, controls, and operations.\n\nReferences \n\nBusiness software\nIndustrial automation\nComputing terminology", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6910058", "url": "https://en.wikipedia.org/wiki/Atomic%20Games", "title": "Atomic Games", "text": "Atomic Games, Inc. was an American video game developer based in Austin, Texas, specializing in wargames. The company was founded by Keith Zabalaoui in 1989, and is best known for developing the Close Combat series of real-time wargames, as well as the V for Victory series. In December 2000, due to the cancellation of a project titled Hammer's Slammers, Atomic Games laid off its entire staff, only keeping three executives. Atomic Games was acquired by Destineer on May 6, 2005, while collaboratin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6929907", "url": "https://en.wikipedia.org/wiki/Anvil%20of%20Dawn", "title": "Anvil of Dawn", "text": "Anvil of Dawn is a 1995 fantasy role-playing video game developed by DreamForge Intertainment and published by New World Computing. Anvil of Dawn was named the best role-playing game of 1995 by Computer Gaming World and Computer Game Review. In 2013, the game was re-released via GOG.com with Microsoft Windows support.\n\nGameplay\nThe game was released 1995 for MS-DOS and was one of the last of the classical DOS RPGs with blockstep movements and semi-3D environment. The game presents a real-time, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6945368", "url": "https://en.wikipedia.org/wiki/DX%20Studio", "title": "DX Studio", "text": "DX Studio is a complete integrated development tool for the creation of 3D video games, simulations or real-time interactive applications for either standalone, web based, Microsoft Office or Visual Studio use.\n\nDevelopment\nDX Studio is produced by Worldweaver Ltd, a company that was established in 1996 by Chris Sterling to develop PC games and high-end business GIS applications. Development of DX Studio began in 2002 and the first version was released to market in 2005. Since then the user base", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6956911", "url": "https://en.wikipedia.org/wiki/Roland%20VariOS", "title": "Roland VariOS", "text": "The Roland VariOS is a production environment with audio editing and sample playback, released by Roland Corporation in 2003. It is based on the technology from the VP-9000 VariPhrase processor, and features the ability to mount two expansion cards.\n\nOverview \nThe Roland VariOS is a rack-mounted open-ended variable system module. It is possible to independently manipulate the pitch, time and formant of a sample, add effects and build complete audio-based arrangements\u2014all in a real-time environme", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6977263", "url": "https://en.wikipedia.org/wiki/Final%20Fantasy%20XII%3A%20Revenant%20Wings", "title": "Final Fantasy XII: Revenant Wings", "text": "is a real-time tactical role-playing game developed by Think & Feel and Square Enix who also published the game for the Nintendo DS. It is a stand-alone title related to the 2006 PlayStation 2 role-playing video game Final Fantasy XII.\n\nOne year after the events of Final Fantasy XII, the protagonist Vaan is a sky pirate, possessing his own airship. He is joined in a quest by his friend and navigator Penelo, other returning characters from the original title, along with new characters such as Lly", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6987262", "url": "https://en.wikipedia.org/wiki/Heroes%20of%20Mana", "title": "Heroes of Mana", "text": "Heroes of Mana is a 2007 real-time strategy game for the Nintendo DS. It was developed by Brownie Brown and Square Enix and published by Square Enix. It is the ninth game of the Mana series and the fourth entry in the World of Mana subseries, following the release of Dawn of Mana three months prior. Set in a high fantasy universe, Heroes of Mana follows a young soldier, Roget, as he journeys to defend several nations from the ruthless aggression of his own country in a series of battles.\n\nWhile ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "6991880", "url": "https://en.wikipedia.org/wiki/Network%20%28video%20game%29", "title": "Network (video game)", "text": "Network is a real-time, two player business simulation game developed by David Mullich for the Apple II in 1980.\n\nGameplay\nTwo players play competitively against the computer, each taking the role of the programming chief for a major television network. Each side bids on new television shows to add to the season's line-up, schedules them, monitors the weekly ratings, and then drops shows with poor ratings or reschedules them to recover from mistakes at the end of the thirteen-week season. The", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7005088", "url": "https://en.wikipedia.org/wiki/Savage%202%3A%20A%20Tortured%20Soul", "title": "Savage 2: A Tortured Soul", "text": "Savage 2: A Tortured Soul is a fantasy and science fiction themed video game that combines elements of the first-person shooter, real-time strategy, and action role-playing game genres. It is developed and published by S2 Games. It is the sequel to Savage: The Battle for Newerth and was officially released on January 16, 2008. On December 9, 2008 S2 Games announced that the game was officially freeware, with a paid \"Premium Account\" option that expanded certain aspects of the game.\n\nThe game was", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7025708", "url": "https://en.wikipedia.org/wiki/Majesty%20%28disambiguation%29", "title": "Majesty (disambiguation)", "text": "Majesty is a prefix for something that (notionally) belongs to the monarch, as in HM Ship or HMS (His/Her Majesty's ship), HM Government, etc.\n\nMajesty may also refer to:\n\nVehicles and transportation\n Norwegian Majesty, a ship in Norwegian Cruise Lines\n Toyota Majesty, a minivan vehicle sold in Thailand\n\nVideo games\n Majesty: The Fantasy Kingdom Sim, a real-time strategy computer game developed by Cyberlore Studios in 2000 and first published by MicroProse\n Majesty: The Northern Expansion, an ex", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7046585", "url": "https://en.wikipedia.org/wiki/Sangokushi%20Taisen", "title": "Sangokushi Taisen", "text": "is hybrid physical and digital collectible card game for the arcade. It is a real-time strategy-based game set in the Three Kingdoms period of Chinese history and the 14th century Chinese novel Romance of the Three Kingdoms by Luo Guanzhong.\n\nGameplay system\nThe game itself has an input system in which cards are placed on a sensitive playing area. Movement in-game is done by moving the cards on the playing field, and card behaviour on the battlefield depends heavily on the card type.\n\nThis game ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7054710", "url": "https://en.wikipedia.org/wiki/Firefly%20Studios", "title": "Firefly Studios", "text": "Firefly Studios Limited (also stylized as FireFly Studios) is a British video game developer based in London. Formed in August 1999 by Simon Bradbury, David Lester, and Eric Ouellette, the company focuses on historic real-time strategy games for the PC and Macintosh systems. They are best known for their Stronghold series of games. In June 2021, the studio was acquired by Devolver Digital.\n\nHistory\nFirefly Studios was established in August 1999 by Simon Bradbury, David Lester, and Eric Ouellette", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7079928", "url": "https://en.wikipedia.org/wiki/Heroes%20of%20Annihilated%20Empires", "title": "Heroes of Annihilated Empires", "text": "Heroes of Annihilated Empires is a real-time strategy role-playing video game developed by GSC Game World and released in October 2006.\n\nOverview\nHeroes of Annihilated Empires is the first installment of a planned trilogy. The developers cite the Heroes of Might and Magic series and their own Cossacks series as inspirations.\n\nThe developers describe the game's genre as \"RTS vs. RPG\" \u2013 the game can be played as an action role-playing game with a solo hero unit or as a traditional base-building re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7080815", "url": "https://en.wikipedia.org/wiki/Infinite%20Undiscovery", "title": "Infinite Undiscovery", "text": "is an action role-playing game developed by tri-Ace and published by Square Enix for the Xbox 360 in September 2008. It tells the story of the main character Capell and his journey to sever the chains that are holding the moon, with the help of the Liberation Force. The game received mixed to positive reviews from critics.\n\nGameplay\nInfinite Undiscovery is based on the player making real-time decisions that can affect the outcome of the story. These decisions can occur at any time, even while th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7152227", "url": "https://en.wikipedia.org/wiki/High%20Order%20Language%20Working%20Group", "title": "High Order Language Working Group", "text": "The High Order Language Working Group (HOLWG) was a working group instrumental in developing the Ada computer programming language. The group was established in 1975 with the goal of establishing a single high-level programming language appropriate for United States Department of Defense (DoD) real-time embedded computer systems. Colonel William A. Whitaker chaired the group.\n\nThe group was centered in the US, but input was solicited from international experts. European experts responded well, w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7167950", "url": "https://en.wikipedia.org/wiki/Stronghold%20Legends", "title": "Stronghold Legends", "text": "Stronghold Legends is a real-time strategy game developed by Firefly Studios and published by 2K Games in 2006. It follows in the series of Stronghold and Stronghold 2.\n\nGameplay\nUnlike the previous Stronghold titles, Legends gives the player a choice of different starting rulers with different troop types (including King Arthur and his knights of the round table, Count Vlad Dracul, and Siegfried of Xanten). Other new features include cooperative multiplayer against computer-controlled opponents", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7217769", "url": "https://en.wikipedia.org/wiki/Fields%20of%20Glory", "title": "Fields of Glory", "text": "Fields of Glory is a real-time strategy video game published by MicroProse in 1993. In the game players can re-enact the four major historical battles in Napoleon's Waterloo campaign (The Battle of Ligny, Battle of Quatre-Bras, Battle of Waterloo and the Battle of Wavre), as well play two hypothetical battles (at Nivelles and Wagnee) which would have possibly taken place had some of the pre-campaign maneuvering been done differently. The battles in the game are fought in real-time, and strive ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7228288", "url": "https://en.wikipedia.org/wiki/Devil%20Summoner%3A%20Raidou%20Kuzunoha%20vs.%20the%20Soulless%20Army", "title": "Devil Summoner: Raidou Kuzunoha vs. the Soulless Army", "text": "Devil Summoner: Raidou Kuzunoha vs. the Soulless Army is an action role-playing game developed by Atlus for the PlayStation 2. The game is the third in the Devil Summoner series, which is a part of the larger Megami Tensei franchise. It was published by Atlus in Japan and North America in 2006, and in Europe the following year.\n\nThe game differs from the two previous Devil Summoner titles in having real-time battles and a named protagonist and is first in the entire franchise to be set in the pa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7233274", "url": "https://en.wikipedia.org/wiki/Army%20Men%3A%20RTS", "title": "Army Men: RTS", "text": "Army Men: RTS is a real-time strategy video game developed by Pandemic Studios and published by The 3DO Company for PlayStation 2, Microsoft Windows and GameCube. In this game, Sarge, his heroes and the Green Army are hungry to put an end to their nemesis once and for all, the tyrannical Tan army, battling them in 15 campaigns missions, 8 special operation missions and 8 great battles in The 3DO Company's farewell to this series. The Greenies hit dirt paths, linoleum floors and carpets and weave", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7270588", "url": "https://en.wikipedia.org/wiki/FTSE%20SmallCap%20Index", "title": "FTSE SmallCap Index", "text": "The FTSE SmallCap Index is an index of small market capitalisation companies consisting of the 351st to the 619th largest-listed companies on the London Stock Exchange main market. The index, which is maintained by FTSE Russell, a subsidiary of the London Stock Exchange Group, is a constituent of the FTSE All-Share Index which is an index of all 620 companies listed on the main market of the LSE.\n\nThis Index value is re-calculated in real-time and published every minute.\n\nSee also\n FTSE 100\n FTS", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7275524", "url": "https://en.wikipedia.org/wiki/DSOS", "title": "DSOS", "text": "DSOS (Deep Six Operating System) was a real-time operating system (sometimes referred to as an operating system kernel) developed by Texas Instruments' Geophysical Services division (GSI) in the mid-1970s.\n\nBackground \nThe Geophysical Services division of Texas Instruments' main business was to search for oil. They would collect data in likely spots around the world, process that data using high performance computers, and produce analyses that guided oil companies toward promising sites for dril", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7327642", "url": "https://en.wikipedia.org/wiki/Vujak", "title": "Vujak", "text": "VuJak is an early video sampler, a VJ remix and mashup tool created in 1992 by Brian Kane, Lisa Eisenpresser, and Jay Haynes. The original name of the project was Mideo, but it was later changed to VuJak. \n\nVuJak was based on MIDI control of video in real-time. It was created with MAX from Opcode Systems, and utilized the newly released QuickTime 1.0 movie object.\n\nThe first working version of the program was built on a Mac IIfx with 8 megs of ram, and could jump in real-time across a 160 x 12", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7357848", "url": "https://en.wikipedia.org/wiki/Petroglyph%20%28disambiguation%29", "title": "Petroglyph (disambiguation)", "text": "Petroglyph may refer to:\n\n Petroglyphs, Rock art depicting pictograms and logograms.\n Petroglyph Games, a real-time strategy games development studio.\n Petroglyphs Provincial Park, a provincial park near Peterborough, Ontario, Canada\n Petroglyph Provincial Park, a provincial park near Nanaimo, British Columbia, Canada\n Petroglyph (album)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7367379", "url": "https://en.wikipedia.org/wiki/Julius%20%28software%29", "title": "Julius (software)", "text": "Julius is a speech recognition engine, specifically a high-performance, two-pass large vocabulary continuous speech recognition (LVCSR) decoder software for speech-related researchers and developers. It can perform almost real-time computing (RTC) decoding on most current personal computers (PCs) in 60k word dictation task using word trigram (3-gram) and context-dependent Hidden Markov model (HMM). Major search methods are fully incorporated.\n\nIt is also modularized carefully to be independent f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7402061", "url": "https://en.wikipedia.org/wiki/Top%20Angler%3A%20Real%20Bass%20Fishing", "title": "Top Angler: Real Bass Fishing", "text": "is a fishing video game developed by SIMS. The game was released for PlayStation 2 in 2002.\n\nGameplay\nThe game is a real-time bass fishing simulator. The season and time of each stage are dictated by the internal clock of the player's PlayStation. Weather effects such as wind and waves are also depicted in real-time to increase player immersion. There are several gameplay modes: \"Tournament Mode\" is based on an American bass tournament, \"Arcade Mode\" is a score competition, \"Challenge Mode\" has ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7421038", "url": "https://en.wikipedia.org/wiki/K-CASH", "title": "K-CASH", "text": "K-CASH is an electronic money system established by 'Korea Financial Telecommunication and Clearings Institute'.\n\nK-CASH card is easily obtained from issuing bank. Several banks are issuing K-CASH card, including two credit card companies as of 2011. Users can load or unload value from their own account at bank counter, store, ATMs and online. Unlike other market dominant \"transport cards\", unloading K-CASH value to owner's account is done real-time, as a law only permits real-time transaction t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7445411", "url": "https://en.wikipedia.org/wiki/Battlefield%20Airborne%20Communications%20Node", "title": "Battlefield Airborne Communications Node", "text": "The Battlefield Airborne Communications Node (BACN) is a United States Air Force (USAF) airborne communications relay and gateway system carried by the unmanned EQ-4B and the manned Bombardier E-11A aircraft. BACN enables real-time information flow across the battlespace between similar and dissimilar tactical data link and voice systems through relay, bridging, and data translation in line-of-sight and beyond-line-of-sight situations. Its ability to translate between dissimilar communications s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7451005", "url": "https://en.wikipedia.org/wiki/Andrew%20B.%20Lippman", "title": "Andrew B. Lippman", "text": "Andrew Benjamin Lippman is a senior research scientist at the MIT Media Lab as well as a Co-Director of various chairs at the institute. He has a more than thirty-year history at MIT. His work at the Media Lab has ranged from wearable computers to global digital television. Currently, he heads the Lab's Viral Communications group, which examines scalable, real-time networks whose capacity increases with the number of members.\n\nEducation and career\nLippman received both his BS and MS in Electrica", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7497937", "url": "https://en.wikipedia.org/wiki/Operational%20intelligence", "title": "Operational intelligence", "text": "Operational intelligence (OI) is a category of real-time dynamic, business analytics that delivers visibility and insight into data, streaming events and business operations. OI solutions run queries against streaming data feeds and event data to deliver analytic results as operational instructions. OI provides organizations the ability to make decisions and immediately act on these analytic insights, through manual or automated actions.\n\nPurpose\nThe purpose of OI is to monitor business activiti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7564731", "url": "https://en.wikipedia.org/wiki/Fixed-priority%20pre-emptive%20scheduling", "title": "Fixed-priority pre-emptive scheduling", "text": "Fixed-priority preemptive scheduling is a scheduling system commonly used in real-time systems. With fixed priority preemptive scheduling, the scheduler ensures that at any given time, the processor executes the highest priority task of all those tasks that are currently ready to execute.\n\nThe preemptive scheduler has a clock interrupt task that can provide the scheduler with options to switch after the task has had a given period to execute\u2014the time slice. This scheduling system has the advanta", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7582383", "url": "https://en.wikipedia.org/wiki/Antiportal", "title": "Antiportal", "text": "In computer-generated imagery and real-time 3D computer graphics, antiportal rendering is a way to reduce overdraw (the rendering of detail which will not be in the final image), and in this way to optimize draw speed. Antiportals are the inverse of portals.\n\nAn antiportal (or occluder) works by defining a plane or volume which can never be seen through, normally by placing it within an opaque object. The renderer uses this to quickly calculate which objects/faces/vertices lie behind the antipor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7583610", "url": "https://en.wikipedia.org/wiki/Chaos%20League", "title": "Chaos League", "text": "{{Infobox video game\n|title = Chaos League\n|image = chaosleague.jpg\n|caption =PAL boxart of Chaos League\n|developer = Cyanide\n|publisher=\n|released=\n|genre = Sports, management, real-time strategy\n|modes = Single player, multiplayer\n|platforms = Microsoft Windows\n}}Chaos League is a fantasy-based sports management game developed by Cyanide Studios and published by Digital Jesters. It was released in Europe on 8 August 2004 and later in North America on 8 March 2005. The game is a spin on America", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7600283", "url": "https://en.wikipedia.org/wiki/ChaCha%20%28search%20engine%29", "title": "ChaCha (search engine)", "text": "ChaCha was an American human-guided search engine that provided free, real-time answers to any question, through its website, or by using one of the company's mobile apps.\n\nThe company, founded in 2006 by Scott A. Jones and Brad Bostic, was based in Carmel, Indiana, United States, part of the Indianapolis metropolitan area. Its name comes from the Mandarin Chinese word cha (), which means \"to search.\"\n\nHistory\nAn alpha version of ChaCha was launched on September 1, 2006. A beta version was int", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7655648", "url": "https://en.wikipedia.org/wiki/Yamaha%20CS2x", "title": "Yamaha CS2x", "text": "The Yamaha CS2x is a sample-based synthesizer released by the Yamaha Corporation in 1999. The CS2x is designed for maximum real-time control, according to Yamaha. It is the successor of the very successful Yamaha CS1x. Enhancements include 64-note polyphony, a bigger sample ROM and a 24 dB/oct LPF/HPF filter. The CS acronym stands for Control Synthesizer.\n\nFeatures\n 61 full-size non-weighted keys\n 16 MB of Wave ROM with AWM2 voices\n Multi Mode: 779 voices in XG mode\n Performance Mode: 256 preset", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7671170", "url": "https://en.wikipedia.org/wiki/Warrior%20Kings", "title": "Warrior Kings", "text": "Warrior Kings is a real-time strategy video game, developed by Black Cactus and published by Micro\u00efds in 2002. It was published for the Mac OS X the following year by Feral Interactive. The game, set in a fantasy medieval world, focuses on the concepts of pagan tribalism, renaissance enlightenment, and imperialist theocracy.\n\nDevelopment \n\nWarrior Kings started life at the back-end of Eidos plc's title: Plague, the first large-scale full 3D strategy title featured at E3/LA in 1997. Plague was or", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7688131", "url": "https://en.wikipedia.org/wiki/July%20%28gamer%29", "title": "July (gamer)", "text": "Park Sung-joon is a professional player of the real-time strategy game StarCraft. He is known by his pseudonym July, a shortened version of JulyZerg. Park Sung-joon is also known as the \"God of War\" or \"Tushin. Park used to play for STX SouL.\n\nStarCraft \nJuly emerged onto the scene during Gilette OSL, where he beat Oov 3\u20132 in a famous series and went on to win the tournament against Reach, making him a royal roader and the first Zerg to ever win an OSL.\n\nHe quickly became the dominant player of ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7807087", "url": "https://en.wikipedia.org/wiki/Alexander%20%28video%20game%29", "title": "Alexander (video game)", "text": "Alexander is a real-time strategy game created by GSC Game World (creators of Cossacks: European Wars and Cossacks II: Napoleonic Wars) and published by Ubisoft, based on the 2004 film of the same name.\n\nGameplay\nAlexanders gameplay shares several similarities to that of the Cossacks series, with elements of the Age of Empires series and Age of Mythology visible. The game's map covers the area from Macedonia to India. In a player's first playthrough, they can only play as Alexander, but after be", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7824361", "url": "https://en.wikipedia.org/wiki/Hardware-in-the-loop%20simulation", "title": "Hardware-in-the-loop simulation", "text": "Hardware-in-the-loop (HIL) simulation, or HWIL, is a technique that is used in the development and test of complex real-time embedded systems. HIL simulation provides an effective platform by adding the complexity of the plant under control to the test platform. The complexity of the plant under control is included in test and development by adding a mathematical representation of all related dynamic systems. These mathematical representations are referred to as the \u201cplant simulation\u201d. The embed", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7842528", "url": "https://en.wikipedia.org/wiki/Mobile%20social%20network", "title": "Mobile social network", "text": "Mobile social networking (MSN) is social networking where individuals with similar interests converse and connect with one another through their mobile phone and/or tablet. Much like web-based social networking, mobile social networking occurs in virtual communities.\n\nMany web-based social networking sites, such as Facebook and Twitter, have created mobile applications to give their users instant and real-time access from anywhere they have access to the Internet. Additionally, native mobile soc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7867727", "url": "https://en.wikipedia.org/wiki/Mapopolis", "title": "Mapopolis", "text": "Mapopolis has been the creator of PDA/smartphone GPS navigation software Mapopolis Navigator. Mapopolis used data from Navteq. Starting in 1999, Mapopolis first released software for the Palm OS and later added software for Pocket PC handhelds and Windows smartphones. Mapopolis created the first real-time traffic service (Mapopolis ClearRoute), which provided real-time route updates based on traffic conditions.\n\nAs of April 1, 2007, Mapopolis has discontinued sales of its consumer software. Ma", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7873804", "url": "https://en.wikipedia.org/wiki/War%20Inc.", "title": "War Inc.", "text": "War Inc. (Project Airos in Australia and Germany) is a real-time strategy video game developed by Optik Software. It was published by Interactive Magic for DOS on August 31, 1997. It incorporates a rudimentary stock market, placing the player directly in control of research and development, and the ability to completely customize units by using a variety of components.\n\nReception\n\nGameSpot gave War Inc. an overall score of 5.2 out of ten, expressing that the game 'doesn't meet its potential' in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7903383", "url": "https://en.wikipedia.org/wiki/Web%20chat", "title": "Web chat", "text": "A web chat is a system that allows users to communicate in real-time using easily accessible web interfaces. It is a type of Internet online chat distinguished by its simplicity and accessibility to users who do not wish to take the time to install and learn to use specialized chat software. This trait allows users instantaneous access and only a web browser is required to chat. Users will always get the latest version of a chat service because no software installation or update are required.\n\nW", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7952813", "url": "https://en.wikipedia.org/wiki/Battle%20zone", "title": "Battle zone", "text": "A battle zone or battlezone is the location of a battle.\n\nBattle Zone or Battlezone may also refer to:\n\nGames\n\nBattlezone franchise \n Battlezone (1980 video game), an arcade game from Atari\n Battlezone (1998 video game), a first-person shooter/real-time strategy game from Activision\n Battlezone (2008 video game), a remake of the arcade game from Stainless Games\n Battlezone (2016 video game), a multiplayer virtual reality game from Rebellion Developments\n\nOther games\n BZFlag (aka Battle Zone: Cap", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7974266", "url": "https://en.wikipedia.org/wiki/Titan%20%28game%20engine%29", "title": "Titan (game engine)", "text": "Titan is a game engine developed by Stainless Steel Studios used in the real-time strategy genre. It was mainly used as a PC game engine in the early 2000s. The engine was used in Stainless Steel Studio's early games, such as Empire Earth and Empires: Dawn of the Modern World.\n\nTitan 2.0\nTitan 2.0, an update of the original Titan Engine, was to be a comprehensive real-time strategy engine, and was sold before Stainless Steel Studios was dissolved in 2005.\n\nDescription\nSSSI described their engine", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "7980430", "url": "https://en.wikipedia.org/wiki/UFO%3A%20Afterlight", "title": "UFO: Afterlight", "text": "UFO: Afterlight is a 2007 real-time tactics/turn-based strategy video game and the third in Altar Games' UFO series. Like its predecessors UFO: Aftermath and UFO: Aftershock, it combines squad-level tactical combat with overlying strategic elements inspired by the 1994 classic X-COM: UFO Defense.\n\nPlot\n\nFollowing the canonical \u201cbad\u201d ending of UFO: Aftermath, humans agree to the terms of Reticulans who invaded Earth: some humans are moved to the Laputa over Earth (the events of UFO: Aftershock),", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8006595", "url": "https://en.wikipedia.org/wiki/Lord%20of%20the%20Rings%3A%20Game%20One", "title": "Lord of the Rings: Game One", "text": "Lord of the Rings: Game One (released in North America as The Fellowship of the Ring: A Software Adventure) is a computer game released in 1985 and based on the book The Fellowship of the Ring, by J. R. R. Tolkien. It was the follow-up to the 1982 game The Hobbit, but did not reach the same level of critical and commercial success as its predecessor. It's generally considered inferior by the gaming community, with many complaining about the removal of the real-time aspects and complex AI pattern", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8007520", "url": "https://en.wikipedia.org/wiki/Machines%20%28video%20game%29", "title": "Machines (video game)", "text": "Machines (also known as Machines: Wired for War) is a 3D real-time strategy game released for Microsoft Windows. Published by Acclaim and developed by Charybdis. As a 3D game of this genre. Machines also allowed players to directly control units with both a first and third-person view.\n\nGameplay\nMachines uses a 3D polygonal landscape, which players can use to their advantage, attacking from or hiding behind hilltops. The viewpoint can be switched between a default isometric, strategic 'zenith' c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8082597", "url": "https://en.wikipedia.org/wiki/3D%20ultrasound", "title": "3D ultrasound", "text": "3D ultrasound is a medical ultrasound technique, often used in fetal, cardiac, trans-rectal and intra-vascular applications. 3D ultrasound refers specifically to the volume rendering of ultrasound data. When involving a series of 3D volumes collected over time, it can also be referred to as 4D ultrasound (3-spatial dimensions plus 1-time dimension) or real-time 3D ultrasound.\n\nWhen generating a 3D volume, the ultrasound data can be collected in four common ways by a sonographer. Freehand, which ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8143988", "url": "https://en.wikipedia.org/wiki/Synchronous%20conferencing", "title": "Synchronous conferencing", "text": "Synchronous conferencing is the formal term used in computing, in particular in computer-mediated communication, collaboration and learning, to describe technologies informally known as online chat. It is sometimes extended to include audio/video conferencing or instant messaging systems that provide a text-based multi-user chat function. The word synchronous is used to qualify the conferencing as real-time, as distinct from a system such as e-mail, where messages are left and answered later.\n\nS", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8144370", "url": "https://en.wikipedia.org/wiki/Soft%20Hard%20Real-Time%20Kernel", "title": "Soft Hard Real-Time Kernel", "text": "S.Ha.R.K. (the acronym stands for Soft Hard Real-time Kernel) is a completely configurable kernel architecture designed for supporting hard, soft, and non real-time applications with interchangeable scheduling algorithms.\n\nMain features\nThe kernel architecture's main benefit is that an application can be developed independently from a particular system configuration. This allows new modules to be added or replaced in the same application, so that specific scheduling policies can be evaluated for", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8219318", "url": "https://en.wikipedia.org/wiki/B%C3%BChlmann%20decompression%20algorithm", "title": "B\u00fchlmann decompression algorithm", "text": "The B\u00fchlmann decompression algorithm is a mathematical model (algorithm) of the way in which inert gases enter and leave the human body as the ambient pressure changes. Versions are used to create B\u00fchlmann decompression tables and in personal dive computers to compute no-decompression limits and decompression schedules for dives in real-time. These decompression tables allow divers to plan the depth and duration for dives and the required decompression stops.\n\nThe algorithm was developed by Swis", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8221202", "url": "https://en.wikipedia.org/wiki/Xenomai", "title": "Xenomai", "text": "Xenomai is a real-time development framework cooperating with the Linux kernel to provide pervasive, interface-agnostic, hard real-time support to user space applications seamlessly integrated into the Linux environment.\n\nThe Xenomai project was launched in August 2001. In 2003 it merged with the Real-Time Application Interface (RTAI) project to produce RTAI/fusion, a production-grade real-time free software platform for Linux on top of Xenomai's abstract real-time operating system (RTOS) core. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8221240", "url": "https://en.wikipedia.org/wiki/Sovereign%20%28video%20game%29", "title": "Sovereign (video game)", "text": "Sovereign was a Massively multiplayer online real-time strategy (MMORTS) game developed by Sony Online Entertainment and cancelled in 2003. \n\nSovereign would have given each player a home world, to which their forces would retreat when the players signed off. Thus, the developers hoped to prevent players from losing their hard-won resources and valuable units when they signed off. The actual battles would be fought on different planets, each one holding from 15 to 500 players, depending on the s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8230327", "url": "https://en.wikipedia.org/wiki/Inking", "title": "Inking", "text": "Inking may refer to:\n\nInking (attack), act of throwing ink on other person\nInking, a defensive activity of certain cephalopods and sea hares\nInking (comic book production)\nPen computing, a computer input method using a stylus\nA real-time computer graphics technique of outlining the edges of a model\n\nSee also\nInk (disambiguation)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8233911", "url": "https://en.wikipedia.org/wiki/Procedural%20reasoning%20system", "title": "Procedural reasoning system", "text": "In artificial intelligence, a procedural reasoning system (PRS) is a framework for constructing real-time reasoning systems that can perform complex tasks in dynamic environments. It is based on the notion of a rational agent or intelligent agent using the belief\u2013desire\u2013intention software model.\n\nA user application is predominately defined, and provided to a PRS system is a set of knowledge areas. Each knowledge area is a piece of procedural knowledge that specifies how to do something, e.g., h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8241195", "url": "https://en.wikipedia.org/wiki/Multi-boxing", "title": "Multi-boxing", "text": "Multi-boxing or multiboxing refers to playing as multiple separate characters concurrently in an MMORPG. This can either be achieved by using multiple separate machines to run the game or by running multiple separate instances of the game. Multiboxing is considered to be difficult to do well without practice, as it involves adapting to problems in real-time.\n\nVariations on the term are common. Often, the number of accounts used is reflected in the term used: dual-boxing or two-boxing for two cha", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8247697", "url": "https://en.wikipedia.org/wiki/Lords%20of%20Midnight%3A%20The%20Citadel", "title": "Lords of Midnight: The Citadel", "text": "Lords of Midnight: The Citadel (also known simply as Lords of Midnight) is the second and final sequel to the classic ZX Spectrum game The Lords of Midnight by Mike Singleton. It was developed by Maelstrom Games and published by Domark in 1995. It was distributed by Spectrum HoloByte in North America.\n\nThe sequel departs quite radically from its predecessors, abandoning the previous installments' turn-based movement and opting for real-time 3D movement.\n\nGameplay\nThe character switching from the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8247903", "url": "https://en.wikipedia.org/wiki/TARGET2", "title": "TARGET2", "text": "TARGET2 (Trans-European Automated Real-time Gross Settlement Express Transfer System) is the real-time gross settlement (RTGS) system for the Eurozone, and is available to non-Eurozone countries. It was developed by and is owned by the Eurosystem. TARGET2 is based on an integrated central technical infrastructure, called the Single Shared Platform (SSP). SSP is operated by three providing central banks: France (Banque de France), Germany (Deutsche Bundesbank) and Italy (Banca d'Italia). TARGET2 ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8368104", "url": "https://en.wikipedia.org/wiki/Gary%20Lee%20Nelson", "title": "Gary Lee Nelson", "text": "Gary Lee Nelson (born Albion, Michigan, 1940) is a composer and media artist who taught at Oberlin College in the TIMARA (Technology in Music and Related Arts) department. He specializes in algorithmic composition, real-time interactive sound and video along with digital film making.\n\nBiography\nIn 1964, Nelson attended Utrecht University's Institute of Sonology in the Netherlands. He earned his composition doctorate at Washington University in St. Louis, where he studied with Paul Pisk and Ro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8378851", "url": "https://en.wikipedia.org/wiki/Interactive%20Data%20Corporation", "title": "Interactive Data Corporation", "text": "Interactive Data Corporation (known by its stock symbol IDC) was an American 1960s-founded Time-sharing services company that later became known for providing financial market data (financial data vendor), analytics and related solutions to financial institutions, active traders and individual investors. The company's businesses supply real-time market data, time-sensitive pricing, evaluations and reference data for securities trading, including hard-to-value instruments. The company was acquire", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8409460", "url": "https://en.wikipedia.org/wiki/Yoshitsune%20Eiy%C5%ABden%3A%20The%20Story%20of%20Hero%20Yoshitsune", "title": "Yoshitsune Eiy\u016bden: The Story of Hero Yoshitsune", "text": "is a video game developed and published by FromSoftware for the PlayStation 2, based on the legendary samurai, Minamoto no Yoshitsune.\n\nThe game was later re-released with additional content (such as characters and levels) and two-player cooperative or competitive modes. This new version was titled (shura meaning \"mayhem\" or \"carnage\").\n\nGameplay\nDevelopers described the game as a cross between real-time strategy games and typical third-person 3D action games.\nThe game displays a 3rd person vie", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8439050", "url": "https://en.wikipedia.org/wiki/Left%20Behind%20%28disambiguation%29", "title": "Left Behind (disambiguation)", "text": "Left Behind is a series of 16 best-selling novels by Tim LaHaye and Jerry B. Jenkins.\n\nLeft Behind may also refer to:\n \"Left Behind\" (Arrow), an episode of Arrow\n Left Behind (novel), a novel by Tim LaHaye and Jerry B. Jenkins\nLeft Behind (film series)\nLeft Behind: The Movie, 2000 film\nLeft Behind II: Tribulation Force, 2002 film\nLeft Behind: World at War, 2005 film\nLeft Behind (2014 film)\n Left Behind: Eternal Forces, a real-time strategy game by Left Behind Games\n The Last of Us: Left Behind, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8446344", "url": "https://en.wikipedia.org/wiki/Real-time%20database", "title": "Real-time database", "text": "A real-time database is a database system which uses real-time processing to handle workloads whose state is constantly changing. This differs from traditional databases containing persistent data, mostly unaffected by time. For example, a stock market changes very rapidly and is dynamic. The graphs of the different markets appear to be very unstable and yet a database has to keep track of current values for all of the markets of the New York Stock Exchange. Real-time processing means that a tra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8480866", "url": "https://en.wikipedia.org/wiki/Star%20Command%3A%20Revolution", "title": "Star Command: Revolution", "text": "Star Command: Revolution is a real-time strategy game developed by Metropolis Digital, Inc. and published by GT Interactive. It was originally released in 1997 for MS-DOS, and was re-released in 1998 for Microsoft Windows under the title Star Command Deluxe. This re-release was overshadowed by its contemporary, Starcraft. A sequel, Star Command X: Armada, is hinted at upon successful completion of the campaign mode, but it was never produced.\n\nThe main storyline follows an interspecies conflict ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8485448", "url": "https://en.wikipedia.org/wiki/Integrated%20modular%20avionics", "title": "Integrated modular avionics", "text": "Integrated modular avionics (IMA) are real-time computer network airborne systems. This network consists of a number of computing modules capable of supporting numerous applications of differing criticality levels.\n\nIn opposition to traditional federated architectures, the IMA concept proposes an integrated architecture with application software portable across an assembly of common hardware modules. An IMA architecture imposes multiple requirements on the underlying operating system.\n\nHistory\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8526320", "url": "https://en.wikipedia.org/wiki/The%20Entente%3A%20Battlefields%20WW1", "title": "The Entente: Battlefields WW1", "text": "The Entente: Battlefields WW1 (; also known as World War I: The Great War) is a real-time strategy video game developed by Lesta Studio and published in 2003 by Buka Entertainment. A Western version was released by Encore, Inc. in 2004. It simulates World War I from the perspective of the five main combatants: Russia, France, Germany, Britain and the Austrian-Hungarian Empire. It is similar in many ways to other real-time strategy games, focusing on economy and military paths to victory.\n\nGamepl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8555830", "url": "https://en.wikipedia.org/wiki/Pacific%20Storm", "title": "Pacific Storm", "text": "Pacific Storm is a Pacific War-themed real-time strategy game developed by Lesta Studio and released by Buka Entertainment in 2005. A Western version was released by CDV Software in 2006.\n\nGameplay\nIn the game, players are able to act as a supreme commander, handling research, ship and plane design, production, troop deployment, and many other things. As a real-time strategy game, players are allowed to control individual ships and planes. Furthermore, players can also act as an ordinary sailor,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8562929", "url": "https://en.wikipedia.org/wiki/Virtual%20newscaster", "title": "Virtual newscaster", "text": "A virtual newscaster, or also called a virtual host, virtual presenter, virtual broadcaster, virtual teleprompter or virtual anchor is a computer-generated character created for the purpose of reading forth news from a website. While Ananova is often credited to be the first virtual newscaster on the web, it went off-line in 2004. Delta Seven, created by Bruce C. Pippin, uses Microsoft Agent technology to deliver real-time changes in news, weather, sports and stock market quotes in less than sev", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8591127", "url": "https://en.wikipedia.org/wiki/Kaspersky%20Anti-Virus", "title": "Kaspersky Anti-Virus", "text": "Kaspersky Anti-Virus ( (Antivirus Kasperskogo); formerly known as AntiViral Toolkit Pro; often referred to as KAV) is a proprietary antivirus program developed by Kaspersky Lab. It is designed to protect users from malware and is primarily designed for computers running Microsoft Windows and macOS, although a version for Linux is available for business consumers.\n\nProduct \n\nKaspersky Anti-Virus features include real-time protection, detection and removal of viruses, trojans, worms, spyware, adwa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8595889", "url": "https://en.wikipedia.org/wiki/Empire%20Earth", "title": "Empire Earth", "text": "Empire Earth is a series of real-time strategy video games developed by Stainless Steel Studios and Mad Doc Software, and published by Sierra Entertainment, Activision, and Vivendi. The games in the series are historical RTS games that are similar to Age of Empires. Rick Goodman, who designed Empire Earth and Empires: Dawn of the Modern World, was one of the lead designers of Age of Empires. The games use the Titan and Titan 2.0 engine, which was sold after Stainless Steel Studios closed.\n\nChron", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8632359", "url": "https://en.wikipedia.org/wiki/Software%20metering", "title": "Software metering", "text": "Software metering refers to several areas:\nTracking and maintaining software licenses. One needs to make sure that only the allowed number of licenses are in use, and at the same time, that there are enough licenses for everyone using it. This can include monitoring of concurrent usage of software for real-time enforcement of license limits. Such license monitoring usually includes when a license needs to be updated due to version changes or when upgrades or even rebates are possible.\n Real-tim", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8665933", "url": "https://en.wikipedia.org/wiki/Navisworks", "title": "Navisworks", "text": "Navisworks (known for a while as JetStream) is a 3D design review package for Microsoft Windows.\n\nUsed primarily in construction industries to complement 3D design packages (such as Autodesk Revit, AutoCAD, and MicroStation), Navisworks allows users to open and combine 3D models; navigate around them in real-time (without the WASD possibility); and review the model using a set of tools including comments, redlining, viewpoint, and measurements. A selection of plug-ins enhances the package adding", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8694325", "url": "https://en.wikipedia.org/wiki/NEC%20V60", "title": "NEC V60", "text": "The NEC V60 is a CISC microprocessor manufactured by NEC starting in 1986. Several improved versions were introduced with the same instruction set architecture (ISA), the V70 in 1987, and the V80 and AFPP in 1989. They were succeeded by the V800 product families, which is currently produced by Renesas.\n\nThe V60 family includes a floating-point unit (FPU) and memory management unit (MMU) and real-time operating system (RTOS) support for both Unix-based user-application-oriented systems and I-TRON", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8705155", "url": "https://en.wikipedia.org/wiki/The%20Pajama%20Diaries", "title": "The Pajama Diaries", "text": "The Pajama Diaries is a syndicated comic strip created in 2006 by Terri Libenson, a Reuben Award-winning artist who has also done work for American Greetings. It is narrated by Jill Kaplan, a wife of a loving husband and working mom of two young girls in a Jewish family somewhere in Ohio done in real-time fashion, where the characters age with the progressive years of the series and deals with varying topics from the everyday silliness and dramas of life to social commentary. The Pajama Diarie", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8708316", "url": "https://en.wikipedia.org/wiki/Media%20space", "title": "Media space", "text": "Media spaces are \"electronic settings in which groups of people can work together, even when they are not present in the same place and time. In a media space, people can create real-time visual and acoustic environments that span physically separate areas. They can also control the recording, accessing and replaying of images and sounds from those environments.\"\n\nMedia Spaces were the subject of research during the mid- and late-1980s, led by Robert Stults and Steve Harrison, in the Smalltalk g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8738706", "url": "https://en.wikipedia.org/wiki/Dark%20Legions", "title": "Dark Legions", "text": "Dark Legions is a 1994 action strategy game for MS-DOS. It was developed by Silicon Knights and published by Strategic Simulations (SSI).\n\nKey features\nSome key features of this game include:\n Multi-player head to head\n 16 unit types with unique characteristics and abilities\n A combination of strategic movement with real-time combat\n Purchasing of units at game start allows each player to customize their forces\n Multiple game maps\n\nMany reviewers and players note it as an updated version of the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8821900", "url": "https://en.wikipedia.org/wiki/Fishtank%20Interactive", "title": "Fishtank Interactive", "text": "Fishtank Interactive was a German publishing label and was a division of Ravensburger Spieleverlag's Ravensburger Interactive. It was founded in 2000 to try to expand the horizons of Ravensburger Spieleverlag by publishing more mature games than the rest of the mostly pre-school oriented games of the company, without sullying its reputation. Its releases were usually action games, or real-time strategies, and were known for low production values highlighted by the lack of important features like", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8832595", "url": "https://en.wikipedia.org/wiki/AOL%20Active%20Virus%20Shield", "title": "AOL Active Virus Shield", "text": "AOL Active Virus Shield (commonly referred to as AVS) was a free antivirus utility made available by AOL. Its engine was based on the one used by Kaspersky Anti-Virus. The program is no longer available.\n\nFeatures\nActive Virus Shield includes numerous features found in Kaspersky Anti-Virus. The software's main feature is malware scanning, which uses Kaspersky's underlying engine and detects a variety of malware such as viruses, spyware, and even joke programs. It also offers real-time file and e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8835245", "url": "https://en.wikipedia.org/wiki/Radio%20modem", "title": "Radio modem", "text": "Radio modems are modems that transfer data wirelessly across a range of up to tens of kilometres.\nUsing radio modems is a modern way to create Private Radio Networks (PRN). Private radio networks are used in critical industrial applications, when real-time data communication is needed. Radio modems enable users to be independent of telecommunication or satellite network operators. In most cases users use licensed frequencies either in the UHF or VHF bands. In certain areas licensed frequencies m", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8835809", "url": "https://en.wikipedia.org/wiki/Global%20Data%20Synchronization%20Network", "title": "Global Data Synchronization Network", "text": "The Global Data Synchronization Network (GDSN) is an internet-based, interconnected network of interoperable data pools governed by GS1 standards. The GDSN enables companies around the globe to exchange standardized product master data with their trading partners.\n\nThe GDSN is used as a tool to support high data quality through use of authoritative data sources, real-time data synchronization, and standardization of data formatting.\n\nThe GDSN operates using a publish-subscribe pattern between t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8871380", "url": "https://en.wikipedia.org/wiki/Wind%20transducer", "title": "Wind transducer", "text": "A wind transducer is a device used by sailors to receive a real-time measurement of wind speed and direction. A wind transducer is usually mounted on the masthead of a sailing boat and is occasionally used by power boats too. The wind speed and direction measurements are more critical to sailing boats than to power boats. Sailors rely on the wind speed and direction to help with navigation and pilotage. These devices can be calibrated to measure the true wind speed and the apparent wind speed (", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8876908", "url": "https://en.wikipedia.org/wiki/Natural%20Selection%202", "title": "Natural Selection 2", "text": "Natural Selection 2 is a multiplayer video game which combines first-person shooter and real-time strategy rules. It is set in a science fiction universe in which a human team fights an alien team for control of resources and territory in large and elaborate indoor facilities. It is the sequel to Natural Selection.\n\nGameplay\n\nLike its predecessor, Natural Selection 2 features two opposing teams of players, Kharaa (Aliens) and Frontiersmen (Marines), seeking to destroy the other's respective ba", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8925403", "url": "https://en.wikipedia.org/wiki/Bladestorm%3A%20The%20Hundred%20Years%27%20War", "title": "Bladestorm: The Hundred Years' War", "text": "Bladestorm: The Hundred Years' War is a historical real-time tactics video game for the PlayStation 3 and Xbox 360 platforms. It was published by Koei and developed by Omega Force. An enhanced expansion remake, entitled Bladestorm: Nightmare was released for PlayStation 3, PlayStation 4, and Xbox One in Japan on January 29, 2015, and a couple of months later in the rest of the world. The worldwide Microsoft Windows release was on May 29, 2015. The game is loosely based on the Hundred Years' War ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8969589", "url": "https://en.wikipedia.org/wiki/Windows%20IoT", "title": "Windows IoT", "text": "Windows IoT, formerly Windows Embedded, is a family of operating systems from Microsoft designed for use in embedded systems. Microsoft currently has three different subfamilies of operating systems for embedded devices targeting a wide market, ranging from small-footprint, real-time devices to point of sale (POS) devices like kiosks. Windows Embedded operating systems are available to original equipment manufacturers (OEMs), who make it available to end users preloaded with their hardware, in a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8974641", "url": "https://en.wikipedia.org/wiki/AudioMulch", "title": "AudioMulch", "text": "AudioMulch is modular audio software for making music and processing sound. The software can synthesize sound and process live and pre-recorded sound in real-time.\n\nAudioMulch has a patcher-style graphical user interface, in which modules called contraptions can be connected together to route audio and process sounds. Included are modules used in electronic dance music such as a bassline-style synthesizer and a drum machine, effects like ring modulation, flanging, reverb and delays, and other mo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8977541", "url": "https://en.wikipedia.org/wiki/Leaf%20sensor", "title": "Leaf sensor", "text": "A leaf sensor is a phytometric device (measurement of plant physiological processes) that measures water loss or the water deficit stress (WDS) in plants by real-time monitoring the moisture level in plant leaves. The first leaf sensor was developed by LeafSens, an Israeli company granted a US patent for a mechanical leaf thickness sensing device in 2001. LeafSen has made strides incorporating their leaf sensory technology into citrus orchards in Israel. A solid state smart leaf sensor technol", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "8979955", "url": "https://en.wikipedia.org/wiki/Total%20Annihilation%3A%20Battle%20Tactics", "title": "Total Annihilation: Battle Tactics", "text": "Total Annihilation: Battle Tactics is the second expansion pack for the real-time strategy video game Total Annihilation, released on June 30, 1998 in the United States. Its features include 100 new missions as either the Arm or the Core, four new units and new keyboard shortcuts. Six new multiplayer maps are included, and, for the first time in the Total Annihilation series, some single-player missions are set on acid and crystal worlds.\n\nGameplay\nThe two previous installments of the Total Anni", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9002758", "url": "https://en.wikipedia.org/wiki/National%20Court%20Reporters%20Association", "title": "National Court Reporters Association", "text": "The National Court Reporters Association, or NCRA, is a US organization for the advancement of the profession of the court reporter, closed captioner, and realtime writer. The association holds annual conventions, seminars and forums, speed and real-time contests, and teachers' workshops to assist court reporters.\n\nReporters can join NCRA for a fee that varies depending on whether the applicant is a student, teacher, or reporter.\nMembership allows a reporter to take the certifications, get disco", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9003998", "url": "https://en.wikipedia.org/wiki/Lightstreamer", "title": "Lightstreamer", "text": "Lightstreamer is a web-based asynchronous messaging project, implementing the WebSocket protocol, the Comet model, the push technology paradigm, and the real-time web practices.\n\nOrigin\nThe first version of Lightstreamer was created at the end of 2000, as one of the first attempts to implement real-time data push to HTML pages without employing Java applets. The application domain driving most of the interest in push technology at that time was market data distribution for the financial services", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9031121", "url": "https://en.wikipedia.org/wiki/Real-time%20transcription", "title": "Real-time transcription", "text": "Real-time transcription is the general term for transcription by court reporters using real-time text technologies to deliver computer text screens within a few seconds of the words being spoken. Specialist software allows participants in court hearings or depositions to make notes in the text and highlight portions for future reference.\n\nReal-time transcription is also used in the broadcasting environment where it is more commonly termed \"captioning.\"\n\nCareer opportunities \nReal-time reporting ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9051432", "url": "https://en.wikipedia.org/wiki/Battlestations%3A%20Midway", "title": "Battlestations: Midway", "text": "Battlestations: Midway is a video game developed by Eidos Hungary and released in 2007 for the Xbox 360 and Microsoft Windows. The Mac version of this game was developed by Robosoft Technologies, based out of India and published in July 2008 by Feral Interactive.\n\nSet in the Pacific during World War II, it is a hybrid of action and real-time tactics as the player can both command their fleet assets and assume control of any one of them at will. The single-player campaign is a series of missions ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9118996", "url": "https://en.wikipedia.org/wiki/Close%20Combat%3A%20A%20Bridge%20Too%20Far", "title": "Close Combat: A Bridge Too Far", "text": "Close Combat: A Bridge Too Far, or Close Combat II, is a World War II real-time computer wargame, developed by Atomic Games, and released on October 13, 1997. The second installment of the Close Combat series, the game is played on a two-dimensional map, between two players.\n\nClose Combat is based on Operation Market Garden; most units in the game are based on those used in 1944, with the exception of a few which are only available in custom games. The game may be played as either the Germans, o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9147324", "url": "https://en.wikipedia.org/wiki/Universe%20at%20War%3A%20Earth%20Assault", "title": "Universe at War: Earth Assault", "text": "Universe at War: Earth Assault is a real-time strategy game, developed by Petroglyph Games and published by Sega. Universe at War: Earth Assault was intended to be the first game in a planned series of games to be called the Universe at War series.\n\nOn May 10, 2007, Sega announced that the title was also in development for the Xbox 360, which was released in 2008. Further, on June 27, 2007, Sega announced that the title would allow cross platform multiplayer through Xbox Live and Games for Windo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9149635", "url": "https://en.wikipedia.org/wiki/DigiTech%20JamMan", "title": "DigiTech JamMan", "text": "The DigiTech JamMan is a discontinued looper pedal formerly manufactured by DigiTech. It is unrelated to the earlier Lexicon JamMan unit. It can record up to 99 loops, perform real-time recording, and can hold up to 6\u00bd hours of audio. It takes input from guitars and microphones. It has two foot switches, one for recording/overdub and one for stopping the loop. It also has preset rhythm tracks.\n\nReferences\n\nExternal links\nDigitech JamMan product page\nJamMan review\nSet the JamMan to a specifi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9270416", "url": "https://en.wikipedia.org/wiki/Talarian", "title": "Talarian", "text": "Talarian was a provider of real-time infrastructure software. Now part of TIBCO, it was a veteran provider of message-oriented middleware.\n\nTalarian was a member of the Business Integration Group (BIG), the Internet Protocol Multicast Initiative (IPMI), the Securities Industry Middleware Council (SIMC), the Object Management Group (OMG), and the Internet Engineering Task Force (IETF).\n\nSmartSockets \n\nSmartSockets was the main product of Talarian. It is a real-time message-oriented middleware (MO", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9273208", "url": "https://en.wikipedia.org/wiki/Toshiba%20T1000", "title": "Toshiba T1000", "text": "The Toshiba T1000 was a laptop computer manufactured by the Toshiba Corporation in 1987. It had a similar specification to the IBM PC Convertible, with a 4.77\u00a0MHz 80C88 processor, 512 kB of RAM, and a monochrome CGA-compatible LCD. Unlike the Convertible, it includes a standard serial port and parallel port, connectors for an external monitor, and a real-time clock.\n\nUnusually for an IBM compatible PC, the T1000 contained a 256 kB ROM with a copy of MS-DOS 2.11. This acted as a small, read-only ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9281716", "url": "https://en.wikipedia.org/wiki/Clonk", "title": "Clonk", "text": "Clonk is a single player and multiplayer video game series. The games feature a mix of the action, real-time strategy and platform game genres. Developed between 1994 and 2014 by RedWolf Design, the games of the series were originally released as shareware and became freeware and later open source software around 2008 and 2014. The game's community has since developed the series under the name OpenClonk. The series was compared and described as a mixture of Worms, The Settlers, Tetris, Lemmings ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9297567", "url": "https://en.wikipedia.org/wiki/AOW", "title": "AOW", "text": "AOW may refer to:\n Act of War: Direct Action, a real-time strategy video game\n Act of War: High Treason, an expansion pack for Act of War: Direct Action\n Advanced Open Water, a scuba diving training level common to many certification agencies\n Algemene Ouderdomswet, a Dutch pension act\n Age of Wonders, a turn-based strategy PC game\n Any Other Weapon, a weapons classification in the United States National Firearms Act\n Age of Wulin, a free-to-play Wuxia MMORPG published by Gala Networks Europe\n A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9322617", "url": "https://en.wikipedia.org/wiki/Defcon%20%28disambiguation%29", "title": "Defcon (disambiguation)", "text": "DEFCON is a defense alert state (numbered 1-5) used by the United States Armed Forces. \n\nIn the United Kingdom, DEFCON refers to numbered defence contract conditions issued by the Ministry of Defence.\n\nDefcon, DEFCON, DEFCON 1, Defconn, etc., may also refer to:\n\nPeople with the name\n Defconn (born 1977), South Korean rapper and comedian\n Defconn Girl (born 1990), a South Korean singer also known as Fat Cat\n\nArts, entertainment, and media\n\nGames\n DEFCON (video game), a 2006 real-time strategy gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9375231", "url": "https://en.wikipedia.org/wiki/Slayers%20Wonderful", "title": "Slayers Wonderful", "text": "is a role-playing video game developed by TamTam and released by Banpresto for the PlayStation in 1998 exclusively in Japan. It features key voice actors from the Slayers anime versions and a story supervised by the Slayers author Hajime Kanzaka. The game was a big commercial success but received mixed critical reception.\n\nGameplay\n\nSlayers Wonderful is a Japanese role-playing video game featuring of a battle system reminiscent of Final Fantasy VII (a mix of a real-time and turn-based, complete ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9395619", "url": "https://en.wikipedia.org/wiki/Magnant%20%28video%20game%29", "title": "Magnant (video game)", "text": "Magnant is an RTS (real-time strategy) game by American studio Mohydine Entertainment which features the military expansion of a colony of ants.\n\nCard system\nThere is a card system which permits the player to draw cards during the game which can bring diverse bonuses to the colony; to obtain these cards, the player can exchange points gained during matches for 3 copies of one type of card. The player can also trade these cards with other Magnant players at the Magnant official website and also ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9428897", "url": "https://en.wikipedia.org/wiki/Ubuntu%20Studio", "title": "Ubuntu Studio", "text": "Ubuntu Studio is a recognized flavor of the Ubuntu Linux distribution, which is geared to general multimedia production. The original version, based on Ubuntu 7.04, was released on 10 May 2007.\n\nFeatures\n\nReal-time kernel\nThe real-time kernel, first included with Ubuntu Studio 8.04, was modified for intensive audio, video or graphics work. The 8.10 Ubuntu Studio release lacks this real-time kernel. It has been reimplemented in the 9.04 Ubuntu Studio release and stabilized with the release of 9.1", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9485402", "url": "https://en.wikipedia.org/wiki/Pleora", "title": "Pleora", "text": "Pleora Technologies Inc. is a privately held Canadian company that specializes in video transmitters and receivers that enable the streaming of data or video in real-time over standard Gigabit Ethernet networks. The company was founded in 2000 by George Chamberlain and Alain Rivard.\n\nServices\n\nPleora works with integrators and manufacturers designing real-time imaging systems for the industrial automation, military, and medical sectors. The company provides hardware solutions (external frame gra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9490951", "url": "https://en.wikipedia.org/wiki/Away%20team", "title": "Away team", "text": "Away team may refer to:\n Away team (sports), a sports team on the road and thus without the \"home advantage\"\n Away team, a landing party assembled to go on extravehicular missions in Star Trek\nStar Trek: Away Team, a real-time tactics video game\n The Away Team (group), a hip hop duo from North Carolina\n Away Team, a US roller soccer team\n Away Team, a US based streetwear clothing brand\n\nSee also\n\"Heaven's Gate Away Team\", a group of members of the Heaven's Gate cult", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9501597", "url": "https://en.wikipedia.org/wiki/BAE%20Systems%20Phoenix", "title": "BAE Systems Phoenix", "text": "The BAE Systems Phoenix (originally GEC-Marconi Phoenix) was an all-weather, day or night, real-time surveillance Unmanned Air Vehicle. It had a twin-boom UAV with a surveillance pod, from which the imagery was data linked to a ground control station (GCS) that also controlled the aircraft in flight. It was the third generation of UAV in British Army service with the Royal Artillery after SD/1 and Canadair Midge.\n\nThe Phoenix was a fairly typical combat surveillance UAV, powered by a 20\u00a0kW (26\u00a0", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9535081", "url": "https://en.wikipedia.org/wiki/Telengard", "title": "Telengard", "text": "Telengard is a 1982 role-playing dungeon crawler video game developed by Daniel Lawrence and published by Avalon Hill. The player explores a dungeon, fights monsters with magic, and avoids traps in real-time without any set mission other than surviving. Lawrence first wrote the game as DND, a 1976 version of Dungeons & Dragons for the DECsystem-10 mainframe computer. He continued to develop DND at Purdue University as a hobby, rewrote the game for the Commodore PET 2001 after 1978, and ported it", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9536893", "url": "https://en.wikipedia.org/wiki/Armature%20%28computer%20animation%29", "title": "Armature (computer animation)", "text": "An armature is the name of the kinematic chains used in computer animation to simulate the motions of virtual human or animal characters. In the context of animation, the inverse kinematics of the armature is the most relevant computational algorithm.\n\nThere are two types of digital armatures: Keyframing (stop-motion) armatures and real-time (puppeteering) armatures. Keyframing armatures were initially developed to assist in animating digital characters without basing the movement on a live perf", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9543934", "url": "https://en.wikipedia.org/wiki/Click-to-call", "title": "Click-to-call", "text": "Click-to-call, also known as click-to-talk, click-to-dial, click-to-chat and click-to-text, namely Webcall is a form of Web-based communication in which a person clicks an object (e.g., button, image or text) to request an immediate connection with another person in real-time either by phone call, Voice-over-Internet-Protocol (VoIP), or text. Click to talk requests are most commonly made on websites but can also be initiated by hyperlinks placed in email, blogs, wikis, flash animations or video", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9553309", "url": "https://en.wikipedia.org/wiki/Securities%20Industry%20Automation%20Corporation", "title": "Securities Industry Automation Corporation", "text": "The Securities Industry Automation Corporation (SIAC) is a subsidiary of the NYSE Euronext. Its purpose is to provide technical services for the exchanges themselves, members and other financial institutions. In this role, SIAC provides the computers and other systems required to run the exchanges. It also owns communication lines and hardware to provide real-time quotes and transaction information to all market participants from the Consolidated Tape/Ticker System (CTS), Consolidated Quotatio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9577049", "url": "https://en.wikipedia.org/wiki/Globulation%202", "title": "Globulation 2", "text": "Globulation 2 is a real-time strategy game, available in beta as of January 2009. The game updates on an irregular release cycle and is available in many Linux distribution's package repositories. The game minimizes gaming micromanagement by automatically assigning tasks to units. The game is developed as free and open source software under the GNU GPL-3.0-or-later.\n\nGameplay\nIn Globulation, the point is to either kill all of the enemies' units, to convert all of them to your side, or to kill th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9588263", "url": "https://en.wikipedia.org/wiki/Sky%20%28gamer%29", "title": "Sky (gamer)", "text": "Li Xiaofeng (), who also goes by the pseudonym \"Sky\" or \"WE.Sky\", is a Chinese former professional gamer of the popular Blizzard Entertainment real-time strategy game Warcraft III: The Frozen Throne. He played for the China-based World Elite team. He is considered one of the best Human players in the game's history by World Cyber Games In the past few years he has been heavily involved with coaching Team WE's League of Legends team.\n\nLi Xiaofeng is featured in the documentary film Beyond the Gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9591072", "url": "https://en.wikipedia.org/wiki/Empire%20Earth%20III", "title": "Empire Earth III", "text": "Empire Earth III is a real-time strategy video game developed by Mad Doc Software and published by Vivendi Games, released on November 6, 2007. It is the latest installment of the Empire Earth series.\n\nEmpire Earth III contains five epochs, fewer than other games in the series but covering roughly the same time period. The game features three factions: Middle Eastern, Western, and Far Eastern. Each faction comprises unique buildings, units, and technologies.\n\nThe game received widespread negativ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9599851", "url": "https://en.wikipedia.org/wiki/Euphoria%20%28software%29", "title": "Euphoria (software)", "text": "Euphoria was a game animation middleware created by NaturalMotion based on Dynamic Motion Synthesis, NaturalMotion's proprietary technology for animating 3D characters on-the-fly \"based on a full simulation of the 3D character, including body, muscles and motor nervous system\". Instead of using predefined animations, the characters' actions and reactions are synthesized in real-time; they are different every time, even when replaying the same scene. While it is common for current video games to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9616780", "url": "https://en.wikipedia.org/wiki/Miraikan", "title": "Miraikan", "text": "The , simply known as the , is a museum created by Japan's Science and Technology Agency.\n\nIt was opened in 2001. It is situated in a new purpose-built building in the Odaiba District of Tokyo. It can be reached by the Yurikamome driverless fully automated transit system from downtown Tokyo in about 15 minutes.\n\nExhibits\nHighlights include real-time displays of data from a huge array of seismometers across Japan which shows the country gently vibrating. The occasional earthquakes for which Japan", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9631657", "url": "https://en.wikipedia.org/wiki/Warfare%20Incorporated", "title": "Warfare Incorporated", "text": "Warfare Incorporated is a real-time strategy game, released in 2003. It was developed by American studio Spiffcode and published by Handmark for Palm OS, Pocket PC, PDAs, Tapwave Zodiac and iOS. In 2014 the game became open-sourced and freeware under the name Hostile Takeover.\n\nPlot\n \nWarfare Incorporated is set in a future ruled by super corporations engaged in no-holds-barred competition for the resources of the galaxy. The game focuses on two specific corporations (ACME and OMNI), who are fig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9637343", "url": "https://en.wikipedia.org/wiki/Concurrent%20Pascal", "title": "Concurrent Pascal", "text": "Concurrent Pascal is a programming language designed by Per Brinch Hansen for writing concurrent computing programs such as operating systems and real-time computing monitoring systems on shared memory computers.\n\nA separate language, Sequential Pascal, is used as the language for applications programs run by the operating systems written in Concurrent Pascal. Both languages are extensions of Niklaus Wirth's Pascal, and share a common threaded code interpreter. The following describes how Concur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9650224", "url": "https://en.wikipedia.org/wiki/Emergency%20management%20information%20system", "title": "Emergency management information system", "text": "An emergency management information system (EMIS) is a computer database for disaster response that provides graphical, real-time information to responders.\n\nEMIS and emergencies\nFour phases of an emergency are Readiness, Risk Mitigation, Response, and Replay. An EMIS shall enable emergency managers or any emergency stakeholder (affected civilians, police, fireman, Non Government Organizations (NGO), etc.) make their required activities in any phase of an emergency in an easy and speedy way.\n\nE", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9654898", "url": "https://en.wikipedia.org/wiki/Log%20management", "title": "Log management", "text": "Log management (LM) comprises an approach to dealing with large volumes of computer-generated log messages (also known as audit records, audit trails, event-logs, etc.).\n\nLog management generally covers:\n\n Log collection\n Centralized log aggregation\n Long-term log storage and retention\n Log rotation\n Log analysis (in real-time and in bulk after storage)\n Log search and reporting.\n\nOverview \n\nThe primary drivers for log management implementations are concerns about security, system and network op", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9664767", "url": "https://en.wikipedia.org/wiki/Dreamlords", "title": "Dreamlords", "text": "Dreamlords was a massively multiplayer online real-time strategy (MMORTS) game, developed by Swedish game developers Lockpick Entertainment. Dreamlords was online only, and was free to play with an option to pay for additional benefit. It included in-game currency called Tribute that was used to buy items like spells to aid the players. The game used both a browser game and a downloadable real-time strategy client. Dreamlords also includes elements of role-playing video games.\n\nDevelopment and r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9691923", "url": "https://en.wikipedia.org/wiki/Juice%20%28JVM%29", "title": "Juice (JVM)", "text": "JUICE is a Java ME experimental Java Virtual Machine written in C according to the Sun Microsystems specifications. The Juice JVM, designed for real-time Java, was specifically developed to run on the NUXI operating system. The most relevant features of Juice are related to the structure for the heap memory, to the object allocation policy and to the garbage collector used.\n\nHeap memory \nIn Juice, all the available heap memory is shared in \"chunks\" of pre-fixed size. The memory unit used is the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9750678", "url": "https://en.wikipedia.org/wiki/RARS", "title": "RARS", "text": "RARS is an acronym for Robot Auto Racing Simulator. It is an open source 3D racing simulator. RARS is designed to enabled pre-programmed AI drivers to race against one another. RARS was used as the base for TORCS. It was used as an example in the book Intelligent Information Processing and Web Mining by Mieczys\u0142aw K\u0142opotek.\n\nIt was a monthly on-going challenge for practitioners of Artificial Intelligence and real-time adaptive optimal control. It consists of\n a simulation of the physics of cars ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9770391", "url": "https://en.wikipedia.org/wiki/Efuse", "title": "Efuse", "text": "In computing, an eFuse (electronic fuse) is a microscopic fuse put into a computer chip. This technology was invented by IBM to allow for the dynamic real-time reprogramming of chips. In the abstract, computer logic is generally \"etched\" or \"hard-wired\" onto a chip and cannot be changed after the chip has finished being manufactured. By utilizing a set of eFuses, a chip manufacturer can allow for the circuits on a chip to change while it is in operation.\n\nMechanism of action \neFuses can be made", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9797273", "url": "https://en.wikipedia.org/wiki/Tape%20%28play%29", "title": "Tape (play)", "text": "Tape is a 1999 play by Stephen Belber. It was first produced at the Actors Theatre of Louisville as part of the 2000 Humana Festival of New American Plays. It was later filmed by Richard Linklater as Tape starring Ethan Hawke, Robert Sean Leonard, and Uma Thurman. It follows classical unities of action, time and space, featuring three characters in a single plot regarding their differing perspectives of past events, in one unbroken period of real-time, in a single motel room set.\n\nSynopsis\nTape ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9798772", "url": "https://en.wikipedia.org/wiki/Rational%20Rhapsody", "title": "Rational Rhapsody", "text": "Rational Rhapsody, a modeling environment based on UML, is a visual development environment for systems engineers and software developers creating real-time or embedded systems and software. Rational Rhapsody uses graphical models to generate software applications in various languages including C, C++, Ada, Java and C#.\n\nDevelopers use Rational Rhapsody to understand and elaborate requirements, create model designs using industry standard languages (UML, SysML, AUTOSAR, DoDAF, MODAF, UPDM), vali", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9832453", "url": "https://en.wikipedia.org/wiki/Online%20authorisation", "title": "Online authorisation", "text": "Online Authorization (OLA) is a system used to verify a transaction on a payment card (e.g. credit card). The term 'on-line' refers to the real-time nature of the verification. In other words, if the account is overdrawn, in most cases, the transaction will be refused.\n\nOLA is already commonplace for credit card networks such as Visa or Mastercard and is now being implemented in others (such as fuel cards).\n\nDuring on-line \u0430uthorisation:\n The cardholder's PIN is encrypted by ATM POS PINpad secur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9844596", "url": "https://en.wikipedia.org/wiki/MetaStock", "title": "MetaStock", "text": "MetaStock is a proprietary computer program originally released by Computer Asset Management in 1985. It is used for charting and technical analysis of stock (and other asset) prices. It has both real-time and end-of-day versions. MetaStock is a product of Innovative Market Analysis.\n\nEarly history\nIn 1982 Steve Achelis started a company named Computer Asset Management to develop financial and technical analysis software for personal computers. Computer Asset Management was renamed Equis Intern", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9892409", "url": "https://en.wikipedia.org/wiki/Saga%20%282008%20video%20game%29", "title": "Saga (2008 video game)", "text": "Saga is a massively multiplayer online real-time strategy game. Saga is touted as the world's first collectible online real-time strategy game. Saga was released on March 4, 2008 after a brief open Beta which began February 26, 2008.\nDeveloped by American studios Wahoo Studios and Silverlode Interactive, the game ran a closed Beta starting July 5, 2007. The title has no subscription fees, instead being supported by the release of booster or expansion packs. It is possible to play a free version", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9916216", "url": "https://en.wikipedia.org/wiki/Air%20traffic%20service", "title": "Air traffic service", "text": "In aviation, an air traffic service (ATS) is a service which regulates and assists aircraft in real-time to ensure their safe operations. In particular, ATS is to:\n prevent collisions between aircraft; provide advice of the safe and efficient conduct of flights;\n conduct and maintain an orderly flow of air traffic;\n notify concerned organizations of and assist in search and rescue operations. \n\nThe ATS further provides four services:\n air traffic control services, which is to prevent collisions ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9936493", "url": "https://en.wikipedia.org/wiki/Indian%20Regional%20Navigation%20Satellite%20System", "title": "Indian Regional Navigation Satellite System", "text": "The Indian Regional Navigation Satellite System (IRNSS), with an operational name of NavIC (acronym for NAVigation with Indian Constellation; also, 'sailor' or 'navigator' in Indian languages), is an autonomous regional satellite navigation system that provides accurate real-time positioning and timing services. It covers India and a region extending around it, with plans for further extension. An extended service area lies between the primary service area and a rectangle area enclosed by the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "9991579", "url": "https://en.wikipedia.org/wiki/Albert%20Macovski", "title": "Albert Macovski", "text": "Albert Macovski is an American Professor (Emeritus) at Stanford University, known for his many innovations in the area of imaging, particularly in the medical field. He graduated from NYU Poly.\n\nHe has over 150 patents and has authored over 200 technical articles. His innovations include the single-tube color camera and real-time phased array imaging for ultrasound. He has also made significant contributions to magnetic resonance imaging (MRI), computerized axial tomography (CAT scans), and digi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10014174", "url": "https://en.wikipedia.org/wiki/Rage%20of%20Mages", "title": "Rage of Mages", "text": "Rage of Mages is a PC game that combines role-playing and real-time strategy. Produced by Nival Interactive it was first released in Russia under the name of Allods: The Seal of Mystery (\u0410\u043b\u043b\u043e\u0434\u044b. \u041f\u0435\u0447\u0430\u0442\u044c \u0442\u0430\u0439\u043d\u044b). The game was published in April 1998 in the EU by Buka Entertainment and on October 13, 1998 in the US. It was re-released in 2016 on GOG.com.\n\nA sequel was later made in 1999 by Nival Interactive called Allods 2: Master of Souls (\u0410\u043b\u043b\u043e\u0434\u044b 2. \u041f\u043e\u0432\u0435\u043b\u0438\u0442\u0435\u043b\u044c \u0434\u0443\u0448) and published in the west by Mono", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10023452", "url": "https://en.wikipedia.org/wiki/Last%20Day%20of%20Work", "title": "Last Day of Work", "text": "Last Day of Work (LDW) is an independent game studio specializing in casual games. The company has developed several successful real-time \"Virtual Life\" simulation games including Fish Tycoon, Plant Tycoon, Virtual Families and the Virtual Villagers series for platforms including PC, Mac, iPhone/iPod touch, Palm OS and Windows Mobile Pocket PC. Last Day of Work was founded by CEO Arthur Humphrey and is based in San Francisco, California.\n\nGames\nEZ Blackjack, Video Poker Teacher, Pocket Paigow (C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10106996", "url": "https://en.wikipedia.org/wiki/Android%20Nim", "title": "Android Nim", "text": "Android Nim is a version of the mathematical strategy game Nim programmed by Leo Christopherson for the TRS-80 computer in 1978. A version for the Commodore PET by Don Dennis was released July 1979. Android Nim features real-time animation of the androids on a TRS-80.\n\nGameplay\nThe object of the game is to remove the last android from three rows of androids. The game's premise is simple, but its animation is impressive given the limitations of the TRS-80's display. Throughout the game androids ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10150470", "url": "https://en.wikipedia.org/wiki/Imperivm%3A%20Great%20Battles%20of%20Rome", "title": "Imperivm: Great Battles of Rome", "text": "Imperivm: Great Battles of Rome (also known as Imperivm III: Great Battles of Rome, Imperivm RTC: Great Battles of Rome, or Imperium GBR) is a 2005 real-time strategy video game for Microsoft Windows. It is a sequel to the RTS/RPGs Celtic Kings: Rage of War and Imperivm II: The Punic Wars. The game, released in May 2005, was developed by Haemimont Games together with FX Interactive.\n\nThe game contains various civilizations to choose from, including Rome (Imperial and Republican), Egypt, Germania", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10159009", "url": "https://en.wikipedia.org/wiki/Advanced%20Plant%20Management%20System", "title": "Advanced Plant Management System", "text": "The Advanced Plant Management System (APMS) is a SCADA solution developed in partnership by RWE npower and Thales UK.\n\nBased on a real-time application platform, APMS is a monitoring and control system for any large industrial process. APMS is implemented at more than thirty electric power generation units in the UK, including Tilbury, Didcot A, Aberthaw, Drax and Rugeley power stations.\n\nThe APMS system replaced the Cutlass programming language and application system - a real-time control syste", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10180623", "url": "https://en.wikipedia.org/wiki/Decision%20downloading", "title": "Decision downloading", "text": "Decision downloading refers to communicating a decision to those who have not been involved in the decision-making process. \n\nThe term \u201cdecision downloading\u201d is used to set apart those special situations in which\ndecision-makers communicate a decision that has already been made. It applies when the communicators cannot,\nfor whatever reason, keep everyone informed in real-time about the decision-making process.\n\nTypes of \"downloaders\"\nDecision downloaders can be classified into three groups: robu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10225229", "url": "https://en.wikipedia.org/wiki/Super%20Battleship", "title": "Super Battleship", "text": "Super Battleship is a naval simulator video game released for the Genesis and Super NES in 1993. The game is strictly single-player and is primarily a strategy game with some real-time elements. It is based on the Battleship board game by the Milton Bradley Company.\n\nGameplay \nThe game features two modes: Super Battleship mode and Classic Battleship mode. Classic Battleship mode is essentially an electronic version of the board game Battleship, where you play against the computer because the gam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10320900", "url": "https://en.wikipedia.org/wiki/Hole%20%28Bottom%29", "title": "Hole (Bottom)", "text": "\"Hole\" is the first episode of the third series of British television sitcom, Bottom. It was first broadcast on 6 January 1995. It is the last of only three bottle episodes (along with Culture and Contest) to feature only the two main characters, however it is the only one of the three to be set entirely outside of the flat. It is also a single-scene real-time episode.\n\nSynopsis\nDuring a night at the fair, Eddie and Richie are trapped on top of the tallest Ferris wheel in Western Europe, and the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10345540", "url": "https://en.wikipedia.org/wiki/Warlords%20Battlecry%20II", "title": "Warlords Battlecry II", "text": "Warlords Battlecry II is a real-time strategy and role-playing game, developed by Strategic Studies Group (SSG) as the sequel to Warlords Battlecry. It was released on March 12, 2002. The game requires the player to build buildings and create units in order to defeat the enemy, while sending their hero on optional quests.\n\nThe game is set within the world of Etheria. The player creates and assumes the role of a \"Hero\", and must take control of one of the twelve races and capture all 67 regions o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10353658", "url": "https://en.wikipedia.org/wiki/Proapp", "title": "Proapp", "text": "In Apple Inc software, a proapp is a professional application that has a distinctly different-looking GUI and look and feel from normal Apple applications and other software run on Mac OS X.\n\nProapps\nThis list is incomplete.\nThe proapps include:\nLogic Studio\nLogic Pro: MIDI sequencer and digital audio workstation software\nApple Loops Utility: Loops organizer and manager.\nWaveBurner: CD encoding, authoring, and burning\nFinal Cut Studio\nFinal Cut Pro: real-time non-linear editing for DV, SD, HD an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10376906", "url": "https://en.wikipedia.org/wiki/Real-time%20analyzer", "title": "Real-time analyzer", "text": "A real-time analyzer (RTA) is a professional audio device that measures and displays the frequency spectrum of an audio signal; a spectrum analyzer that works in real time. An RTA can range from a small PDA-sized device to a rack-mounted hardware unit to software running on a laptop. It works by measuring and displaying sound input, often from an integrated microphone or with a signal from a PA system. Basic RTAs show three measurements per octave at 3 or 6\u00a0dB increments; sophisticated software ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10387889", "url": "https://en.wikipedia.org/wiki/World%20War%20II%3A%20Frontline%20Command", "title": "World War II: Frontline Command", "text": "World War II Frontline Command is a real-time strategy, 3D, tactical war game for Windows that was developed by long standing developers, the Bitmap Brothers. It was originally released in Europe during September 2002 by Deep Silver and subsequently released in June 2003 by Focus Multimedia.\n\nPlot\nThe game is set within the era of World War II. The game opens with the player dropping paratroopers into Europe to disrupt the entrenched Axis forces ahead of the main invasion forces set to land on D", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10389895", "url": "https://en.wikipedia.org/wiki/ESignal", "title": "ESignal", "text": "eSignal, a Windows-based application, uses JavaScript as the basis for the scripting language that programmers and traders can use for building custom indicators. This, in effect, includes eSignal users in the base from which to draw programmers for writing indicators.\n\nAdvertisement for the company\neSignal provides streaming, real-time market data, news and analytics. The other products offered under the eSignal brand include eSignal, Advanced GET, eSignal OnDemand,\n\neSignal, Advanced GET, coup", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10419007", "url": "https://en.wikipedia.org/wiki/GrimGrimoire", "title": "GrimGrimoire", "text": "GrimGrimoire is a 2007 real-time strategy video game developed by Vanillaware and published by Nippon Ichi Software (Japan, North America) and Koei (Europe) for the PlayStation 2. The story follows Lillet Blan, a trainee witch who is sent into a repeating cycle of five days after her school is attacked by an evil wizard seeking the hidden Philosopher's Stone. The player commands units called familiars, each having strengths and weaknesses against the other, with the goal of either destroying the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10443665", "url": "https://en.wikipedia.org/wiki/Apache%20Solr", "title": "Apache Solr", "text": "Solr (pronounced \"solar\") is an open-source enterprise-search platform, written in Java. Its major features include full-text search, hit highlighting, faceted search, real-time indexing, dynamic clustering, database integration, NoSQL features and rich document (e.g., Word, PDF) handling. Providing distributed search and index replication, Solr is designed for scalability and fault tolerance. Solr is widely used for enterprise search and analytics use cases and has an active development communi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10476987", "url": "https://en.wikipedia.org/wiki/Company%20of%20Heroes%3A%20Opposing%20Fronts", "title": "Company of Heroes: Opposing Fronts", "text": "Company of Heroes: Opposing Fronts (abbreviated CoH:OF) is the stand alone expansion pack to Company of Heroes, a real-time strategy game for computers running the Windows operating system. Opposing Fronts was developed by Canadian-based RTS developer Relic Entertainment, and published by THQ. The game was released on September 25, 2007, in the US and September 28 in Europe. Another standalone expansion to the CoH series, Tales of Valor, was released in April 2009. The game was released as a DLC", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10494706", "url": "https://en.wikipedia.org/wiki/Fragile%20Allegiance", "title": "Fragile Allegiance", "text": "Fragile Allegiance is an open-ended 4X real-time strategy (RTS) game from Gremlin Interactive, released in 1996 for MS-DOS and Windows 95. The game begins on May 25, 2496, as the player begins their employment with TetraCorp (a large interstellar megacorporation) who have set up a new asteroid mining franchise operation in the Fragmented Sectors. There are six alien races competing with Tetracorp for these resources. Beginning with one building and one million credits, the player is tasked with ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10550138", "url": "https://en.wikipedia.org/wiki/DirectX%20plugin", "title": "DirectX plugin", "text": "In computer music and professional audio creation, a DirectX plugin is a software processing component that can be loaded as a plugin into host applications to allow real-time processing, audio effects, mixing audio or act as virtual synthesizers. DirectX plugins allow the replacement of traditional recording studio hardware and rack units used in professional studios with software-based counterparts that can be connected together in a modular way. This allows host manufacturers to focus on the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10573865", "url": "https://en.wikipedia.org/wiki/KKnD%20%28video%20game%29", "title": "KKnD (video game)", "text": "KKnD, or Krush, Kill 'n' Destroy is the first of three real-time strategy games in the KKnD series, and was released on March 5, 1997. The game takes place in a post-apocalyptic setting, where two factions are fighting for control over the few natural resources left. Each faction has its own campaign consisting of 15 missions each, and there is also a multiplayer mode which allows up to 6 people to play via LAN or modem/serial connection.\n\nKKnD: Xtreme is an improved and extended version of KKnD", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10592729", "url": "https://en.wikipedia.org/wiki/Anno%201701%3A%20Dawn%20of%20Discovery", "title": "Anno 1701: Dawn of Discovery", "text": "Anno 1701: Dawn of Discovery is a real-time strategy video game of the Anno franchise for the Nintendo DS. It is published by Disney Interactive and makes extensive use of the system's touch-screen capabilities. There are three game mode options, consisting of a story mode, continuous play, and multiplayer. It has been released in Europe, Australia, Canada and the United States.\n\nGameplay\nThe player begins with a ship stocked with the necessary items to start a settlement. The player explores th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10600409", "url": "https://en.wikipedia.org/wiki/OpenTable", "title": "OpenTable", "text": "OpenTable is an online restaurant-reservation service company founded by Sid Gorham, Eric Moe and Chuck Templeton on 2 July 1998 and is based in San Francisco, California.\n\nIn 1998, operations began with a limited selection of restaurants in San Francisco. Restaurants used the company's back-end software to process the reservations made on the website, resulting in a real-time reservation system for both diners and restaurants. The service has since expanded to cover more than 50,000 restaurants", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10630119", "url": "https://en.wikipedia.org/wiki/Dark%20Reign", "title": "Dark Reign", "text": "Dark Reign may refer to:\n\nGames \nDark Reign: The Future of War, a 1997 real-time strategy game\nDark Reign 2, a 2000 real-time strategy game and prequel to the 1997 game\n\nComics \n\n Dark Reign (comics), a 2008\u20132009 Marvel Comics storyline\n\nSee also \n \"Dark Rain\", a 1997 episode of the TV series The Outer Limits", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10630131", "url": "https://en.wikipedia.org/wiki/Neugier%3A%20Umi%20to%20Kaze%20no%20Kod%C5%8D", "title": "Neugier: Umi to Kaze no Kod\u014d", "text": "is an action-adventure / action role-playing game for the Super Famicom. Although the game was scheduled for release in the United States as The Journey Home: Quest for the Throne, in November 1993, the project was cancelled.\n\nGameplay\nDuke, the main character, fights in real-time battles on his quest to save Neugier. He can jump and equip armor in an RPG fashion. There is also an ability to push objects, or enemies, into a wall to break them.\n\nReception\nUpon release, GameFans four reviewers gav", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10668560", "url": "https://en.wikipedia.org/wiki/The%20Settlers%3A%20Rise%20of%20an%20Empire", "title": "The Settlers: Rise of an Empire", "text": "The Settlers: Rise of an Empire () is a city-building game with real-time strategy elements, developed by Blue Byte and published by Ubisoft. Released for Microsoft Windows in September 2007, it is the sixth game in The Settlers series. In March 2008, Blue Byte released an expansion, The Settlers: Rise of an Empire - The Eastern Realm (), featuring new single-player campaign missions, new maps for both single-player and multiplayer modes, and an enhanced map editor. In September, they released T", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10698205", "url": "https://en.wikipedia.org/wiki/Medieval%20Conquest", "title": "Medieval Conquest", "text": "Medieval Conquest is a fantasy-themed real-time strategy personal computer game developed by Cat Daddy Games and published by Global Star Software for Microsoft Windows in 2004. The game involves managing a kingdom by hiring units and building and upgrading structures.\n\nOverview\nMedieval Conquest uses a 3D game engine. The game's story takes place over 12 missions spanning four maps. Players can hire three types of units: fighters, rangers, and mages. Units in Medieval Conquest are autonomous; ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10700691", "url": "https://en.wikipedia.org/wiki/AEGIS%3A%20Guardian%20of%20the%20Fleet", "title": "AEGIS: Guardian of the Fleet", "text": "Aegis: Guardian of the Fleet is a 1994 MS-DOS computer game.\n\nGameplay\nIt simulates command of a US Navy Ticonderoga class cruiser using the Aegis combat system, a US Navy radar and computer system which operates intelligence and missile guidance functions. It was developed by Microplay Software, and published by Time Warner Interactive.\n\nPlayers are given the ability to operate this ship in real-time, either from the bridge, or by viewing ship operations on radar, via the Tactical Plot System. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10724521", "url": "https://en.wikipedia.org/wiki/Masayuki%20Kikuchi", "title": "Masayuki Kikuchi", "text": "Masayuki Kikuchi(\u83ca\u5730 \u6b63\u5e78) (January 19, 1948 \u2013 October 18, 2003) was a Japanese seismologist. He was famous for real-time seismology.\n\nEducation and career\nBachelor of Science (1970), Master of Science (1972), and Doctor of Science (1976), in Geophysics, University of Tokyo. \n\nKikuchi dropped out of the Graduate School of Sciences, Tokyo University, 1973. In the same year, he took an assistant professorship at Yokohama City University. In 1976, he earned his doctorate in science. He was promoted", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10757955", "url": "https://en.wikipedia.org/wiki/Mobile%20Internet%20device", "title": "Mobile Internet device", "text": "A mobile Internet device (MID) is a multimedia capable mobile device providing wireless Internet access. They are designed to provide entertainment, information and location-based services for personal or business use. They allow 2-way communication and real-time sharing. They have been described as filling a niche between smartphones and tablet computers.\n\nAs all the features of MID started becoming available on smartphones and tablets, the term is now mostly used to refer to both low-end as we", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10792367", "url": "https://en.wikipedia.org/wiki/Commandos%3A%20Behind%20Enemy%20Lines", "title": "Commandos: Behind Enemy Lines", "text": "Commandos: Behind Enemy Lines is a 1998 real-time tactics video game developed by the Spanish company Pyro Studios and published by Eidos Interactive. The game sees players take control of a group of six Allied Commandos, who conduct a range of missions across wartime Europe and Africa, using small unit tactics. Each mission's objective varies, but ranges from sabotage, assassination or rescuing captured allied units, with players having a full view of a mission's map to plan their strategy and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10873733", "url": "https://en.wikipedia.org/wiki/Tom%20Clancy%27s%20EndWar", "title": "Tom Clancy's EndWar", "text": "Tom Clancy's EndWar is a strategy video game available on Microsoft Windows and all seventh-generation platforms except the Wii, with the timing and flow of gameplay differing across platforms. The console and PC version is a real-time tactics game designed by Ubisoft Shanghai, while the handheld versions feature turn-based tactics. It was released on Nintendo DS, PlayStation 3, PlayStation Portable, and Xbox 360 on November 4, 2008, in the United States, November 6, 2008, in Canada, and Novem", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10884652", "url": "https://en.wikipedia.org/wiki/Force%20XXI%20Battle%20Command%20Brigade%20and%20Below", "title": "Force XXI Battle Command Brigade and Below", "text": "Force XXI Battle Command Brigade and Below (FBCB2) is a Linux-based communication platform designed for commanders to track friendly and hostile forces on the battlefield. It increases a vehicle commander's situational awareness of the battlefield by gathering information near real-time based on vehicle locations being updated on the battlefield. This information is viewed graphically, and exchanged via both free and fixed text message formats (instead of verbal collection of reports).\n\nThe loc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10927178", "url": "https://en.wikipedia.org/wiki/Commandos%203%3A%20Destination%20Berlin", "title": "Commandos 3: Destination Berlin", "text": "Commandos 3: Destination Berlin is a real-time tactics video game, the third installment of the Commandos series. It is developed by Pyro Studios and published by Eidos Interactive. The game is the first in the series to use a true 3D engine, and the last to use real-time tactics before being converted to a first-person shooter genre.\n\nThe Mac OS X version of the game was released in May 2005 by Feral Interactive along with Commandos 2: Men of Courage as part of the Commandos Battle Pack.\n\nGamep", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10932514", "url": "https://en.wikipedia.org/wiki/Dominant%20Species%20%28video%20game%29", "title": "Dominant Species (video game)", "text": "Dominant Species is a real-time strategy video game developed and released by Red Storm Entertainment. It was published October 15, 1998 for Windows. It was one of the first RTS games to make the transition to 3D graphics.\n\nStoryline\nPlayers in Dominant Species control a Mindlord on the planet Mur, in constant battle over the precious resource Anima. In the single player campaign, this battle is first against free roaming creatures, presenting a tutorial for the game. The campaign usually follow", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10937283", "url": "https://en.wikipedia.org/wiki/SunAge", "title": "SunAge", "text": "SunAge is real-time strategy video game developed by Austrian company Vertex4 and published by Lighthouse Interactive. It has received attention due to its use of 2D sprites and backgrounds.\n\nFactions\n\nThe Federacy \nThe Federacy is all that is left of the Human race, sealed off in protective domes, away from the harsh environment of future Earth. Attempting to survive on limited resources they must fight to protect their domes. By the time the game starts, there is only one dome left standing.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "10957937", "url": "https://en.wikipedia.org/wiki/Simulation%20software", "title": "Simulation software", "text": "Simulation software is based on the process of modeling a real phenomenon with a set of mathematical formulas. It is, essentially, a program that allows the user to observe an operation through simulation without actually performing that operation. Simulation software is used widely to design equipment so that the final product will be as close to design specs as possible without expensive in process modification. Simulation software with real-time response is often used in gaming, but it also h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11023535", "url": "https://en.wikipedia.org/wiki/Chun%20Jung-hee", "title": "Chun Jung-hee", "text": "Chun Jung-hee () is a retired South Korean professional player of the real-time strategy game Warcraft III: The Frozen Throne. He used to play for the Chinese professional gaming team Beijing eSport Team. He goes by the gamertag of Sweet (previously nOma) and is a member of clan WeRRa.\n\nHe has been recognized among the top tier of Warcraft III players since the beginning of the professional competitive scene and has won two world championships as well as several professional events in South Kore", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11144110", "url": "https://en.wikipedia.org/wiki/Legionnaire%20%28video%20game%29", "title": "Legionnaire (video game)", "text": "Legionnaire is a computer wargame for the Atari 8-bit series created by Chris Crawford in 1982, and released through Avalon Hill. Recreating Julius Caesar's campaigns in a semi-historical setting, the player takes command of the Roman legions in real-time battles against the barbarians.\n\nGameplay\nSimilar to Crawford's earlier groundbreaking Eastern Front (1941) in terms of display and general gameplay, Legionnaire added a real-time computer opponent, and is one of the earliest examples of a real", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11152151", "url": "https://en.wikipedia.org/wiki/Ozoneweb", "title": "Ozoneweb", "text": "Ozoneweb is an EEA website on near real-time ozone. The website allows the general public to track air quality in a specific region and on a European level. The website displays ozone levels via a map of Europe. Background information on ozone and its health impacts are also provided. Users can monitor ozone levels in a neighbouring country or a holiday destination, check recent trends and track the spread of ozone across Europe. The website now includes a module to display exceedances in countr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11170474", "url": "https://en.wikipedia.org/wiki/Monilink", "title": "Monilink", "text": "Monilink Limited (stylized MONILINK) was the banking service operating in the United Kingdom that gave customers access to their financial information directly from their mobile phones. Created in 2003 Monilink was a joint venture between Monitise and LINK. Promotional material promised consumers that, through the service: \u201cThe future of banking is in your hands\u201d.\n\nLatterly, Monilink offered customers the chance to check their bank balance in real-time, view a mini statement detailing the last s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11191409", "url": "https://en.wikipedia.org/wiki/Batman%20%26%20Robin%20%28video%20game%29", "title": "Batman & Robin (video game)", "text": "Batman & Robin is an action-adventure video game based on DC Comics character Batman, and the 1997 film of the same name for the PlayStation. It was developed by Probe Entertainment and published by Acclaim Entertainment in conjunction with Warner Bros. Interactive Entertainment and DC Comics. It is a sequel to Batman Forever, itself based on the 1995 film of the same name.\n\nGameplay\nThe game uses elements of a Sandbox style game, such as real-time events, traffic simulation, and civilian popula", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11196573", "url": "https://en.wikipedia.org/wiki/Video%20post-processing", "title": "Video post-processing", "text": "The term post-processing (or postproc for short) is used in the video/film business for quality-improvement image processing (specifically digital image processing) methods used in video playback devices, such as stand-alone DVD-Video players; video playing software; and transcoding software. It is also commonly used in real-time 3D rendering (such as in video games) to add additional effects.\n\nUses in video production\nVideo post-processing is the process of changing the perceived quality of a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11236982", "url": "https://en.wikipedia.org/wiki/Visual%20Mind", "title": "Visual Mind", "text": "Visual Mind is mind mapping software that allows users to capture and organize information in a visual manner. The result is electronic \"mind maps\" that provides both overview and details in the same view. Earlier versions of Visual Mind were primarily targeted to single users.\n\nIn 2007, the developers of Visual Mind introduced the Visual Mind Server, which allows multiple Visual Mind users work together on the same Visual Mind map in real-time. Typical uses of Visual Mind for the individual use", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11262400", "url": "https://en.wikipedia.org/wiki/Enhanced%20Position%20Location%20Reporting%20System", "title": "Enhanced Position Location Reporting System", "text": "The Enhanced Position Location Reporting System (EPLRS) is a secure, jam-resistant, computer-controlled communications network that distributes near real-time tactical information, generally integrated into radio sets, and coordinated by a Network Control Station. It is primarily used for data distribution, position location, and reporting. It enhances command and control of tactical units by providing commanders with the location of friendly units. It was first fielded by the US Army in 1987.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11267566", "url": "https://en.wikipedia.org/wiki/Evil%20Islands%3A%20Curse%20of%20the%20Lost%20Soul", "title": "Evil Islands: Curse of the Lost Soul", "text": "Evil Islands: Curse of the Lost Soul, or simply Evil Islands (), is a PC game by Nival Interactive that combines role-playing, stealth, and real-time strategy. Evil Islands introduces a new interface and full 3D graphics.\n\nThe game was published in October 2000 in Russia and CIS (Russian version) and a few months later in English.\n\nGameplay \nThe game has a mix of real-time strategy and roleplaying elements such as leveling up, acquiring new abilities, learning spells, and buying new weapons and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11275183", "url": "https://en.wikipedia.org/wiki/Hannu-Pekka%20H%C3%A4nninen", "title": "Hannu-Pekka H\u00e4nninen", "text": "Hannu-Pekka \"Hoopi\" H\u00e4nninen (born 27 July 1952) is a Finnish sports commentator who works for Finland's National Broadcasting Company Yle. He works both as the real-time play-by-play commentator and the sporstreader in Yle's sports news Urheiluruutu. His career as a sportscaster started in 1977. Before that he had a short spell in entertainment staff in radio. He was born in Helsinki, and trained as a telecommunications engineer.\n\nH\u00e4nninen is known as a multi-skilled sportscaster who can commen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11300654", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20III%3A%20The%20Asian%20Dynasties", "title": "Age of Empires III: The Asian Dynasties", "text": "Age of Empires III: The Asian Dynasties is the second expansion pack for the real-time strategy video game Age of Empires III developed through a collaboration between Ensemble Studios and Big Huge Games, and published by Microsoft Game Studios. The Mac version was ported over, developed and published by Destineer's MacSoft. The game is the second expansion pack following The WarChiefs. The game introduces three new civilizations; China, Japan, and India. It also introduced minor people, campaig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11397063", "url": "https://en.wikipedia.org/wiki/Resurs-DK%20No.1", "title": "Resurs-DK No.1", "text": "Resurs-DK No.1, also called Resurs-DK1, is a commercial Earth observation satellite capable of transmitting high-resolution imagery (up to 0.9 m) to the ground stations as it passes overhead. The spacecraft is operated by NTs OMZ, the Russian Research Center for Earth Operative Monitoring.\n\nThe satellite is designed for multi-spectral remote sensing of the Earth's surface aimed at acquiring high-quality visible images in near real-time as well as on-line data delivery via radio link and providin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11416992", "url": "https://en.wikipedia.org/wiki/Theatre%20of%20War%20%28video%20game%29", "title": "Theatre of War (video game)", "text": "Theatre of War is a real-time tactical strategy game centering on the decisive battles in the European Theatre of World War II 1939\u20131945. The game allows the player to control armed forces of France, Germany, Poland, The USSR, United Kingdom or the United States (combined in actual campaign) in over 40 missions. Players will command a special task force composed of different kinds of units, including tanks, APCs, field guns, mortars, various infantry regiments and will also have an opportunity t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11462041", "url": "https://en.wikipedia.org/wiki/Evolution%3A%20The%20Game%20of%20Intelligent%20Life", "title": "Evolution: The Game of Intelligent Life", "text": "Evolution: The Game of Intelligent Life, also known as Genetic Evolution: The Race for Intelligent Life in Germany and Evolu\u00e7\u00e3o: O Jogo da Vida in Brazil, is a life simulation and real-time strategy computer game that allows players to experience, guide, and control evolution from an isometric view on either historical earth or on randomly generated worlds while racing against computer opponents to reach the top of the evolution chain, and gradually evolving the player's animals to reach the \"gr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11493480", "url": "https://en.wikipedia.org/wiki/Real%20Time%20AudioSuite", "title": "Real Time AudioSuite", "text": "Real-Time AudioSuite (RTAS) is a format of audio plug-in developed by Digidesign, currently Avid Technology for their Pro Tools LE and Pro Tools M-Powered systems, although they can be run on Pro Tools HD and Pro Tools TDM systems. RTAS plug-ins use the processing power of the host computer rather than DSP cards used in the Pro Tools HD systems. As the name suggests, the plug-in architecture is designed to be run in real-time, mimicking hardware inserts on traditional mixing console. This is in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11495154", "url": "https://en.wikipedia.org/wiki/Flight%20traffic%20mapping", "title": "Flight traffic mapping", "text": "Flight Traffic Mapping uses animation to depict flight traffic. The mapping of flights in real-time is based on a sophisticated air traffic control system that was developed for North America. The air traffic control system is a complex combination of electronics and people that helps guide planes from departure to destination. In 1991, data on the location of aircraft was made available by the Federal Aviation Administration to the airline industry. The National Business Aviation Association (N", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11500523", "url": "https://en.wikipedia.org/wiki/Battle%20Realms%3A%20Winter%20of%20the%20Wolf", "title": "Battle Realms: Winter of the Wolf", "text": "Battle Realms: Winter of the Wolf is an expansion pack for the real-time strategy video game Battle Realms, developed by Liquid Entertainment and co-published by Ubisoft and Crave Entertainment. The game was announced on July 7, 2002, and released on November 5, 2002 in North America.\n\nSynopsis \n\nThe martial arts-themed RTS takes place seven years prior to the events in the first game.\n\nThe story begins with Grayback, the last heir to the Wolf clan's throne, explaining that long ago that life wa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11508820", "url": "https://en.wikipedia.org/wiki/Mirror%20driver", "title": "Mirror driver", "text": "A mirror driver is a display driver for a virtual device that mirrors the drawing operations of one or more additional physical display devices.\n\nWhen video mirroring is active, each time the system draws to the primary video device at a location inside the mirrored area, a copy of the draw operation is executed on the mirrored video device in real-time.\n\nWindows' mirror drivers were first introduced in 1998 with the Windows 2000 display driver model, which was renamed later to XPDM. In 2006, fo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11535533", "url": "https://en.wikipedia.org/wiki/DXR", "title": "DXR", "text": "DXR may refer to:\n\n DXR, a class of locomotives in New Zealand\n Danbury Municipal Airport (IATA code), Danbury, Connecticut\n Digital X-ray radiogrammetry, a method for measuring bone mineral density\n Doxorubicin, an anthracycline antibiotic used in cancer chemotherapy\n DXP reductoisomerase, an enzyme\n DirectX Raytracing, a computer graphics interface for real-time raytracing", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11593576", "url": "https://en.wikipedia.org/wiki/Play65", "title": "Play65", "text": "Play65 is an online backgammon operator established in 2004 by an Israeli-based company, SkillEmpire, that hosts real-time backgammon games and tournaments. With its client software available in 21 languages, including English, Arabic, Chinese, Danish, Dutch, etc. Play65 has more than 5,000,000 registered players, making it one of the biggest backgammon communities online. Play65 is licensed by the Alderney Gambling Control Commission (AGCC).\n\nThis site ceased operation in September 2012.\n\nBac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11634809", "url": "https://en.wikipedia.org/wiki/WorldShift", "title": "WorldShift", "text": "WorldShift is a science fiction real-time strategy video game developed by Black Sea Studios and released in 2008.\n\nPlot \nIn the 21st century, a mysterious object lands on Earth ending all known civilization. WorldShift is set thousands of years after those events, when the human civilization is no more than just a fading myth. The remains of the mysterious object, known as Shard Zero, are still spreading its Plague and reshaping the Earth. The human race has developed a new culture and is now l", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11645956", "url": "https://en.wikipedia.org/wiki/Big%20Brother%20Thailand", "title": "Big Brother Thailand", "text": "Big Brother Thailand is the Thai version of the Big Brother reality television show based on the Dutch television series of the same name originally created by John de Mol in 1997. The show was broadcast on iTV and TrueVisions channel 20. \n\nThai TV station iTV has purchased the rights to broadcast Big Brother. First aired on 2 April 2005, by Kantana Group Ltd. (PCL) and Saranyu Vonkarjun host the broadcast of the NBC TV in real-time, 24 hours and highlights. \n\nThe show follows a group of Housema", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11648893", "url": "https://en.wikipedia.org/wiki/Treasure%20Planet%3A%20Battle%20at%20Procyon", "title": "Treasure Planet: Battle at Procyon", "text": "Treasure Planet: Battle at Procyon is a real-time strategy video game, part of Disney's Action Game strand, which includes epic 3D ship battles. The game takes place five years after the events of the film, Treasure Planet. The single-player campaign details the story of Jim Hawkins ascending the ranks as a naval officer, and an additional skirmish mode includes several historical and open-map skirmishes.\n\nGame modes\n\nCampaign\nFive years after the events of Treasure Planet, Jim Hawkins graduates", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11652934", "url": "https://en.wikipedia.org/wiki/Cytron%20Masters", "title": "Cytron Masters", "text": "Cytron Masters is a computer game by Dan Bunten released for the Apple II and Atari 8-bit family in July or August 1982. Developed by Ozark Softscape and released by Strategic Simulations, Cytron Masters is one of the earliest computer games that can be considered a real-time strategy game, or a real-time tactics predecessor to the genre, requiring the players to build up their forces in order to win.\n\nGameplay\nIn the game each player takes the role of the commander, represented on-screen in Com", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11700686", "url": "https://en.wikipedia.org/wiki/Gubble", "title": "Gubble", "text": "Gubble is a Microsoft Windows and PlayStation game developed by Actual Entertainment (Eric Ginner, Mark Robichek and Franz Lanzinger). The non-violent gameplay was a key aspect mentioned in the game's promotional material. The game has a soundtrack of instrumental songs composed by Seppo Hurme (who also goes by Fleshbrain).\n\nMost of the gameplay requires the player to solve a series of real-time puzzles in which they use tools, such as a hammer or screwdriver, which the main character, Gubble (a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11709317", "url": "https://en.wikipedia.org/wiki/BioWeb", "title": "BioWeb", "text": "The BioWeb is the connotation for a network of web-enabled biological devices (e.g. trees, plants, and flowers) which extends an internet of things to the Internet of Living Things of natural sensory devices. The BioWeb devices give insights to real-time ecological data and feedback to changes in the environment. The biodiversity of today is one giant ecological mesh network of information exchange, and a resource humanity should be able to access for a better understanding of the state of our g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11749248", "url": "https://en.wikipedia.org/wiki/Warlords%20Battlecry%20III", "title": "Warlords Battlecry III", "text": "Warlords Battlecry III is a real-time strategy game developed by Infinite Interactive and published in 2004. It is the third installment in the Warlords Battlecry series and the sequel to Warlords Battlecry II.\n\nGameplay\nWhile Warlords Battlecry III is primarily a real-time strategy game, it has some elements of role-playing video game in that players can complete optional quests, as well as create a customized Hero character that can level up from battle to battle and equip unique and powerful ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11804670", "url": "https://en.wikipedia.org/wiki/D37D", "title": "D37D", "text": "The D37D Minuteman III flight computer was initially supplied with the LGM-30G missile, as part of the NS-20 navigation system. The NS-20 D37D flight computer is a miniaturized general purpose (serial transmission) digital computer. The new NS-50 missile guidance computer (MGC) is built around a 16-bit high-speed microprocessor chip set. They are both designed to solve real-time positional error problems under the adverse conditions encountered in airborne weapon systems. They accept and process", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11864935", "url": "https://en.wikipedia.org/wiki/Haar-like%20feature", "title": "Haar-like feature", "text": "Haar-like features are digital image features used in object recognition. They owe their name to their intuitive similarity with Haar wavelets and were used in the first real-time face detector.\n\nHistorically, working with only image intensities (i.e., the RGB pixel values at each and every pixel of image) made the task of feature calculation computationally expensive. A publication by Papageorgiou et al. discussed working with an alternate feature set based on Haar wavelets instead of the usual", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11866408", "url": "https://en.wikipedia.org/wiki/Cyclic%20executive", "title": "Cyclic executive", "text": "A cyclic executive is an alternative to a real-time operating system. It is a form of cooperative multitasking, in which there is only one task. The sole task is typically realized as an infinite loop in main(), e.g. in C.\n\nThe basic scheme is to cycle through a repeating sequence of activities, at a set frequency (AKA time-triggered cyclic executive). For example, consider the example of an embedded system designed to monitor a temperature sensor and update an LCD display. The LCD may need ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11866596", "url": "https://en.wikipedia.org/wiki/Pro%20FWD", "title": "Pro FWD", "text": "Pro FWD is a class in drag racing. The E.T. Bracket categories are no-electronics classes. Delay devices, throttle stops, air shifters, transbrakes, etc. or any device that transmits real-time, on-track data to the driver or any remote location are prohibited. All applicable NHRA rules apply based on elapsed time.\n\nE.T. Bracket classes use a .5-second, full-countdown Tree.\n\nEngine \nRestricted to one, 4-cylinder, overhead cam, production-based automotive engine. Maximum displacement 2.8 liter (17", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11904629", "url": "https://en.wikipedia.org/wiki/James%20Ready", "title": "James Ready", "text": "James \"Jim\" Ready was a businessman and technologist. His company Montavista Software did pioneering work in adapting the operating system Linux for real-time applications.\n\nReady received his BA from University of Illinois at Urbana-Champaign in 1971 and his MA from the University of California, Berkeley in 1976.\n\nReady was founder and President of Hunter & Ready beginning in 1980, which merged with CardTools in 1986 to become Ready Systems. Ready Systems merged with Microtec Research in 1993, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11905123", "url": "https://en.wikipedia.org/wiki/Lynx%20Software%20Technologies", "title": "Lynx Software Technologies", "text": "Lynx Software Technologies, Inc. (formerly LynuxWorks) is a San Jose, California software company founded in 1988. Lynx specializes in secure virtualization and open, reliable, certifiable real-time operating systems (RTOSes). Originally known as Lynx Real-Time Systems, the company changed its name to LynuxWorks in 2000 after acquiring, and merging with, ISDCorp (Integrated Software & Devices Corporation), an embedded systems company with a strong Linux background. In May 2014, the company chang", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11913995", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Red%20Alert%203", "title": "Command & Conquer: Red Alert 3", "text": "Command & Conquer: Red Alert 3 is a real-time strategy video game developed by EA Los Angeles and published by Electronic Arts. It was released in October 2008 in the United States and Europe for Microsoft Windows. An Xbox 360 version was released on November 11. In addition, Command & Conquer: Red Alert 3 \u2013 Ultimate Edition, the PlayStation 3 version which contains additional material was released on March 23, 2009, along with the OS X version by TransGaming. The game is a continuation of the R", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11933979", "url": "https://en.wikipedia.org/wiki/Chariots%20of%20War", "title": "Chariots of War", "text": "Chariots of War is an isometric 2D computer wargame, developed by Slitherine Software and Paradox Interactive, and published by Strategy First.\n\nGameplay\n\nThe strategic layer of Chariots of War is turn-based, though unlike Civilization, the focus is almost entirely on real-time tactical combat. The game is similar to Slitherine's earlier wargame Legion, and uses the same graphics engine.\n\nThere are 58 different civilizations to play, all divided into the following ethnic groups:\n\n Assyrian\n Bedo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11963278", "url": "https://en.wikipedia.org/wiki/Army%20Men%20%28video%20game%29", "title": "Army Men (video game)", "text": "Army Men is a real-time tactics video game developed and published by The 3DO Company for Microsoft Windows and Game Boy Color.\n\nPlot\n\nAt the beginning of this game Sarge is tasked with a simple recon mission on the front line - locate some documents - that takes place in 3 regions: Desert, Alpine and Bayou. At the end of this game, Sarge finds a strange portal that leads to the next dimension - the Real World - and the next game. Regarded as a classic by fans, this is one of the few games to ac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11978989", "url": "https://en.wikipedia.org/wiki/Telerate", "title": "Telerate", "text": "Telerate was a US company providing financial data to market participants, specialising in commercial paper and bond prices. It was a pioneer in the electronic distribution of real-time market information in the 1970s. With its main innovation being to extend the technology that was used to obtain live stock prices, via Telequote, Quotron or Stockmaster to other sectors of the financial industry, such as corporate debt, currencies, interest rates and commodities.\n\nThe company was founded by N", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11993394", "url": "https://en.wikipedia.org/wiki/War%20Wound", "title": "War Wound", "text": "War Wound is an isometric action game by British developer Apothecary Studios where the player takes control of a special forces unit during a war in the near future. The game features real-time game play where each mission sees the player take command of a four-man squad who must battle through a series of terrains using various skills.\n\nGameplay\n\nThe players controls a four-man squad in a similar way to classic games like Syndicate and Cannon Fodder or more modern games like Commandos 3. Speci", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "11993809", "url": "https://en.wikipedia.org/wiki/Supreme%20Commander%3A%20Forged%20Alliance", "title": "Supreme Commander: Forged Alliance", "text": "Supreme Commander: Forged Alliance is a stand-alone real-time strategy video game released in November 2007 as the expansion to Supreme Commander . The second title in the franchise, it was similarly developed by Gas Powered Games and published by THQ.\n\nAs a standalone expansion, it is possible to play Forged Alliance without owning the original game, although without a valid CD key for Supreme Commander, online play is limited to the new faction, the Seraphim. Besides the new playable faction, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12018606", "url": "https://en.wikipedia.org/wiki/Synthetic%20Environment%20for%20Analysis%20and%20Simulations", "title": "Synthetic Environment for Analysis and Simulations", "text": "Purdue University's Synthetic Environment for Analysis and Simulations, or SEAS, is currently being used by Homeland Security and the US Defense Department to simulate crises on the US mainland. SEAS \"enables researchers and organizations to try out their models or techniques in a publicly known, realistically detailed environment.\" It \"is now capable of running real-time simulations for up to 62 nations, including Iraq, Afghanistan, and China. The simulations gobble up breaking news, census da", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12029656", "url": "https://en.wikipedia.org/wiki/Eco%20Creatures%3A%20Save%20the%20Forest", "title": "Eco Creatures: Save the Forest", "text": "Eco Creatures: Save the Forest, known as in Japan and as Ecolis: Save the Forest in Europe, is a real-time strategy video game for the Nintendo DS video game console. It was co-developed by LightWeight and Headlock Corporation and was released in Japan on August 23, 2007 by Interchannel; in North America on March 4, 2008 by Majesco Entertainment; and in Europe on June 13, 2008 by Rising Star Games. Eco Creatures is sponsored by the World Wide Fund for Nature.\n\nSynopsis\nThe residents of the Mana", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12109800", "url": "https://en.wikipedia.org/wiki/CoWord", "title": "CoWord", "text": "CoWord is a software add-on to Microsoft Word to enable multiple users to edit the same document over the Internet with MS Word. It is a part of the CoOffice suite of collaboration tools for Microsoft Office.\n\nCoWord can be considered as a collaborative real-time editor, with the editor being MS Word (which is not distributed with CoWord). To use CoWord, users need to supply their own copies of MS Word.\n\nAs of August 2010, CoWord has become CodoxWord, released by CodoxWare.\n\nTechnology \nOne of t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12125213", "url": "https://en.wikipedia.org/wiki/SAviOr", "title": "SAviOr", "text": "Ma Jae-yoon (), known by the pseudonym sAviOr (previously IPXZerg), and dubbed \"The Maestro\", is a former professional South Korean e-sports gamer of the real-time strategy game StarCraft. He played the Zerg race and was one of the most successful and popular players of all time. Savior was one of several players implicated in the 2010 match fixing scandal, and as a result he was banned from KeSPA-run competition for life. After retiring as a pro-gamer, sAviOr began streaming on AfreecaTV, but A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12151497", "url": "https://en.wikipedia.org/wiki/TacSat-3", "title": "TacSat-3", "text": "TacSat-3 is the second in a series of U.S. military experimental technology and communication satellites. It was assembled in an Air Force Research Laboratory (AFRL) Space Vehicles Directorate facility at Kirtland Air Force Base, New Mexico. The TacSat satellites are all designed to demonstrate the ability to provide real-time data collected from space to combatant commanders in the field.\n\nTacSat-3 includes three distinct payloads:\n\n the Advanced Responsive Tactically Effective Military Imaging", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12242943", "url": "https://en.wikipedia.org/wiki/Top%20Spin%203", "title": "Top Spin 3", "text": "Top Spin 3 is the third title in the Top Spin series of video games. The game was developed by PAM Development and published by 2K Sports. New game elements include real-time weather effects, more options of professional tennis players, an in-depth character creation tool and new unparalleled gameplay mechanics. It also features impressive advancements in an audio/visual sense with improved Dolby Digital surround sound and \"Evolutionary\" visuals. Top Spin 4 was released as a sequel about three y", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12261813", "url": "https://en.wikipedia.org/wiki/CASA%20FITS", "title": "CASA FITS", "text": "CASA FITS (Fully Integrated Tactical System) is a system that is used on board aircraft from different coast guard services for tactical marine reconnaissance. FITS is predestined for this area of application due to its real-time display of navigation data. FITS was developed by the Spanish branch of the multinational Military Transport Aircraft Division of EADS.\n\nAreas of application\n\nIn addition to tactical marine reconnaissance, FITS is deployed over a wide range of other operational areas: I", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12297994", "url": "https://en.wikipedia.org/wiki/Segger%20Microcontroller%20Systems", "title": "Segger Microcontroller Systems", "text": "Segger Microcontroller, founded in 1992, is a private company involved in the embedded systems industry. It provides products used to develop and manufacture four categories of embedded systems: real-time operating systems (RTOS) and software libraries (middleware), debugging and trace probes, programming tools (integrated development environment (IDE), compiler, linker), and in-system programmers (Flasher line of products). The company is headquartered in Monheim am Rhein, Germany, with remote ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12308997", "url": "https://en.wikipedia.org/wiki/Autonomous%20detection%20system", "title": "Autonomous detection system", "text": "Autonomous Detection Systems (ADS), also called biohazard detection systems, or autonomous pathogen detection systems are designed to monitor air in an environment and to detect the presence of airborne chemicals, toxins, pathogens, or other biological agents capable of causing human illness or death. These systems monitor the air continuously and send real-time alerts to appropriate authorities in the event of an act of bioterrorism or biological warfare.\n\nHistory \nIn the United States, an ADS ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12310005", "url": "https://en.wikipedia.org/wiki/Pro%20Cycling%20Manager", "title": "Pro Cycling Manager", "text": "Pro Cycling Manager is a series of cycling management and real-time simulation games created by Cyanide. The game was first launched in 2001 as Cycling Manager, but the series took on the Pro label in June 2005. A new version is released every year to coincide with the Tour de France. The game is offered in a variety of languages (including French, English, German, Spanish, Italian, Dutch, Danish, Norwegian, Portuguese) although the actual language configuration depends on the local publisher. P", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12332869", "url": "https://en.wikipedia.org/wiki/Guilty%20Gear%202%3A%20Overture", "title": "Guilty Gear 2: Overture", "text": "is a video game in the Guilty Gear series made by Arc System Works for the Xbox 360; unlike the previous games, however, Overture is not a fighting game. The fourth main installment in the series, Guilty Gear 2 makes use of 3D graphics, unlike its predecessors. The Xbox Live demo of Guilty Gear 2 describes the game as, \"a mix between the action and real-time strategy genre.\" A playable demo featuring three modes of gameplay was released in Japan via Xbox Live on 30 October 2007. A North American", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12347158", "url": "https://en.wikipedia.org/wiki/BCET", "title": "BCET", "text": "BCET may refer to:\n\nBest-case execution time, a specific design parameter in real-time computing\nBCET Gurdaspur, an engineering college in India", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12367535", "url": "https://en.wikipedia.org/wiki/Wiredset", "title": "Wiredset", "text": "Wiredset LLC is a real-time digital agency and technology incubator specializing in online engagement marketing for Fortune 500 brands, networks, studios, publishing companies, and consumer product groups. Mark Ghuneim, CEO and co-founder of Wiredset, launched the digital agency in 2004. Wiredset is headquartered in New York City's Meatpacking District.\n\nTrendrr\nIn 2006, Wiredset developed Trendrr (United States Patent no. 8,271,429, issued on Sept. 18, 2012), a proprietary business intellige", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12414832", "url": "https://en.wikipedia.org/wiki/Completely%20Fair%20Scheduler", "title": "Completely Fair Scheduler", "text": "The Completely Fair Scheduler (CFS) is a process scheduler that was merged into the 2.6.23 (October 2007) release of the Linux kernel and is the default scheduler of the tasks of the SCHED_NORMAL class (i.e., tasks that have no real-time execution constraints). It handles CPU resource allocation for executing processes, and aims to maximize overall CPU utilization while also maximizing interactive performance.\n\nIn contrast to the previous O(1) scheduler used in older Linux 2.6 kernels, which mai", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12417693", "url": "https://en.wikipedia.org/wiki/Concerto%20Gate", "title": "Concerto Gate", "text": "is a massively multiplayer online role-playing game developed by Ponsbic and Square Enix. The game was released in Japan in 2007, and a planned North American release was cancelled after a beta release in July 2008.\n\nGameplay\nThe battle style is a mixture of a turn-based and real-time, similar to the Final Fantasy series' ATB system, and enemies are found as random encounters. Combat takes place on a ten square grid, choosing a combination of physical attacks and ranged spells.\n\nThe game allows ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12452945", "url": "https://en.wikipedia.org/wiki/Medium%20ground%20finch", "title": "Medium ground finch", "text": "The medium ground finch (Geospiza fortis) is a species of bird in the family Thraupidae. It is endemic to the Galapagos Islands. Its primary natural habitat is tropical shrubland. One of Darwin's finches, the species was the first which scientists have observed evolving in real-time.\n\nThe population of medium ground finches has been experiencing inbreeding depression due to small population numbers. Inbreeding depression occurs when there is a decrease in fitness due to individuals mating with g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12460799", "url": "https://en.wikipedia.org/wiki/Fort%20McMoney", "title": "Fort McMoney", "text": "Fort McMoney is a 2013 web documentary and strategy video game about Fort McMurray, Alberta, Canada and Athabasca oil sands development, directed by . The documentary uses interactive game elements to allow users to decide the city's future and attempt to responsibly develop the world's largest oil sands reserves.\n\nGame play\nThe game consists of three episodes, each played in real-time over a four-week period. Starting November 25, users will decide on the virtual future of the city, while explo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12479744", "url": "https://en.wikipedia.org/wiki/Symobi", "title": "Symobi", "text": "Symobi (System for mobile applications) is a proprietary modern and mobile real-time operating system. It was and is developed by the German company Miray Software, since 2002 partly in cooperation with the research team of Prof. Dr. Uwe Baumgarten at the Technical University of Munich. The graphical operating system is designed for the area of embedded and mobile systems. It is also often used on PCs for end users and in the field of industry.\n\nDesign\n\nThe basis of Symobi is the message-orient", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12568215", "url": "https://en.wikipedia.org/wiki/National%20market%20system%20plan", "title": "National market system plan", "text": "A national market system plan (or NMS plan) is a structured method of transmitting securities transactions in real-time. In the United States, national market systems are governed by section 11A of the Securities Exchange Act of 1934.\n\nIn addition to processing the transactions themselves, these plans also emit the price, volume data, and regulatory auditing information for these transactions. Information on each securities trade is sent to a central network at the Securities Industry Automati", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12568283", "url": "https://en.wikipedia.org/wiki/Consolidated%20Tape%20Association", "title": "Consolidated Tape Association", "text": "The Consolidated Tape Association (CTA) oversees the dissemination of real-time trade and quote information (market data) in New York Stock Exchange (NYSE) and American Stock Exchange (AMEX) listed securities (stocks and bonds). It is currently chaired by Emily Kasparov of the Chicago Stock Exchange, the first woman and the youngest chair elected to the position.\n\nCTA manages two Plans to govern the collection, processing and dissemination of trade and quote data: the Consolidated Tape Plan, wh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12574991", "url": "https://en.wikipedia.org/wiki/LDS-1%20%28Line%20Drawing%20System-1%29", "title": "LDS-1 (Line Drawing System-1)", "text": "LDS-1 (Line Drawing System-1) was a calligraphic (vector, rather than raster) display processor and display device created by Evans & Sutherland. This model was known as the first graphics device with a graphics processing unit.\n\nFeatures\n\nIt was controlled by a variety of host computers. Straight lines were smoothly rendered in real-time animation. General principles of operation were similar to the systems used today: 4x4 transformation matrices, 1x4 vertices. Possible uses included flight", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12578928", "url": "https://en.wikipedia.org/wiki/DSPnano%20RTOS", "title": "DSPnano RTOS", "text": "DSPnano is an embedded real-time operating system (RTOS) which is compatible with POSIX and embedded Linux. It was first created in 1996 and was one of the first pthread based real-time kernels. Its entire focus was on tiny real-time digital signal processing systems and has been optimized to deliver high performance DSP on embedded digital signal controllers and digital signal processors . Its parent was the Unison Operating System.\n\nToday DSPnano claims full POSIX capabilities for threads, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12586369", "url": "https://en.wikipedia.org/wiki/Sharkrunners", "title": "Sharkrunners", "text": "Sharkrunners season 1 was a game created by area/code for the Discovery Channel as part of the channel's 20th year of Shark Week. The game used satellite tracking of six great white sharks off the coast of California. Users were able to take control of research vessels to gather, in real-time, information on the sharks, while trying to earn funding.\n\nSharkrunners season 2 used satellite tracking of ten tiger sharks and ten grey reef sharks off the northern coast of Queensland, Australia.\n\nSharkr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12595069", "url": "https://en.wikipedia.org/wiki/Triad%20%28environmental%20science%29", "title": "Triad (environmental science)", "text": "The Triad is an approach by the United States Environmental Protection Agency to decision-making for hazardous-waste site cleanup. During the late 1990s, technology advocates from the environmental sector in the United States developed the approach by combining innovations in management and technology with ideas from hazardous-waste site cleanup experience.\n\nTheir goal was to form a framework for real-time environmental sensors and tools, to improve decision-making at contaminated sites. This r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12626381", "url": "https://en.wikipedia.org/wiki/World%20Forge", "title": "World Forge", "text": "World Forge was a Russian computer game developer located in Voronezh, Russia. The company was founded late 2004 and it employed about 50 people in 2008.\n\nReleased games\nAncient Wars: Sparta (2007, real-time strategy)\nFate of Hellas (2008, real-time strategy; released in some territories as Great War Nations: The Spartans)\nThe Golden Horde (2008, real-time strategy; released in some territories as Great War Nations: The Mongols)\nSparta 2: Alexander the Great (2009, real-time strategy; released i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12634776", "url": "https://en.wikipedia.org/wiki/Ancient%20Wars%3A%20Sparta", "title": "Ancient Wars: Sparta", "text": "Ancient Wars: Sparta () is a real-time strategy video game for Microsoft Windows. Developed by World Forge and published by Playlogic, it was released in Russia in December 2006, in Europe and North America in April 2007, and in Australia in October 2007.\n\nSet in the Eastern Mediterranean during the years 485-479 BC, the game features three playable races\u2014Egyptians, Persians, and Spartans\u2014each of whom has their own campaign, featuring fictional depictions of historical figures such as Xerxes I,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12636506", "url": "https://en.wikipedia.org/wiki/Baldies", "title": "Baldies", "text": "Baldies is a real-time strategy video game developed by Creative Edge Software and originally published by Atari Corporation for the Atari Jaguar CD in North America and Europe on December 1995. In the game, players build and manage a community of the titular short and plump bald characters with the ultimate goal of conquering the world by defeating similarly-looking short little hairy people known as the \"Hairies\". Its gameplay mainly consists of strategy taking place during real-time, combinin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12678578", "url": "https://en.wikipedia.org/wiki/Morning%20Call%20%28TV%20program%29", "title": "Morning Call (TV program)", "text": "Morning Call is an American TV business program that aired on CNBC, from 10AM to 12 noon ET weekdays. The show premiered as Midday Call on February 4, 2002, offered a clear focus on real-time market coverage at the heart of the trading day. Previous programs shown in the same time slot were The Money Wheel with Ted David and Martha MacCallum (who later joined Fox News Channel) and Market Watch. The program last aired August 8, 2007.\n\nAbout the program\nOn February 3, 2006, Ted David, who had co-a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12686218", "url": "https://en.wikipedia.org/wiki/Lord%20Monarch", "title": "Lord Monarch", "text": "is a real-time strategy war game by Nihon Falcom. The game is considered to be part of the Dragon Slayer series. It was originally released in 1991 for the NEC PC-9801, ported 1992 to the Super Famicom and 1994 to the Sega Mega Drive. In 1997, Lord Monarch was remade for Windows as Lord Monarch Online and released for free in both Japanese, and for the first time, English. Lord Monarch is one of the 42 titles included in the Japanese version of the Mega Drive Mini.\n\nGameplay\n\nSuper Famicom versi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12689198", "url": "https://en.wikipedia.org/wiki/Force%2021%20%28video%20game%29", "title": "Force 21 (video game)", "text": "Force 21 is a real-time strategy game made by Red Storm Entertainment.\n\nPlot summary\nThe game features a storyline which has US forces fighting PRC forces in the year 2015.\n\nDevelopment and release\nIt was released in 1999 for Microsoft Windows, and in December 2000 for Game Boy Color. General Franks (who later collaborated with Tom Clancy on a book) consulted for this game.\n\nReception\n\nThe PC version received mixed reviews according to the review aggregation website GameRankings. It sold 9,168 c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12693385", "url": "https://en.wikipedia.org/wiki/EBird", "title": "EBird", "text": "eBird is an online database of bird observations providing scientists, researchers and amateur naturalists with real-time data about bird distribution and abundance. Originally restricted to sightings from the Western Hemisphere, the project expanded to include New Zealand in 2008, and again expanded to cover the whole world in June 2010. eBird has been described as an ambitious example of enlisting amateurs to gather data on biodiversity for use in science.\n\neBird is an example of crowdsourcing", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12765472", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%203%3A%20Kane%27s%20Wrath", "title": "Command & Conquer 3: Kane's Wrath", "text": "Command & Conquer 3: Kane's Wrath is an expansion pack for the 2007 real-time strategy video game Command & Conquer 3: Tiberium Wars. Developed by EA Los Angeles studios and BreakAway Games studios, it was released on March 24, 2008 in the United States and on March 28, 2008 in Europe by publisher Electronic Arts, and was also released on June 24 for the Xbox 360.\n\nThe storyline campaign is set between the end of Tiberian Sun and the beginning of Tiberium Wars. It revolves around the seemingly i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12794458", "url": "https://en.wikipedia.org/wiki/CQG", "title": "CQG", "text": "CQG is a US-based company creating financial software for market technical analysis, charting, and electronic trading. CQG specializes mostly in the futures market but provides both real-time and historical data from more than 100 exchanges from North and South America, Europe, Asia and Australia, including CBOE Futures Exchange (http:cfe.cboe.com) CME, CBOT, NYSE, NYMEX, LIFFE, LSE, London Metal Exchange, SGX, SFE, Euronext, ICE (ex IPE, NYBOT, Winnipeg), Osaka Securities Exchange, Tokyo Commod", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12825821", "url": "https://en.wikipedia.org/wiki/Power%20system%20simulation", "title": "Power system simulation", "text": "Electrical power system simulation involves power system modeling and network simulation in order to analyze electrical power systems using design/offline or real-time data. Power system simulation software's are a class of computer simulation programs that focus on the operation of electrical power systems. These types of computer programs are used in a wide range of planning and operational situations for electric power systems.\n\nApplications of power system simulation include: long-term gener", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12846349", "url": "https://en.wikipedia.org/wiki/SharedX", "title": "SharedX", "text": "SharedX is a set of extensions to the X Window System that was developed at HP in the mid to late 1980s. It enables X servers to \"share\" individual X windows or an entire desktop, thus allowing users at multiple workstations to use standard applications to collaborate in real-time in an X Window System network environment, similar to desktop sharing, but for only a single window.\n\nSystem\n\nA decade later, this capability would be termed \"desktop sharing\", with VNC being a major player. One differ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12852326", "url": "https://en.wikipedia.org/wiki/Europa%20Universalis%3A%20Crown%20of%20the%20North", "title": "Europa Universalis: Crown of the North", "text": "Europa Universalis: Crown of the North (original title: Svea Rike III) is a real-time grand strategy video game developed by Paradox Interactive and published by Levande B\u00f6cker. It is the sequel to Svea Rike and Svea Rike II, and had its own sequel, Two Thrones. The Svea Rike series is the predecessor to Europa Universalis.\n\nThe plot takes place from the year 1275 in Scandinavia during a period of political disturbance. All events that take place in the game, with the exception of player-initiat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12887061", "url": "https://en.wikipedia.org/wiki/Empire%3A%20Total%20War", "title": "Empire: Total War", "text": "Empire: Total War is a turn-based strategy and real-time tactics video game developed by Creative Assembly and published by Sega. The fifth installment in the Total War series, the game was released in 2009. The game, which focuses on the early modern period of the 18th century, was announced at the Leipzig Games Convention in August 2007. The macOS version of the game was released by Feral Interactive on 10 June 2014. The Linux version was released, also by Feral Interactive, on 8 December 2014", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12892255", "url": "https://en.wikipedia.org/wiki/FTSE%20Bursa%20Malaysia%20Index", "title": "FTSE Bursa Malaysia Index", "text": "The FTSE Bursa Malaysia Index is a comprehensive range of real-time indices, which cover all eligible companies listed on the Bursa Malaysia Main Board which was introduced to Bursa Malaysia's investors in 2006.\n\nThe indices are to measure the performance of the major capital segments of the Malaysian market,\n\nHistory \nThe FTSE Bursa Malaysia Index was launched on 26 June 2006 except for FTSE Bursa Malaysia Hijrah Shariah Index and FTSE Bursa Malaysia EMAS Shariah Index which were launched on 22", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "12928088", "url": "https://en.wikipedia.org/wiki/Z%3A%20Steel%20Soldiers", "title": "Z: Steel Soldiers", "text": "Z: Steel Soldiers (originally released for Microsoft Windows simply as Steel Soldiers in North America) is a real-time strategy game released by the Bitmap Brothers in 2001 for the Windows platform, and later by Kavcom Limited for the Android in 2014 and iOS in 2015. It is the sequel of their earlier game Z, and follows the same futuristic military science fiction storyline and battlefield gameplay. The graphics are enhanced from 2D to 3D.\n\nAs a result of a breach in peace negotiations, players ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13000371", "url": "https://en.wikipedia.org/wiki/Data%20feed", "title": "Data feed", "text": "Data feed is a mechanism for users to receive updated data from data sources. It is commonly used by real-time applications in point-to-point settings as well as on the World Wide Web. The latter is also called web feed. News feed is a popular form of web feed. RSS feed makes dissemination of blogs easy. Product feeds play increasingly important role in e-commerce and internet marketing, as well as news distribution, financial markets, and cybersecurity. Data feeds usually require structured dat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13017560", "url": "https://en.wikipedia.org/wiki/Modeling%20and%20Analysis%20of%20Real%20Time%20and%20Embedded%20systems", "title": "Modeling and Analysis of Real Time and Embedded systems", "text": "Modeling and Analysis of Real Time and Embedded systems also known as MARTE is the OMG standard for modeling real-time and embedded applications with UML2.\n\nDescription \nThe UML modeling language has been extended by the OMG consortium to support model-driven development of real-time and embedded application. This extension has been defined via a UML2 profile called MARTE (Modeling and Analysis of Real-Time and Embedded systems). It consists mainly of four parts:\n a core framework defining the b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13025582", "url": "https://en.wikipedia.org/wiki/Age%20of%20Kings", "title": "Age of Kings", "text": "Age of Kings may refer to:\n Age of Empires II: The Age of Kings, 1999 real-time strategy video game\n Age of Empires: The Age of Kings, 2006 turn-based strategy video game\n An Age of Kings, 1960 BBC TV series of Shakespeare's English history plays", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13057308", "url": "https://en.wikipedia.org/wiki/Warlords%20Battlecry", "title": "Warlords Battlecry", "text": "Warlords Battlecry, sometimes mislabeled as Warlords 3: Battlecry, is a real-time strategy video game released in 2000 for Microsoft Windows. It was the first of new series of RTS games set in Steve Fawkner's Warlords franchise.\n\nGameplay\nThe game introduced a hero-building system, combining real time strategy elements with roleplaying elements (hero development, stats and skills). This makes the series the first to be called \"roleplaying strategy\", a term coined by its creator, Steve Fawkner. T", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13108745", "url": "https://en.wikipedia.org/wiki/Races%20of%20StarCraft", "title": "Races of StarCraft", "text": "Blizzard Entertainment's real-time strategy game series StarCraft revolves around interstellar affairs in a distant sector of the galaxy, with three species and multiple factions all vying for supremacy in the sector. The playable species of StarCraft include the Terrans, humans exiled from Earth who excel at adapting to any situation; the Zerg, a race of insectoid aliens obsessed with assimilating other races in pursuit of genetic perfection; and the Protoss, a technologically advanced humanoid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13116957", "url": "https://en.wikipedia.org/wiki/East%20India%20Company%20%28video%20game%29", "title": "East India Company (video game)", "text": "East India Company is a real-time strategy video game developed by Finnish company Nitro Games and published by Paradox Interactive. It was released on July 31, 2009 in North America and on August 14, 2009 in Europe.\n\nThe game is based on the history of European conquest of South Asia and Southeast Asia by means of their East India Companies. In the game, the player takes on the role of the Governor Director of the East Indies. The task is to conquer India and establish a trade empire to rule ov", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13137425", "url": "https://en.wikipedia.org/wiki/TOURCast", "title": "TOURCast", "text": "TOURCast is an interactive internet application that allows users to track the action of golf players playing on the PGA Tour in real-time. It was built by iX.co and Virtual Eye, a division of Animation Research Ltd (ARL), in accordance with the PGA TOUR Digital Product Team. TOURCast lets viewers follow players\u2019 progress around a golf course, by exploring the graphically traced results of each shot by leveraging ShotLink data. ShotLink, the PGA Tour's data gathering information system is used t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13139172", "url": "https://en.wikipedia.org/wiki/Tribal%20Trouble", "title": "Tribal Trouble", "text": "Tribal Trouble is a real-time strategy video game for PC. The game pits natives of tropical islands against invading Vikings. The game was originally developed by independent studio Oddlabs. The game was well received by the press and has won several awards. This game is recommended for ages 12 and up by the Oddie Recording studios.\n\nHistory \nThe game was originally developed by independent studio Oddlabs and released on March 31, 2005. It was released for Microsoft Windows, Mac OS X, and Linux.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13142235", "url": "https://en.wikipedia.org/wiki/Mikko%20Hannula", "title": "Mikko Hannula", "text": "Mikko Hannula is a Finnish sports commentator and journalist who works for Finland's National Broadcasting Company Yle.\n\nBiography \n\nMikko Hannula works both as a real-time play-by-play commentator and makes news flashes for radio (Urheiluradio) and television (Urheiluruutu).\n\nHannula usually he commentates alpine skiing, track and field, sport wrestling and volleyball.\n\nIn 2004 Hannula was awarded the Sports Journalist of Year in Finland. Hannula has said that he likes to use the assistance of ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13161836", "url": "https://en.wikipedia.org/wiki/Klipfolio%20dashboard", "title": "Klipfolio dashboard", "text": "Klipfolio Inc., is a Canadian software company founded in 2001 and headquartered in Ottawa, Ontario. The company initially focused on the consumer market, and later moved into the dashboard and business intelligence space. On Feb 25, 2015 they announced a series A round of $6.2 million and in 2017 they raised $12M Series B Funding.\n\nProducts \n\nKlipfolio offers an online dashboard platform for building real-time business dashboards. It allows business users to connect to many data services, autom", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13178508", "url": "https://en.wikipedia.org/wiki/Satellite%20Analysis%20Branch", "title": "Satellite Analysis Branch", "text": "The United States Satellite Analysis Branch, part of National Oceanic and Atmospheric Administration (NOAA)'s National Environmental Satellite, Data, and Information Service's Satellite Services Division, is the operational focal point for real-time imagery products within NESDIS. It is also responsible for doing Dvorak technique intensity fixes on tropical cyclones. Its roots lie in the establishment of the Meteorological Satellite Section by January 1959.\n\nIts primary mission is to \"operate n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13179802", "url": "https://en.wikipedia.org/wiki/Digital%20Molecular%20Matter", "title": "Digital Molecular Matter", "text": "Digital Molecular Matter, better known as simply DMM, is a proprietary middleware physics engine developed by Pixelux for generating realistic destruction and deformation effects.\nThe offline version can support high-resolution simulations for use in movie special effects.\nThe real-time version is designed for computer, video games, and other simulation needs by attempting to simulate physical real-world systems. Unlike traditional realtime simulation engines, which tend to be based on rigid bod", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13200168", "url": "https://en.wikipedia.org/wiki/Alterian", "title": "Alterian", "text": "Alterian is a campaign management and real-time marketing software company headquartered in Denver, CO with offices in Bristol, UK and Sydney, Australia. Alterian was founded by Mike Talbot, David Eldridge and Tim McCarthy in 1997. Initially based in Weston-Super-Mare, UK, it moved its headquarters to Bristol.\n\nTimeline\nAlterian floated on the techMARK index of the London Stock Exchange in 2000\n\nIn May 2006, Alterian acquired email marketing software vendor Dynamics Direct\n\nIn July 2008, Alteria", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13239018", "url": "https://en.wikipedia.org/wiki/Mark%20Harris%20%28programmer%29", "title": "Mark Harris (programmer)", "text": "Mark J. Harris is a Distinguished Engineer at NVIDIA and was previously the Chief Technologist for GPU Computing there. He received a B.S. from the University of Notre Dame in 1999. He received a Ph.D. in 2003 from the University of North Carolina at Chapel Hill. His dissertation and the first of his several papers on computer graphics, \"Real-Time Cloud Rendering and Simulation\", proposed a real-time algorithm approximating Rayleigh scattering to realistically render clouds using 2-dimensional ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13243320", "url": "https://en.wikipedia.org/wiki/Protostar%3A%20War%20on%20the%20Frontier", "title": "Protostar: War on the Frontier", "text": "Protostar: War on the Frontier is a 1993 science fiction video game produced by Tsunami Media that blends elements of role-playing, space exploration, space combat, and strategy. The player commands a spaceship from a first-person perspective in real-time capable of traveling to the various planets in the game world and launching an explorer vessel to traverse their surfaces. Several sentient alien races inhabit the region with whom the player interacts through friendly conversation, intense s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13329737", "url": "https://en.wikipedia.org/wiki/Warhammer%2040%2C000%3A%20Dawn%20of%20War%20%E2%80%93%20Soulstorm", "title": "Warhammer 40,000: Dawn of War \u2013 Soulstorm", "text": "Warhammer 40,000: Dawn of War\u00a0\u2013 Soulstorm is the third expansion to the real-time strategy video game Warhammer 40,000: Dawn of War, developed by Iron Lore Entertainment. Like its predecessors, Soulstorm is based on Games Workshop's tabletop wargame Warhammer 40,000, and introduces a multitude of new features to the Dawn of War series, including two new playable factions in the form of the Imperial Sisters of Battle and the Dark Eldar. It is a stand-alone game and does not need the original Dawn", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13349511", "url": "https://en.wikipedia.org/wiki/Windows%20Live%20Web%20Messenger", "title": "Windows Live Web Messenger", "text": "Windows Live Web Messenger was the browser-based version of Windows Live Messenger developed by Microsoft which allowed users to send instant messages online and in real-time with others using the Microsoft Messenger service from within a web browser. The service allowed users without administrative privileges on their computer, such as at a shared public computer, to chat with others on their Messenger contact list without having to install the Windows Live Messenger client.\n\nOn October 30, 200", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13360565", "url": "https://en.wikipedia.org/wiki/Cityspace", "title": "Cityspace", "text": "CitySpace was an internet-based virtual world launched at SIGGRAPH 1993 by educator and project director Zane Vella. CitySpace was one of the earliest online virtual 3D environments and first came to attention via mainstream news media in late 1993. CitySpace was also the first user-generated virtual world, similar to virtual worlds like Second Life, and enabled participants to contribute 3D computer graphics and digital imagery to a collaborative real-time rendered 3D virtual world in which pa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13372114", "url": "https://en.wikipedia.org/wiki/Rapid%20Attack%20Identification%20Detection%20Reporting%20System", "title": "Rapid Attack Identification Detection Reporting System", "text": "The Rapid Attack Identification Detection Reporting System, also known as RAIDRS is a ground-based space control system that provides near real-time event detection.\n\nMission\nRAIDRS will be a family of systems being designed to detect, report, identify, locate, and classify attacks against military space assets. RAIDRS will include detection sensors, information processors, and a reporting architecture. The RAIDRS system will detect and report attacks on both ground and space-based elements of o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13396703", "url": "https://en.wikipedia.org/wiki/Warrior%20of%20Rome", "title": "Warrior of Rome", "text": "Warrior of Rome, also known as , is a real-time strategy video game for the Sega Mega Drive/Genesis. The game is a fictional story about the adventures of Julius Caesar and the Roman army during his reign as general in the year 48 BCE. The game had a sequel, Warrior of Rome II.\n\nGameplay\nThe player had four maps (based in Egypt) to command their troops over. Players are given control over each unit of troops on the Section Map. The player can select six different options for each troop unit incl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13418732", "url": "https://en.wikipedia.org/wiki/State%20of%20War%20%28video%20game%29", "title": "State of War (video game)", "text": "State of War is a real-time strategy game, developed by Cypron Studios and Cinemax and published by Crystal Interactive in 2001.\nClassic versions of State of War and State of War: Warmonger were released in December 2018 on Steam.\n\nStory \nThis description is told by narrator at the beginning of the game.\n\nAfter centuries of continuous struggles, war and turmoil; humankind finally came together and founded the United Federation of Seven Continents (UFSC). It was decided that every member of the F", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13485881", "url": "https://en.wikipedia.org/wiki/Prelude%20SIEM%20%28Intrusion%20Detection%20System%29", "title": "Prelude SIEM (Intrusion Detection System)", "text": "Prelude SIEM is a Security information and event management (SIEM).\n\nIt is a tool for driving IT security. Prelude SIEM collects and centralize information about the company's IT security to offer a single point of view to manage it. Thanks to its logs and flows analyzer, Prelude SIEM create alerts about intrusions and security threats in the network in real-time. Prelude SIEM provides multiple tools to do forensic and reporting on Big Data and Smart Data to identify weak signals and Advanced Pe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13496892", "url": "https://en.wikipedia.org/wiki/War%20Times", "title": "War Times", "text": "War Times is a real-time strategy computer game for Windows released in 2004. It was developed and produced by Spanish company Legend Studios and distributed in USA and Canada by Strategy First. It is a World War II strategy game where the player can play as either the Allies or the Axis and usually has to complete a task that pertains to killing the opposing force or defending a base from enemies for a set amount of time.\n\nStory\nTwo campaigns are available: The first campaign concerns the All", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13496935", "url": "https://en.wikipedia.org/wiki/Personal%20information%20display", "title": "Personal information display", "text": "A personal information display is any device that displays user-configured information, which can be a combination of static and dynamically-generated data. Unlike a full-blown computer, it is a small, simple Internet-connected device which consumes little power, runs silently, is highly reliable, and provides little or no opportunity for real-time user interaction.\n\nExamples of data\n\nUser-generated static data\n to-do lists\n reminders\n electronic sticky notes\n\nDynamically-generated data\n news h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13549046", "url": "https://en.wikipedia.org/wiki/Micro%20T-Kernel", "title": "Micro T-Kernel", "text": "\u03bcT-Kernel is a real-time operating system (RTOS) designed for 16- and 8-bit microcontrollers. \u03bcT-Kernel was standardized by T-Engine Forum and later by the Institute of Electrical and Electronics Engineers (IEEE) IEEE Standards Association (IEEE SA) as the basis of IEEE 2050-2018.\n\nAn article comparing 9 RTOSs among which Micro T-Kernel was evaluated and given favorable remarks appeared in IEEE publication.\n\nSee also\n T-Kernel\n\nReferences\n\nExternal links\n, TRON project\n\n\u03bcT-Kernel Specifications\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13552326", "url": "https://en.wikipedia.org/wiki/State%20of%20War", "title": "State of War", "text": "State of War may refer to:\nState of War (video game), a 2001 real-time strategy game\nState of War (novel), a novel by Ninotchka Rosca\nState of War: The Secret History of the CIA and the Bush Administration, a documentary review by James Risen\n\nSee also \nDeclaration of war, a formal act by which one nation declares that a state of war between it and another nation is at hand\nPerpetual war, a war with no clear ending conditions\nWar, conflict between states, nations, or other parties", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13574519", "url": "https://en.wikipedia.org/wiki/Guitar%20Rig", "title": "Guitar Rig", "text": "Guitar Rig is an amp and effects modeling software package developed by Native Instruments. The software can function either as a standalone application, or as a plug-in for other software. It was originally released in 2004.\n\nOverview \nThe Guitar Rig environment is a modular system, providing capabilities for multiple amplifiers, effects pedals and rack mounted hardware. Primarily designed for electric guitar and bass, the software uses amplifier modeling to allow real-time digital signal proce", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13615087", "url": "https://en.wikipedia.org/wiki/IMAP%20IDLE", "title": "IMAP IDLE", "text": "In email technology, IDLE is an IMAP feature described in RFC 2177 that allows a client to indicate to the server that it is ready to accept real-time notifications.\n\nSignificance\nThe IDLE feature allows IMAP email users to immediately receive any mailbox changes without having to undertake any action such as clicking on a refresh button, or having the email client automatically and repeatedly ask the server for new messages.\n\nUsage\nIMAP4 servers that support IDLE will include the string \"IDLE\" ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13648668", "url": "https://en.wikipedia.org/wiki/Quake%20Minus%20One", "title": "Quake Minus One", "text": "Quake Minus One is a real-time strategy video game published for the Commodore 64 by Monolith/Beyond in 1985 and was written by Warren Foulkes and Mike Singleton.\n\nPremise\nIn the 1980s, the Western world constructed a large power plant named Titan under the Atlantic Ocean in order to extract geothermal energy from the Mid-Atlantic Ridge where the Earth's crust is thinnest. The power plant is operated and maintained solely by robots. Members of the Robot Liberation Front invade the power plant an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13678491", "url": "https://en.wikipedia.org/wiki/Communications-enabled%20application", "title": "Communications-enabled application", "text": "A communications enabled application (CEA) is a set of information technology (IT) components and communication technology components that are integrated using a particular service-oriented architecture (SOA) to increase the productivity of an organization and/or improve the quality of users' experiences.\n\nCommunication enablement adds real-time networking functionality to an IT application. Providing communications capability to an IT application:\n\n removes the human latency which exists when (", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13686369", "url": "https://en.wikipedia.org/wiki/SolidDB", "title": "SolidDB", "text": "solidDB is an in-memory relational database management system developed and sold by UNICOM Global. solidDB is designed for extreme speed as a persistent, relational in-memory database to meet performance and reliability demands of real-time applications.\n\nTechnology \nsolidDB includes an in-memory database as well as a traditional disk based database, which both employ the same SQL interface, and a high availability option. Both in-memory and disk based engines coexist inside the same server proc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13698130", "url": "https://en.wikipedia.org/wiki/ToD", "title": "ToD", "text": "Yoan \"ToD\" Merlo is a French former professional player of the real-time strategy games Warcraft III and Starcraft II. In WarCraft III he played as the Human race and in StarCraft he played as Protoss. he was signed to the top esports team in the United Kingdom, Four-Kings, until November 7, 2007, when he decided not to renew his contract for unspecified reasons. He later explained in an interview that the dissatisfying results of the Four Kings team were the reason for his departure. After much", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13704655", "url": "https://en.wikipedia.org/wiki/Br%C3%BCtal%20Legend", "title": "Br\u00fctal Legend", "text": "Br\u00fctal Legend is an action-adventure video game with real-time strategy game elements created by Double Fine and published by Electronic Arts for the PlayStation 3 and Xbox 360. The game was released during October 2009 in North America, Europe, and Australia. Though Br\u00fctal Legend was originally to be published by Vivendi Games prior to its merger with Activision, Activision dropped the game from its portfolio after the merger. It was later picked up by Electronic Arts, though Activision and Dou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13735738", "url": "https://en.wikipedia.org/wiki/Payment%20and%20settlement%20systems%20in%20India", "title": "Payment and settlement systems in India", "text": "Payment and settlement systems in India are used for financial transactions. They are covered by the Payment and Settlement Systems Act, 2007 (PSS Act), legislated in December 2007 and regulated by the Reserve Bank of India and the Board for Regulation and Supervision of Payment and Settlement Systems.\n\nIndia has multiple payments and settlement systems, both gross and net settlement systems. For gross settlement India has a real-time gross settlement (RTGS) system called by the same name and ne", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13814734", "url": "https://en.wikipedia.org/wiki/The%20simExchange", "title": "The simExchange", "text": "The simExchange is a web-based prediction market in which players use virtual money to buy and sell stocks and futures contracts in upcoming video game properties. The main purpose of the web site is to predict trends in the video game industry, particularly how upcoming products will sell and how they will be received by the critics. For those who do not participate in the prediction market, the web site is a database of sales forecasts and game quality forecasts that are updated in real-time.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13817365", "url": "https://en.wikipedia.org/wiki/Cuban%20Missile%20Crisis%3A%20The%20Aftermath", "title": "Cuban Missile Crisis: The Aftermath", "text": "Cuban Missile Crisis: The Aftermath, also known as The Day After: Fight for Promised Land and known in Russia as Caribbean Crisis (), is a real-time tactics computer game published by 1C Company in Russia, Black Bean in Europe and Strategy First in United States. It was made using Nival Interactive's Enigma engine and is similar to Blitzkrieg.\n\nPlot\nThe premise of the game is based on a potential outcome of the Cuban Missile Crisis, where on October 27th, 1962 a USAF U-2 spy plane is shot down o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13838313", "url": "https://en.wikipedia.org/wiki/List%20of%20real-time%20tactics%20video%20games", "title": "List of real-time tactics video games", "text": "See Lists of video games for related lists.\nThis is a comprehensive index of commercial real-time tactics games for all platforms, sorted chronologically. Information regarding date of release, developer, publisher, platform and notability is provided when available. The table can be sorted by clicking on the small boxes next to the column headings.\n\nLegend\n\nList\n\nReferences\n\nTimelines of video games\n \nVideo game lists by genre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13946352", "url": "https://en.wikipedia.org/wiki/Real-time%20collaboration", "title": "Real-time collaboration", "text": "Real-time collaboration may refer to the use of various different types of software for collaboration between people in real-time, such as:\n Instant messaging and chat rooms\n Videoconferencing\n Real-time collaborative editing of documents\n Desktop sharing", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13961210", "url": "https://en.wikipedia.org/wiki/Stack%20Resource%20Policy", "title": "Stack Resource Policy", "text": "The Stack Resource Policy (SRP) is a resource allocation policy used in real-time computing, used for accessing shared resources when using earliest deadline first scheduling. It was defined by T. P. Baker. SRP is not the same as the Priority ceiling protocol which is for fixed priority tasks (FP).\n\nFunction \n\nEach task is assigned a preemption level based upon the following formula where denotes the deadline of task and denotes the preemption level of task i:\n\nEach resource R has a current ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "13989841", "url": "https://en.wikipedia.org/wiki/Markets%20Now", "title": "Markets Now", "text": "Markets Now, also known as Fox Business News, is a daily business programming block that is aired weekdays from 11am-3pm Eastern Time on the Fox Business Network.\n\nAbout the program\nMarkets Now covers the day's market action, including real-time market coverage, breaking business news, and instant analysis. On May 12, 2008, the network replaced the final two hours of the block with two new programs, which debuted on the same day, Countdown to the Closing Bell (hosted by Liz Claman) and Fox Busi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14068129", "url": "https://en.wikipedia.org/wiki/RTAudio", "title": "RTAudio", "text": "RTAudio is a Microsoft produced adaptive wide-band speech codec. It is used by Microsoft Office Communications Server (OCS) and the related OCS clients (Microsoft Office Communicator, and Microsoft Live Meeting Console).\n\nRTAudio was designed for real-time two-way Voice over IP (VoIP) applications. Some of the target applications include games, audio conferencing, and wireless applications over IP. RTAudio is the preferred Microsoft Real-Time audio codec, and is the default voice codec for Micr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14068383", "url": "https://en.wikipedia.org/wiki/RTVideo", "title": "RTVideo", "text": "RTVideo is Microsoft's default video codec for Office Communications Server 2007 and the Microsoft Office Communicator 2007 client.\nIt is a Microsoft proprietary implementation of the VC-1 codec for real-time transmission purposes.\nMicrosoft extensions to VC-1 are based on cached frame and SP-frame.\nAlso it includes system-level enhancements for recovery of packet loss on IP networks - forward error correction and error concealment.\n\nLicensing \nRTVideo is a proprietary codec. Like RTAudio this p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14097660", "url": "https://en.wikipedia.org/wiki/TI-RTOS", "title": "TI-RTOS", "text": "TI-RTOS is an embedded tools ecosystem created and offered by Texas Instruments (TI) for use in a wide range of their embedded system processors. It includes a real-time operating system (RTOS) component named TI-RTOS Kernel (formerly named SYS/BIOS, which evolved from DSP/BIOS) along with added components that support device drivers, networking connectivity stacks, power management, file systems, instrumentation, and inter-processor communications like DSP/BIOS Link. It is free and open-source ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14100036", "url": "https://en.wikipedia.org/wiki/DWAN-AM", "title": "DWAN-AM", "text": "DWAN (1206\u00a0kHz Metro Manila) was an AM station owned and operated by the Metropolitan Manila Development Authority. Its studios and transmitter were located in the MMDA's Communications and Command Center in Epifanio de los Santos Avenue corner Orense Street, Guadalupe Nuevo, Makati City. The station is currently inactive.\n\nHistory\nThe station's aim was to provide real-time traffic updates and public service reminders to inform the public, through safety tips, on how to prevent traffic accidents", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14100498", "url": "https://en.wikipedia.org/wiki/PokerTracker", "title": "PokerTracker", "text": "PokerTracker Software, LLC is the name of a poker tool software company that produces the PokerTracker line of poker tracking and analysis software. PokerTracker's software imports and parses the hand histories that poker sites create during online play and stores the resulting statistics/information about historical play into a local database library for self-analysis, and for in-game opponent analysis using a real-time Head-up display.\n\nThe software allows the user to monitor each poker sessio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14190258", "url": "https://en.wikipedia.org/wiki/Operational%20database", "title": "Operational database", "text": "Operational database management systems (also referred to as OLTP On Line Transaction Processing databases), are used to update data in real-time. These types of databases allow users to do more than simply view archived data. Operational databases allow you to modify that data (add, change or delete data), doing it in real-time. OLTP databases provide transactions as main abstraction to guarantee data consistency that guarantee the so-called ACID properties. Basically, the consistency of the da", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14204007", "url": "https://en.wikipedia.org/wiki/Business%20Intelligence%202.0", "title": "Business Intelligence 2.0", "text": "Business Intelligence 2.0 (BI 2.0) is a development of the existing business intelligence model that began in the mid-2000s, where data can be obtained from many sources. The process allows for the querying of real-time corporate data by employees, but approaches the data with a web browser based solution. This is in contrast to previous proprietary querying tools that characterizes previous BI software.\n\nOverview\nThe growth in service-oriented architectures (SOA) is one of the main factors for ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14227230", "url": "https://en.wikipedia.org/wiki/ARINC%20653", "title": "ARINC 653", "text": "ARINC 653 (Avionics Application Software Standard Interface) is a software specification for space and time partitioning in safety-critical avionics real-time operating systems (RTOS). It allows the hosting of multiple applications of different software levels on the same hardware in the context of an Integrated Modular Avionics architecture.\n\nIt is part of ARINC 600-Series Standards for Digital Aircraft & Flight Simulators.\n\nOverview\nIn order to decouple the real-time operating system platform ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14260068", "url": "https://en.wikipedia.org/wiki/Close%20Combat%20%28video%20game%29", "title": "Close Combat (video game)", "text": "Close Combat is a 1996 real-time computer wargame developed by Atomic Games and published by Microsoft. Set during World War II, it simulates the conflict between the United States' 29th Infantry Division and Germany's 352nd Infantry Division after the Invasion of Normandy. The player controls an artificially intelligent army whose behavior is dictated by psychological models: each soldier makes decisions based on the circumstances of the battlefield and can disobey the player's orders.\n\nClose C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14318312", "url": "https://en.wikipedia.org/wiki/Turns%2C%20rounds%20and%20time-keeping%20systems%20in%20games", "title": "Turns, rounds and time-keeping systems in games", "text": "In video and other games, the passage of time must be handled in a way that players find fair and easy to understand. This is usually done in one of the two ways: real-time and turn-based.\n\nReal-time\n\nReal-time games have game time progress continuously according to the game clock. One example of such a game is the sandbox game Terraria, where one day-night cycle of 24 hours is equal to 24 minutes in real time. Players perform actions simultaneously as opposed to in sequential units or turns. Pl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14333228", "url": "https://en.wikipedia.org/wiki/National%20Environmental%20Information%20Exchange%20Network", "title": "National Environmental Information Exchange Network", "text": "The National Environmental Information Exchange Network is a partnership among States, Territories, Tribes, and the United States Environmental Protection Agency that is revolutionizing the exchange of environmental information. Partners on the Exchange Network share data efficiently and securely over the Internet. This new approach is providing real-time access to higher quality data while saving time, resources, and money for partner states, tribes, and territories.\n\nThe Exchange Network is a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14392996", "url": "https://en.wikipedia.org/wiki/Document%20camera", "title": "Document camera", "text": "Document cameras, also known as visual presenters, visualizers, digital overheads, or docucams, are real-time image capture devices for displaying an object to a large audience. Like an opaque projector, a document camera is able to magnify and project the images of actual, three-dimensional objects, as well as transparencies. They are, in essence, high resolution web cams, mounted on arms so as to facilitate their placement over a page. This allows a teacher, lecturer or presenter to write on a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14415710", "url": "https://en.wikipedia.org/wiki/ChibiOS/RT", "title": "ChibiOS/RT", "text": "ChibiOS/RT is a compact and fast real-time operating system supporting multiple architectures and released under a mix of the GNU General Public License version 3 (GPL3) and the Apache License 2.0 (depending on module). It is developed by Giovanni Di Sirio. \n\nCommercial licenses are available from ChibiOS. Additional products include ChibiOS/HAL, a hardware abstraction layer compatible with ChibiOS/RT, and ChibiStudio, a free integrated development environment based on Eclipse, the GNU Compiler ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14449950", "url": "https://en.wikipedia.org/wiki/NU-Tech", "title": "NU-Tech", "text": "NU-Tech is a digital signal processing (DSP) platform to validate and real-time debug complex algorithms, simply relying on a common PC. It is based on a typical plug-in architecture and thanks to a free software development kit (SDK), the developer can write his own plug-in (aka NUTSs = NU-Tech Satellites) in C++.\n\nNUTSs are not compelled to provide a GUI. To ease the developer in quickly creating new NUTSs without having to deal with GUI programming, NU-Tech provides a window called \"RealTime", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14452467", "url": "https://en.wikipedia.org/wiki/Reuters%203000%20Xtra", "title": "Reuters 3000 Xtra", "text": "Reuters 3000 Xtra was an electronic trading platform which was released by Reuters in 1999 and supported until the end of 2013. It was typically used by professional traders and financial analysts in trading rooms. It was superseded by the Eikon platform, first released in 2010.\n\n3000 Xtra provided real-time market data such as price data on exchange traded stocks, warrants, options, futures, indices, bonds, commodities and currencies, as well as streaming news and comprehensive economic indica", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14464580", "url": "https://en.wikipedia.org/wiki/Mobile%20TV%20format", "title": "Mobile TV format", "text": "Mobile TV Format is a colloquial and collective name for technology standards set out for broadcasting TV services to mobile devices, mostly mobile handsets for now. Currently, there are four prevalent formats known as DMB, DVB-H, OneSeg and MediaFLO. As of December 2007, ITU approved T-DMB, DVB-H, OneSeg and MediaFLO as the global standard for real-time mobile video and audio broadcasting. Thus far, none of the four formats has secured a dominant position in the global market, except in their r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14466203", "url": "https://en.wikipedia.org/wiki/Service%20Interface%20for%20Real%20Time%20Information", "title": "Service Interface for Real Time Information", "text": "The Standard Interface for Real-time Information or SIRI is an XML protocol to allow distributed computers to exchange real-time information about public transport services and vehicles. \n\nThe protocol is a CEN norm, developed originally as a technical standard with initial participation by France, Germany (Verband Deutscher Verkehrsunternehmen), Scandinavia, and the UK (RTIG)\n\nSIRI is based on the CEN Transmodel abstract model for public transport information, and comprises a general purpose mo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14502082", "url": "https://en.wikipedia.org/wiki/Star%20Rider", "title": "Star Rider", "text": "Star Rider is a racing LaserDisc video game developed by Computer Creations and Williams Electronics, and released for arcades in 1983. The object of the game is to win a futuristic motorcycle race that takes place in surrealistic settings. The tracks themselves and the background graphics are video played from a laserdisc, and are of higher quality than possible with real-time computer graphics at the time. The foreground graphics and racers are superimposed on the video. Star Rider has a rear", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14559417", "url": "https://en.wikipedia.org/wiki/Michael%20Tanenhaus", "title": "Michael Tanenhaus", "text": "Michael Tanenhaus is an American psycholinguist, author, and lecturer. He is the Beverly Petterson Bishop and Charles W. Bishop Professor of Brain and Cognitive Sciences and Linguistics at the University of Rochester. From 1996 to 2000 and 2003\u20132009 he served as Director of the Center for Language Sciences at the University of Rochester.\n\nTanenhaus's research focuses on processes which underlie real-time spoken language and reading comprehension. He is also interested in the relationship betwee", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14571394", "url": "https://en.wikipedia.org/wiki/Tower%20defense", "title": "Tower defense", "text": "Tower defense (TD) is a subgenre of strategy games where the goal is to defend a player's territories or possessions by obstructing the enemy attackers or by stopping enemies from reaching the exits, usually achieved by placing defensive structures on or along their path of attack. This typically means building a variety of different structures that serve to automatically block, impede, attack or destroy enemies. Tower defense is seen as a subgenre of real-time strategy video games, due to its r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14583811", "url": "https://en.wikipedia.org/wiki/Ground%20Control%3A%20Dark%20Conspiracy", "title": "Ground Control: Dark Conspiracy", "text": "Ground Control: Dark Conspiracy is a 2000 expansion pack to the real-time tactics video game Ground Control. Developed by Massive Entertainment and High Voltage Software, it was first announced in August 2000 by Sierra Studios. Later in October that year, Sierra further announced that the pack would be included free for new purchases of the original game, the decision having been made to add extra incentive to buying it; existing owners were also entitled and merely needed to apply via online fo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14604844", "url": "https://en.wikipedia.org/wiki/Warehouse%20control%20system", "title": "Warehouse control system", "text": "A warehouse control system (WCS) is a software application that directs the real-time activities within warehouses and distribution centers (DC). As the \u201ctraffic cop\u201d for the warehouse/distribution center, the WCS is responsible for keeping everything running smoothly, maximizing the efficiency of the material handling subsystems and often, the activities of the warehouse associates themselves. It provides a uniform interface to a broad range of material handling equipment such as AS/RS, carous", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14662761", "url": "https://en.wikipedia.org/wiki/Internet%20Go%20server", "title": "Internet Go server", "text": "An Internet Go server is a server that allows players of the game of Go to play against opponents online. The two fundamental types of Go server are real-time servers and turn-based servers.\n\nHistory \nThe first Go server that started operating is the Internet Go Server (IGS), which began service in 1992 and is still active as of 2021. Several other servers, all with the same basic server-client architecture, followed.\n \nIGS was started on February 2, 1992, by Tim Casey, Chris Chisolm, and Mark O", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14669421", "url": "https://en.wikipedia.org/wiki/3D%20object%20recognition", "title": "3D object recognition", "text": "In computer vision, 3D object recognition involves recognizing and determining 3D information, such as the pose, volume, or shape, of user-chosen 3D objects in a photograph or range scan. Typically, an example of the object to be recognized is presented to a vision system in a controlled environment, and then for an arbitrary input such as a video stream, the system locates the previously presented object. This can be done either off-line, or in real-time. The algorithms for solving this prob", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14670502", "url": "https://en.wikipedia.org/wiki/Elbit%20Skylark", "title": "Elbit Skylark", "text": "The Elbit Systems Skylark I and Skylark II are miniature UAVs developed by Elbit Systems.\n\nDesign and development\n\nSkylark I\nThe Skylark I is a Miniature UAV. It is designed as a manpacked system for tactical surveillance and reconnaissance. The Skylark is launched by hand. The payload consists of a daylight CCD or optional FLIR for night operations. During operation, it sends real-time video to a portable ground station. Recovery involves a deep stall maneuver, landing on a small inflatable cus", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14740388", "url": "https://en.wikipedia.org/wiki/Might%20and%20Magic%3A%20Heroes%20Kingdoms", "title": "Might and Magic: Heroes Kingdoms", "text": "Might and Magic: Heroes Kingdoms (originally Heroes of Might and Magic Kingdoms) was a real-time strategy massively multiplayer online game based on the Heroes of Might and Magic series. The game was announced in 2007 with closed betas running until 2009. It was released in France on 3 November 2009. It closed its servers on 1 September 2014.\n\nGameplay\n\nMight and Magic: Heroes Kingdoms was a real-time strategy massively multiplayer online game played through an Internet browser.\n\nDifferent game ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14775903", "url": "https://en.wikipedia.org/wiki/Deterministic%20memory", "title": "Deterministic memory", "text": "In computing, deterministic memory is computer memory which contains values that can be depended on from access to access. The term is also used in conjunction with achieving real-time functionality, especially in conjunction with embedded processor applications.\n\nSee also \n Embedded system\n Memory management\n Real-time computing\n\nExternal links \n Design Patterns for Real-Time Computer Music Systems\n Exploring memory architectures: pillars of processing performance\n Harnessing parallelism from ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14828134", "url": "https://en.wikipedia.org/wiki/Napoleon%20%28video%20game%29", "title": "Napoleon (video game)", "text": "is a real-time strategy video game for the Game Boy Advance (GBA) developed by Genki and published by Nintendo. The game was a launch title for the handheld system in Japan. The game was also published in France under the title L'Aigle de Guerre (lit. \"The Eagle of War\"). The Japanese version of the game was compatible with the Mobile Adapter GB until December 14, 2002. An unofficial fan English translation patch for the game was released on December 31, 2018.\n\nIn the game's Story Mode, players ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14862371", "url": "https://en.wikipedia.org/wiki/Portugal%201111%3A%20A%20Conquista%20de%20Soure", "title": "Portugal 1111: A Conquista de Soure", "text": "Portugal 1111: A Conquista de Soure (\"Portugal 1111: The Conquest of Soure\") is a real-time strategy game developed by Ciberbit, a Portuguese multimedia company, in partnership with the Municipality of Soure and historians from the University of Coimbra. The game depicts the historical events of the Portuguese Reconquista, when the Christians fought against Moorish invaders.\n\nIt was the first commercial video game completely produced and designed in Portugal.\n\nThe game, a historic real-time stra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14876738", "url": "https://en.wikipedia.org/wiki/Strategy%20video%20game", "title": "Strategy video game", "text": "A strategy video game is a video game genre that focuses on skillful thinking and planning to achieve victory. It emphasizes strategic, tactical, and sometimes logistical challenges. Many games also offer economic challenges and exploration. They are generally categorized into four sub-types, depending on whether the game is turn-based or real-time, and whether the game focuses on strategy or tactics.\n\nDefinition \nStrategy video games are a genre of video game that emphasize skillful thinking an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14907708", "url": "https://en.wikipedia.org/wiki/Web%20Cache%20Communication%20Protocol", "title": "Web Cache Communication Protocol", "text": "Web Cache Communication Protocol (WCCP) is a Cisco-developed content-routing protocol that provides a mechanism to redirect traffic flows in real-time. It has built-in load balancing, scaling, fault tolerance, and service-assurance (failsafe) mechanisms. Cisco IOS Release 12.1 and later releases allow the use of either Version 1 (WCCPv1) or Version 2 (WCCPv2) of the protocol.\n\nWCCP allows utilization of Cisco Cache Engines (or other caches running WCCP) to localize web traffic patterns in the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "14937349", "url": "https://en.wikipedia.org/wiki/Datacube%20Inc.", "title": "Datacube Inc.", "text": "Datacube Inc. (1978\u20132005) was an image processing company that developed real-time hardware and software products for the industrial, medical, military and scientific markets.\n\nEarly history\n\nDatacube was founded in the mid-1970s by Stanley Karandanis and J Stewart Dunn. In the early days, Datacube manufactured board level products for the Multibus, which was one of the first computer buses developed for microprocessors. Early boards designed by Dunn were PROM, RAM and character generator board", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15038854", "url": "https://en.wikipedia.org/wiki/Comparison%20of%20neurofeedback%20software", "title": "Comparison of neurofeedback software", "text": "Within the field of neurotechnology, Neurofeedback (NFB), also called neurotherapy, neurobiofeedback or EEG biofeedback (EEGBF) is a therapy technique which presents the user with real-time information about activity within their brain, as measured by electrical or blood-flow sensors on the scalp.\n\nBrain activity is monitored and processed to provide feedback to the user in one of several ways, for example a video game rocket ship might accelerate when desired brainwaves are produced (positive f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15057984", "url": "https://en.wikipedia.org/wiki/Spaceship%20Earth%20%28detector%29", "title": "Spaceship Earth (detector)", "text": "Spaceship Earth is a network of neutron monitors designed to measure the flux of cosmic rays arriving at Earth from different directions. All the 12 member neutron monitor stations are located at high (Northern or Southern) latitude, which makes their detecting directions more precise, and their energy responses uniform. Their combined signals provide a real-time measurement of the three-dimensional distribution of cosmic rays, mainly galactic cosmic rays as well as solar energetic particles dur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15058771", "url": "https://en.wikipedia.org/wiki/Real%20War", "title": "Real War", "text": "The Real War franchise was a series of real-time tactics video games developed by Rival Interactive and published by Simon & Schuster Interactive.\n\nIn-game briefing voices were provided by R. Lee Ermey.\n\nGame series\nThere were several games in the series, including:\n\n Joint Forces Employment - The original game that Real War was created from. It was never released outside of the United States military. Released on May 17, 2000. The game was, apart from differences in interface and unit statistic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15114275", "url": "https://en.wikipedia.org/wiki/DRYOS", "title": "DRYOS", "text": "DRYOS is a real-time operating system made by Canon and is used in their latest digital cameras and camcorders.\n\nSince late 2007 DIGIC-based cameras are shipped using DryOS. It replaces VxWorks from Wind River Systems which has been used before on Digic2 (DIGIC II) and some Digic3 (DIGIC III) cameras. DryOS had existed before and was in use in other Canon hardware, such as digital video cameras and high-end webcams. \n\nDRYOS has a 16 kilobytes kernel module at its core and is currently compatible", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15149673", "url": "https://en.wikipedia.org/wiki/Iron%20Grip%3A%20Warlord", "title": "Iron Grip: Warlord", "text": "Iron Grip: Warlord is the first commercial release from independent video game developer ISOTX. It is a first-person shooter combined with many real-time strategy elements. It uses the id Tech 3 game engine and is set in the fictional universe of Iron Grip.\n\nPlot\n\nSetting\n\nIron Grip: Warlord is set in a dieselpunk world with a society that can be described as a blend of Napoleonic era politics and World War II technology. The Iron Grip world is home to many different landmasses, but \nWarlord foc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15184596", "url": "https://en.wikipedia.org/wiki/IEC%2061970", "title": "IEC 61970", "text": "The IEC 61970 series of standards deals with the application program interfaces for energy management systems (EMS). The series provides a set of guidelines and standards to facilitate:\n The integration of applications developed by different suppliers in the control center environment;\n The exchange of information to systems external to the control center environment, including transmission, distribution and generation systems external to the control center that need to exchange real-time data w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15227234", "url": "https://en.wikipedia.org/wiki/CyberStorm%202%3A%20Corporate%20Wars", "title": "CyberStorm 2: Corporate Wars", "text": "CyberStorm 2: Corporate Wars is a turn-based and real-time strategy game developed by Dynamix and released in 1998 as a sequel to MissionForce: CyberStorm. It was published by Sierra On-Line.\n\nPlot\nCyberStorm 2 takes place long after the events of the first game, with the Cybrids no longer representing a major threat.\n\nA jumpgate has been discovered in the Typheous system, and eight Earth corporations want to control it. Each of them therefore starts up a branch in the system, and begin to batt", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15251566", "url": "https://en.wikipedia.org/wiki/Adyen", "title": "Adyen", "text": "Adyen is a Dutch payment company that allows businesses to accept e-commerce, mobile, and point-of-sale payments. It is listed on the stock exchange Euronext.\n\nAdyen offers merchants online services for accepting electronic payments by payment methods including credit cards, bank based payments such as debit cards, bank transfer, and real-time bank transfers based on online banking. It connects to payment methods around the world, including international credit cards, local cash-based methods, s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15280672", "url": "https://en.wikipedia.org/wiki/MusicVR", "title": "MusicVR", "text": "MusicVR is a virtual reality project created and developed by the musician Mike Oldfield. To date it has produced two standalone simulation games and inspired content for some of Oldfield's albums. As of January 2010 Tubular.net hosts the free downloads of the two games.\n\nHistory \nMusicVR set out to be a real-time virtual reality experience combining imagery and music, as a non-violent and essentially a non-goal driven game. In the early 1990s when Oldfield first wanted to create this world, the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15290837", "url": "https://en.wikipedia.org/wiki/Sensor%20grid", "title": "Sensor grid", "text": "A sensor grid integrates wireless sensor networks with grid computing concepts to enable real-time sensor data collection and the sharing of computational and storage resources for sensor data processing and management. It is an enabling technology for building large-scale infrastructures, integrating heterogeneous sensor, data and computational resources deployed over a wide area, to undertake complicated surveillance tasks such as environmental monitoring.\n\nConcept and history \nThe concept of ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15291863", "url": "https://en.wikipedia.org/wiki/Real-time%20Control%20System%20Software", "title": "Real-time Control System Software", "text": "The Real-time Control System (RCS) is a software system developed by NIST based on the Real-time Control System Reference Model Architecture, that implements a generic Hierarchical control system. The RCS Software Library is an archive of free C++, Java and Ada code, scripts, tools, makefiles, and documentation developed to aid programmers of software to be used in real-time control systems (especially those using the Reference Model Architecture for Intelligent Systems Design).\n\nIntroduction \nR", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15302915", "url": "https://en.wikipedia.org/wiki/A1%20Report", "title": "A1 Report", "text": "A1 News Channel (formerly TV Ballkan, A1 TV, A1 Report) was an all news private television station in Tirana, Albania founded by media mogul Koco Kokedhima and owned by Shekulli newspaper.\n\nHistory\nA1 Report started as TV Ballkan in 2002 but quickly changed name to A1 TV. During that time period, A1 tried to attract a broader audience through shows such as Papparazzi and Hienat. It was also the only station with purely economic TV shows like A1 Biznes and Kapital. News is updated in real-time 24", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15315761", "url": "https://en.wikipedia.org/wiki/Battleships%20Forever", "title": "Battleships Forever", "text": "Battleships Forever is an IGF award-nominated freeware real-time tactics video game set in a futuristic space environment inspired by Warning Forever. While still in beta phase, there is no further development by the author. Players control a variety of spaceships and must position them to maximize damage on opposing ships and minimize damage to their own ships utilizing a wide variety of tactics and vessel sub-systems.\n\nGameplay\n\nPlayers can embark on a single-player campaign, play four differe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15395835", "url": "https://en.wikipedia.org/wiki/TTP/A", "title": "TTP/A", "text": "TTP/A is a time-triggered real-time fieldbus protocol used for the interconnection of low-cost smart transducer nodes. In contrast to the Time-Triggered Protocol (TTP), which is a high-speed, fault-tolerant communication network intended for safety critical applications (SAE class C), TTP/A provides a low-speed (below 1 MB/s), low-cost protocol suitable for non-critical applications like car body electronics (SAE class A).\n\nDescription\nTime-triggered means that all actions are scheduled at prede", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15413176", "url": "https://en.wikipedia.org/wiki/Soma%20Bringer", "title": "Soma Bringer", "text": "is an action role-playing game developed by Monolith Soft and published by Nintendo for the Nintendo DS handheld video game console. The player, controlling one of the eight main characters, explores dungeons and fights enemies in real-time combat across three-dimensional plains from a top-down perspective. Multiplayer functions allow up to three players to participate in exploration and combat. The story focuses on the continent of Barnea: the principle magical energy, Soma, is being disrupted ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15445378", "url": "https://en.wikipedia.org/wiki/RotoWire", "title": "RotoWire", "text": "RotoWire.com is a company based in Madison, Wisconsin, U.S. that specializes in fantasy sports news and fantasy-style games.\nRotoWire provides fantasy news and information to ESPN.com, Yahoo! Sports, FoxSports.com, NFL.com, CBSSports.com, FanDuel, DraftKings and Sirius XM Radio.\nRotoWire is the successor to RotoNews.com, which pioneered the concept of real-time fantasy sports information when launched in 1997.\n\nProducts\n RotoWire.com is the company's primary product, a fantasy sports news site t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15466868", "url": "https://en.wikipedia.org/wiki/Kingdom%20Under%20Fire%20II", "title": "Kingdom Under Fire II", "text": "Kingdom Under Fire II was a video game set in a high fantasy setting developed by Blueside which merged real-time strategy (RTS), role-playing game (RPG) and massively multiplayer online game (MMO) genres. The game had a single-player and an online multiplayer mode. The game followed on chronologically from Kingdom Under Fire: Circle of Doom, and was the first RTS game set in the Kingdom Under Fire universe to be released since the 2005 Kingdom Under Fire: Heroes. Due to its mass cancellation, m", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15487064", "url": "https://en.wikipedia.org/wiki/S-TADIL%20J", "title": "S-TADIL J", "text": "S-TADIL J, or Satellite TADIL J, is a real-time Beyond Line-of-Sight (BLOS) Tactical Digital Information Link (TADIL) supporting the exchange of the same J Series message set that is implemented on Link-16 via the Joint Tactical Information Distribution System (JTIDS). S-TADIL J provides for robust continuous connectivity between Navy ships that are beyond JTIDS line-of-sight (LOS) transmission range. S-TADIL J is designed to support and significantly improve long-range TADIL connectivity betwe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15503331", "url": "https://en.wikipedia.org/wiki/Rutt/Etra%20Video%20Synthesizer", "title": "Rutt/Etra Video Synthesizer", "text": "The Rutt/Etra Video Synthesizer is an analog raster manipulation device for image processing and real-time animation. The Rutt/Etra was co-invented by Steve Rutt and Bill Etra.\n\nSee also\nScanimate \u2013 a similar device\n\nReferences\n\nExternal links\nAudio Vizualizers page on Rutt / Etra Video Synthesizer \n\nImage processing", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15553435", "url": "https://en.wikipedia.org/wiki/Men%20of%20War%20%28video%20game%29", "title": "Men of War (video game)", "text": "Men of War (, or Behind Enemy Lines 2: Desert Fox) is a 2009 real-time tactics video game expansion for the sequel to Soldiers: Heroes of World War II - \"Faces of War\" developed by Ukrainian company Best Way. Players issue orders to and/or take direct control of soldiers on a simulation-driven battlefield.\n\nThe game takes place during World War II and its single-player campaign features battles set in Europe, the Soviet Union, Greece, and North Africa across three different campaigns for the All", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15590955", "url": "https://en.wikipedia.org/wiki/Modem%20Wars", "title": "Modem Wars", "text": "Dan Bunten's Modem Wars is a real-time tactics game developed by Ozark Softscape and published by Electronic Arts in 1988 for the Commodore 64. A version for IBM PC compatibles was released in 1989.\n\nModem Wars is played over a modem connection between two machines (via telephone or null modem serial connection), with both players controlling a group of robotic units trying to eliminate the opponent's command center. Features such as fog of war, varied unit types, terrain, and formations, all no", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15627354", "url": "https://en.wikipedia.org/wiki/Redhawk", "title": "Redhawk", "text": "Redhawk may refer to:\n\n Ruger Redhawk, a large frame revolver\n Ruger Super Redhawk, a line of double action magnum revolvers\n Redhawk Linux, Concurrent Real Time\u2019s RedHawk Linux - a real-time operating system\n RedhawkSDR, NSA's now open source software-defined radio application\n\nSee also\n Red Hawk (disambiguation)\n Redhawks (disambiguation)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15663971", "url": "https://en.wikipedia.org/wiki/Magic%20and%20Mayhem", "title": "Magic and Mayhem", "text": "Magic & Mayhem (working title: Duel: The Mage Wars), known in Europe as Mana, is a fantasy/mythology-themed real-time strategy game designed by Julian Gollop and developed by Mythos Games. It was published by Virgin Interactive Entertainment (European release) in late 1998, and by Bethesda (North American release) soon after in 1999. Although the game received generally positive criticisms, it met a quiet public reception.\n\nMagic and Mayhem was designed by Gollop as the next incarnation of his s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15729357", "url": "https://en.wikipedia.org/wiki/Quantcast", "title": "Quantcast", "text": "Quantcast is an American technology company, founded in 2006, that specializes in AI-driven real-time advertising, audience insights and measurement. It has offices in the United States, Canada, Australia, Singapore, United Kingdom, Ireland, France, Germany, Italy, and Sweden.\n\nHistory\n\nQuantcast was launched in 2006. The company was built on the belief that digital advertising requires reliable data to be successful. Initially the primary aim was to gather detailed, real-time insights on audien", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15749629", "url": "https://en.wikipedia.org/wiki/3DCrafter", "title": "3DCrafter", "text": "3DCrafter (previously 3D Canvas) is a real-time 3D modelling and animation tool developed by Amabilis Software. A Canadian software company. It is available in 3 different versions - 3DCrafter, 3DCrafter Plus, and 3DCrafter Pro. 3DCrafter is freeware, whereas the Plus and Pro upgrades cost. The software is designed to be user friendly, and has an easy to use drag and drop interface. 3DCrafter is written in C# and uses Direct3D 11.\n\n3DCrafter Pro \nThe paid variant of the freeware, it offers a wid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15766640", "url": "https://en.wikipedia.org/wiki/Clujeanul", "title": "Clujeanul", "text": "Clujeanul is both a weekly newspaper published in Cluj-Napoca, Romania, and an online newspaper providing real-time local and national news.\n\nThe weekly edition appears on Mondays together with the TV Guide Pro TV Magazin.\n\nDefining itself as a \"community newspaper\", the weekly CLUJEANUL prints news stories and features from Cluj. According to the National Audience Study made by the Romanian Circulation Audit Bureau, at the end of 2007 CLUJEANUL had 54.000 readers per edition, making it the most", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15866987", "url": "https://en.wikipedia.org/wiki/Matt%20B.%20Britton", "title": "Matt B. Britton", "text": "Matt B. Britton (born January 24, 1975) is a new media entrepreneur and consumer trend expert based in New York City.\n\nBritton currently serves as chief executive officer of Suzy, a real-time consumer intelligence software. Previously he served as chief executive officer of MRY, a marketing and technology agency with over 500 employees that is part of the Publicis Groupe. MRY, formed in 2013, is the combination of Mr. Youth, (the agency Britton founded in 2002) and the former U.S. operations of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15927701", "url": "https://en.wikipedia.org/wiki/Genewars", "title": "Genewars", "text": "Genewars is a real-time strategy video game for DOS featuring standard elements of strategy, along with minor terrain editing and cross-species breeding. Its working title was \"Biosphere\".\n\nGameplay\nPlayers move through a series of worlds using a small number of sentient humanoids to build small bases and to stun, kill, research, and ultimately breed a variety of animals. Plants are also important, as different plants can be grown and harvested for different purposes. Players must use the variou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "15949734", "url": "https://en.wikipedia.org/wiki/Live%20Communications%20Server%202003", "title": "Live Communications Server 2003", "text": "Microsoft Office Live Communications Server 2003 provides real-time communications platform allowing for voice, video, and instant messaging.\n\nOther versions\nLive Communications Server 2005\nLive Communications Server 2005 with SP1\n\nReferences\nMicrosoft Office Live Communications Server 2003 Overview\n\nInstant messaging server software", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16002804", "url": "https://en.wikipedia.org/wiki/Google%20Sites", "title": "Google Sites", "text": "Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. The service also includes Google Docs, Google Sheets, Google Slides, Google Drawings, Google Forms, and Google Keep. Google Sites is only available as a web application. The app allows users to create and edit files online while collaborating with other users in real-time.\n\nHistory \nGoogle Sites started out as JotSpot, the name and sole product of a so", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16020703", "url": "https://en.wikipedia.org/wiki/Single-molecule%20real-time%20sequencing", "title": "Single-molecule real-time sequencing", "text": "Single-molecule real-time (SMRT) sequencing is a parallelized single molecule DNA sequencing method. Single-molecule real-time sequencing utilizes a zero-mode waveguide (ZMW). A single DNA polymerase enzyme is affixed at the bottom of a ZMW with a single molecule of DNA as a template. The ZMW is a structure that creates an illuminated observation volume that is small enough to observe only a single nucleotide of DNA being incorporated by DNA polymerase. Each of the four DNA bases is attached to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16058407", "url": "https://en.wikipedia.org/wiki/SeaQuest%20DSV%20%28video%20game%29", "title": "SeaQuest DSV (video game)", "text": "seaQuest DSV is a real-time simulator/strategy game depiction of the seaQuest DSV television series for the Super NES and Genesis. The player takes the role of the captain of the submarine seaQuest DSV 4600, and is tasked with carrying out a series of missions in a series of levels, divided up as \"ocean quadrants\". There is a seaQuest DSV game for the Game Boy as well, but it is completely different from the home console versions.\n\nGameplay\nThe game is divided into two parts; one in which the pl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16077363", "url": "https://en.wikipedia.org/wiki/Northern%20Lakes%20College", "title": "Northern Lakes College", "text": "Northern Lakes College is a publicly funded comprehensive community college in northern Alberta, Canada.\n\nAdministrative offices are located in Slave Lake and Grouard, Alberta, with a staff of more than 275 working in more than 25 community campuses. The college connects students from throughout the region with the latest in real-time teaching and learning technology to create manageable class cohorts.\n\nThe college is a member of the Alberta Rural Development Network.\n\nEducation programs \nThe co", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16091573", "url": "https://en.wikipedia.org/wiki/Hundred%20Swords", "title": "Hundred Swords", "text": "Hundred Swords is a real-time strategy video game developed by Smilebit and published by Sega for the Dreamcast. The game was also released on PC, and was compatible with Windows 95, 98, and Me.\n\nReception\nOn release, Famitsu magazine scored the Dreamcast version of the game a review score of 31 out of 40.\n\nReferences\n\nExternal links\nHundred Swords at MobyGames\n\n2001 video games\nDreamcast games\nFantasy video games\nReal-time strategy video games\nSmilebit games\nVideo games developed in Japan\nWindo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16096578", "url": "https://en.wikipedia.org/wiki/Extreme%20Ice%20Survey", "title": "Extreme Ice Survey", "text": "The Extreme Ice Survey (EIS), based in Boulder, Colorado, uses time-lapse photography, conventional photography and video to document the effects of global warming on glacial ice. It is the most wide-ranging glacier study ever conducted using ground-based, real-time photography. Starting in 2007 the EIS team installed as many as 43 time-lapse cameras at a time at 18 glaciers in Greenland, Iceland, Alaska, Canada, the Nepalese Himalaya (where cameras were installed at Mount Everest in 2010), and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16103056", "url": "https://en.wikipedia.org/wiki/Age%20of%20Booty", "title": "Age of Booty", "text": "Age of Booty is a real-time strategy video game developed by Certain Affinity and published by Capcom for the Xbox 360, PlayStation 3, and Microsoft Windows. Set in the swashbuckling era, the game puts the players in the control of a pirate ship with the goal of looting and capturing towns for a pirate faction, while defeating the enemy ships on the way.\n\nGameplay\n\nGameplay largely revolves around the maneuvering of a boat around a sea. The sea is made up of hexagons called Hexes. The player con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16111435", "url": "https://en.wikipedia.org/wiki/Stranger%20%28video%20game%29", "title": "Stranger (video game)", "text": "Stranger is a real-time strategy game by Russian studio Fireglow Games.\n\nReception\nStranger received its first review from Ace Gamez and achieved a score of 6 out of 10.\n\nReferences\n\n2007 video games\nReal-time strategy video games\nVideo games developed in Russia\nWindows games\nWindows-only games", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16266959", "url": "https://en.wikipedia.org/wiki/GasBuddy", "title": "GasBuddy", "text": "GasBuddy is a tech company based in Boston that operates apps and websites based on finding real-time fuel prices at more than 140,000 gas stations in the United States, Canada, and Australia. They also sell software products to convenience store owners via their B2B initiatives (formerly known OpenStore).\n\nThe GasBuddy app is a GPS-based application program for smartphones and tablets which provides prices of nearby gas stations from user-submitted data, as well as through partnerships with oth", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16424118", "url": "https://en.wikipedia.org/wiki/RA3", "title": "RA3", "text": "RA3 may refer to:\n\n Command & Conquer: Red Alert 3, a real-time strategy video game\n Rocket Arena 3, an unofficial game modification for first-person shooter Quake III: Arena\n RA3, an ISO 217 standard paper size\n RA3, a file extension for RA3DIO Terrain Information software", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16445093", "url": "https://en.wikipedia.org/wiki/Trango%20Virtual%20Processors", "title": "Trango Virtual Processors", "text": "Trango Virtual Processors was founded in 2004 by Pierre Coulombeau and Fabrice Devaux as a subsidiary of ELSYS Design group. Trango's purpose was to develop a real-time mobile hypervisor. It was acquired by VMware in October 2008.\n\nProducts\nTrango developed a mobile hypervisor that supported ARM architectures (ARMv5 and ARMv6) and MIPS architectures, and could run Symbian OS, WinCE, and Linux mobile operating systems, and a supporting integrated development environment (IDE).\n\nVMware rebranded", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16464532", "url": "https://en.wikipedia.org/wiki/FriendFeed", "title": "FriendFeed", "text": "FriendFeed was a real-time feed aggregator that consolidated updates from social media and social networking websites, social bookmarking websites, blogs and microblogging updates, as well as any type of RSS/Atom feed. It was created in 2007 by Bret Taylor, Jim Norris, Paul Buchheit and Sanjeev Singh. It was possible to use this stream of information to create customized feeds to share, as well as originate new posts-discussions, (and comment) with friends. Friendfeed was built on top of Tornado", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16577283", "url": "https://en.wikipedia.org/wiki/Ken%20Demarest", "title": "Ken Demarest", "text": "Kenneth Llewellyn Demarest III is a computer game programmer, artist, and business person.\n\nEarly life and education\n\nCareer\nDemarest worked on Wing Commander and developed 3D, texture-mapped characters in BioForge. As a Director of Technology at Origin Systems, Demarest developed the technical prototype for Ultima Online using Ultima VI as a code base. His later work resulted in the persistent-world real-time strategy game NetStorm: Islands At War, which as of March 2016 is being re-made in 3D ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16632623", "url": "https://en.wikipedia.org/wiki/World%20in%20Conflict%3A%20Soviet%20Assault", "title": "World in Conflict: Soviet Assault", "text": "World in Conflict: Soviet Assault is a 2009 expansion pack developed by Massive Entertainment and Swordfish Studios for the 2007 real-time tactics video game World in Conflict. It features the ability to play as the Soviet Union in the single player campaign, against which the player fought in the original World in Conflict as well as adding additional multiplayer maps.\n\nThe game is set in an alternate 1989 in which the Politburo of the Soviet Union elects to take military action to sustain itse", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16650839", "url": "https://en.wikipedia.org/wiki/Fate%20of%20Hellas", "title": "Fate of Hellas", "text": "Fate of Hellas () (released as Great War Nations: The Spartans in North America and Sparta II: Alexander the Great in some territories) is a real-time strategy video game for Microsoft Windows. Developed by World Forge, it was published in Russia by Russobit-M in December 2007, in Europe by JoWooD in March 2008, and in North America by DreamCatcher Interactive in May 2008. A spiritual successor to Ancient Wars: Sparta (it is often referred to as a \"standalone expansion\", but it is, in fact, a di", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16682559", "url": "https://en.wikipedia.org/wiki/Warhammer%2040%2C000%3A%20Dawn%20of%20War%20II", "title": "Warhammer 40,000: Dawn of War II", "text": "Warhammer 40,000: Dawn of War II is a real-time strategy-tactical role-playing video game developed by Relic Entertainment and published by THQ for Microsoft Windows based on the fictional Warhammer 40,000 universe. It is the sequel to the Warhammer 40,000: Dawn of War video game series. Dawn of War II was released in North America on February 19, 2009 and in Europe on February 20, 2009. A sequel, Dawn of War III, was released in April 2017.\n\nGameplay\nPlayable armies at the initial release of th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16808435", "url": "https://en.wikipedia.org/wiki/Quasimidi%20Sirius", "title": "Quasimidi Sirius", "text": "The Sirius is a keyboard \"groove-synth,\" featuring a subtractive hybrid-tone-generation synthesizer referred to as DTE ('Difficult To Explain') synthesis introduced in 1997 by Quasimidi. The unit featured both real-time and step sequencers with pattern- and song-modes, capable of acting basic drum machine, groove-box, or sound-module.\nThe unit is thus 7x multitimbral and has 28-voice polyphony across its 7 tracks, with track selecting a (track-specific) sound within 96 sounds (per bank) of pres", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16810892", "url": "https://en.wikipedia.org/wiki/Ultrasound%20Identification", "title": "Ultrasound Identification", "text": "Ultrasound Identification is a real-time locating system (RTLS) or indoor positioning system (IPS) technology used to automatically determine and identify the location of objects with room accuracy.\n\nThe approach is using simple, inexpensive nodes (badges/tags) attached to the surface of persons, objects and devices, which then transmit an ultrasound signal to communicate their locations to microphone sensors. \n\nBecause ultrasound signal wavelengths have short reach, they are confined to lesser ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16860709", "url": "https://en.wikipedia.org/wiki/Mortal%20Online", "title": "Mortal Online", "text": "Mortal Online is a First Person, Open World, PvP/PvE Sandbox MMORPG developed and published by the Swedish independent video game company Star Vault. Mortal Online was released on June 9, 2010. The game is inspired by the desire to return to Ultima Online's player-controlled, sandbox-style game design; it uses Epic Games' Unreal Engine 3 and features a skill-based, real-time combat system.\n\nMortal Online does not have a traditional level/class system, but rather a skill and attribute system simi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16883797", "url": "https://en.wikipedia.org/wiki/SHINE%20Expert%20System", "title": "SHINE Expert System", "text": "Spacecraft Health Inference Engine (SHINE) is a software-development tool for knowledge-based systems and has been created as a product for research and development by the Artificial intelligence Group, Information Systems Technology Section at NASA/JPL to meet many of their AI goals for current and future needs. The system is now in regular use in basic and applied AI research at JPL. SHINE was developed as a system that was designed to operate in a real-time environment and to be utilized by n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16889009", "url": "https://en.wikipedia.org/wiki/ZCam", "title": "ZCam", "text": "ZCam is a brand of time-of-flight camera products for video applications by Israeli developer 3DV Systems. The ZCam supplements full-color video camera imaging with real-time range imaging information, allowing for the capture of video in 3D.\n\nThe original ZCam, released in 2000, was an ENG video camera add-on used for digital video compositing. Before agreeing in March 2009 to sell its assets to Microsoft, 3DV had planned to release a ranging video webcam (previously called the Z-Sense), also u", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16934163", "url": "https://en.wikipedia.org/wiki/EA%20Phenomic", "title": "EA Phenomic", "text": "EA Phenomic was a real-time strategy video game developer, headquartered in Ingelheim, Germany, and founded as Phenomic Game Development in 1997 by Volker Wertich, who had previous worked in Blue Byte and developed The Settlers and The Settlers III. The studio was acquired by Electronic Arts on August 23, 2006 and renamed as EA Phenomic.\n\nElectronic Arts announced that EA Phenomic would concentrate on developing real-time strategy video games.\n\nIn July 2013, EA closed the studio and laid off th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16955304", "url": "https://en.wikipedia.org/wiki/WarGames%3A%20Defcon%201", "title": "WarGames: Defcon 1", "text": "WarGames: Defcon 1 (known simply as WarGames on PC) is a video game for the PlayStation and Microsoft Windows developed by Interactive Studios and co-published by MGM Interactive and Electronic Arts (in North America, MGM Interactive solely published the game). Although both versions possess the same missions and content, the PlayStation version is a tactical vehicle-shooting game while the PC version is a real-time strategy game (similar to Jeff Wayne's The War of the Worlds). The game is loose", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16966743", "url": "https://en.wikipedia.org/wiki/The%20Stream%20%28news%20programme%29", "title": "The Stream (news programme)", "text": "The Stream is a TV and online programme that airs from Monday to Thursday, simultaneously live on Al Jazeera English and on YouTube. It is branded as the space where \u201cAl Jazeera's global audience becomes a global community\u201d and is the only show on the channel that features real-time interaction with its audience.\n\nThe show is hosted by Femi Oke, a British-Nigerian journalist who has previously worked for CNN and BBC.\n\nAbout the show\nThe Stream covers international news and culture, and features ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16968724", "url": "https://en.wikipedia.org/wiki/Vvvv", "title": "Vvvv", "text": "vvvv ( = \"Vau Vier\" or \"v4\") is a general purpose toolkit with a special focus on real-time video synthesis and programming large media environments with physical interfaces, real-time motion graphics, audio and video. vvvv uses a dataflow approach and a visual programming interface for rapid prototyping and developing. Applications written in vvvv are commonly called patches. Patches consist of a network of nodes. Patches can be created, edited and tested while they are running. Patches are st", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "16972660", "url": "https://en.wikipedia.org/wiki/Vibration%20control", "title": "Vibration control", "text": "In earthquake engineering, vibration control is a set of technical means aimed to mitigate seismic impacts in building and non-building structures. \nAll seismic vibration control devices may be classified as passive, active or hybrid where:\n\n passive control devices have no feedback capability between them, structural elements and the ground; \n active control devices incorporate real-time recording instrumentation on the ground integrated with earthquake input processing equipment and actuators", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17003412", "url": "https://en.wikipedia.org/wiki/Majesty%202%3A%20The%20Fantasy%20Kingdom%20Sim", "title": "Majesty 2: The Fantasy Kingdom Sim", "text": "Majesty 2: The Fantasy Kingdom Sim is a real-time strategy game developed by 1C:Ino-Co and published by Paradox Interactive. The game was announced on April 18, 2008 and was released on September 18, 2009. It is a sequel to Cyberlore's Majesty: The Fantasy Kingdom Sim.\n\nA Mac OS X version of Majesty 2 was announced by Virtual Programming on August 13, 2010. Virtual Programming published the Mac OS X version of the game on November 16, 2010. The publisher released the Mac OS X versions of the fi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17054905", "url": "https://en.wikipedia.org/wiki/Orchestra%20Control%20Engine", "title": "Orchestra Control Engine", "text": "Orchestra Control Engine is a suite of software components (based on Linux/RTAI) used for the planning, development and deployment of real-time control applications for industrial machines and robots.\n\nOrchestra Control Engine has been developed by Sintesi SpA in partnership with the Italian National Research Council and in collaboration with international industrial companies in the field of robotics and production systems.\n\nSintesi SpA is a company that develops mechatronic components and solu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17060990", "url": "https://en.wikipedia.org/wiki/Nucleic%20acid%20methods", "title": "Nucleic acid methods", "text": "Nucleic acid methods are the techniques used to study nucleic acids: DNA and RNA.\n\nPurification\nDNA extraction\nPhenol\u2013chloroform extraction\nMinicolumn purification\nRNA extraction\nBoom method\nSynchronous coefficient of drag alteration (SCODA) DNA purification\n\nQuantification\nAbundance in weight: spectroscopic nucleic acid quantitation\nAbsolute abundance in number: real-time polymerase chain reaction (quantitative PCR)\nHigh-throughput relative abundance: DNA microarray\nHigh-throughput absolute abu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17073431", "url": "https://en.wikipedia.org/wiki/Commodore%20Amiga%20MIDI%20Driver", "title": "Commodore Amiga MIDI Driver", "text": "Commodore Amiga MIDI Driver (CAMD) is a shared library for AmigaOS which provides a general device driver for MIDI data, so that applications can share MIDI data with each other in real-time, and interface to MIDI hardware in a device-independent way.\n\nHistory\nCommodore announced work on Commodore Amiga MIDI driver (CAMD) during the National Association of Music Merchants January 1990 trade show. Driver should allow multiple MIDI applications to work together in the Amiga multitasking environmen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17099782", "url": "https://en.wikipedia.org/wiki/AirNav%20Systems", "title": "AirNav Systems", "text": "AirNav Systems is a Tampa-based global flight tracking and data services company founded in 2001. The company operates a flight tracking website and mobile app called Radarbox which offers worldwide tracking of commercial and general aviation flights. AirNav Systems also owns and operates a ground-based ADS-B tracking network that is supported by over 20,000 active volunteer ADS-B data feeders from over 180 countries. The company's real-time tracking and data services are also used by 25,000 avi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17132787", "url": "https://en.wikipedia.org/wiki/John%20C.%20Lozier", "title": "John C. Lozier", "text": "John C. Lozier is a noted American control engineer. He was responsible for the control of the Telstar ground-tracking antenna installed near Andover, Maine, and the Brittany Peninsula in France. This equipment, involving real-time computer control, enabled the first transatlantic TV operation in 1962.\n\nLozier served as the president of the American Automatic Control Council from 1960 to 1962 and as the president of the International Federation of Automatic Control from 1972 to 1975.\n\nHe receive", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17197903", "url": "https://en.wikipedia.org/wiki/Space%20Empires%3A%20Starfury", "title": "Space Empires: Starfury", "text": "Space Empires: Starfury is an action video game developed by Malfador Machinations and published by Shrapnel Games on September 22, 2003. The game is set in a Space Empires universe containing planetary systems linked by warp points, or wormholes. The game allows the player to control a single spaceship to explore the universe.\n\nGameplay\nIn Space Empires: Starfury, the player controls a single spaceship in real-time, as opposed to controlling an entire intergalactic empire in a 4X turn-based fas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17216986", "url": "https://en.wikipedia.org/wiki/Cyberformance", "title": "Cyberformance", "text": "Cyberformance refers to live theatrical performances in which remote participants are enabled to work together in real time through the medium of the internet, employing technologies such as chat applications or purpose-built, multiuser, real-time collaborative software (for example, UpStage, Visitors Studio, the Waterwheel Tap, MOOs, and other platforms). Cyberformance is also known as online performance, networked performance, telematic performance, and digital theatre; there is as yet no con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17225347", "url": "https://en.wikipedia.org/wiki/Sawmill%20%28software%29", "title": "Sawmill (software)", "text": "Sawmill is a software package for the statistical analysis and reporting of log files, with dynamic contextual filtering, \"live\" data zooming, user interface customization, and custom calculated reports. Sawmill also incorporates real-time reporting and real-time alerting. Available since 1997, at this time Sawmill provides support for approximately 850 server log file formats, with new formats added on request. Sawmill also includes a page tagging server and JavaScript page tag for the analysis", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17230577", "url": "https://en.wikipedia.org/wiki/Checkpoint%20Systems", "title": "Checkpoint Systems", "text": "Checkpoint Systems is an American provider for loss prevention and merchandise visibility. Checkpoint allows retailers to achieve accurate real-time inventory, accelerate the replenishment cycle, prevent out-of-stocks and reduce theft to improve merchandise availability and the shopper's experience. Checkpoint offers Electronic Article Surveillance (EAS) radio frequency solutions for retail, high-theft and loss-prevention solutions, RFID hardware, software, and labeling capabilities.\n\nHistory\nCh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17238444", "url": "https://en.wikipedia.org/wiki/MindFire%2C%20Inc", "title": "MindFire, Inc", "text": "MindFire, Inc. provides personalized URLs and personalized landing page technology to the graphic arts and marketing communication industries.\n\nMindFire's main product, LookWho\u2019sClicking, is a web-based application that simplifies the creation, management and tracking of personalized URLs, VIP landing pages, pay per click (PPC) and mass media landing pages, as well as automated follow-up email and real-time reporting.\n\nThe company typically delivers LookWho\u2019sClicking through print service provid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17340194", "url": "https://en.wikipedia.org/wiki/VirtualLogix", "title": "VirtualLogix", "text": "VirtualLogix, Inc. provides real-time virtualization software and related development tools for embedded systems. The company was founded in 2002.\nIn September 2010, VirtualLogix was acquired by Red Bend Software.\n\nProducts\n\nReal-time hypervisors\nVirtualLogix's VLX Hypervisor provides concurrent support for rich operating systems like Linux and Windows, and in-house or commercial real-time operating systems on general purpose processors and DSPs.\n\nVLX supports a variety of 32-bit/64-bit processo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17430982", "url": "https://en.wikipedia.org/wiki/QP", "title": "QP", "text": "QP, Qp, or Qp may refer to:\n\nScience, technology, and mathematics\n\nComputing\n Quoted-printable, an encoding to send 8-bit data over 7-bit path '=09'\n QP (Quantum Platform), a framework for building real-time embedded applications\n\nMedicine\n\n Qualified Person, a technical term used in European Union pharmaceutical regulation\n ATCvet code QP Antiparasitic products, insecticides and repellents, a section of the Anatomical Therapeutic Chemical Classification System for veterinary medicinal products\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17436706", "url": "https://en.wikipedia.org/wiki/EUROMICRO", "title": "EUROMICRO", "text": "EUROMICRO is a non-profit organization.\n\nHistory\nIt was founded in 1973 by Rodnay Zaks and co-founded by Reiner Hartenstein and a few other colleagues in response to emerging microprocessor technology (workstations, PCs etc. that were to be networked soon). EUROMICRO has focused on promoting, discussing, disseminating knowledge, information and skills, in education, academia, government and industry.\n\nEuromicro focuses upon multimedia, telecommunication, software engineeringreal-time systems, pa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17469546", "url": "https://en.wikipedia.org/wiki/Panopticon%20Software", "title": "Panopticon Software", "text": "Panopticon Software (now part of Altair Data Analytics) was a multi-national data visualization software company specializing in monitoring and analysis of real-time data. The firm was headquartered in Stockholm, Sweden. It partnered with several large systems integrators and infrastructure software companies, including SAP, Thomson Reuters, Kx Systems, and One Market Data (OneTick). The company's name is derived from the Greek: 'pan' for all, 'optic' for sight. The company name is derived from ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17496868", "url": "https://en.wikipedia.org/wiki/Antics3D", "title": "Antics3D", "text": "Antics3D was a real-time 3D animation software program published by Antics Technologies. It is used by amateurs and professionals to create 3-dimensional, animated visualisations of events in a variety of industries. Filmmakers form the largest userbase, who use the software for pre-vizualisation, storyboarding and machinima. However, the software is also used in forensic animation, education, training and many other areas which benefit from animated visualisations. The user interface in Antics3", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17538745", "url": "https://en.wikipedia.org/wiki/Multimedia%20telephony", "title": "Multimedia telephony", "text": "The 3GPP/NGN IP Multimedia Subsystem (IMS) multimedia telephony service (MMTel) is a global standard based on the IMS, offering converged, fixed and mobile real-time multimedia communication using the media capabilities such as voice, real-time video, text, file transfer and sharing of pictures, audio and video clips. With MMTel, users have the capability to add and drop media during a session. You can start with chat, add voice (for instance Mobile VoIP), add another caller, add video, share me", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17548151", "url": "https://en.wikipedia.org/wiki/Comparison%20of%20real-time%20operating%20systems", "title": "Comparison of real-time operating systems", "text": "This is a list of real-time operating systems (RTOSs). This is an operating system in which the time taken to process an input stimulus is less than the time lapsed until the next input stimulus of the same type.\n\nReferences\n\nExternal links \n\nEmbedded operating systems\n\nReal-time operating systems", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17555723", "url": "https://en.wikipedia.org/wiki/Jim%20Whitehead%20%28computer%20scientist%29", "title": "Jim Whitehead (computer scientist)", "text": "E. James Whitehead is Professor and Chair of Computational Media at the University of California, Santa Cruz, United States. He served as the Chair of the Computer Science department University of California, Santa Cruz from 2010-2014. He received a BS in Electrical Engineering from the Rensselaer Polytechnic Institute in 1989, and a PhD in Information and Computer Science from the University of California, Irvine, in 2000.\n\nPreviously, he performed hard, real-time firmware development as a soft", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17567758", "url": "https://en.wikipedia.org/wiki/BeRTOS", "title": "BeRTOS", "text": "BeRTOS is a real-time operating system designed for embedded systems.\n\nIt is free and open-source software released under the GNU General Public License, version 2 (GPLv2) or later, with a special exception granting proprietary applications the right to keep their source code closed while keeping the base BeRTOS code open.\n\nIt has a very modular design, that allows running it on different architectures, ranging from tiny 8-bit microcontrollers such as Atmel AVR microcontrollers up to the 32-bit ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17577108", "url": "https://en.wikipedia.org/wiki/CPU%20shielding", "title": "CPU shielding", "text": "CPU shielding is a practice where on a multiprocessor system or on a CPU with multiple cores, real-time tasks can run on one CPU or core while non-real-time tasks run on another.\n\nThe operating system must be able to set a CPU affinity for both processes and interrupts.\n\nKernel space \nIn Linux in order to shield CPUs from individual interrupts being serviced on them you have to make sure that the following kernel configuration parameter is set:\n CONFIG_IRQBALANCE\n\nSee also \n\n Multi-core\n Multipr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17588500", "url": "https://en.wikipedia.org/wiki/GeoMedia", "title": "GeoMedia", "text": "Hexagon Geospatial's (a division of Intergraph Corporation) GeoMedia Professional is a geographic information system (GIS) management solution for map generation and the analysis of geographic information with smart tools that capture and edit spatial data. GeoMedia is used for: creating geographic data; managing geospatial databases; joining business data, location intelligence and geographic data together; creating hard and soft-copy maps; conduct analysis in 'real-time'; base platform for mul", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17610829", "url": "https://en.wikipedia.org/wiki/Phyz", "title": "Phyz", "text": "Phyz (Dax Phyz) is a public domain, 2.5D physics engine with built-in editor and DirectX graphics and sound. In contrast to most other real-time physics engines, it is vertex based and stochastic. Its integrator is based on a SIMD-enabled assembly version of the Mersenne Twister random number generator, instead of traditional LCP or iterative methods, allowing simulation of large numbers of micro objects with Brownian motion and macro effects such as object resonance and deformation.\n\nDescriptio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17658081", "url": "https://en.wikipedia.org/wiki/Stalin%20vs.%20Martians", "title": "Stalin vs. Martians", "text": "Stalin vs. Martians is a parody real-time strategy video game developed by Black Wing Foundation, Dreamlore and N-Game, released on April 29, 2009. Described as \"trashy and over-the-top\" by its creators, the game mocks World War II strategy games and utilizes pythonesque humor. The developers state that Stalin vs. Martians is \"obviously a parody, which sometimes gets close to being a satire\" and is \"halfway to becoming a trash icon of gaming industry for years\". In some interviews the lead desig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17660863", "url": "https://en.wikipedia.org/wiki/Process%20Monitor", "title": "Process Monitor", "text": "Process Monitor is a tool from Windows Sysinternals, part of the Microsoft TechNet website. The tool monitors and displays in real-time all file system activity on a Microsoft Windows or Unix-like operating system. It combines two older tools, FileMon and RegMon and is used in system administration, computer forensics, and application debugging.\n\nOverview\nProcess Monitor monitors and records all actions attempted against the Microsoft Windows Registry. Process Monitor can be used to detect faile", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17705611", "url": "https://en.wikipedia.org/wiki/Little%20King%27s%20Story", "title": "Little King's Story", "text": "Little King's Story is a real-time strategy life simulation role-playing video game co-developed by Cing and Town Factory for the Nintendo Wii. The game was published by Rising Star Games in Australia on April 22, 2009 and Europe on April 24, 2009, by Xseed Games in North America on July 21, 2009, and by Marvelous Entertainment in Japan on September 3, 2009.\n\nThe player character is a timid boy who has found a mysterious crown which gives him the power to charm people and make them follow orders", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17739236", "url": "https://en.wikipedia.org/wiki/432nd%20Wing", "title": "432nd Wing", "text": "The 432nd Wing is a United States Air Force unit assigned to Air Combat Command at Creech Air Force Base near Indian Springs, Nevada. It flies General Atomics MQ-9 Reaper and RQ-170 Sentinel Unmanned aerial vehicles.\n\nThe group operates unmanned reconnaissance aircraft which provide real-time reconnaissance, surveillance, and precision attack against fixed and time-critical targets. The 432nd Air Expeditionary Wing is a provisional unit assigned to Air Combat Command and is the designation for c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17752519", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%3A%20Mythologies", "title": "Age of Empires: Mythologies", "text": "Age of Empires: Mythologies is a turn-based strategy video game based on Age of Mythology. It is the sequel to Age of Empires: The Age of Kings for the Nintendo DS.\n\nGameplay\nUnlike the original Age of Mythology for the PC, Age of Empires: Mythologies is turn-based as opposed to real-time strategy, where in the vein of Advance Wars and the previous Age of Empires: The Age of Kings, each player is given a turn where their units can make single actions within that turn such as moving to an opposin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17786157", "url": "https://en.wikipedia.org/wiki/Molotov%20Alva%20and%20His%20Search%20for%20the%20Creator", "title": "Molotov Alva and His Search for the Creator", "text": "Molotov Alva and His Search for the Creator: A Second Life Odyssey, originally titled My Second Life: The Video Diaries of Molotov Alva, is a 2007 American documentary film created by Douglas Gayeton. Molotov Alva tells the story of a man's passage from his real (analog) life in Petaluma, California into a new (digital) existence inside Linden Lab's virtual world Second Life. The production was filmed entirely in Second Life using machinima, the use of real-time 3-D graphics engines to create an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17809558", "url": "https://en.wikipedia.org/wiki/Beat%20the%20Traffic", "title": "Beat the Traffic", "text": "Beat the Traffic was a provider of vehicle traffic reporting solutions for broadcast media and consumers. With a focus on daily commuters, Beat the Traffic was founded in 2001 by former CEO Andre Gueziec. On September 10, 2012, Pelmorex announced it had acquired Beat the Traffic.\n\nUsing information compiled from public and private sources, crowd-sourced content coupled with its own reporting teams, Beat the Traffic provided real-time traffic information and maps for most major cities in the US ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "17956594", "url": "https://en.wikipedia.org/wiki/Harvest%3A%20Massive%20Encounter", "title": "Harvest: Massive Encounter", "text": "Harvest: Massive Encounter is a real-time strategy indie video game developed and published by Oxeye Game Studio. It was released on March 5, 2008. The game was awarded a second place in the Swedish Game Awards 2007.\n\nGameplay \nThe game, regardless of mode, leaves the player with a small base with two power generators and three power links. The player would then use the starting money to begin mining operations and setting up defensive lasers. \n\nDepending on the game mode, various waves of alien", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18005052", "url": "https://en.wikipedia.org/wiki/Center%20for%20Southeastern%20Tropical%20Advanced%20Remote%20Sensing", "title": "Center for Southeastern Tropical Advanced Remote Sensing", "text": "The Center for Southeastern Tropical Advanced Remote Sensing (CSTARS) is a ground station that receives imagery data from a variety of remote sensing satellites. CSTARS is owned and operated by the Rosenstiel School of Marine and Atmospheric Science, a college within the University of Miami.\n\nOverview\nCSTARS is a state-of-the-art real-time satellite reception and analysis facility located in southern Miami-Dade county, Florida. Its mission is to collect satellite imagery for environmental monit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18041989", "url": "https://en.wikipedia.org/wiki/Geomipmapping", "title": "Geomipmapping", "text": "Geomipmapping or geometrical mipmapping is a real-time block-based terrain rendering algorithm developed by W.H. de Boer in 2000 that aims to reduce CPU processing time which is a common bottleneck in level of detail approaches to terrain rendering. \n\nPrior to geomipmapping, techniques such as quadtree rendering were used to divide the terrain into square tiles created by binary division with quadratically diminishing size. The subdivision step is typically performed on the CPU which creates a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18117422", "url": "https://en.wikipedia.org/wiki/Starships%20Unlimited", "title": "Starships Unlimited", "text": "Starships Unlimited is a 4X real-time strategy game series. Unlike other 4X games, Starships Unlimited puts greater emphasis on starships than on colonies.\n\nReferences\n\nExternal links\nOfficial Apezone site\n\nScience fiction video games\nWindows games\n4X video games\nReal-time strategy video games", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18149818", "url": "https://en.wikipedia.org/wiki/13th%20Reconnaissance%20Squadron", "title": "13th Reconnaissance Squadron", "text": "The 13th Reconnaissance Squadron is part of the 926th Wing at Beale Air Force Base, California. It operates RQ-4 Global Hawk unmanned aircraft conducting reconnaissance and surveillance missions.\n\nMission\nThe squadron provides theater commanders with near-real-time intelligence, surveillance, reconnaissance and target acquisition data.\n\nHistory\n\nWorld War II\nThe 13th flew combat in the European Theater of Operations from 28 March 1943 \u2013 26 April 1945.\n\nAirlift\nIn 1952, it converted to a troop ca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18191918", "url": "https://en.wikipedia.org/wiki/Team%20Yankee%20%28video%20game%29", "title": "Team Yankee (video game)", "text": "Team Yankee is a computer wargame adaptation of the 1987 Harold Coyle's World War III novel Team Yankee that was developed by British studio Oxford Digital Enterprises for Amiga, Atari ST, MS-DOS, and Commodore CDTV. It was published in 1990 by Empire Software, Team Yankee is a mixture of real-time strategy and simulation game with a 3D environment and 2D sprites. The player is able to use several well-known late Cold War-era tanks and other armoured vehicles (M1 Abrams, M2 Bradley IFV, M113, T", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18235841", "url": "https://en.wikipedia.org/wiki/AnyKode%20Marilou", "title": "AnyKode Marilou", "text": "anyKode Marilou is a modeling and simulation environment for mobile robots, humanoids, articulated arms and parallels robots operating in real-world conditions that respect the laws of physics. This robotics suite is used in research centers as well as industry for various projects like humanoid architectures, wheeled and multi legged vehicles and multi-robot systems (Multi-agents).\n\nIt also has a real-time engine that uses the ODE (Open Dynamics Engine) for collisions detecting and dynamics man", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18248185", "url": "https://en.wikipedia.org/wiki/Spore%20%282008%20video%20game%29", "title": "Spore (2008 video game)", "text": "Spore is a 2008 life simulation real-time strategy God game developed by Maxis, published by Electronic Arts and designed by Will Wright, and was released for Microsoft Windows and Mac OS X. Covering many genres including action, real-time strategy, and role-playing games, Spore allows a player to control the development of a species from its beginnings as a microscopic organism, through development as an intelligent and social creature, to interstellar exploration as a spacefaring culture. It h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18267840", "url": "https://en.wikipedia.org/wiki/Perimeter%202%3A%20New%20Earth", "title": "Perimeter 2: New Earth", "text": "Perimeter 2: New Earth (), stylized as Perimeter II: New Earth, is a sequel to the 2004 real-time strategy video game Perimeter, released in 2009.\n\nReception\n\nDespite the commercial success of its predecessor, Perimeter 2 was not a big success. The game received \"generally unfavorable reviews\" according to video game review aggregator Metacritic.\n\nReferences\n\nExternal links\n \n Perimeter 2: New Earth official site (archived, 2012)\n\n2009 video games\nReal-time strategy video games\nScience fiction ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18271157", "url": "https://en.wikipedia.org/wiki/Ad%20exchange", "title": "Ad exchange", "text": "An ad exchange is a technology platform that facilitates the buying and selling of media advertising inventory from multiple ad networks. Prices for the inventory are determined through real-time bidding (RTB). The approach is technology-driven as opposed to the historical approach of negotiating price on media inventory. This represents a field beyond ad networks as defined by the Interactive Advertising Bureau (IAB), and by advertising trade publications.\n\nAd exchanges\nNotable ad exchanges inc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18284850", "url": "https://en.wikipedia.org/wiki/Warlords%20III", "title": "Warlords III", "text": "Warlords III: Reign of Heroes is a computer wargame released in 1997, and the third release in the Warlords video game series. In 1998 it was followed by the expansion Warlords III: Darklords Rising.\n\nWarlords III was a critical success but failed commercially, a performance that some commentators attributed to the rise of the real-time strategy genre.\n\nGameplay\nAfter a four-year hiatus, SSG developed Warlords III: Reign of Heroes.\n\nThe game was released for Microsoft Windows and used new system", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18298795", "url": "https://en.wikipedia.org/wiki/Perimeter%20%28video%20game%29", "title": "Perimeter (video game)", "text": "Perimeter is a real-time strategy video game developed by Russian studio K-D Lab for Microsoft Windows. It is published by 1C Company and Codemasters, and was released in 2004.\n\nGameplay\nIn Perimeter, ground must be terraformed before buildings can be built on it. Some weapons can distort the ground, which will cause constant damage to buildings until the ground is re-terraformed.\n\nBuildings must also be placed on a power grid formed by Energy Cores linked to the player's Frame. A building that ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18339816", "url": "https://en.wikipedia.org/wiki/Battlestations%3A%20Pacific", "title": "Battlestations: Pacific", "text": "Battlestations: Pacific is an action and real-time tactics video game published by Eidos Interactive and developed by Eidos Hungary. It is also the sequel to the 2007 video game Battlestations: Midway. It was released for Microsoft Windows and Xbox 360 worldwide in May 2009. The Mac OS X version of the game was developed by Robosoft Technologies and released on October 8, 2010, by Feral Interactive.\n\nSquare Enix Europe closed the game's developer, Eidos Hungary, in April 2010.\n\nGameplay\nBattlest", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18340085", "url": "https://en.wikipedia.org/wiki/Codename%3A%20Panzers%20%E2%80%93%20Cold%20War", "title": "Codename: Panzers \u2013 Cold War", "text": "Codename: Panzers \u2013 Cold War is a real-time strategy video game developed by Hungarian studio InnoGlow and published by Atari. A sequel to Codename: Panzers, it was previously developed by Stormregion software, to be published by 10tacle, before both companies went bankrupt in 2008.\n\nStory \nThe storyline starts in 1949, and follows an alternate history, with the timeline diverging into a war between the Soviets and the West. Following the defeat of the Nazis, Germany has been partitioned into So", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18340621", "url": "https://en.wikipedia.org/wiki/BattleForge", "title": "BattleForge", "text": "BattleForge is a discontinued video game that was developed by EA Phenomic and published by Electronic Arts in 2009. BattleForge is an online card-based real-time strategy (RTS) game. The game's servers were shut down on October 31, 2013. An unofficial full-revival of the game was released in December 18, 2020 under the name of Skylords Reborn.\n\nHistory \nBattleforge was developed by EA Phenomic and published Electronic Arts. It was released on Windows in March 2009 along with a demo.\nOn May 26, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18364730", "url": "https://en.wikipedia.org/wiki/FlexOS", "title": "FlexOS", "text": "FlexOS is a discontinued modular real-time multiuser multitasking operating system (RTOS) designed for computer-integrated manufacturing, laboratory, retail and financial markets. Developed by Digital Research's Flexible Automation Business Unit in Monterey, California, in 1985, the system was considered to become a successor of Digital Research's earlier Concurrent DOS, but with a new, modular, and considerably different system architecture and portability across various processor families. Sti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18384743", "url": "https://en.wikipedia.org/wiki/Stormrise", "title": "Stormrise", "text": "Stormrise is a real-time tactics video game developed by Creative Assembly's Australian studio and published by Sega for Microsoft Windows, PlayStation 3, and Xbox 360. It's set in a post-apocalyptic world.\n\nGameplay\n\nThe game is a real-time tactics game, with the ability to control units in the air, on the surface, and underground.\n\nStory\n\nIn the near future, a network of orbital weather control satellites was created to prevent an environmental disaster. But, the satellites malfunctioned trig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18433240", "url": "https://en.wikipedia.org/wiki/7th%20Legion%20%28video%20game%29", "title": "7th Legion (video game)", "text": "7th Legion is a real-time strategy video game for Microsoft Windows, developed by Vision Software and Epic MegaGames and published by MicroProse in 1997. The game consists of two single-player campaigns and supports multiplayer online games. On February 18, 2014, Tommo re-released the game on GOG.com, but without multiplayer. In a joint effort, Nintendo was going to help Epic MegaGames port the game to Nintendo 64, but this port did not come to release.\n\nGameplay\n7th Legion is a real-time strate", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18449814", "url": "https://en.wikipedia.org/wiki/Dawn%20of%20Fantasy", "title": "Dawn of Fantasy", "text": "Dawn of Fantasy is a massively multiplayer online real-time strategy (MMORTS) game set in a medieval high fantasy setting. The game was developed by Canadian company Reverie World Studios for Microsoft Windows and released in 2011. An Xbox 360 version was initially planned but later cancelled.\n\nGameplay\n\nDawn of Fantasy has three playable races: Men, Elves, and Orcs. The economy of Dawn of Fantasy revolves around four primary resources: food, wood, stone, and gold. Dragons and Dwarves were origi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18475652", "url": "https://en.wikipedia.org/wiki/Warrior%20Kings%3A%20Battles", "title": "Warrior Kings: Battles", "text": "Warrior Kings: Battles is a real-time strategy video game developed by British studio Black Cactus and published by Empire Interactive in Europe and co-published with Strategy First in North America. It is a sequel to the 2002 game Warrior Kings and was released March 21, 2003 in Europe and September 30, 2003 in North America.\n\nThe story is set 100 years after the first Warrior Kings where the Empire of Orbis has fragmented into states of feuding warlords. Like its predecessor, gameplay focuses ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18495552", "url": "https://en.wikipedia.org/wiki/Fat%20Princess", "title": "Fat Princess", "text": "Fat Princess is an action real-time strategy video game developed by Titan Studios and published by Sony Computer Entertainment for the PlayStation 3. It was released in North America, Europe and Australia on July 30, 2009, and in Japan on December 25 the same year, as . It was included on the Best of PlayStation Network Vol. 1 compilation disc, released on June 18, 2013. A PlayStation Portable version, titled Fat Princess: Fistful of Cake, was released in 2010.\n\nFat Princess is a multiplayer ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18495956", "url": "https://en.wikipedia.org/wiki/Dominus%20%28video%20game%29", "title": "Dominus (video game)", "text": "Dominus is a real-time strategy video game developed by Visual Concepts and released for MS-DOS in 1994. A Sega Genesis version was planned but never released.\n\nGameplay\nThe game takes place in a medieval fantasy world. The player controls a king who must defend his kingdom from several invading kingdoms, all of whom are attacking simultaneously from different directions. The invaders start moving in from the outlying villages, into the castle walls, and finally entering the keep itself. The pla", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18525363", "url": "https://en.wikipedia.org/wiki/Comtex", "title": "Comtex", "text": "Comtex News Network, Inc. is a distributor of news on the Internet, specializing in the business and financial market sectors. The company is a wholesaler of electronic real-time news and content gathered from thousands of sources, including national and international news bureaus, agencies and publications (including Business Wire, Dow Jones, McClatchy Information Services, PR Newswire and United Press International). Comtex enhances and standardizes the content received from such sources in o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18590048", "url": "https://en.wikipedia.org/wiki/1990s%20in%20video%20games", "title": "1990s in video games", "text": "The 1990s was the third decade in the industry's history. It was a decade of marked innovation in video gaming. It was a decade of transition from sprite-based graphics to full-fledged 3D graphics and it gave rise to several genres of video games including, but not limited to, the first-person shooter, real-time strategy, survival horror, and MMO. Handheld gaming began to become more popular throughout the decade, thanks in part to the release of the Game Boy. Arcade games, although still relati", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18603804", "url": "https://en.wikipedia.org/wiki/Bos%20Wars", "title": "Bos Wars", "text": "Bos Wars is an open source, cross-platform real-time strategy video game.\n\nHistory \nThe project was started by Tina Petersen, as . When Petersen died in 2003, Fran\u00e7ois Beerten became the project's leader. The first v1.0 public release was in March 2004. In June 2007, the Stratagus game engine was merged with BOS and the game became known as . The game's community continued the development of the game for a time, but the last release was 2.7.0 in 2013.\n\nGameplay \nThe game map initially starts wit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18605710", "url": "https://en.wikipedia.org/wiki/Cube%20Quest", "title": "Cube Quest", "text": "Cube Quest is a shoot 'em up arcade laserdisc game by American company Simutrek released in 1983. It was primarily designed and programmed by Paul Allen Newell, who previously wrote some Atari 2600 games. It was introduced at Tokyo's Amusement Machine Show (AM Show) in September 1983 and then the AMOA show the following month, before releasing in North America in December 1983.\n\nIt combines real-time 3D polygon graphics with laserdisc-streamed, animated backgrounds, making it the first arcade vi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18613380", "url": "https://en.wikipedia.org/wiki/Altibase", "title": "Altibase", "text": "ALTIBASE is a hybrid database, relational open source database management system manufactured by Altibase Corporation. The software comes with a hybrid architecture which allows it to access both memory-resident and disk-resident tables using single interface. It supports both synchronous and asynchronous replication and offers real-time ACID compliance. Support is also offered for a variety of SQL standards and programming languages. Other important capabilities include data import and export,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18640035", "url": "https://en.wikipedia.org/wiki/Survival%20Project", "title": "Survival Project", "text": "Survival Project: Search for the Legendary Orb () was a 2D fantasy massively multiplayer online action role-playing game with emphasis on real-time combat and PvP. It was the first game HanbitSoft commercialized and was released in 2003. The International version was also released in 2003 for the 2003 WCG Survival Project Tournament as a Korean Government sponsored game. The international servers were later closed on October 31, 2004 after the partners of the game built up their own localized si", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18657445", "url": "https://en.wikipedia.org/wiki/Manufacturing%20operations%20management", "title": "Manufacturing operations management", "text": "Manufacturing operations management (MOM) is a collection of systems for managing end-to-end manufacturing processes with a view to optimizing efficiency.\n\nThere are many types of MOM software, including for production management, performance analysis, quality and compliance, and human machine interface (HMI). Production management software provides real-time information about jobs and orders, labor and materials, machine status, and product shipments. Performance analysis software displays metr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18686245", "url": "https://en.wikipedia.org/wiki/TacSat-5", "title": "TacSat-5", "text": "TacSat-5 is a planned fifth satellite in a series of U.S. military reconnaissance satellites. The project will be managed by the Air Force Research Laboratory in cooperation with the Operationally Responsive Space Office of the Department of Defense. The TacSat satellites are all designed to demonstrate the ability to provide real-time data collected from space to combatant commanders in the field.\n\nIn January 2009, AFRL released a Broad Agency Announcement for the development of TacSat-5. At th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18706620", "url": "https://en.wikipedia.org/wiki/RTL2", "title": "RTL2", "text": "RTL2 may refer to:\n\n RTL II, a German general-interest television channel\n RTL 2 (Croatia), a Croatian commercial broadcaster with national availability\n RTL2 (France), a French private radio station, based in Paris\n RTL II (Hungary), a Hungarian commercial broadcaster\n RTL/2, a real-time programming language based on Algol 68", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18717529", "url": "https://en.wikipedia.org/wiki/StarCraft%20II%3A%20Wings%20of%20Liberty", "title": "StarCraft II: Wings of Liberty", "text": "StarCraft II: Wings of Liberty is a science fiction real-time strategy video game developed and published by Blizzard Entertainment. It was released worldwide in July 2010 for Microsoft Windows and Mac OS X. A sequel to the 1998 video game StarCraft and the Brood War expansion pack, the game is best known as the original installment of StarCraft II which was later followed by a number of expansion packs. Wings of Liberty has been free-to-play since November 2017.\n\nLike its predecessor, the game ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18733617", "url": "https://en.wikipedia.org/wiki/Multiwinia", "title": "Multiwinia", "text": "Multiwinia: Survival of the Flattest (also known as simply Multiwinia) is a real-time strategy video game by Introversion Software. Multiwinia is available as a standalone game, or included as part of Darwinia+.\n\nPlot\nMultiwinia follows its predecessor Darwinia, in which a computer scientist, Dr Sepulveda, created a digital world that existed within a computer network. This world, Darwinia, was inhabited by a two-dimensional digital life-form called Darwinians and was to become \"the world's firs", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18736399", "url": "https://en.wikipedia.org/wiki/Starship%20Troopers%3A%20Terran%20Ascendancy", "title": "Starship Troopers: Terran Ascendancy", "text": "Starship Troopers: Terran Ascendancy is a real-time tactics video game developed by Blue Tongue Entertainment and published by Hasbro Interactive under the MicroProse label on October 28, 2000. The game is based on both the 1997 movie Starship Troopers and the 1959 book Starship Troopers by Robert A. Heinlein.\n\nPlot\n\nThe game is divided into three acts following the player's Mobile Infantry platoon from the start to the end of the war.\n\nAct 1\n\nOn October 18, 2369, the player's platoon is first d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18765127", "url": "https://en.wikipedia.org/wiki/Volker", "title": "Volker", "text": "Volker may refer to:\n\n Volker (name), including a list of people with the given name or surname\n Volker, Kansas City, a historic neighborhood in Kansas City\n Volker Boulevard, Kansas City\n Alien Nations (German: Die V\u00f6lker), a real-time strategy video game released in 1999\n\nSee also\n VolkerWessels, a Dutch construction company\n VolkerRail, a railway infrastructure services company based in Doncaster, England, owned by VolkerWessels\n Voelcker (disambiguation) \n Voelker (disambiguation)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18805793", "url": "https://en.wikipedia.org/wiki/National%20Electronic%20Funds%20Transfer", "title": "National Electronic Funds Transfer", "text": "National Electronic Funds Transfer (NEFT) is an electronic funds transfer system maintained by the Reserve Bank of India (RBI). Started in November 2005, the setup was established and maintained by Institute for Development and Research in Banking Technology. NEFT enables bank customers in India to transfer funds between any two NEFT-enabled bank accounts on a one-to-one basis. It is done via electronic messages. \n\nUnlike real-time gross settlement, fund transfers through the NEFT system do not ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18859397", "url": "https://en.wikipedia.org/wiki/X100", "title": "X100", "text": "X100 or X-100 may refer to:\n Curtiss-Wright X-100, an experimental aircraft with tilt rotors\n Fujifilm X100, a series of digital cameras\n X-100 (house), an experimental steel house in California\n Lotus M90 (also Lotus X100), a concept car\n New South Wales X100 class locomotive, a group of rail tractors built by Chullora Railway Workshops\n Rockman X100, a model of headphone amplifier by Scholz Research & Development, Inc.\n RT.X100, a real-time PCI video editing card\n Triton X-100, a nonionic surf", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18889161", "url": "https://en.wikipedia.org/wiki/Grand%20Ages%3A%20Rome", "title": "Grand Ages: Rome", "text": "Grand Ages: Rome (previously known as Imperium Romanum 2) is a 2009 city-building and real-time strategy game developed by Haemimont Games and published by Kalypso Media. It is the sequel to 2008's Imperium Romanum. The Italian and Spanish versions of the game are titled as Imperivm: Civitas III. A sequel, Grand Ages: Medieval, was released on September 25, 2015.\n\nPlot\nThe single player campaign takes place during the final years of the Roman Republic during the time of the First Triumvirate. Th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18895338", "url": "https://en.wikipedia.org/wiki/Swords%20%26%20Soldiers", "title": "Swords & Soldiers", "text": "Swords & Soldiers is a 2D sidescrolling real-time strategy game by Ronimo Games. It was released in Europe on May 15, 2009, and in North America on June 8, 2009. It is available for Windows, Mac OS X, Linux, Android, Wii, PlayStation 3, iOS, Nintendo 3DS, Wii U, and Nintendo Switch. Two Tribes released Swords & Soldiers on the Wii U eShop, which was released in North America and Europe on May 22, 2014.\n\nA sequel, Swords & Soldiers II, was released on the Wii U eShop in May 2015. In June 2018, Ro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18905668", "url": "https://en.wikipedia.org/wiki/D-Day%20%28video%20game%29", "title": "D-Day (video game)", "text": "D-Day is a real-time strategy game, that is set during and after the Normandy D-Day landings in 1944. The game features fully rendered 3D viewable from different angles. The player can take control of up to 60 different units, from snipers, to flamethrower units, and can take control of wheeled and tracked units. It is considered a sequel to Desert Rats vs. Afrika Korps, which uses the same control system and engine, along with Monte Cristo's 1944: Battle of the Bulge.\n\nThe game features single ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18933234", "url": "https://en.wikipedia.org/wiki/Emacs", "title": "Emacs", "text": "Emacs or EMACS (Editor MACroS) is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as \"the extensible, customizable, self-documenting, real-time display editor\". Development of the first Emacs began in the mid-1970s, and work on its direct descendant, GNU Emacs, continues actively .\n\nEmacs has over 10,000 built-in commands and its user interface allows the user to combine these commands into macros to a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18936433", "url": "https://en.wikipedia.org/wiki/CORS%20%28disambiguation%29", "title": "CORS (disambiguation)", "text": "CORS may refer to:\n\n Corus Bankshares (formerly NASDAQ: CORS), a defunct holding company\n Cross-origin resource sharing, a mechanism in World Wide Web security\n Continuously Operating Reference Station, a network of real-time kinematik (RTK) base stations that broadcast corrections to augment the local accuracy of GNSS (e.g. GPS) readings\n Cors, a surname commonly used in Spain, the United Kingdom and Germany", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18949978", "url": "https://en.wikipedia.org/wiki/Anno%201404", "title": "Anno 1404", "text": "Anno 1404, known as Dawn of Discovery in North America, is a city-building and economic simulation game with real-time strategy elements, part of the Anno series. Released in 2009, it was developed by Related Designs, produced by Blue Byte, and published by Ubisoft. Anno 1404 is the sequel to Anno 1701 and is followed by the futuristic sequel Anno 2070. Though the game centers on a series of fictional events, the overall concept of the storyline is based upon real life aspects of medieval and re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18960432", "url": "https://en.wikipedia.org/wiki/Innocent%20%282009%20film%29", "title": "Innocent (2009 film)", "text": "Innocent, also known as Helix, is a 2009 American action drama film directed by Aram Rappaport, filmed in downtown Chicago, Illinois in one continuous take. There are no cuts in the filming. Innocent is one of the first ever feature-length films to be shot in one take, and it is a kidnapping thriller that circumnavigates downtown Chicago on foot and by car.\n\nPremise\nIn Chicago, five peoples' lives intersect in a real-time story.\n\nCast\n Alexa Vega - Ashley\n Austin O'Brien - Jae\n Carlo Lorenzo Ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18968032", "url": "https://en.wikipedia.org/wiki/IntervalZero", "title": "IntervalZero", "text": "IntervalZero, Inc. develops hard real-time software and its symmetric multiprocessing (SMP) enabled RTX and RTX64 software transform the Microsoft Windows general-purpose operating system (GPOS) into a real-time operating system (RTOS).\n\nIntervalZero and its engineering group regularly release new software (cf its history).\n\nIts most recent product, RTX64, focuses on 64-bit and symmetric multiprocessing (SMP) to replace dedicated hardware based systems such as digital signal processors (DSPs) or", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "18996908", "url": "https://en.wikipedia.org/wiki/Livestreaming", "title": "Livestreaming", "text": "Livestreaming is streaming media simultaneously recorded and broadcast in real-time over the Internet. It is often referred to simply as streaming, but this abbreviated term is ambiguous because \"streaming\" may refer to any media delivered and played back simultaneously without requiring a completely downloaded file. Non-live media such as video-on-demand, vlogs, and YouTube videos are technically streamed, but not live-streamed.\n\nLivestream services encompass a wide variety of topics, from soci", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19004505", "url": "https://en.wikipedia.org/wiki/Nano-RK", "title": "Nano-RK", "text": "Nano-RK is a wireless sensor networking real-time operating system (RTOS) from Carnegie Mellon University, designed to run on microcontrollers for use in sensor networks. Nano-RK supports a fixed-priority fully preemptive scheduler with fine-grained timing primitives to support real-time task sets. \"Nano\" implies that the RTOS is small, using 2\u00a0KB of random-access memory (RAM) and using 18\u00a0KB of flash memory, while RK is short for resource kernel. A resource kernel provides reservations on how o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19071981", "url": "https://en.wikipedia.org/wiki/Brigade%20E5%3A%20New%20Jagged%20Union", "title": "Brigade E5: New Jagged Union", "text": "Brigade E5: New Jagged Union (Russian: \u0411\u0440\u0438\u0433\u0430\u0434\u0430 \u04155: \u041d\u043e\u0432\u044b\u0439 \u0410\u043b\u044c\u044f\u043d\u0441) is a real-time tactical role-playing game developed by Russian developer Aperion. It was released in 2005 in Russia, and on October 17, 2006 in North America.\n\nReception\n\nThe game received \"generally unfavorable reviews\" according to the review aggregation website Metacritic. Mark Birnbaum of IGN called it \"without exaggeration...one of the worst games I've ever played\". Despite the negative reviews in the west, the game was rated ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19099392", "url": "https://en.wikipedia.org/wiki/Ypsilon%20%28Scheme%20implementation%29", "title": "Ypsilon (Scheme implementation)", "text": "Ypsilon Scheme is a free software implementation of the R6RS standard of Scheme. It implements mostly concurrent garbage collection, which is optimized for multi-core CPU systems. Its author, Yoshikatsu Fujita, developed the Ypsilon implementation to satisfy the need for a real-time Scheme implementation suitable for computer game development without giving up a garbage collected dynamic interpreter.\n\nExternal links \n\nSource code hosted at Google Code\n\nScheme (programming language) implementati", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19135734", "url": "https://en.wikipedia.org/wiki/Splunk", "title": "Splunk", "text": "Splunk Inc. is an American software company based in San Francisco, California, that produces software for searching, monitoring, and analyzing machine-generated data via a Web-style interface.\n\nIts software helps capture, index and correlate real-time data in a searchable repository, from which it can generate graphs, reports, alerts, dashboards and visualizations.\nSplunk uses machine data for identifying data patterns, providing metrics, diagnosing problems and providing intelligence for busin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19154011", "url": "https://en.wikipedia.org/wiki/NProtect%20GameGuard%20Personal%202007", "title": "NProtect GameGuard Personal 2007", "text": "nProtect GameGuard Personal 2007 (often referred to as nProtect GGP2007) is an Anti-Virus security suite for Microsoft Windows 2000, XP, and Vista developed by INCA Internet for users playing online computer games. It includes real-time protection from most forms of malware, including viruses, trojans, spyware, worms, keyloggers, and rootkits, as well as a game optimization feature. Like many other security products, nProtect GameGuard Personal 2007 can cause collisions when executed with securi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19159217", "url": "https://en.wikipedia.org/wiki/TriGeo%20Network%20Security", "title": "TriGeo Network Security", "text": "TriGeo Network Security is a United States-based provider of security information and event management (SIEM) technology. The company helps midmarket organizations proactively protect networks and data from internal and external threats, with a SIEM appliance that provides real-time log management and automated network defense - from the perimeter to the endpoint.\n\nTriGeo\u2019s appliance-based solution combines security event management, security information management and log management and intell", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19182948", "url": "https://en.wikipedia.org/wiki/%C3%8Dndice%20Metropolitano%20de%20la%20Calidad%20del%20Aire", "title": "\u00cdndice Metropolitano de la Calidad del Aire", "text": "The \u00cdndice Metropolitano de la Calidad del Aire or IMECA, in English meaning the Metropolitan Index of Air Quality, is the reference value system for the levels of air pollution in the Mexico City Metropolitan Area, within the Valley of Mexico.\n\nIt is a real-time monitoring of the concentrations of several pollutants in the atmosphere of the Mexico City Metropolitan Area. It was established for the inhabitants of Mexico City and the Greater Mexico City area to know the real-time levels of air p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19196440", "url": "https://en.wikipedia.org/wiki/Lock%27s%20Quest", "title": "Lock's Quest", "text": "Lock's Quest is a real-time strategy tower defense video game developed by 5th Cell and published by THQ. It is 5th Cell's second Nintendo DS game. It was released in North America on September 8, 2008, in Europe on September 26, 2008 and in Australia on September 25, 2008.\n\nOn January 6, 2017, the German game ratings board Unterhaltungssoftware Selbstkontrolle (USK) rated Lock's Quest for PlayStation 4, Xbox One, and PC which indicated that the publisher was developing a port for the game. and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19208668", "url": "https://en.wikipedia.org/wiki/XaoS", "title": "XaoS", "text": "XaoS is an interactive fractal zoomer program. It allows the user to continuously zoom in or out of a fractal in real-time.\n\nXaoS is licensed under GPL. The program is cross-platform, and is available for a variety of operating systems, including Linux, Windows, Mac OS X, BeOS and others.\n\nXaoS can show the Mandelbrot set (power 2, 3, 4, 5 and 6), the Octo fractal, three types of Barnsley's fractals, the Newton fractal (order 3 and 4), Phoenix fractal and Magnet (1 and 2). XaoS can display Julia", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19219805", "url": "https://en.wikipedia.org/wiki/Machines%20at%20War", "title": "Machines at War", "text": "Machines at War is a real-time strategy video game developed by Isotope 244. It is the predecessor of Land Air Sea Warfare.\n\nGameplay \n\nThe gameplay is inspired by the seminal Command & Conquer series. However, Machines at War does not feature infantry units or navy units.\n\nReception \n Out of Eight PC Game Reviews called it \"A straightforward RTS game with some clever ideas\" and rated it 6/8.\n Software Review Boffin gave the Mac version 5 stars out of 5 and the Silver badge.\n Inside Mac Games ra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19279317", "url": "https://en.wikipedia.org/wiki/Real-time%20charging", "title": "Real-time charging", "text": "Real-time charging is an extension of call accounting that enables communications service providers (CSPs) to apply customer-specific rules for rating, discounting, promotions and settlements to better personalize the telecom experience. As CSPs begin to roll out advanced networks and services, offering and making money on these services requires the ability to do real-time charging.\n\nReal-time charging came into existence to serve the needs of prepaid mobile phone carriers as they sought to ent", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19287081", "url": "https://en.wikipedia.org/wiki/Clearing%20House%20Automated%20Transfer%20System", "title": "Clearing House Automated Transfer System", "text": "The Clearing House Automated Transfer System, or CHATS, is a real-time gross settlement (RTGS) system for the transfer of funds in Hong Kong. It is operated by Hong Kong Interbank Clearing Limited, a private company jointly owned by the Hong Kong Monetary Authority (HKMA) and the Hong Kong Association of Banks. Transactions in four currency denominations may be settled using CHATS: Hong Kong dollar, renminbi, euro, and US dollar. In 2005, the value of Hong Kong dollar CHATS transactions avera", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19302110", "url": "https://en.wikipedia.org/wiki/TVersity%20Media%20Server", "title": "TVersity Media Server", "text": "TVersity Media Server is a software application that streams multimedia content from a personal computer to UPnP, DLNA and mobile devices (Chromecast is also supported). It was the first media server to offer real-time transcoding. Some examples of supported devices are the Xbox 360, PlayStation 3, and Wii.\n\nThe first version of the software was released back on May 10, 2005 and it offered real-time transcoding of personal media and web media from the very first day. For example, the Xbox 360 d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19387653", "url": "https://en.wikipedia.org/wiki/Talvisota%3A%20Icy%20Hell", "title": "Talvisota: Icy Hell", "text": "Talvisota: Icy Hell (Russian \"Talvisota: \u041b\u0435\u0434\u044f\u043d\u043e\u0439 \u0430\u0434\") is a real-time tactics and educational computer game, developed by the international developer group Blitzfront Game Studio and is based on the events of the Winter War () conflict of 1939\u20131940 between Finland and the Soviet Union. The game is built-up upon Nival Interactive's Enigma Engine that was used in the Blitzkrieg game and is a fully stand-alone product.\n\nThe Finnish Board of Film Classification determined that Talvisota: Icy Hell is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19411647", "url": "https://en.wikipedia.org/wiki/Open%20Systems%20International", "title": "Open Systems International", "text": "Open Systems International, Inc. (OSI) is an automation software company headquartered in Medina, Minnesota, with international offices in Canada, Colombia, Spain, India, Dubai, Australia, Singapore, and China. Founded in 1992, OSI is privately held and employee owned. The company\u2019s systems are used for the real-time management and optimization of production, transport, and delivery networks for utilities in the electric, oil & gas, transportation, and water industries. OSI is one of the few U.S", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19476466", "url": "https://en.wikipedia.org/wiki/Malwarebytes%20%28software%29", "title": "Malwarebytes (software)", "text": "Malwarebytes (formerly Malwarebytes Anti-Malware, abbreviated as MBAM) is an anti-malware software for Microsoft Windows, macOS, Chrome OS, Android, and iOS that finds and removes malware. Made by Malwarebytes Corporation, it was first released in January 2006. It is available in a free version, which scans for and removes malware when started manually, and a paid version, which additionally provides scheduled scans, real-time protection and a flash-memory scanner.\n\nOverview\nMalwarebytes is prim", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19524693", "url": "https://en.wikipedia.org/wiki/List%20of%20StarCraft%20media", "title": "List of StarCraft media", "text": "StarCraft is a science fiction media franchise made up of real-time strategy video games developed and published by Blizzard Entertainment. The series has several games which carry the main story arc: StarCraft, its expansion pack StarCraft: Brood War, and the trilogy StarCraft II. In addition, the series incorporates media that include spin-off video games, tabletop games, novelizations, graphic novels, and other literature. A variety of toys have also been produced. Set in the 26th century, th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19529405", "url": "https://en.wikipedia.org/wiki/WhosHere", "title": "WhosHere", "text": "WhosHere is a social proximity networking app created by WhosHere founders Bryant Harris and Stephen Smith launched in July 2008. WhosHere utilizes GPS location capabilities combined with a social networking platform that allows users to interact with other people based on compatible geographical location. The app allows users to find other users with similar interests and connect with them real-time via free text, image messages and free VoIP calls without disclosing any personal information. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19585921", "url": "https://en.wikipedia.org/wiki/Techmeme", "title": "Techmeme", "text": "Techmeme is a technology news aggregator. The website has been described as \"a one-page, aggregated, filtered, archiveable summary in near real-time of what is new and generating conversation\".\n\nOverview\n\nGabe Rivera was a compiler software engineer at Intel before launching tech.memeorandum on September 12, 2005. After working on tech.memeorandum for a year, it was renamed to Techmeme. The website is funded entirely by Rivera, and has no investors.\n\nWebsite\nTechmeme uses an algorithm to order s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19638067", "url": "https://en.wikipedia.org/wiki/Grey%20Island%20Systems%20International", "title": "Grey Island Systems International", "text": "Grey Island Systems International () was a provider of 'real-time' Internet-based GPS/AVL and passenger information solutions targeted to government and enterprise fleets. Its InterFleet and NextBus brands were independently launched commercially in 1998. It was acquired by WebTech Wireless Inc. in 2009.\n\nHeadquartered in Toronto, with over 55 employees in offices around North America, Grey Island has garnered recognition from Industry groups such as the Profit 100, Canada\u2019s Fastest Growing Comp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19666091", "url": "https://en.wikipedia.org/wiki/NASL", "title": "NASL", "text": "NASL or Nasl may refer to:\n\n Nasl, Iran (disambiguation)\n NASL Soccer, a 1980 early sports videogame\n National Association for the Support of Long Term Care, a US national trade association\n Nessus Attack Scripting Language\n North American Soccer League (1968\u20131984)\n North American Soccer League (2011\u20132017)\n North American Star League, a professional e-sports league for the real-time strategy game StarCraft II\n Nasl, a name for the star Gamma2 Sagittarii", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19683991", "url": "https://en.wikipedia.org/wiki/PBworks", "title": "PBworks", "text": "PBworks (formerly PBwiki) is a commercial real-time collaborative editing (RTCE) system created by David Weekly, with Ramit Sethi and Nathan Schmidt, who joined shortly thereafter as co-founders. Based in San Mateo, California, United States, the company operates on a freemium basis, offering basic features free of charge and more advanced features for a fee.\n\nPBworks' investors include Mohr Davidow Ventures and the Seraph Group, as well as angel investors Ron Conway and Chris Yeh.\n\nHistory\nIn 2", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19719899", "url": "https://en.wikipedia.org/wiki/Vivek%20Ranadiv%C3%A9", "title": "Vivek Ranadiv\u00e9", "text": "Vivek Yeshwant Ranadiv\u00e9 (; born 7 October 1957) is an Indian American business executive, engineer, author, speaker and philanthropist. Ranadiv\u00e9 is the founder and former chief executive officer (CEO) of TIBCO Software, a multi-billion dollar real-time computing company, and of Teknekron Software Systems. Ranadiv\u00e9 is also a co-owner and chairman of the National Basketball Association's Sacramento Kings.\n\nEarly life and career\nRanadiv\u00e9 grew up in the Juhu area of Mumbai, India, and was the younge", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19728513", "url": "https://en.wikipedia.org/wiki/StarCraft%20II%3A%20Heart%20of%20the%20Swarm", "title": "StarCraft II: Heart of the Swarm", "text": "StarCraft II: Heart of the Swarm is an expansion pack to the military science fiction real-time strategy game StarCraft II: Wings of Liberty, and the second part of the StarCraft II trilogy developed by Blizzard Entertainment, with the final part being Legacy of the Void. The game was released on March 12, 2013.\n\nThe expansion includes additional units and multiplayer changes from Wings of Liberty, as well as a continuing campaign focusing on the Zerg race and following Sarah Kerrigan in her eff", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19728515", "url": "https://en.wikipedia.org/wiki/StarCraft%20II%3A%20Legacy%20of%20the%20Void", "title": "StarCraft II: Legacy of the Void", "text": "StarCraft II: Legacy of the Void is a standalone expansion pack to the military science fiction real-time strategy game StarCraft II: Wings of Liberty, and the third and final part of the StarCraft II trilogy developed by Blizzard Entertainment. The game was released on November 10, 2015.\n\nThe expansion includes additional units and multiplayer changes from StarCraft II: Heart of the Swarm, as well as a continuing campaign focusing on the Protoss race. The campaign, which focuses on Artanis as i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19742478", "url": "https://en.wikipedia.org/wiki/IndustryMasters", "title": "IndustryMasters", "text": "The browser-based IndustryMasters product is a range of business simulation games that allows students, business people and others to sharpen their entrepreneurial and strategic management skills by building their own company and competing in real-time against each other\n \nIndustryMasters is available in several editions, which are customized for usage either in corporate learning, in MBA programs, colleges or for training people without a business background. Participants can play individual", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19774142", "url": "https://en.wikipedia.org/wiki/XBRL%20assurance", "title": "XBRL assurance", "text": "XBRL assurance is the auditor's opinion on whether a financial statement or other business report published in XBRL, is relevant, accurate, complete, and fairly presented. An XBRL report is an electronic file and called instance in XBRL terminology. \n\nIFAC and other accounting organizations are discussing the topic to decide on a common approach and XBRL auditing standards. The auditor may give assurance to an XBRL financial statement, an XBRL business report and XBRL real-time reporting (often ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19919985", "url": "https://en.wikipedia.org/wiki/False%20radiosity", "title": "False radiosity", "text": "False Radiosity is a 3D computer graphics technique used to create texture mapping for objects that emulates patch interaction algorithms in radiosity rendering. Though practiced in some form since the late 90s, this term was coined only around 2002 by architect Andrew Hartness, then head of 3D and real-time design at Ateliers Jean Nouvel.\n\nDuring the period of nascent commercial enthusiasm for radiosity-enhanced imagery, but prior to the democratization of powerful computational hardware, archi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "19937764", "url": "https://en.wikipedia.org/wiki/Star%20Wolves", "title": "Star Wolves", "text": "Star Wolves (Russian: \u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u043b\u043a\u0438) is a real-time, futuristic video game developed by Russian video game developer X-bow Software combining role-playing and real-time tactics gameplay. It was first published in 2004 in Russia by 1C Company, and later in 2005 and 2006 in other parts of Europe and North America, respectively. A sequel, Star Wolves 2, was published in Russia in 2006 and in North America in 2007. Star Wolves 2: Civil War is the latest game in the series (in EU and NA regions it i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20014106", "url": "https://en.wikipedia.org/wiki/Alexander%20Autographs", "title": "Alexander Autographs", "text": "Alexander Autographs is an auctioneer of historic militaria, autographs, manuscripts, relics, and other collectibles. Based in Chesapeake City, Maryland, the auction house first opened to bidders in 1993. Patrons can attend auctions in the traditional floor style in the company's Maryland offices, or they can bid via a phone proxy, or use the internet to bid in real-time.\n\nOverview \nAlexander's typically holds three to four auctions per year, and concentrates on the following categories: Milita", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20053095", "url": "https://en.wikipedia.org/wiki/Stansaab", "title": "Stansaab", "text": "Stansaab AS was a company founded in 1971 in Barkarby, outside Stockholm, Sweden. The company was a joint venture between Standard Radio & Telefon AB (SRT), Saab-Scania, the car and aeroplane manufacturer and the state-owned Swedish Development Company. The company\u2019s primary focus was systems for real-time data applied to commercial and aviation applications. In 1972, the company purchased the data terminal operations of Facit.\n\nIn 1978, it was merged with the Data Saab division of Saab to crea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20108876", "url": "https://en.wikipedia.org/wiki/MegaRace%203", "title": "MegaRace 3", "text": "MegaRace 3 is a racing/vehicular combat video game developed by Cryo Interactive in 2002, released for Windows and the PlayStation 2. MegaRace 3 is the third game in the MegaRace series, after MegaRace and MegaRace 2.\n\nThis game also features host, Lance Boyle, played by Christian Erickson. It renders the game graphics in full real-time 3D, unlike the previous two games.\n\nMicro\u00efds, owners of the Cryo brand, made the game available on GOG.com on 2 June 2009.\n\nReception\n\nReferences\n\nExternal links", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20124078", "url": "https://en.wikipedia.org/wiki/Grome", "title": "Grome", "text": "Grome is an environmental modeling package developed by Quad Software dedicated for procedural and manual generation of large virtual outdoor worlds suitable for games and other 3D real-time simulation applications.\n\nHistory \nAfter more than two years of internal developing, the program was first launched on as version 1.0. It immediately started to be used by various professional game studios and independent developers. Version 1.1 was launched on adding various optimizations, pen tablet supp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20160949", "url": "https://en.wikipedia.org/wiki/Phone%20tag", "title": "Phone tag", "text": "Phone tag is a phenomenon in which two parties attempt to contact each other by telephone, but neither is able to get a hold of the other for a conversation. Both parties may leave a message on the answering machine or voicemail of the other, and request a call back. This continues for a period of time, often with the two parties exchanging attempts to have a real-time conversation. The name derives from the playground game tag, where players chase one another in turn.\n\nPhone tag became common i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20173240", "url": "https://en.wikipedia.org/wiki/Gnuspeech", "title": "Gnuspeech", "text": "Gnuspeech is an extensible text-to-speech computer software package that produces artificial speech output based on real-time articulatory speech synthesis by rules. That is, it converts text strings into phonetic descriptions, aided by a pronouncing dictionary, letter-to-sound rules, and rhythm and intonation models; transforms the phonetic descriptions into parameters for a low-level articulatory speech synthesizer; uses these to drive an articulatory model of the human vocal tract producing a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20182484", "url": "https://en.wikipedia.org/wiki/Supreme%20Commander%202", "title": "Supreme Commander 2", "text": "Supreme Commander 2 is a real-time strategy (RTS) video game developed by Gas Powered Games and published by Square Enix as the sequel to Supreme Commander. A Windows-only demo was initially released via Steam on February 24, 2010, with the full game released on March 2, 2010.\n\nA Mac OS X version of Supreme Commander 2 was announced by Mac games publisher Virtual Programming in May 2010. They released the Mac OS X version of the game on September 24, 2010, and released the Infinite War Battle Pa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20194591", "url": "https://en.wikipedia.org/wiki/Music%20of%20the%20Command%20%26%20Conquer%20series", "title": "Music of the Command & Conquer series", "text": "The music of the Command & Conquer series consists of the soundtracks of the Command & Conquer (C&C or CNC) video games, published in various soundtrack and compilation albums. C&C is a video game franchise, mostly of the real-time strategy style, developed primarily by Westwood Studios and Electronic Arts. Much of the music for the series was composed and produced by Westwood Studios' former sound director and video game music composer Frank Klepacki for the early games, with composition duties", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20211577", "url": "https://en.wikipedia.org/wiki/Populous%20DS", "title": "Populous DS", "text": "is a real-time strategy video game developed by Genki. It was published in Japan by Electronic Arts on February 21, 2008, in North America by Xseed Games on November 10, 2008, and in Europe by Rising Star Games on February 27, 2009, for the Nintendo DS.\n\nReception\n\nReferences\n\nExternal links\n Populous DS official website \n Populous DS official website \n\n2008 video games\nElectronic Arts games\nGenki (company) games\nNintendo DS games\nNintendo DS-only games\nPopulous (series)\nReal-time strategy vide", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20259348", "url": "https://en.wikipedia.org/wiki/Terrafly", "title": "Terrafly", "text": "TerraFly is a web-enabled system designed to aid in the visualization of spatial and remote sensed imagery.\nTerraFly users visualize aerial photography, satellite imagery and various overlays, such as street names, roads, restaurants, services and demographic data. Users virtually \"fly\" over imagery via a web browser, without any software\nto install or plug in.\n\nTerrafly's tools include geospatial querying, data drill-down, interfaces with real-time data suppliers,\ndemographic analysis, annotati", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20271815", "url": "https://en.wikipedia.org/wiki/Abante", "title": "Abante", "text": "Abante is a daily Filipino tabloid publication in the Philippines. Its office is in Makati and it is owned by Prage Management Services, a start-up company owned by two veteran journalists who took over the management and operations of Abante and its sister tabloid, Abante Tonite from the Monica Publishing Corporation of the Macasaet family in October 2017. Aside from Abante and Abante Tonite, the newspaper also operates Abante: TNT (Tunay na Tabloidista), a real-time online news website, Radyo ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20293120", "url": "https://en.wikipedia.org/wiki/Nanocharm", "title": "Nanocharm", "text": "NanoCharm is a cooperation of eight European organisations and is an\nEU-Project founded in the 7th framework program. The goal of this\nEuropean collaboration is to establish and enhance ellipsometry and\npolarimetry as a measurement tool.\n\nThe partners\n\nProjects and goals\nEllipsometry and polarimetry are methods to characterize samples\naccording to their optical properties and composition. The measurements\ndo not influence or destroy the samples and are calculated in real-time\nexperiments. Theref", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20297788", "url": "https://en.wikipedia.org/wiki/Etherpad", "title": "Etherpad", "text": "Etherpad (previously known as EtherPad) is an open-source, web-based collaborative real-time editor, allowing authors to simultaneously edit a text document, and see all of the participants' edits in real-time, with the ability to display each author's text in their own color. There is also a chat box in the sidebar to allow meta communication.\n\nFirst launched in November 2008, the software was acquired by Google in December 2009 and released as open source later that month. Further development ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20320137", "url": "https://en.wikipedia.org/wiki/Cohort%20model", "title": "Cohort model", "text": "The cohort model in psycholinguistics and neurolinguistics is a model of lexical retrieval first proposed by William Marslen-Wilson in the late 1970s. It attempts to describe how visual or auditory input (i.e., hearing or reading a word) is mapped onto a word in a hearer's lexicon. According to the model, when a person hears speech segments real-time, each speech segment \"activates\" every word in the lexicon that begins with that segment, and as more segments are added, more words are ruled ou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20389237", "url": "https://en.wikipedia.org/wiki/Engineering%20informatics", "title": "Engineering informatics", "text": "Engineering Informatics is related to information engineering, and computational engineering. In general, informatics deals with information processing (unlike matter or energy). Compared to technical informatics, engineering informatics focuses more on software. However, it does not rather focus on issues of large-scale systems (like practical informatics). Typically, informatic engineers deal with computer-aided design, machine learning, computer vision, mobile robotics, real-time computing, d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20408970", "url": "https://en.wikipedia.org/wiki/Flat%20IP", "title": "Flat IP", "text": "Flat IP architecture provides a way to identify devices using symbolic names, unlike the hierarchical architecture such as that used in \"normal\" IP addresses. This form of system is of more interest to mobile broadband network operators.\n\nFlat IP architecture\nTo meet customer demand for real-time data applications delivered over mobile broadband networks, wireless operators are turning to flat IP network architectures.\n\nThe key benefits of flat IP architectures are\nlower costs\nreduced system lat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20444987", "url": "https://en.wikipedia.org/wiki/LynxSecure", "title": "LynxSecure", "text": "LynxSecure is a least privilege real-time separation kernel hypervisor from Lynx Software Technologies designed for safety and security critical applications found in military, avionic, industrial, and automotive markets.\n\nOverview\nLeveraging multi-core CPU hardware virtualization features and smaller than a microkernel (as small as 15kB), LynxSecure is primarily targeted to raise the assurance of systems that perform critical computing functions in regulated environments. Common use cases incl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20455314", "url": "https://en.wikipedia.org/wiki/Coherent%20electromagnetic%20radio%20tomography", "title": "Coherent electromagnetic radio tomography", "text": "The Coherent Electromagnetic Radio Tomography (CERTO) is a radio beacon which measures ionospheric parameters in coordination with ground receivers. CERTO provides global ionospheric maps to aid prediction of radio wave scattering. CERTO was developed by the Naval Research Lab and is one of the 4 experiment packages aboard the PicoSAT satellite. CERTO provides near\u2013real-time measurements of the ionosphere. CERTO was used for the Equatorial Vortex Experiment in 2013.\n\nSpecifications\nNSSDC ID: 200", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20468959", "url": "https://en.wikipedia.org/wiki/Simulation%20Open%20Framework%20Architecture", "title": "Simulation Open Framework Architecture", "text": "Simulation Open Framework Architecture (SOFA) is an open source framework primarily targeted at real-time physical simulation, with an emphasis on medical simulation. \nIt is mostly intended for the research community to help develop newer algorithms, but can also be used as an efficient prototyping tool or as a physics engine.\n\nFeatures\nBased on an advanced software architecture, SOFA allows users to:\n Create complex and evolving simulations by combining new algorithms with existing algorithms\n ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20495431", "url": "https://en.wikipedia.org/wiki/Crime%20information%20center", "title": "Crime information center", "text": "A crime information center is a data warehouse and search engine operated by a staff of detectives that assists in providing relevant and timely information to officers conducting an investigation. The computer network stores facts about convicted persons, suspects, encounters, nicknames and items of seemingly trivial value whose correlation could assist in an investigation. The computer network's control room can display real-time satellite and surveillance camera images and hosts a wireless li", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20501814", "url": "https://en.wikipedia.org/wiki/Real-time%20adaptive%20security", "title": "Real-time adaptive security", "text": "Real-time Adaptive Security is the network security model necessary to accommodate the emergence of multiple perimeters and moving parts on the network, and increasingly advanced threats targeting enterprises. Adaptive security can watch a network for malicious traffic and behavioral anomalies, ferret out end point vulnerabilities, identify real-time changes to systems, automatically enforce end point protections and access rules, block malicious traffic, follow a compliance dashboard while prov", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20506173", "url": "https://en.wikipedia.org/wiki/Model%20risk", "title": "Model risk", "text": "In finance, model risk is the risk of loss resulting from using insufficiently accurate models to make decisions, originally and frequently in the context of valuing financial securities. However, model risk is more and more prevalent in activities other than financial securities valuation, such as assigning consumer credit scores, real-time probability prediction of fraudulent credit card transactions, and computing the probability of air flight passenger being a terrorist. Rebonato in 2002 def", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20518990", "url": "https://en.wikipedia.org/wiki/Softkinetic", "title": "Softkinetic", "text": "SoftKinetic was a Belgian company founded by Eric Krzeslo and Thibaud Remacle which develops gesture recognition hardware and software for real-time range imaging (3D) cameras (such as time-of-flight cameras). It was founded in July 2007. SoftKinetic provides gesture recognition solutions based on its technology to the interactive digital entertainment, consumer electronics, health & fitness, and serious game industries. SoftKinetic technology has been applied to interactive digital signage and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20566068", "url": "https://en.wikipedia.org/wiki/Jean-loup%20Gailly", "title": "Jean-loup Gailly", "text": "Jean-loup Gailly is an author of gzip. He wrote the compression code of the portable archiver of the Info-ZIP and the tools compatible with the PKZIP archiver for MS-DOS. He worked over zlib in collaboration with Mark Adler. He prefers to write his hyphenated first name with only the J but not the l (ell) capitalized.\n\nHe wrote a chapter on fractal image compression for Mark Nelson's The Data Compression Book.\n\nFrom 1990 to 1995, while working for Chorus Syst\u00e8mes SA, he designed the real-time ex", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20601008", "url": "https://en.wikipedia.org/wiki/Eric%20Michelman", "title": "Eric Michelman", "text": "Eric Michelman, a graduate from MIT, is credited with inventing the now commonplace computer input device known as the scroll wheel. Scroll wheels are most often located between the left and right-click buttons on modern computer mice.\n\nHistory \nIn 1993, Michelman began work on his project to ease navigation within Excel. His interest in eased navigability stemmed from real-time observation of users entering data in spreadsheets. \n\n\u201c\u2026as I was watching many Excel users do their work, I noticed ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20665767", "url": "https://en.wikipedia.org/wiki/London%20International%20Vintners%20Exchange", "title": "London International Vintners Exchange", "text": "Liv-ex (London International Vintners Exchange) is a global marketplace for wine trading. It has over 560 members from start-ups to established merchants. Liv-ex supplies them with data, trading and logistics services.\n\nThe platform publishes the actual prices at which wines are transacted and contains around \u00a3100m of firm buying and selling opportunities in over 16,000 wines. All are available to trade in real-time. Liv-ex additionally conceived the Standard-In-Bond (SIB) contract to assure sto", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20693476", "url": "https://en.wikipedia.org/wiki/TEQ", "title": "TEQ", "text": "TEQ is an acronym for:\nTEQ (TV channel), full name T\u00e9l\u00e9vision Ethnique du Qu\u00e9bec, now CJNT-DT\nTime domain equalizer, in Orthogonal frequency-division multiplexing.\nTax equalization\n Terra Est Quaestuosa, an online, text-based real-time strategy game\nToxic equivalent (dioxin) for dioxins\nTradable Energy Quotas\nTekirda\u011f \u00c7orlu Airport\n\nit may also refer to\n teq, the international code for the Temein language in ISO 639-3", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20708868", "url": "https://en.wikipedia.org/wiki/Rising%20Kingdoms", "title": "Rising Kingdoms", "text": "Rising Kingdoms is a real-time strategy PC game developed by Haemimont Games and published by Black Bean Games. It was released June 17, 2005. Rising Kingdoms is a realtime strategy game set in a fantasy world, which focuses on empire development and dynamic tactical battles and features both strategy and adventure modes in the fantasy world of Equiada. In strategy mode, the player is able to select 3 major races \u2013 Humans, Foresters and Darklings, and in addition to these three primary races, th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20773155", "url": "https://en.wikipedia.org/wiki/Under%20Siege%20%282011%20video%20game%29", "title": "Under Siege (2011 video game)", "text": "Under Siege is a PlayStation 3 real-time tactics video game released 2 June 2011. Developed by Portuguese video game developer Seed Studios, it features a single player campaign, and multiplayer via online and co-op. It contains a level editor which allows users to make and share maps. The game is set in a medieval fantasy world and follows the story of Eirik, Kari and Asgeir. It was designed to be played with the DualShock 3 controller or the PlayStation Move controller.\n\nOn 23 August 2011, the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20773616", "url": "https://en.wikipedia.org/wiki/Robocalypse", "title": "Robocalypse", "text": "Robocalypse is a 2008 real-time strategy video game developed by Russian studio Vogster Entertainment and published by Tecmo for the Nintendo DS handheld video game console. It is the first of the Robocalypse duology and has only been released in North America. The project was led by Anton Kruglyakov and the story was written by Jay Lender and Micah Wright, former writers for animated TV series The Angry Beavers, SpongeBob SquarePants, and Phineas and Ferb. Players utilize the Nintendo DS' un", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20794776", "url": "https://en.wikipedia.org/wiki/Army%20Men%20II", "title": "Army Men II", "text": "Army Men II is a real-time tactics video game developed and published by The 3DO Company for Microsoft Windows and Game Boy Color. The game differs from the first installment in that it has battles in both the \"real world\" and the \"plastic world\". It was also the first to introduce the concept of portals between the real world and their world, a topic that was expanded upon in later games.\n\nPlot\n\nBackground\nIn Army Men, the Tan commander Plastro, invades the green lands. At the end, Sarge races ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20794910", "url": "https://en.wikipedia.org/wiki/Army%20Men%3A%20Air%20Tactics", "title": "Army Men: Air Tactics", "text": "Army Men: Air Tactics is a real-time tactics video game developed and published by The 3DO Company exclusively for Microsoft Windows. Air Tactics is a helicopter game using the Army Men 2 engine.\n\nOverview\nThe player character is Captain William Blade of the Green Airborne Cavalry. The game is a top-down flight sim that places the player in a number of different helicopters. Captain Blade's main responsibility is to act as aerial support for Sarge Hawk and his men. The game introduces abilities ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20815048", "url": "https://en.wikipedia.org/wiki/Mech%20Platoon", "title": "Mech Platoon", "text": "Mech Platoon, known in Japan as is a real-time strategy video game developed and published by Kemco. It was the first real-time strategy game released on the Game Boy Advance platform, and was released in 2001.\n\nGameplay\n\nMech Platoon follows real-time strategy gaming standards, and is in the vein of other games such as StarCraft and Command & Conquer. The player assumes the role of an army commander for one of three in-game nations, and must battle on five planets each with multiple missions. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20855803", "url": "https://en.wikipedia.org/wiki/Defying%20Gravity%20%28TV%20series%29", "title": "Defying Gravity (TV series)", "text": "Defying Gravity is a multi-nationally produced space travel television science fiction drama series which first aired on August 2, 2009 on ABC and CTV and was canceled in October of 2009. Set in the year 2052, the series follows eight astronauts (four women and four men) from four countries on a six-year space mission through the Solar System, during which they are monitored from Earth via a real-time communication system. The series was pitched to networks as \"Grey's Anatomy in space\". Thirteen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20860793", "url": "https://en.wikipedia.org/wiki/SoundDroid", "title": "SoundDroid", "text": "The SoundDroid is an early digital audio workstation designed by a team of engineers led by James A. Moorer at Lucasfilm between 1980 and 1987. It was a hard-disk\u2013based, nonlinear audio editor developed on the Audio Signal Processor (ASP), a large-scale digital signal processor for real-time, multichannel equalization and audio mixing.\n\nHistory\nLucasfilm started putting together a computer division right after Star Wars as an in-house project to build a range of digital tools for filmmaking. The", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20861415", "url": "https://en.wikipedia.org/wiki/MiniGUI", "title": "MiniGUI", "text": "MiniGUI is a GUI system with support for real-time and embedded operating systems, and aims to be fast, stable, light-weight and cross-platform. It was first released under the GNU GPL in 1999, and has since offered a commercial version with more features, including support for operating systems other than Linux and eCos. MiniGUI has been widely used in handheld terminals, portable media players, and industry instruments.\n\nHistory \nMiniGUI was started by Wei Yongming as a simple interface for a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20891043", "url": "https://en.wikipedia.org/wiki/Systemically%20important%20payment%20systems", "title": "Systemically important payment systems", "text": "Systemically important payment systems (SIPS) are payment systems which have the characteristic that a failure of these systems could potentially endanger the operation of the whole economy. In general, these are the major payment clearing systems or real-time gross settlement systems of individual countries, but in the case of Europe, there are certain pan-European payment systems. TARGET2 is a pan-European SIPS dealing with major inter-bank payments. STEP2, operated by the Euro Banking Asso", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20902900", "url": "https://en.wikipedia.org/wiki/Operations%20readiness%20and%20assurance", "title": "Operations readiness and assurance", "text": "Operations readiness and assurance (OR&A) is a process used in the performance of primarily oil, gas and energy projects, to measure progress towards achieving the state of \"readiness to operate\". \n\nOR&A also includes an assurance component which gives an ongoing, real-time indication of the likelihood that the project will achieve that state by the time of handover to the eventual owner/operator.\n\nOperations Readiness\nOperations readiness is the process of preparing the custodians of an asset ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "20980500", "url": "https://en.wikipedia.org/wiki/Warlocked", "title": "Warlocked", "text": "Warlocked is a real-time strategy video game developed by Bits Studios and published by Nintendo for the Game Boy Color. It was solely released in North America on July 24, 2000. Choosing between human and beast factions, the player plays through twelve scenarios from each faction, gathering resources, building fortresses, and managing troops to defeat the opposing force.\n\nMusic for Warlocked was composed by Jeroen Tel. Critical reception towards the game was positive, with some critics noting i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21014022", "url": "https://en.wikipedia.org/wiki/List%20of%20OpenGL%20applications", "title": "List of OpenGL applications", "text": "This is a non-exhaustive list of popular OpenGL programs. Many programs that use OpenGL are games.\n\nGames developed in OpenGL\n Ballenger a Platformer\n Sauerbraten an open source 3D FPS and also a game engine\n Doom (2016 video game) a FPS\n Minecraft a sandbox video game\n\nPhotography and video \n Adobe After Effects, a digital motion graphics and compositing software\n Adobe Photoshop, a popular photo and graphics editing software\n Adobe Premiere Pro, a real-time, timeline based video editing softwa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21016331", "url": "https://en.wikipedia.org/wiki/Location%20awareness", "title": "Location awareness", "text": "Location awareness refers to devices that can passively or actively determine their location. Navigational instruments provide location coordinates for vessels and vehicles. Surveying equipment identifies location with respect to a well-known location wireless communications device.\n\nThe term applies to navigating, real-time locating and positioning support with global, regional or local scope. The term has been applied to traffic, logistics, business administration and leisure applications. Loc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21037665", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Red%20Alert%203%20%E2%80%93%20Uprising", "title": "Command & Conquer: Red Alert 3 \u2013 Uprising", "text": "Command & Conquer: Red Alert 3 \u2013 Uprising is a 2009 real-time strategy video game developed by EA Los Angeles and published by Electronic Arts. It is a stand-alone expansion to Command & Conquer: Red Alert 3 released for Microsoft Windows and offered via digital distribution. It features about 30 new maps for traditional skirmish with many of these taking place in new environments. It does not contain any multiplayer elements such as cooperative play, online play or network play.\n\nA part of Upri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21051961", "url": "https://en.wikipedia.org/wiki/John%20Resig", "title": "John Resig", "text": "John Resig is an American software engineer and entrepreneur, best known as the creator and lead developer of the jQuery JavaScript library. , he works as the chief software architect at Khan Academy.\n\nHistory\nResig graduated with an undergraduate degree in Computer Science from Rochester Institute of Technology in 2005. During this time he worked with Ankur Teredesai on data mining instant messaging networks and Jon Schull on exploring new ways of encouraging real-time online collaboration.\n\n, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21088290", "url": "https://en.wikipedia.org/wiki/List%20of%20real-time%20strategy%20video%20games", "title": "List of real-time strategy video games", "text": "This is an index of real-time strategy video games, sorted chronologically. Information regarding date of release, developer, platform, setting and notability is provided when available.\n\nBy year\n\nList\n\nReferences\n\nTimelines of video games\nReal-time strategy", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21147576", "url": "https://en.wikipedia.org/wiki/New%20Space%20Order", "title": "New Space Order", "text": "is an unreleased real-time strategy arcade game under development by Namco Bandai Games for Japan. Controlling a fleet of battleships, players would explore the void of space to gather resources and fight off enemy fleets and destroy entire planets. Players could construct network systems to distribute resources to other players and construct new ship types to deploy into battle. The plot involves an intergalactic organization, the United Galaxy Space Force, discovering an unknown extra-terrestr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21169242", "url": "https://en.wikipedia.org/wiki/Touch%20%28river%29", "title": "Touch (river)", "text": "The Touch (; ) is a long river in southwestern France, left tributary of the Garonne. Its source is in the d\u00e9partement of Haute-Garonne, near Lilhac.\n\nIt flows through the following d\u00e9partements and towns:\nHaute-Garonne: B\u00e9rat, Lherm, Plaisance-du-Touch, Tournefeuille, Blagnac, Toulouse.\n\nIt flows into the river Garonne at Toulouse.\n\nReferences\n\nExternal links\n\nHistory and real-time water heights of the Touch river, a Garonne river tributary\n\nRivers of France\nRivers of Occitania (administrative", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21169538", "url": "https://en.wikipedia.org/wiki/TwitPic", "title": "TwitPic", "text": "TwitPic was a website and app that allowed users to post pictures to the Twitter microblogging service, which at the time of TwitPic's creation could not be posted to Twitter directly. TwitPic was often used by citizen journalists to upload and distribute pictures in near real-time as an event was taking place.\n\nHistory\nTwitPic was launched in 2008 by Noah Everett.\nIn an interview with Mixergy, Everett revealed that he had been offered a price in the range of 10\u00a0million US dollars for his compan", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21200649", "url": "https://en.wikipedia.org/wiki/XtratuM", "title": "XtratuM", "text": "XtratuM is a bare-metal hypervisor specially designed for embedded real-time systems available for the instruction sets LEON2/3/4 (SPARC v8) and ARM v7 processors. \n\nIt has been developed by the Universidad Polit\u00e9cnica de Valencia (Spain) with contributions of the Lanzhou University (China). XtratuM is released as free and open-source software, subject to the requirements of the GNU General Public License (GPL), version 2 or any later. Professional versions are commercialized by fentISS under a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21213425", "url": "https://en.wikipedia.org/wiki/Dialogic%20Corp", "title": "Dialogic Corp", "text": "Dialogic is an American multinational technology company headquartered in Parsippany, New Jersey, United States, with operations in over 25 countries. Dialogic provides a cloud-optimized communications technology for real-time communications media, applications, and infrastructure to service providers, enterprises, and developers. Dialogic products are sold directly, as well as through a network of distributors, resellers, and partners, and supplied to OEMs.\n\nHistory\nDialogic was founded in 1983", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21234565", "url": "https://en.wikipedia.org/wiki/Yantar%20%28satellite%29", "title": "Yantar (satellite)", "text": "Yantar ( meaning amber) is a series of Russian (previously Soviet) reconnaissance satellites, which supplemented and eventually replaced the Zenit spacecraft. Kosmos 2175, a Yantar-4K2 or Kobalt spacecraft, was the first satellite to be launched by the Russian Federation following the dissolution of the Soviet Union. Yantar-Terilen was the first real-time digital system. Yantar satellites also formed the basis for the later Orlets, Resurs and Persona satellites. 179 have been launched, nine of w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21280803", "url": "https://en.wikipedia.org/wiki/Scribe%20%28log%20server%29", "title": "Scribe (log server)", "text": "Scribe was a server for aggregating log data streamed in real-time from many servers. It was designed to be scalable, extensible without client-side modification, and robust to failure of the network or any specific machine.\n\nScribe was developed at Facebook and released in 2008 as open source.\n\nScribe servers are arranged in a directed graph, with each server knowing only about the next server in the graph. This network topology allows for adding extra layers of fan-in as a system grows, and ba", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21313570", "url": "https://en.wikipedia.org/wiki/Fluid%20%28disambiguation%29", "title": "Fluid (disambiguation)", "text": "A fluid is a substance that continually deforms (flows) under an applied shear stress. \n\nFluid may also refer to:\n\nArts, entertainment and media\n\"Fluid\" (Lil' Fizz song), 2006\nFluid (video game), a game for the Sony PlayStation\nThe Fluid, an American rock band\n\nComputing\nFluid (web browser), a WebKit-based site-specific browser for Mac OS X\nFluid Framework, computer platform for real-time collaboration across applications by Microsoft\nFLUID, a user interface design program\n\nSee also", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53121229", "url": "https://en.wikipedia.org/wiki/Galcon%202", "title": "Galcon 2", "text": "Galcon 2 is a multiplayer real-time strategy video game for Windows, Linux, Mac OS X, Android and iOS created by American indie developer Phil Hassey and released in 2014. Like other games in the Galcon series, it is set in outer space and involves maneuvering fleets of ships to capture enemy planets.\n\nGameplay \n\nThe gameplay is similar to Risk in real time. Each planet that a player owns produces ships for that player. The ships can be used to conquer other planets. There are several different ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21370828", "url": "https://en.wikipedia.org/wiki/Route%20analytics", "title": "Route analytics", "text": "Route analytics is an emerging network monitoring technology specifically developed to analyze the routing protocols and structures in meshed IP networks. Their main mode of operation is to passively listen to the Layer 3 routing protocol exchanges between routers for the purposes of network discovery, mapping, real-time monitoring and routing diagnostics.\n\n\nGeneral information\nRoutes analytics technology was motivated by the \"best effort\" nature of IP networks and the lack of visibility into t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21395883", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20%28video%20game%29", "title": "Age of Empires (video game)", "text": "Age of Empires (AoE) is a real-time strategy video game based on history, developed by Ensemble Studios and published by Microsoft, and the first game in the Age of Empires series. The game uses the Genie Engine, a 2D sprite-based game engine. The game allows the user to act as the leader of an ancient civilization by advancing it through four ages (the Stone, Tool, Bronze, and Iron Ages), gaining access to new and improved units with each advance.\n\nOriginally touted as Civilization meets Warcra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21417175", "url": "https://en.wikipedia.org/wiki/Ys%20Strategy", "title": "Ys Strategy", "text": "Ys Strategy is a real-time strategy video game developed by Future Creates and published by Marvelous Interactive (now absorbed into its parent company, Marvelous Entertainment) in Japan and Rising Star Games in Europe and Australia, and part of the Ys series. It was released in 2006.\n\nReception\n\nThe game received \"mixed\" reviews according to video game review aggregator Metacritic. In Japan, Famitsu gave it a score of one six, one five, and two sevens, for a total of 25 out of 40.\n\nReferences\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21420666", "url": "https://en.wikipedia.org/wiki/The%20Unscrambler", "title": "The Unscrambler", "text": "The Unscrambler X is a commercial software product for multivariate data analysis, used for calibration of multivariate data which is often in the application of analytical data such as near infrared spectroscopy and Raman spectroscopy, and development of predictive models for use in real-time spectroscopic analysis of materials. The software was originally developed in 1986 by Harald Martens and later by CAMO Software.\n\nFunctionality\n\nThe Unscrambler X was an early adaptation of the use of pa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21457861", "url": "https://en.wikipedia.org/wiki/Wildfire%20Games", "title": "Wildfire Games", "text": "Wildfire Games is an independent free software video game developer, originally founded as a modding team in 2001. The logo is the Chinese character \"\u706b\" (fire). Wildfire Games is currently developing 0 A.D., a real-time strategy game. In addition to game development, Wildfire Games has developed the Pyrogenesis game engine used in 0 A.D. and separate mods.\n\nHistory\nWildfire Games began as a game modding studio for Age of Empires II. An idea for a mod, 0 A.D., became an independent game due to th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21483458", "url": "https://en.wikipedia.org/wiki/Continuous%20auditing", "title": "Continuous auditing", "text": "Continuous auditing is an automatic method used to perform auditing activities, such as control and risk assessments, on a more frequent basis. Technology plays a key role in continuous audit activities by helping to automate the identification of exceptions or anomalies, analyze patterns within the digits of key numeric fields, review trends, and test controls, among other activities.\n\nThe \"continuous\" aspect of continuous auditing and reporting refers to the real-time or near real-time capabil", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21490547", "url": "https://en.wikipedia.org/wiki/Google%20PowerMeter", "title": "Google PowerMeter", "text": "Google PowerMeter was a software project of Google's philanthropic arm, Google.org, to help consumers track their home electricity usage. The development of the software was part of an effort by Google to invest in renewable energy, electricity grid upgrades, and other measures that would reduce greenhouse gas emissions. It was launched on October 5, 2009 and ended on September 16, 2011.\n\nThe software was designed to record the user's electricity usage in near real-time. According to the company", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21499378", "url": "https://en.wikipedia.org/wiki/NASA%20Integrated%20Services%20Network", "title": "NASA Integrated Services Network", "text": "The NASA Integrated Services Network (NISN) is a global system of communications transmission, switching, and terminal facilities that provides NASA with wide area network communications services. The NISN services that support the Space Network (SN) include real-time and mission critical Internet Protocol (IP) routed data, as well as high-rate data and video services that connect the SN ground facilities. Inter-Center mission voice communications services are also provided for management of the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21562786", "url": "https://en.wikipedia.org/wiki/Darkfall", "title": "Darkfall", "text": "Darkfall was a massively multiplayer online role-playing game (MMORPG) developed by Aventurine SA that combined real-time action and strategy in a fantasy setting. The game featured unrestricted PvP, full looting, a large, dynamic game world, and a player-skill dependent combat system free of the class and level systems that typify most MMORPGs. Darkfall had a 3D world environment and contained mild violence.\nThe official Darkfall servers were closed on 15 November 2012.\n\nAventurine has since so", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21566302", "url": "https://en.wikipedia.org/wiki/ProtoShare", "title": "ProtoShare", "text": "ProtoShare is a collaborative software tool from Astound Commerce, used for creating, reviewing, and refining website, mobile and web application prototypes. It enables individuals and companies to visualize project requirements by building website wireframes and application prototypes that team members and stakeholders can then review and comment on in real-time. ProtoShare is not a Flash tool; it uses HTML, CSS, and JavaScript. ProtoShare also helps development teams move from the waterfall me", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21569878", "url": "https://en.wikipedia.org/wiki/Half-Minute%20Hero", "title": "Half-Minute Hero", "text": "Half-Minute Hero is a hybrid real-time strategy action role-playing shoot 'em up video game developed by Marvelous Entertainment. It was initially released as a PlayStation Portable exclusive in Japan on May 28, 2009, later in North America on October 13, and in Europe on February 19, 2010. It was re-released on the Xbox Live Arcade on June 29, 2011 under the title Half-Minute Hero: Super Mega Neo Climax, and on Microsoft Windows' Steam on September 27, 2012 under the title Half-Minute Hero: Sup", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21590459", "url": "https://en.wikipedia.org/wiki/SIX%20Financial%20Information", "title": "SIX Financial Information", "text": "SIX Financial Information, a subsidiary of SIX Group, is a multinational financial data vendor headquartered in Zurich, Switzerland. The company provides market data which it gathers from the world's major trading venues directly and in real-time. Its database has structured and encoded securities administration data for more than 20 million financial instruments. The firm has offices in 23 countries.\n\nHistory \nIn 1930, Ticker AG was founded in Zurich, Switzerland by a group of Swiss banks. In", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21597153", "url": "https://en.wikipedia.org/wiki/Yamli", "title": "Yamli", "text": "Yamli.com ( , \"[he] dictates\") is an Internet start-up focused on addressing the problems specific to the Arabic web. Yamli currently offers two main products: the smart Arabic keyboard, and Yamli Arabic Search. The smart Arabic keyboard allows users to type Arabic without an Arabic keyboard from within their web browser. This technology is based on a real-time transliteration engine which converts words typed with Latin characters to their closest Arabic equivalent. Yamli Arabic search is a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21620151", "url": "https://en.wikipedia.org/wiki/Port%20Royale%3A%20Gold%2C%20Power%20and%20Pirates", "title": "Port Royale: Gold, Power and Pirates", "text": "Port Royale is a business simulation game set in the Caribbean and partly the Atlantic during the 16th and 17th centuries. It combines business\u2013economic simulation with real-time battles and towns that can be visited for trade and other purposes.\n\nPublication history\nThe game was created by Ascaron Entertainment in 2002. The sequel Port Royale 2 was released over a year after in September 2004.\n\nOn August 2, 2011 the publisher Kalypso Media who purchased many of the licenses and assets from Asca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21687161", "url": "https://en.wikipedia.org/wiki/Dynamic%20trimming", "title": "Dynamic trimming", "text": "A dynamic trimming system operates seagoing vessels to achieve minimum water resistance under all circumstances. It is based on multidimensional analysis of real-time data collected on vessel attitude (trim).\n\nDynamic trimming automates data retrieval from sensor networks, for vessel management software applications. The core of the method is a multidimensional analysis model, which continuously calculates the key forces affecting the vessel attitude.\n\nThe system helps officers ensure that their", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21725243", "url": "https://en.wikipedia.org/wiki/GRLevelX", "title": "GRLevelX", "text": "GRLevelX is a suite of data processing and display programs developed by Gibson Ridge Software, LLC (GRS), to view weather radar data. It went on the market in March 2005. It comes in three versions, all of which ingest raw data: GRLevel2 and GRLevel2 Analyst Edition for viewing Level II data of the National Weather Service (NWS), and GRLevel3 for viewing Level III data. All programs are capable of rendering dual polarization data.\n\nThe software allows the user to view real-time data as well as ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21793157", "url": "https://en.wikipedia.org/wiki/Maritime%20Safety%20and%20Security%20Information%20System", "title": "Maritime Safety and Security Information System", "text": "The Maritime Safety & Security Information System (MSSIS) is a freely-shared, unclassified, near real-time data collection and distribution network. Its member countries share data from Automatic Identification System (AIS), coastal radar, and other maritime-related systems. MSSIS combines the data from participating nations into a single data stream through secure Internet-based servers. Through MSSIS, participating governments can view real-time AIS data from around the world in a wide range ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21794106", "url": "https://en.wikipedia.org/wiki/INRIX", "title": "INRIX", "text": "INRIX is a private company headquartered in Kirkland, Washington, US. It provides location-based data and analytics -- such as real-time and historical traffic conditions, road safety, and parking availability -- to automakers, businesses, cities and road authorities worldwide, as well as to turn-by-turn navigation applications like Google Waze. INRIX also develops white-label mobile phone and in-car apps and publishes research reports on traffic congestion, parking, roadway safety, retail site", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21866469", "url": "https://en.wikipedia.org/wiki/PLEX%20%28programming%20language%29", "title": "PLEX (programming language)", "text": "PLEX (Programming Language for EXchanges) is a special-purpose, concurrent, real-time programming language. The proprietary PLEX language is closely tied to the architecture of Ericsson's AXE telephone exchanges which it was designed to control. PLEX was developed by G\u00f6ran Hemdahl at Ericsson in the 1970s, and it has been continuously evolving since then. PLEX was described in 2008 as \"a cross between Fortran and a macro assembler.\"\n\nThe language has two variants: Plex-C used for the AXE Centr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21882359", "url": "https://en.wikipedia.org/wiki/Crystal%20River%20Engineering", "title": "Crystal River Engineering", "text": "Crystal River Engineering Inc. was an American technology company best known for their pioneering work in HRTF based real-time binaural, or 3D sound processing hardware and software. The company was founded in 1989 by Scott Foster after he received a contract from NASA to create the audio component of VIEW (Virtual Environment Workstation Project), a Virtual Reality based training simulator for astronauts. Crystal River Engineering was acquired by Aureal Semiconductor in 1996.\n\nCrystal River's i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21893088", "url": "https://en.wikipedia.org/wiki/Moviestorm", "title": "Moviestorm", "text": "Moviestorm is a real-time 3D animation app published by Moviestorm Ltd. The software is available to and used by people of all age groups and appeals to those with a diverse range of backgrounds and interests, from amateur and professional film makers, through to businesses and education, as well as people just looking to simply tell stories or create messages to share using video. Moviestorm enables the user to create animated movies, using machinima technology. It takes the user from initial c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21979677", "url": "https://en.wikipedia.org/wiki/Shorty%20Awards", "title": "Shorty Awards", "text": "The Shorty Awards, also known as the \"Shortys\", is an annual awards show recognizing the people and organizations that produce real-time short-form content across Twitter, Facebook, YouTube, Instagram, TikTok, Twitch and the rest of the social web.\nThe annual ceremony began in 2008 with awards for achievements on the Twitter platform. Since then, the awards have recognized content creation on other social networking sites, including Tumblr, Instagram, Vine, Snapchat, YouNow, and Periscope.\n\nThe ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21984116", "url": "https://en.wikipedia.org/wiki/Lego%20Rock%20Raiders%20%28video%20game%29", "title": "Lego Rock Raiders (video game)", "text": "Lego Rock Raiders is a video game developed by Data Design Interactive and published by Lego Media for Microsoft Windows and PlayStation. It is based on the Lego theme of the same name. The Windows version was released in 1999, while a differently built game for PlayStation was released in 2000.\n\nGameplay\n\nWindows version\nThe Windows version is a real-time strategy game similar to Dungeon Keeper, and was the first video game for the Rock Raiders theme. The game opens with optional training missi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21990822", "url": "https://en.wikipedia.org/wiki/Heterogeneous%20Aerial%20Reconnaissance%20Team", "title": "Heterogeneous Aerial Reconnaissance Team", "text": "The Heterogeneous Aerial Reconnaissance Team (HART)\u2014formerly known as the \"Heterogeneous Urban RSTA Team (HURT)\"\u2014program was an aerial surveillance project funded by the Information Processing Technology Office (which was merged into the Information Innovation Office) of the Defense Advanced Research Projects Agency with program managers John Bay and Michael Pagels. The purpose of the program was to develop systems that could provide continuous, real-time, three-dimensional surveillance of large", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "21996185", "url": "https://en.wikipedia.org/wiki/Halo%20Wars", "title": "Halo Wars", "text": "Halo Wars is a real-time strategy (RTS) video game developed by Ensemble Studios and published by Microsoft Game Studios for the Xbox 360 video game console. It was released in Australia on February 26, 2009; in Europe on February 27; and in North America on March 3. The game is set in the science fiction universe of the Halo series in the year 2531, 21 years before the events of Halo: Combat Evolved. The player leads human soldiers aboard the warship Spirit of Fire in an effort to stop an ancie", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22006984", "url": "https://en.wikipedia.org/wiki/Dynamic%20game%20difficulty%20balancing", "title": "Dynamic game difficulty balancing", "text": "Dynamic game difficulty balancing (DGDB), also known as dynamic difficulty adjustment (DDA) or dynamic game balancing (DGB), is the process of automatically changing parameters, scenarios, and behaviors in a video game in real-time, based on the player's ability, in order to avoid making the player bored (if the game is too easy) or frustrated (if it is too hard). The goal of dynamic difficulty balancing is to keep the user interested from the beginning to the end, providing a good level of chal", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22037038", "url": "https://en.wikipedia.org/wiki/List%20of%20National%20Basketball%20Association%20referees", "title": "List of National Basketball Association referees", "text": "Referees in the National Basketball Association (NBA) oversee 120 pre-season games, 1,260 regular season games, and four rounds of playoff matches. These officials \"oversee competition in real-time between 10 exceptional athletes, making calls with 95% accuracy.\"\n\nIn March 2015, the NBA began issuing Last Two Minutes reports that detail the performance of referees at the ends of games which the point differential is within five points with two minutes of less remaining in the contest.\n\nOfficial", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22054087", "url": "https://en.wikipedia.org/wiki/Prevx", "title": "Prevx", "text": "Prevx is a discontinued anti-malware utility. There are separate real-time and on-demand versions. It can remove low-risk adware for free, but the user has to purchase and enter a license key if it is more serious. Scanning can take anywhere from less than two minutes to five minutes.\n\nReception\nTony Zaitoun, of About.com, liked the utility except that he had some confusion about configuring the interface and that key protection was disabled by default. The issue referenced has since been correc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22118674", "url": "https://en.wikipedia.org/wiki/R.U.S.E.", "title": "R.U.S.E.", "text": "R.U.S.E. is a real-time strategy video game developed by Eugen Systems and published by Ubisoft which was released for Microsoft Windows, PlayStation 3, and Xbox 360, in September 2010. The game was subsequently released for macOS through Steam on November 15, 2011. R.U.S.E. is a strategic war game set during World War II and focuses on the invasion of Nazi Germany during late 1944. The campaign includes many historical and some fictional events. It focuses on information warfare instead of a br", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22140859", "url": "https://en.wikipedia.org/wiki/Game%3A%20On", "title": "Game: On", "text": "Game: On is a 2004 short film produced by Ethan Vogt, a student at New York University, as an advertisement for Volvo Cars. The work is the first to combine live action and machinima, the use of real-time computer animation from a three-dimensional graphics rendering engine. In 2005, the film won awards for Best Picture and Best Commercial/Game Machinima at the 2005 Machinima Film Festival.\n\nNotes\n\nReferences\n\nFurther reading\n\nExternal links\n\n2004 films\nMachinima works\nAmerican animated short fi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22163098", "url": "https://en.wikipedia.org/wiki/Mathias%20Fink", "title": "Mathias Fink", "text": "Mathias Fink, born in 1945 in Grenoble, is a French physicist, professor at ESPCI Paris and member of the French Academy of Sciences.\n\nLife and career \nMathias Fink received a M.S. degree in mathematics from Paris University, and the Ph.D. degree in solid state physics. Then he moved to medical imaging and received the Doctorat es-Sciences degree from Paris University in the area of ultrasonic focusing for real-time medical imaging under the direction of Pierre Alais (1978). \n\nIn 1981 he was app", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22263301", "url": "https://en.wikipedia.org/wiki/Eufloria", "title": "Eufloria", "text": "Eufloria (formerly Dyson) is a real-time strategy video game developed by British studio Omni Systems Limited, consisting of independent developers Alex May, Rudolf Kremers and Brian Grainger. It was named after the Dyson tree hypothesis by Freeman Dyson that a tree-like plant could grow on a comet.\n\nThe game was released for Microsoft Windows in 2009, the PlayStation Network in 2011 and the iPad in 2012. Mac, Linux and Android versions of this game was pre-released along with Humble Indie Bundl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22325641", "url": "https://en.wikipedia.org/wiki/What%20Did%20I%20Do%20to%20Deserve%20This%2C%20My%20Lord%3F", "title": "What Did I Do to Deserve This, My Lord?", "text": "is a real-time strategy game for the PlayStation Portable. The game centers on creating mazes and monsters to help defend a demon lord from heroes seeking to capture him.\n\nThe game was released in North America exclusively as a download game on the PlayStation Store, under the title Holy Invasion of Privacy, Badman! What Did I Do To Deserve This?. However, on February 9, 2010, NIS America revealed it would be changing the game's name to avoid conflict with the Batman franchise. The game was re-r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22361379", "url": "https://en.wikipedia.org/wiki/Black%20Prophecy", "title": "Black Prophecy", "text": "Black Prophecy was a 3D real-time space combat massively multiplayer online game by Reakktor Media GmbH, the creators of Neocron.\n\nReakktor Media started the open beta test phase of the game in February 2011, and they had teamed up with German distributor gamigo AG to publish the game.\n\nBlack Prophecy was launched in Europe on 21 March 2011. The US version was launched later. The game was not made available to Asian and Australian players, with the official Black Prophecy website preventing resi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22370177", "url": "https://en.wikipedia.org/wiki/12th%20Space%20Warning%20Squadron", "title": "12th Space Warning Squadron", "text": "The 12th Space Warning Squadron is a United States Space Force ground-based radar used for missile warning, missile defense, and space situation awareness, stationed at Thule Air Base, Greenland.\n\nOverview\nThe primary mission of the 12th SWS is to provide critical, real-time missile warning, defense, and space surveillance to the President of the United States, Secretary of Defense, the Joint Chiefs of Staff, NORAD, and unified commands by operating a phased-array radar\u2014which continuously provi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22376316", "url": "https://en.wikipedia.org/wiki/Ossett%20bus%20station", "title": "Ossett bus station", "text": "Ossett bus station serves the town of Ossett, West Yorkshire, England. The bus station is managed and owned by West Yorkshire Metro.\n\nThe bus station is situated in Ossett Town Centre next to Prospect Road (B6128) and Ossett Town's football ground.\n\nThe bus station was rebuilt in 2005. There are six stands at the bus station with a real-time information board. The main operator at the bus station is Arriva Yorkshire.\n\nServices\nBuses run from the bus station around the town and regularly to Wakef", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22376477", "url": "https://en.wikipedia.org/wiki/Audiotool", "title": "Audiotool", "text": "Audiotool is a free, browser-based music production software and distribution platform developed in Germany. It allows users to remix and collaborate on tracks in real-time. Users can create and publish their music tracks onto the site using Creative Commons licenses or All Rights Reserved. \n\n(Until 2010, Audiotool was part of Hobnox, a content distribution/publication website specialising in music, fashion and indie culture.)\n\nHistory\n\nVersion Demo \nThe first published version, titled \"Hobnox A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22385540", "url": "https://en.wikipedia.org/wiki/Starcraft%20%28disambiguation%29", "title": "Starcraft (disambiguation)", "text": "StarCraft is a real-time strategy video game franchise by Blizzard Entertainment.\n\nStarcraft or StarCraft may also refer to:\n\nEntertainment\n StarCraft (WildStorm comics), a comic book series based on the video game\n StarCraft (video game), the debut game in the video game series\n\nTransport\n Starship or starcraft, a theoretical spacecraft designed for traveling between planetary systems\n Starcraft (horse), an Australian racehorse \n Starcraft Bus, a division of Forest River that manufactures buses", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22491843", "url": "https://en.wikipedia.org/wiki/RF%20Engines", "title": "RF Engines", "text": "RF Engines Limited of Newport, Isle of Wight, UK was founded in 1999. RF Engines (RFEL) develops (and patents as appropriate) products based on high performance, state-of-the-art, digital signal processing techniques that enable fast moving events or fleeting, hopping signals occurring in the radio spectrum to be identified and acquired in real-time for subsequent analysis. These IP (Intellectual Property) cores are then incorporated into an increasing number of RFEL's own products as well as th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22597307", "url": "https://en.wikipedia.org/wiki/TenAsys", "title": "TenAsys", "text": "TenAsys (rhymes with tenacious) is a privately owned company providing real-time software and services based on the x86 Intel Architecture and Microsoft Windows operating system.\n\nHistory\nThe company was founded in 2000 as a spin-off of RadiSys Corporation to exploit the RTOS technology based on the iRMX and INtime for Windows products originally developed by Intel Corporation. RadiSys acquired the iRMX and INtime RTOS technology when they purchased Intel's Multibus division in 1996.\n\nRadiSys re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22668301", "url": "https://en.wikipedia.org/wiki/Galcon", "title": "Galcon", "text": "Galcon is a series of real-time strategy video games for Android, iPhone, webOS, Windows, Linux, Mac OS X and Flash, which were developed by Phil Hassey. It is set in space and involves maneuvering fleets of ships to capture enemy planets.\n\nHistory \n\nThe Galcon series was inspired by Galactic Conquest by Rick Raddatz, a text-based multiplayer computer game released in 1987. This game was based on a game called Stellar Invasion by Bearbyte Software.\n\nGalcon Classic was released for the desktop in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22677946", "url": "https://en.wikipedia.org/wiki/Chipmunk%20%28software%29", "title": "Chipmunk (software)", "text": "Chipmunk2D is a 2-dimensional real-time rigid body physics engine written by Scott Lembcke that is designed to be portable, lightweight, fast, and easy to use. Prior to version 7, two main versions of the library existed. Chipmunk2D Free was written purely in C99, and freely available under the terms of the MIT License. Chipmunk2D Pro was a proprietary upgrade designed for development on mobile devices. It included several high-level subroutines in Objective-C, and floating-point optimizations f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22721456", "url": "https://en.wikipedia.org/wiki/Computational%20sustainability", "title": "Computational sustainability", "text": "Computational sustainability is a broad field that attempts to balance societal, economic, and environmental resources using methods from mathematics and computer science fields. Sustainability in this context is the ability to produce enough energy for the world to support its biological systems. Using the power of computers to process large quantities of information, decision making algorithms allocate resources based on real-time information.\n\nApplications are widespread. Smart grids impleme", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22771404", "url": "https://en.wikipedia.org/wiki/Synth%20%28video%20game%29", "title": "Synth (video game)", "text": "Synth is an action real-time strategy video game by Canadian developer Rhys Paul Hovey for Microsoft Windows. Synth is an abstract and procedurally generated 3D game, in which the graphics have an algorithmic C++ representation.\n\nGameplay\nSynth is a strategic action game, in which the player must find an exit in a procedurally generated landscape. The player is equipped with a laser, bombs, and a device that acts as a vacuum or blower. The overall goal is to reach the highest level possible.\n\nSy", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22796688", "url": "https://en.wikipedia.org/wiki/Real-time%20recovery", "title": "Real-time recovery", "text": "In information technology, real-time recovery (RTR) is the ability to recover a piece of IT infrastructure such as a server from an infrastructure failure or human-induced error in a time frame that has minimal impact on business operations. Real-time recovery focuses on the most appropriate technology for restores, thus reducing the Recovery Time Objective (RTO) to minutes, Recovery Point Objectives (RPO) to within 15 minutes ago, and minimizing Test Recovery Objectives (TRO), which is the abil", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22797979", "url": "https://en.wikipedia.org/wiki/Customer%20Service%20Assurance", "title": "Customer Service Assurance", "text": "Customer Service Assurance (CSA) in telecom and Internet services means the collection of Communications Service Provider (CSP) customer usage information from all practical sources including network traffic, network devices, content servers, management databases and user devices to ensure customer service quality is consistent with CSP expectations.\n\nCSA involves, when needed, real-time monitoring of a customer\u2019s purchased services and in analyzing this data to note trends, preferences, usage p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22807593", "url": "https://en.wikipedia.org/wiki/Energy%20management%20software", "title": "Energy management software", "text": "Energy Management Software (EMS) is a general term and category referring to a variety of energy-related software applications which may provide utility bill tracking, real-time metering, building HVAC and lighting control systems, building simulation and modeling, carbon and sustainability reporting, IT equipment management, demand response, and/or energy audits. Managing energy can require a system of systems approach.\n\nEnergy management software often provides tools for reducing energy costs ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22844853", "url": "https://en.wikipedia.org/wiki/Twitscoop", "title": "Twitscoop", "text": "Twitscoop is a web-based Twitter client which uses the Twitter API to allow users to send and receive tweets, and do multiple real-time searches at the same time.\n\nTwitter client\nTwitscoop is a Twitter client and a real-time visualisation tool which enables users to mine the tweet stream.\n\nTwitscoop's algorithm identifies tags and keywords in the Twitter stream and then ranks them by how frequently they appear versus normal usage. Twitscoop detects growing trends in real-time, identifies breakin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22845262", "url": "https://en.wikipedia.org/wiki/Real-time%20locating%20system", "title": "Real-time locating system", "text": "Real-time locating systems (RTLS), also known as real-time tracking systems, are used to automatically identify and track the location of objects or people in real time, usually within a building or other contained area. Wireless RTLS tags are attached to objects or worn by people, and in most RTLS, fixed reference points receive wireless signals from tags to determine their location. Examples of real-time locating systems include tracking automobiles through an assembly line, locating pallets ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22912659", "url": "https://en.wikipedia.org/wiki/GEC%20Computers", "title": "GEC Computers", "text": "GEC Computers Limited was a British computer manufacturing company under the GEC holding company from 1968 until the 1990s.\n\nHistory\nStarting life as Elliott Automation, in 1967\u201368 the data processing computer products were transferred to ICT/ICL and non-computing products to English Electric as part of a reorganisation of the parent company forced by the British Government. English Electric then merged into the GEC conglomerate in 1968.\n\nElliott Automation retained the real-time computing syste", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22992426", "url": "https://en.wikipedia.org/wiki/Google%20Wave", "title": "Google Wave", "text": "Google Wave, later known as Apache Wave, was a software framework for real-time collaborative editing online. Originally developed by Google and announced on May 28, 2009, it was renamed to Apache Wave when the project was adopted by the Apache Software Foundation as an incubator project in 2010.\n\nWave is a web-based computing platform and communications protocol designed to merge key features of communications media, such as email, instant messaging, wikis, and social networking. Communications", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "22996654", "url": "https://en.wikipedia.org/wiki/Pianoteq", "title": "Pianoteq", "text": "Pianoteq is a software synthesizer that features real-time MIDI-control of digital physically modeled pianos and related instruments, including electric piano, harp, harpsichord, fortepiano, and various metallophones. It is usable as a stand-alone program for Microsoft Windows, Mac OS X and Linux (including ARM architecture) platforms, or as a plug in for VSTi hosts and two VSTi counterpart for use with digital audio workstations.\n\nHistory and technology\nThe original version of the program was r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23002283", "url": "https://en.wikipedia.org/wiki/Google%20Wave%20Federation%20Protocol", "title": "Google Wave Federation Protocol", "text": "The Wave Federation Protocol (formerly Google Wave Federation Protocol) is an open protocol, extension of the Extensible Messaging and Presence Protocol (XMPP) that is used in Apache Wave. It is designed for near real-time communication between the computer supported cooperative work wave servers.\n\nOverview\nStill currently in development, the Wave Federation Protocol is an open protocol that is intended to parallel the openness of the email protocol so waves may succeed email as the dominant for", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23019174", "url": "https://en.wikipedia.org/wiki/Open%20Salon", "title": "Open Salon", "text": "Open Salon was a hybrid blogging platform and social network site started by the Salon Media Group, Inc. According to Salon Editor-in-Chief Joan Walsh \"Open Salon gets rid of traditional gatekeepers, and makes our smart, creative audience full partners in Salon'''s publishing future.\" After registering, users can start blogging immediately as well as rating and commenting on other posts. The Open Salon home page functions as a real-time magazine cover and is updated throughout the day. The best ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23029601", "url": "https://en.wikipedia.org/wiki/Aimsun%20Live", "title": "Aimsun Live", "text": "Aimsun Live is a simulation-based traffic forecasting solution, developed and marketed by Aimsun.\n\nTraffic control centres use Aimsun Live (formerly Aimsun Online) to make real-time decisions about the management of a road network. It is used to dynamically forecast future traffic conditions based on the current state of the network and to evaluate incident response or traffic management strategies.\n \nAimsun Live slots right into the traffic control centre and continuously processes live field d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23048428", "url": "https://en.wikipedia.org/wiki/Kinect", "title": "Kinect", "text": "Kinect is a line of motion sensing input devices produced by Microsoft and first released in 2010. The devices generally contain RGB cameras, and infrared projectors and detectors that map depth through either structured light or time of flight calculations, which can in turn be used to perform real-time gesture recognition and body skeletal detection, among other capabilities. They also contain microphones that can be used for speech recognition and voice control.\n\nKinect was originally develop", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23111622", "url": "https://en.wikipedia.org/wiki/Pok%C3%A9mon%20Rumble", "title": "Pok\u00e9mon Rumble", "text": "Pok\u00e9mon Rumble (titled in Japan) is a beat 'em up video game in the Pok\u00e9mon series for WiiWare.\n\nGameplay\n\nThe player controls Pok\u00e9mon as they BOOM battle other Pok\u00e9mon in a series of linear dungeons and enclosed arenas. The game features real-time melee-based gameplay, which has been likened to that of Smash TV.\n\nThe game uses a Wii Remote held sideways by default, but also supports the Nunchuk, Classic Controller (Pro) and GameCube Controller. Using one of the attachment controllers allows tw", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23131189", "url": "https://en.wikipedia.org/wiki/Misato%20Katsuragi%27s%20Reporting%20Plan", "title": "Misato Katsuragi's Reporting Plan", "text": "Misato Katsuragi's Reporting Plan (\u845b\u57ce\u30df\u30b5\u30c8\u5831\u9053\u8a08\u753b, Katsuragi Misato H\u014dd\u014d Keikaku) was a Namco Bandai online game for the PlayStation 3. It was based on the anime character Misato Katsuragi from the popular Neon Genesis Evangelion franchise. Utilizing a subscription-based access model, the game could be played on the PlayStation Portable through Remote Play and was released exclusively for the Japanese market.\n\nInterface\n\nInteractivity included real-time motion sensitive 360\u00b0 zoom-in/zoom-out and char", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23166361", "url": "https://en.wikipedia.org/wiki/Two%20Thrones", "title": "Two Thrones", "text": "Two Thrones is a real-time grand strategy video game developed and published by Paradox Interactive. It is the sequel to the international version of Svea Rike III, Europa Universalis: Crown of the North.\n\nReception\n\nThe game received \"mixed\" reviews according to the review aggregation website Metacritic.\n\nReferences\n\nExternal links\n\n2004 video games\nGrand strategy video games\nParadox Interactive games\nReal-time strategy video games\nVideo game sequels\nVideo games developed in Sweden\nWindows game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23231423", "url": "https://en.wikipedia.org/wiki/Real-time%20web", "title": "Real-time web", "text": "The real-time web is a network web using technologies and practices that enable users to receive information as soon as it is published by its authors, rather than requiring that they or their software check a source periodically for updates.\n\nDifference from real-time computing\nThe real-time web is different from real-time computing in that there is no knowing when, or if, a response will be received. The information types transmitted this way are often short messages, status updates, news aler", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23257459", "url": "https://en.wikipedia.org/wiki/D-Day%20%28disambiguation%29", "title": "D-Day (disambiguation)", "text": "D-Day was the day of the Normandy landings on June 6, 1944.\n\nD-Day may also refer to:\n D-Day (military term)\n\nFilms and television\n Roommates (2006 film) or D-Day, a Korean horror film\n D-Day (2013 film), a Bollywood film\n D-Day (TV series), a 2015 Korean drama\n D-Day, a character in the movie Animal House\n\nGames\n D-Day (game), a board game\n D-Day (1984 video game)\n D-Day (video game), a 2004 real-time strategy game\n D-Day: The Great Crusade, a board wargame\n Axis & Allies: D-Day\n Brothers in Ar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23267772", "url": "https://en.wikipedia.org/wiki/Windward%20Studios", "title": "Windward Studios", "text": "Windward Studios is a software development company based in Boulder, Colorado. The company began in 1996 with the release of Enemy Nations, a popular Real-Time strategy game, before focusing on its reporting software program Windward Reports.\n\n1996-2003: Enemy Nations\n\nWindward Studios was founded by David Thielen as a software gaming company. Enemy Nations is a real-time strategy game that received very high rankings in video game magazines. The publisher went out of business shortly after the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23279720", "url": "https://en.wikipedia.org/wiki/Expeditor", "title": "Expeditor", "text": "An expeditor is someone who facilitates a process. It is a position or role found within project management, construction, purchasing, production control, and restaurants. One example of this is a person in a restaurant who coordinates actions between cooks and wait staff in a restaurant, managing the flow of orders and giving real-time commands to other employees.\n\nIn a shipping logistics supply chain, an expeditor's role is primarily to look at the requirement levels in the business and fulfi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23389157", "url": "https://en.wikipedia.org/wiki/Wirecast", "title": "Wirecast", "text": "Wirecast is a live video streaming production tool by Telestream. It allows users to create live or on-demand broadcasts for the web.\n\nWirecast is a software video switcher, controlling real-time switching between multiple live video cameras, while dynamically mixing in other source media, such as QuickTime movies, music, audio and slides to create professional broadcast productions for live or on-demand distribution on the web.\n\nSpecifications \nCan broadcast to multiple services at once\nSupport", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23400813", "url": "https://en.wikipedia.org/wiki/Pirate%20Hunter", "title": "Pirate Hunter", "text": "Pirate Hunter: Seize and Destroy is an action game created by Ascaron Entertainment UK Ltd, released in 2003 for Windows.\n\nGameplay\nThe player plays a sailor in the Caribbean. The player can experience 16 different scenarios, 14 different ships, from a Sloop to a Ship-of-the-Line and many quests. The game features real-time sea battles and a top-down view that is similar to a RTS (Real Time Strategy) game.\n\nDevelopment\nThe game was originally set to be named Tortuga, but its name was changed dur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23419605", "url": "https://en.wikipedia.org/wiki/Eighth%20Air%20Force%20Scouting%20Forces", "title": "Eighth Air Force Scouting Forces", "text": "The Scouting Forces were several fighter flights formed by Eighth Air Force during World War II with a mission to check for Anti-Aircraft (flak) sites; weather conditions, and for Luftwaffe interceptor airfields and units in advance of heavy bomber missions over Occupied Europe and Nazi Germany.\n\nThese flights were created by Colonel Bud J. Peaslee, commander of the 384th Bombardment Group. Colonel Peaslee suggested this to General James Doolittle in 1944 as a way to gather real-time intellige", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23441648", "url": "https://en.wikipedia.org/wiki/Anno%3A%20Create%20A%20New%20World", "title": "Anno: Create A New World", "text": "Anno: Create a New World, also known as Dawn of Discovery in North America, is a real-time strategy and city-building game for Nintendo DS and Wii. It was developed by Keen Games and is published by Ubisoft. The game is a spin-off of the Anno series.\n\nPlot\nIt takes place in year 1404, where King George's land suffers from drought and famine. Aware of the distress of his citizens, he decides to remedy the situation by sending his two sons, William (Kevin Howarth) and Edward, to explore new fertil", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23458743", "url": "https://en.wikipedia.org/wiki/CompactRIO", "title": "CompactRIO", "text": "CompactRIO (or cRIO) is a real-time embedded industrial controller made by National Instruments for industrial control systems. The CompactRIO is a combination of a real-time controller, reconfigurable IO Modules (RIO), FPGA module and an Ethernet expansion chassis.\n\nHardware\nThe CompactRIO system is a combination of a real-time controller chassis, reconfigurable IO Modules (RIO), an FPGA module and an Ethernet expansion chassis. Third-party modules are also available, and are generally compatib", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23462135", "url": "https://en.wikipedia.org/wiki/Army%20Men%3A%20Air%20Attack", "title": "Army Men: Air Attack", "text": "Army Men: Air Attack (Army Men: Air Combat for the Nintendo 64 and Game Boy Color versions) is a third-person shooter video game developed and published by The 3DO Company for PlayStation, Nintendo 64, Game Boy Color and Microsoft Windows. The game focuses on aerial combat and features the same protagonist, Cpt. William Blade. It is one of the first Army Men games to be powered by a 3D engine where terrain and units are rendered in real-time.\n\nOverview\nIn Army Men: Air Attack, the evil Tan army ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23518911", "url": "https://en.wikipedia.org/wiki/Blu-code", "title": "Blu-code", "text": "Blu-code is a professional Blu-ray authoring software, supporting H.264 and MPEG-2 encoding. Blu-code can support a large-scale distributed processing system deploying a number of PCs for real-time encoding or run on a single PC.\n\nSee also\n H.264/MPEG-4 AVC\n MPEG-4\n MPEG-2\n Codec\n x264\n\nReferences\n\nExternal links\n http://www.sonycreativesoftware.com/blucode\n http://pro.sony.com/bbsc/ssr/cat-editing/cat-encodingandauthoring/product-BAEVX1000/\n https://web.archive.org/web/20090527235612/http://www", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23529135", "url": "https://en.wikipedia.org/wiki/Gods%20of%20Time", "title": "Gods of Time", "text": "Gods of Time was a free real-time 2D browser based MMORPG (Massively multiplayer online role-playing game) with the goal of emulating downloadable MMORPGs, but with simpler graphics and a guest friendly system where players could play without creating an account until after they had finished playing. Unlike several other browser based games, Gods of Time didn't have a limit on play time, so players could play for as long as they wanted. At the time of the game's discontinuation, there were 5 cla", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23543392", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%204%3A%20Tiberian%20Twilight", "title": "Command & Conquer 4: Tiberian Twilight", "text": "Command & Conquer 4: Tiberian Twilight is a real-time strategy video game, part of the Command & Conquer franchise, released March 16, 2010. It constitutes a final chapter in the Tiberium saga. The game was originally started as an Asian market online-only version of Command & Conquer 3. The game was released for download via online gaming distribution service Steam on March 19, 2010. Command & Conquer 4 also uses EA's own servers for online play, rather than GameSpy Servers which EA has relied ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23562876", "url": "https://en.wikipedia.org/wiki/Site%20Recorder", "title": "Site Recorder", "text": "Site Recorder is a geographical information system (GIS) and information management system (IMS) designed for use in maritime, freshwater and intertidal archaeology. Site Recorder can be used on maritime and intertidal archaeology projects for real-time data collection, decision support, publication, archiving and data migration. The program is designed for use by archaeologists rather than GIS experts.\n\nSite Recorder can replace the many separate surveying, drawing, finds handing and reporting", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23565179", "url": "https://en.wikipedia.org/wiki/Achron", "title": "Achron", "text": "Achron is a real-time strategy computer game. It is considered to be the first \"meta-time strategy game\" (Real-time strategy with time travel), notable for being the first game with free-form multiplayer time travel and its themes of concepts like the grandfather paradox. Achron was released on August 29, 2011.\n\nPlot\nHundreds of years in the future, humans have begun colonizing other worlds, however they have been reliant on conventional propulsion systems that may take hundreds of years to rea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23616473", "url": "https://en.wikipedia.org/wiki/Widelands", "title": "Widelands", "text": "Widelands is a free and open-source, slow-paced real-time strategy video game under the GNU General Public License. Widelands takes many ideas from and is quite similar to The Settlers and The Settlers II. It remains a work-in-progress game, with development still required in graphics and bug-fixing. The game runs on several operating systems such as AmigaOS 4, Linux, BSD, Mac OS X, and Windows.\n\nGameplay\nWidelands has single-player, local network and internet multiplayer modes, single-player ca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23625216", "url": "https://en.wikipedia.org/wiki/Array%20Operations%20Center", "title": "Array Operations Center", "text": "The Array Operations Center (AOC) in Socorro, New Mexico, is the control and monitor center for the Very Long Baseline Array. From the AOC, National Radio Astronomy Observatory operators are able to remotely control and monitor the ten VLBA telescope stations over the internet. The operators aim the antennas, select radio frequencies for observation, control the hard drives, and monitor the weather and 'health' of the equipment at every site. A real-time display of the array's status is availabl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23626815", "url": "https://en.wikipedia.org/wiki/QResearch", "title": "QResearch", "text": "QResearch is a large consolidated UK database derived from the anonymised health records of over 18 million patients.\n\n the data is taken from around 1,000 general practices throughout the UK. Historical records extend back to the early 1990s.\n\nThe database is open, with ethical restrictions, to academic researchers. The costs are controlled to allow the scheme to be self-funding while allowing good access to researchers.\n\nQSurveillance\nQSurveillance is a near-real-time surveillance scheme to co", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23679414", "url": "https://en.wikipedia.org/wiki/Real-time%20Neutron%20Monitor%20Database", "title": "Real-time Neutron Monitor Database", "text": "The Real-time Neutron Monitor Database (or NMDB) is a worldwide network of standardized neutron monitors, used to record variations of the primary cosmic rays. The measurements complement space-based cosmic ray measurements.\n\nUnlike data from satellite experiments, neutron monitor data has never been available in high resolution from many stations in real-time. The data is often only available from the individual stations website, in varying formats, and not in real-time. To overcome this defic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23693669", "url": "https://en.wikipedia.org/wiki/OrSiSo", "title": "OrSiSo", "text": "OrSiSo is a Singapore registered online lifestream management/real-time internet startup (2007) and has been funded thus far by experienced technology business angels and with the support of the Singapore government IDM grants program.\n\nOrSiSo helps to merge friends' contact information from multiple networks into a single profile, making it easy to manage conversations with people who are active across different networks. To help keep on top of the constant stream of updates and information fro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23741574", "url": "https://en.wikipedia.org/wiki/497th%20Intelligence%2C%20Surveillance%20and%20Reconnaissance%20Group", "title": "497th Intelligence, Surveillance and Reconnaissance Group", "text": "The United States Air Force's 497th Intelligence, Surveillance and Reconnaissance Group is an intelligence unit located at Joint Base Langley\u2013Eustis, Virginia.\n\nMission\nThe 497th Group delivers real-time high-confidence intelligence, surveillance and reconnaissance products and services to Joint and Coalition forces and other designated government agencies.\n\nThe Group consists of four active duty Squadrons, the 497th Operations Support Squadron, the 45th Intelligence Squadron, the 30th Intellig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23748474", "url": "https://en.wikipedia.org/wiki/Dragon%20Throne%3A%20Battle%20of%20Red%20Cliffs", "title": "Dragon Throne: Battle of Red Cliffs", "text": "Dragon Throne: Battle of Red Cliffs is a real-time strategy (RTS) video game developed by Object Software Limited (formerly known as Overmax Studios) in 2002 for the PC. It is based on the historical background of the epic 14th century novel Romance of the Three Kingdoms by Luo Guanzhong and the famous Battle of Red Cliffs (Battle of Chibi).\n\nSee also\n\n Three Kingdoms: Fate of the Dragon\n\nExternal links \n \n\n2002 video games\nWindows games\nWindows-only games\nVideo games developed in China\nVideo ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23772346", "url": "https://en.wikipedia.org/wiki/J.%20Halcombe%20Laning", "title": "J. Halcombe Laning", "text": "J. Halcombe \"Hal\" Laning Jr. (February 14, 1920 in Kansas City, Missouri \u2013 May 29, 2012) was a Massachusetts Institute of Technology computer pioneer who in 1952 invented an algebraic compiler called George (also known as the Laning and Zierler system after the authors of the published paper) that ran on the MIT Whirlwind, the first real-time computer. Laning designed George to be an easier-to-use alternative to assembly language for entering mathematical equations into a computer. He later beca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23805110", "url": "https://en.wikipedia.org/wiki/Global%20IP%20Solutions", "title": "Global IP Solutions", "text": "Global IP Solutions (also known as GIPS) was a United States-based corporation that developed real-time voice and video processing software for IP networks, before it was acquired by Google in May 2010. The company delivered embedded software that enabled real-time communications capabilities for video and voice over IP (VoIP). GIPS was perhaps best known for developing the narrowband iLBC and wideband iSAC speech codecs.\n\nGIPS software was generally delivered as \u201cengines\u201d that packaged together", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23830159", "url": "https://en.wikipedia.org/wiki/Scheduled-task%20pattern", "title": "Scheduled-task pattern", "text": "A scheduled-task pattern is a type of software design pattern used with real-time systems. It is not to be confused with the \"scheduler pattern\".\n\nWhile the scheduler pattern delays access to a resource (be it a function, variable, or otherwise) only as long as absolutely needed, the scheduled-task pattern delays execution until a determined time. This is important in real-time systems for a variety of reasons.\n\nReferences\n\nExternal links\n\nSee also\nCommand pattern\nMemento pattern\n\nSoftware desig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23846540", "url": "https://en.wikipedia.org/wiki/Tactical%20Ground%20Intercept%20Facility", "title": "Tactical Ground Intercept Facility", "text": "Tactical Ground Intercept Facility (TGIF) is a United States Military Intelligence collection platform. It was a two piece collection platform with digital audio receivers on a high altitude reconnaissance aircraft which use microwaves to redirect the intercepted audio back to linguists and ELINT specialists on the ground to provide near-real-time intelligence for theater commanders.\n\nReferences\n\nMilitary intelligence\nMilitary equipment of the United States", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23852758", "url": "https://en.wikipedia.org/wiki/Real-time%20control%20system", "title": "Real-time control system", "text": "Real-time control system may refer to:\n\n Real-time Control System (RCS), a reference model architecture, suitable for many software-intensive, real-time control problem domains\n Real-time Control System Software, a software system developed by NIST based on the Real-time Control System Reference Model Architecture\n 4D-RCS Reference Model Architecture, an RCS application in the vehicle domain\n ISAM Framework, an RCS application in the manufacturing domain\n NASA/NBS Standard Reference Model for Te", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23854465", "url": "https://en.wikipedia.org/wiki/Real-time%20Control%20System", "title": "Real-time Control System", "text": "Real-time Control System (RCS) is a reference model architecture, suitable for many software-intensive, real-time computing control problem domains. It defines the types of functions needed in a real-time intelligent control system, and how these functions relate to each other. \n\nRCS is not a system design, nor is it a specification of how to implement specific systems. RCS prescribes a hierarchical control model based on a set of well-founded engineering principles to organize system complexity", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23922168", "url": "https://en.wikipedia.org/wiki/Telepresence%20technology", "title": "Telepresence technology", "text": "Telepresence technology is a term used by the National Oceanic and Atmospheric Administration (NOAA) to refer to the combination of satellite technology with the Internet to broadcast information, including video in real-time from cameras used on its remotely operated vehicle (ROV) on Okeanos Explorer. Its ROV will be operating working in a deep sea environment. Data from the ROV is transmitted to a hub based on the land, which then send it to scientists and to the public.\n\nThis effort of th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23947917", "url": "https://en.wikipedia.org/wiki/Sim%20So-myung", "title": "Sim So-myung", "text": "Somyung \"Silver\" Sim (born September 27, 1984), known by the pseudonym s.s.m~[SiLvEr] is one of the most successful player of the real-time strategy computer game StarCraft. Also known to be a poker player, he has made the final table of the APPT Macau 2008 (Asia Pacific Poker Tour).\n\nAccomplishments\n2003.01 Gembc KTF StarCraft League 1st Place\n2004.08 iTV Ranking Event 3rd place\n2004.10 Sky Pro-league 2nd Round MVP\n2006.08 Sky Pro-league 1st Round MVP\n2006.11 Pringles MBCGame StarCraft League ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23948841", "url": "https://en.wikipedia.org/wiki/Chang%20Yong-suk", "title": "Chang Yong-suk", "text": "Chang \"FreedoM\" Youngsuk (born April 26, 1988) is a South Korean professional esports player of the real-time strategy games StarCraft and WarCraft III. He is known by his pseudonym FreedoM or FreeDoM. Chang entered the E-sports world in 2004 where he started his career playing as the Night Elf race in the game WarCraft III.\n\nChang represented South Korea in WarCraft III at the World Cyber Games 2004, winning the 2004 national Korean qualifier. In 2005, he once again placed first on the World ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "23968131", "url": "https://en.wikipedia.org/wiki/NoSQL", "title": "NoSQL", "text": "A NoSQL (originally referring to \"non-SQL\" or \"non-relational\") database provides a mechanism for storage and retrieval of data that is modeled in means other than the tabular relations used in relational databases. Such databases have existed since the late 1960s, but the name \"NoSQL\" was only coined in the early 21st century, triggered by the needs of Web 2.0 companies. NoSQL databases are increasingly used in big data and real-time web applications. NoSQL systems are also sometimes called Not", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24011465", "url": "https://en.wikipedia.org/wiki/Submarine%20Titans", "title": "Submarine Titans", "text": "Submarine Titans is a real-time strategy video game developed by Ellipse Studios and released for Microsoft Windows in 2000.\n\nGameplay\n\nSubmarine Titans is a real-time strategy video game that takes place in the year 2115 after a comet has struck Earth, driving two human factions, the militant White Sharks and the scientific Black Octopi, to establish underwater bases and fight for dominance over the oceans. The comet also brought a mysterious alien race known as the Silicons, who compete with t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24040671", "url": "https://en.wikipedia.org/wiki/Napoleon%3A%20Total%20War", "title": "Napoleon: Total War", "text": "Napoleon: Total War is a turn-based strategy and real-time tactics video game developed by Creative Assembly and published by Sega for the Microsoft Windows and macOS. Napoleon was released in North America on 23 February 2010, and in Europe on 26 February. The game is the sixth stand-alone installment in the Total War series. The game is set in Europe, North Africa, and the Middle East during the French Revolutionary Wars and Napoleonic Wars. Players assume the role of Napoleon Bonaparte, or on", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24050458", "url": "https://en.wikipedia.org/wiki/Dynamic%20circuit%20network", "title": "Dynamic circuit network", "text": "A dynamic circuit network (DCN) is an advanced computer networking technology that combines traditional packet-switched communication based on the Internet Protocol, as used in the Internet, with circuit-switched technologies that are characteristic of traditional telephone network systems. This combination allows user-initiated ad hoc dedicated allocation of network bandwidth for high-demand, real-time applications and network services, delivered over an optical fiber infrastructure.\n\nImplement", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24096634", "url": "https://en.wikipedia.org/wiki/RMX", "title": "RMX", "text": "RMX may refer to\n\n RMX (operating system), a real-time operating system designed for use with Intel 8080 and 8086 processors\n Fast RMX, a Nintendo Switch racing video game\n Reverse MX, a computer protocol related to email transfer\n Risk Management Exchange, a financial market in Germany\n Remix, an alternative version of a recorded song, made from an original version", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24099998", "url": "https://en.wikipedia.org/wiki/Ingex", "title": "Ingex", "text": "Ingex is an open-source (GPL) suite of software for the digital capture of audio and video data, without the need for traditional audio or video tape or cassettes. Serial digital interface (SDI) capture is supported, as well as real-time transcoding (with MXF). Portions of the software suite also act as a network file server for media files, as well as archiving to LTO-3 data tape. Audio and video media files can also be stored on USB hard drives or Network Attached Storage. The software is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24277561", "url": "https://en.wikipedia.org/wiki/GL%20Trade", "title": "GL Trade", "text": "GL Trade was a French provider of financial order management and trading systems that covered front office, middle office and back office used by international financial institutions. Its main products were real-time market data and trading systems (servers and front end applications); a major part of its success was the GL NET private network linking up exchanges all over the world with thousands of brokers and traders. The company was purchased by SunGard in 2009 and the system was renamed as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24301480", "url": "https://en.wikipedia.org/wiki/Dynamic%20decision-making", "title": "Dynamic decision-making", "text": "Dynamic decision-making (DDM) is interdependent decision-making that takes place in an environment that changes over time either due to the previous actions of the decision maker or due to events that are outside of the control of the decision maker. In this sense, dynamic decisions, unlike simple and conventional one-time decisions, are typically more complex and occur in real-time and involve observing the extent to which people are able to use their experience to control a particular complex ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24316124", "url": "https://en.wikipedia.org/wiki/WonderKing%20Online", "title": "WonderKing Online", "text": "WonderKing Online (Korean: \uc6d0\ub354\ud0b9 Japanese: \u30ef\u30f3\u30c0\u30fc\u30ad\u30f3\u30b0) was a free-of-charge, 2D, side-scrolling massively multiplayer online role-playing game created by the South Korean company ToWinGames.\n\nGameplay\nWonderKing was a MMORPG which centers on venturing throughout an expansive world, fighting various monsters in real-time combat, in a style that can be pleasantly associated with side-scrolling adventure platforms from the 32-bit genre. The players combat monsters and complete quests, in the process acq", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24319071", "url": "https://en.wikipedia.org/wiki/NASCOM", "title": "NASCOM", "text": "The NASA (Ground) Communications System (NASCOM) manages terrestrial communications between ground stations, mission control centers, and other elements of spacecraft ground segments, providing worldwide, near real-time transmission of commands, telemetry, voice, and television signals. It is managed out of NASA's Goddard Space Flight Center in Greenbelt, Maryland.\n\nThe NASCOM network comprises microwave links, undersea cables, land lines, and network centers at Goddard and around the world.\n\nHi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24369833", "url": "https://en.wikipedia.org/wiki/The%20Golden%20Horde%20%28video%20game%29", "title": "The Golden Horde (video game)", "text": "The Golden Horde () is a real-time strategy video game for Microsoft Windows, developed by World Forge and published in Russia by Russobit-M in February 2008, in Europe by JoWooD in March 2008, and in North America by DreamCatcher Interactive in July 2008. A spiritual successor to Ancient Wars: Sparta and Fate of Hellas, Golden Horde uses the same game engine as the previous titles \u2013 the Ancient Wars Engine (AWE) \u2013 and features similar gameplay. One more World Forge game using this engine and ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24373847", "url": "https://en.wikipedia.org/wiki/Interactive%20video%20compositing", "title": "Interactive video compositing", "text": "Interactive video compositing, or IVC, is an interactive media production technique that uses pre-rendered videos and images to create visual coherence, allowing interactive environments to be created without the heavy processing load incurred by real-time 3D graphics.\n\nThe most popular examples of IVC are in video games using the technique prior to the propagation of real-time 3D graphics. On the Internet, some websites (generally in Adobe Flash) make use of this technique for visual rendering ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24410259", "url": "https://en.wikipedia.org/wiki/OSO%203", "title": "OSO 3", "text": "OSO 3 (Orbiting Solar Observatory 3), or Third Orbiting Solar Observatory (known as OSO E2 before launch) was launched on March 8, 1967, into a nearly circular orbit of mean altitude 550\u00a0km, inclined at 33\u00b0 to the equatorial plane. Its on-board tape recorder failed on June 28, 1968, allowing only the acquisition of sparse real-time data during station passes thereafter; the last data were received on November 10, 1969. OSO 3 reentered the Earth's atmosphere and burned up on April 4, 1982.\n\nLik", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24410335", "url": "https://en.wikipedia.org/wiki/XIII%20Century%20%28series%29", "title": "XIII Century (series)", "text": "XIII Century is a series of real-time tactics computer video games developed by Unicorn Studio and released in 2007. The series consists of the titles XIII Century: Death or Glory, its stand-alone expansion XIII Century: Blood of Europe, and a XIII Century: Gold release, which combines the two titles. The games are similar in interface and game play to those of the Total War series but feature a more complex battle mechanism, in which results are calculated for each individual soldier in the un", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24421230", "url": "https://en.wikipedia.org/wiki/Warhammer%2040%2C000%3A%20Dawn%20of%20War%20II%20%E2%80%93%20Chaos%20Rising", "title": "Warhammer 40,000: Dawn of War II \u2013 Chaos Rising", "text": "Warhammer 40,000: Dawn of War II \u2013 Chaos Rising is a real-time strategy video game developed by Relic Entertainment and published by THQ, and the sequel expansion of Warhammer 40,000: Dawn of War II. The game was released on March 11, 2010 for Games for Windows.\n\nChaos Space Marines are introduced in the game and all the races in the previous game (Space Marines, Eldar, Orks, and Tyranids) were given new units.\n\nThe game predominantly takes place on the ice-covered home-world of the Blood Raven", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24436509", "url": "https://en.wikipedia.org/wiki/The%20Settlers%207%3A%20Paths%20to%20a%20Kingdom", "title": "The Settlers 7: Paths to a Kingdom", "text": "The Settlers 7: Paths to a Kingdom () is a city-building game with real-time strategy elements, developed by Blue Byte and published by Ubisoft. Released for Microsoft Windows and macOS in March 2010, it is the seventh game in The Settlers series. Blue Byte released three DLC packs in 2010; Uncharted Land (), Conquest - The Empire (), and Rise of the Rebellion (), released in July, September, and December, respectively. In March 2011, The Settlers 7: Paths to a Kingdom - Deluxe Gold Edition was ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24437481", "url": "https://en.wikipedia.org/wiki/Dunes%20of%20War", "title": "Dunes of War", "text": "Dunes of War is an arcade shooter real-time strategy simulation game that was developed by ZootFly. The game was published by JoWooD Entertainment in European Union, and by GFI and Russobit-M in Russia. The game was published by DreamCatcher Interactive in North America.\n\nReferences\n\n2007 video games\nReal-time strategy video games\nVideo games developed in Slovenia\nWindows games\nWindows-only games\nDreamCatcher Interactive games", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24447423", "url": "https://en.wikipedia.org/wiki/DailyBooth", "title": "DailyBooth", "text": "DailyBooth was a photoblogging website designed for users to take a photo of themselves every day with a caption, in order to document and share their life with others, thus the slogan \"your life in pictures.\" It was similar to social-networking websites such as Twitter in that you could follow other users and allow them to follow you in turn and get real-time updates on what other people are doing. The user base was geared towards teens.\n\nIn August 2009, the site was reported to have over 3 mil", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24494878", "url": "https://en.wikipedia.org/wiki/Stratosphere%3A%20Conquest%20of%20the%20Skies", "title": "Stratosphere: Conquest of the Skies", "text": "Stratosphere: Conquest of the Skies is a vehicular combat game and also a real-time strategy PC game, developed by Kodiak Interactive and published by Ripcord Games in 1998. Stratosphere focuses on floating island battles which players control.\n\nGameplay\nGameplay consist of the player controlling a single floating island which are called flying fortresses in the game. These fortresses float because they are built from 'floatstones' which can be collected from mountainsides and also from other fo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24528698", "url": "https://en.wikipedia.org/wiki/Kang%20G.%20Shin", "title": "Kang G. Shin", "text": "Kang Geun Shin is a South Korean-born computer scientist and the Kevin and Nancy O'Connor Professor of Computer Science in the Electrical Engineering and Computer Science Department at the University of Michigan. He is also the founding director of the Real-Time Computing Laboratory (RTCL). He is known for his contributions to the field of real-time fault-tolerant systems. Shin is a recipient of the Korean Ho-Am Prize in Engineering. This prize is awarded for the \"outstanding contributions to th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24536831", "url": "https://en.wikipedia.org/wiki/SantosLab%20Carcar%C3%A1", "title": "SantosLab Carcar\u00e1", "text": "The SantosLab Carcar\u00e1 is a Brazilian light weight unmanned aerial vehicle designed to be transported by a single soldier. The soldier's height allows takeoff and landing in restricted areas where other aircraft are unable to operate. It is designed to be used in any theater even if it is without roads or paths, or surrounded by obstacles.\n\nIt is designed to be used by Brazilian Marine Corps infantry in real-time reconnaissance.\n\nCharacteristics\n\nThe Carcar\u00e1 was ordered by the Brazilian Navy to e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24564090", "url": "https://en.wikipedia.org/wiki/What%20Did%20I%20Do%20to%20Deserve%20This%2C%20My%20Lord%3F%202", "title": "What Did I Do to Deserve This, My Lord? 2", "text": "What Did I Do To Deserve This My Lord!? 2 (formerly known as Holy Invasion Of Privacy, Badman! 2: Time To Tighten Up Security!, known as Y\u016bsha no Kuse ni Namaiki da or2, \u52c7\u8005\u306e\u304f\u305b\u306b\u306a\u307e\u3044\u304d\u3060or2, literally \"For a hero, [you are] quite impudent/cheeky/bold] 2)\" in Japan) is a real-time strategy/god game for the PlayStation Portable, sequel to What Did I Do to Deserve This, My Lord?.\n\nThe game was released in Japan in 2008, and was announced for a North American release during Tokyo Game Show 2009. This rel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24641213", "url": "https://en.wikipedia.org/wiki/Click%20analytics", "title": "Click analytics", "text": "Click analytics is a special type of web analytics that gives attention to clicks (Point-and-click) which constitute the first stage in the conversion funnel.\n\nCommonly, click analytics focuses on on-site analytics. An editor of a web site uses click analytics to determine the performance of his or her particular site, with regards to where the users of the site are clicking.\n\nAlso, click analytics may happen in real-time or \"unreal\"-time, depending on the type of information sought. Typically, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24688997", "url": "https://en.wikipedia.org/wiki/Chalk%20talk", "title": "Chalk talk", "text": "A chalk talk is an illustrated performance in which the speaker draws pictures to emphasize lecture points and create a memorable and entertaining experience for listeners. Chalk talks differ from other types of illustrated talks in their use of real-time illustration rather than static images. They achieved great popularity during the late nineteenth and early twentieth centuries, appearing in vaudeville shows, Chautauqua assemblies, religious rallies, and smaller venues. Since their inception,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24698293", "url": "https://en.wikipedia.org/wiki/P53%20%28album%29", "title": "P53 (album)", "text": "p53 is a 1996 live album by experimental music group p53. It was their debut album and was recorded at the 25th Frankfurt Jazz Festival in Germany on 1994. It was released in 1996 in the United Kingdom by Recommended Records.\n\np53 was a musical improvisational project that involved two classical grand pianists, a percussionist, a homemade guitarist and turntablist, and a real-time sampler/processor.\n\nMusic\nThe instrumentation of the p53 project consisted of two grand pianos, amplified turntable", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24740113", "url": "https://en.wikipedia.org/wiki/AeroVironment%20Wasp%20III", "title": "AeroVironment Wasp III", "text": "The AeroVironment Wasp III Small Unmanned Aircraft System is a miniature UAV developed for United States Air Force special operations to provide a small, light-weight vehicle to provide beyond-line-of-sight situation awareness. The aircraft is equipped with two on-board cameras to provide real-time intelligence to its operators. It is also equipped with GPS and an Inertial Navigation System enabling it to operate autonomously from takeoff to recovery. It was designed by AeroVironment Inc., and w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24778033", "url": "https://en.wikipedia.org/wiki/Eyeborg", "title": "Eyeborg", "text": "An eyeborg or eye-borg is a body modification apparatus which fits on the wearer's head, and is designed to allow people to perceive color through sound waves. It works with a head-mounted antenna that senses the colors directly in front of a person, and converts them in real-time into sound waves through bone conduction.\n\nHistory\nThe first eyeborg was created in England in 2003 by Adam Montandon in collaboration with colourblind artist Neil Harbisson. The invention, under the heading Bridging t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24781241", "url": "https://en.wikipedia.org/wiki/Far%20Gate", "title": "Far Gate", "text": "Far Gate is a video game released for Microsoft Windows. It was developed by Super X Studios (formerly Thrushwave Technology) and published by Micro\u00efds. The gameplay consists of 3D space-based real-time strategy, and allows players to play as any of three distinct factions employing different units and structures. It was one of the first video games to offer fully 3D space-based real time strategy.\n\nUnder the title of The Rift, an early version of Far Gate was the winner of the Audience Choice ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24811703", "url": "https://en.wikipedia.org/wiki/Natasha%20Barrett%20%28composer%29", "title": "Natasha Barrett (composer)", "text": "Natasha Barrett (March 1972, Norwich, England) is a British contemporary music composer specialising in electroacoustic art music. Her compositional aesthetics are derived from acousmatic issues. In addition to acousmatic concert music, she composes for instruments, live electronics, sound installations, multi-media works, real-time computer music improvisation, has made soundscapes for exhibitions, and music for contemporary dance and theater. Since 2000 her work has been influenced by spatiali", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24863373", "url": "https://en.wikipedia.org/wiki/Skywarn%20Europe", "title": "Skywarn Europe", "text": "Skywarn Europe is a network of volunteer storm spotters throughout Europe based on the U.S. Skywarn program (a similar program, Canwarn operates in Canada).\n\nIts members attend severe weather training courses and deliver real-time observations of current weather conditions that may be used to warn the public. Its postings may afterwards be entered into databases to evaluate meteorologists' forecasts.\n\nThe organization has autonomous branches in Germany, Austria, Switzerland, France, Slovenia, Ne", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24874836", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Red%20Alert%20%282009%20video%20game%29", "title": "Command & Conquer: Red Alert (2009 video game)", "text": "Command & Conquer: Red Alert is a 2.5D real-time strategy video game developed and published by Electronic Arts for iOS. It was released in October 2009 in the App Store.\n\nThe game contains two playable factions, Soviets and Allies, which both previously appeared in Command & Conquer: Red Alert and Command & Conquer: Red Alert 2 with a third playable faction, the Empire of the Rising Sun from Command & Conquer: Red Alert 3, available as an in-app purchase.\n\nGameplay\n\nRed Alert retains the core r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24875369", "url": "https://en.wikipedia.org/wiki/Honestech", "title": "Honestech", "text": "Honest Technology, or Honestech Inc., is a supplier of digital video and audio communication and entertainment solutions. Some of their flagship products include VHS to DVD, Audio Recorder, FOTOBOX Plus, MY-IPTV, and Claymation Studio. The company develops products based on real-time MPEG encoding/decoding software technologies.\n\nProducts\n VHStoDVD Deluxe \n Audio Recorder 2.0 Deluxe\n Claymation Studio 2.0\n Video Editor 8.0\n nScreen Deluxe\n nScreen Office\n nScreen Stick\n Home Monitor Wireless\n FO", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24876039", "url": "https://en.wikipedia.org/wiki/Army%20Men%3A%20World%20War", "title": "Army Men: World War", "text": "Army Men: World War (Army Men: Operation Meltdown in Europe) is a third-person shooter (real-time tactics in the Microsoft Windows version) video game developed and published by The 3DO Company for PlayStation and Windows.\n\nReception\n\nThe PC version received mixed reviews, while the PlayStation version received unfavorable reviews, according to the review aggregation website GameRankings.\n\nReferences\n\nExternal links\n\n2000 video games\nArmy Men\nMultiplayer and single-player video games\nPlayStation", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24884128", "url": "https://en.wikipedia.org/wiki/Little%20Tournament%20Over%20Yonder", "title": "Little Tournament Over Yonder", "text": "Little Tournament Over Yonder is a video game developed by Singaporean studio Gevo Entertainment for WiiWare. The gameplay is a blend of turn-based strategy and real-time fighting action. The game was released in Europe on 16 October 2009, and in the United States on 23 November 2009. The game is priced at 800 Wii Points.\n\nGameplay\nLittle Tournament Over Yonder consists of two game modes: Tournament and Versus.\n\nIn Tournament mode, the main objective is to win a tournament nobody has ever won be", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24887497", "url": "https://en.wikipedia.org/wiki/Zombie%20Tycoon", "title": "Zombie Tycoon", "text": "Zombie Tycoon is a real-time strategy for the PlayStation Portable developed by Frima Studio and published by Sony Computer Entertainment, with the participation of Telefilm Canada. It was released on October 29, 2009.\n\nZombie Tycoon differs from most zombie games in the fact that the player is able to control and customize three squads of zombies rather than fighting them off. The game is not a tycoon game as the title suggests, with gameplay closer to being a real-time strategy game. Like Dead", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24919101", "url": "https://en.wikipedia.org/wiki/Mauna%20Kea%20Technologies", "title": "Mauna Kea Technologies", "text": "Mauna Kea Technologies is a global medical device company focused on endomicroscopy, the field of microscopic imaging during endoscopy procedures. The company researches, develops and markets tools to visualize, detect, and rule out abnormalities including malignant and pre-malignant tumors or lesions in the gastrointestinal and pulmonary tracts.\n\nThe company makes Cellvizio, a probe-based Confocal Laser Endomicroscopy (pCLE) system, which provides physicians and researchers with real-time acces", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24925755", "url": "https://en.wikipedia.org/wiki/Warrior%20of%20Rome%20II", "title": "Warrior of Rome II", "text": "Warrior of Rome II is a real-time strategy video game developed by Micronet and published by Bignet in 1992 for the Sega Mega Drive/Genesis as a sequel to Warrior of Rome.\n\nPlot\nIn Warrior of Rome II, the player is Julius Caesar, commanding the armies of Rome to suppress rebellions in Asia.\n\nGameplay\nThe game features a three-quarters overhead perspective view, although the two-player mode features a split-screen view. The game is played in real-time, though movement speed can be adjusted accord", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24954538", "url": "https://en.wikipedia.org/wiki/Ceros", "title": "Ceros", "text": "Ceros is a cloud-based platform encompassing a collaborative, real-time digital canvas, upon which designers create animated, interactive content without the need for developers.\n\nFounded in 2012, the startup raised $3 million from investors and having won customers such as ShopBazaar, Mini, Stella McCartney, Frette, Moncler, Urban Outfitters, Tourneau, Peugeot, Habitat, Monsoon & Virgin Atlantic in its first year, the company attracted a further $6.2 million investment from Greycroft, Sigma Pri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24957841", "url": "https://en.wikipedia.org/wiki/DARPA%20Network%20Challenge", "title": "DARPA Network Challenge", "text": "The 2009 DARPA Network Challenge was a prize competition for exploring the roles the Internet and social networking play in the real-time communications, wide-area collaborations, and practical actions required to solve broad-scope, time-critical problems. The competition was sponsored by the Defense Advanced Research Projects Agency (DARPA), a research organization of the United States Department of Defense. The challenge was designed to help the military generate ideas for operating under a ra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24970518", "url": "https://en.wikipedia.org/wiki/Memo%20posting", "title": "Memo posting", "text": "Memo-posting is a term used in traditional computerized banking environments where batch processing is employed. It represents temporary credit or debit transactions/entries made to an account for which the complete posting to update the balance will be done as part of EOD (end-of-day) batch processing. The temporary transaction created as part of the memo-posting will be reversed/removed after the actual transaction is posted in batch processing. Some modern banking systems implement real-time ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "24990520", "url": "https://en.wikipedia.org/wiki/Multifunctional%20Information%20Distribution%20System", "title": "Multifunctional Information Distribution System", "text": "Multifunctional Information Distribution System (MIDS) is the NATO name for the communication component of Link-16.\n\nMID is an advanced command, control, communications, computing and intelligence (C4I) system incorporating high-capacity, jam-resistant, digital communication links for exchange of near real-time tactical information, including both data and voice, among air, ground, and sea elements. MIDS is intended to support key theater functions such as surveillance, identification, air contr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25023009", "url": "https://en.wikipedia.org/wiki/Dolby%20Headphone", "title": "Dolby Headphone", "text": "Dolby Headphone is a technology developed by Lake Technology (Australia), that later sold marketing rights to Dolby Laboratories, sometimes referred to as Mobile Surround, which creates a virtual surround sound environment in real-time using any set of two-channel stereo headphones. It takes as input either a 5.1 or a 7.1 channel signal, a Dolby Pro Logic II encoded 2 channel signal (from which 5 or 7 channels can be derived) or a stereo 2 channel signal. It sends as output a 2 channel stereo si", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25023866", "url": "https://en.wikipedia.org/wiki/Chesapeake%20Bay%20Interpretive%20Buoy%20System", "title": "Chesapeake Bay Interpretive Buoy System", "text": "Chesapeake Bay Interpretive Buoy System (CBIBS) is a network of observational buoys that are deployed throughout the Chesapeake Bay to observe the estuary's changing conditions and to serve as way points along the Captain John Smith Chesapeake National Historic Trail. They are maintained by the United States National Oceanic and Atmospheric Administration (NOAA). These \"smart buoys\" observe and record meteorological, oceanographic and water quality data which can be obtained in real-time by usin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25024787", "url": "https://en.wikipedia.org/wiki/Real-time%20posting", "title": "Real-time posting", "text": "Real-time posting refers to a style of processing financial transactions in a core banking system. It is an alternative to the older Memo Posting style.\n\nThere are several characteristics that distinguish a real-time posting system.\n Transactions appear to customers and staff as soon as the item is posted and does not need to be re-processed at night to create the hard post.\n The available balances are always up-to-date with respect to all known items. \n The order of posted items does not change", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25035757", "url": "https://en.wikipedia.org/wiki/Veveo", "title": "Veveo", "text": "Veveo is a software company.\n\nFounded in 2004, Veveo's customers include Comcast, Cablevision, Rogers, AT&T, DirecTV, and Nokia. The venture-backed company is based near Boston, Massachusetts, and has an intellectual property portfolio of fifty (issued or allowed) patents and 80 filed patent applications. \n\nOn February 25, 2014, Veveo was acquired by Rovi Corporation.\n\nConversational interfaces\nVeveo's developments in natural language processing and understanding enabled dialog-based real-time c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25041625", "url": "https://en.wikipedia.org/wiki/FunkOS", "title": "FunkOS", "text": "FunkOS is a real-time operating system (RTOS) developed by Funkenstein Software Consulting, targeting a variety of microcontroller architectures. It is free to use in any project - commercial or otherwise - with few conditions. If the kernel is ported to a new target, that code must also be made available for inclusion in future releases. Also, if used in commercial projects, an attribution statement must be included in some form of product documentation.\n\nDescription\nFunkOS is a fully preemp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25049422", "url": "https://en.wikipedia.org/wiki/TEMS", "title": "TEMS", "text": "\"TEMS\" may stand for: \n Transanal Endoscopic Mucosal Surgery, an endoscopic surgery method to remove rectal polyps\nTactical EMS, a type of emergency service\nTerrestrial Ecosystem Monitoring Sites, directory of sites and networks that carry out terrestrial in-situ monitoring and research activities.\nTelecom Equipment Manufacturers\nTEst Mobile System, InfoVista network monitoring and real-time diagnostics suite\nTimothy Edwards Middle School, a Middle School in South Windsor, Connecticut\nToyota ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25055305", "url": "https://en.wikipedia.org/wiki/FishVille", "title": "FishVille", "text": "FishVille is a defunct real-time aquarium simulation game developed by Zynga, it was available as an application on the social-networking website Facebook. The game allowed members of Facebook to manage virtual aquariums by rearing fish. As of October 2011, FishVille had 1.6 million monthly active users. The game was discontinued on December 5, 2012.\n\nGameplay\nWhen users begin the game, they can start by choosing a background and gravel for their aquariums. The users start with four fish already", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25100115", "url": "https://en.wikipedia.org/wiki/Found%20footage%20%28film%20technique%29", "title": "Found footage (film technique)", "text": "Found footage is a film subgenre in which all or a substantial part of the work is presented as if it were discovered film or video recordings. The events on screen are typically seen through the camera of one or more of the characters involved, often accompanied by their real-time, off-camera commentary. For added realism, the cinematography may be done by the actors themselves as they perform, and shaky camera work and naturalistic acting are routinely employed. The footage may be presented as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25159672", "url": "https://en.wikipedia.org/wiki/Spi%C5%A1%20Ar%C3%A9na", "title": "Spi\u0161 Ar\u00e9na", "text": "Spi\u0161 Arena is a sports arena in Spi\u0161sk\u00e1 Nov\u00e1 Ves, Slovakia. It is primarily used for ice hockey, and is the home arena of the HK Spi\u0161sk\u00e1 Nov\u00e1 Ves. Spi\u0161 Arena was opened in 1982 as Zimn\u00fd \u0160tadi\u00f3n SNV and has a seating capacity for 5,503 people for Ice hockey games. The arena has one of only two real-time biometry and facial recognition systems in the world. It was implemented by Colosseo EAS, a Slovak company that also built the arena's game presentation system.\n\nNotable events\nAn overview of som", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25188004", "url": "https://en.wikipedia.org/wiki/Woopra", "title": "Woopra", "text": "Woopra is a real-time customer analytics service used by sales, service and marketing teams.\n\nThe platform is designed to help organizations optimize the customer life-cycle by delivering live, granular behavioral data for individual website visitors and customers. It ties this individual-level data to aggregate analytics reports for a full life-cycle view that bridges departmental gaps.\n\nPress\nIn 2009, Daniel Brusilovski from TechCrunch called Woopra an \"impressive live tracking and analytics ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25206144", "url": "https://en.wikipedia.org/wiki/Jelli", "title": "Jelli", "text": "Jelli is a San Mateo, California-based advertising technology firm, which develops solutions for the programmatic sale and airplay of radio advertising.\n\nThe company was originally established as a provider of interactive music programming for radio stations, in which listeners were able to upvote and downvote songs played by a particular station in real-time (with songs disliked by listeners being automatically stopped and replaced by a different song). The company introduced its advertising pl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25218349", "url": "https://en.wikipedia.org/wiki/Hosebird", "title": "Hosebird", "text": "Hosebird is the server implementation of the Twitter Streaming API. The Streaming API allows clients to receive Tweets in near real-time. Various resources allow filtered, sampled or full access to some or all Tweets. Every Twitter account has access to the Streaming API and any developer can build applications today. Hosebird also powers the recently announced User Streams feature that streams all events related to a given user to drive desktop Twitter clients.\n\nReferences\n\nExternal links\nTwitt", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25247903", "url": "https://en.wikipedia.org/wiki/Mushroom%20Wars", "title": "Mushroom Wars", "text": "Mushroom Wars is a real-time strategy video game developed by Creat Studios, originally available for the PlayStation 3 on the PlayStation Network (PSN). This version was released on October 15, 2009. On January 24, 2013 it has been released for the iPad on the iTunes Store. An Android version was released on Google Play on September 24, 2013. A sequel, Mushroom Wars 2, was released on iOS and Apple TV on October 13, 2016. It was released on several other platforms since.\n\nThe objective of the g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25264537", "url": "https://en.wikipedia.org/wiki/Two%20Worlds%20II", "title": "Two Worlds II", "text": "Two Worlds II is an action role-playing game developed by Polish developer Reality Pump and published by TopWare Interactive as a sequel to 2007's Two Worlds. It was released on 9 November 2010 in Europe for Microsoft Windows, Mac OS X, Xbox 360 and PlayStation 3, and on 25 January 2011 in North America for the same platforms. Two Worlds II is a real-time role-playing game that takes place in an open fantasy world where players take the role of a single character with whom they can explore and u", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25281174", "url": "https://en.wikipedia.org/wiki/FIFA%20Soccer%2096", "title": "FIFA Soccer 96", "text": "FIFA Soccer 96 (also known as FIFA 96: Virtual Soccer Stadium) is a football simulation video game developed by Extended Play Productions and released by Electronic Arts in 1995. It was released for the Mega Drive/Genesis, Sega Saturn, Sega 32X, Sega Game Gear, PlayStation, Super Nintendo Entertainment System and DOS systems.\n\nFIFA 96 is the third entry in the FIFA series, its tagline being \"Next Generation Soccer\". It was the first in the series to feature real-time 3D graphics on the Sega Sat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25291178", "url": "https://en.wikipedia.org/wiki/Atom%20%28programming%20language%29", "title": "Atom (programming language)", "text": "Atom is a domain-specific language (DSL) in Haskell, for designing real-time embedded software.\n\nHistory \n\nOriginally intended as a high level hardware description language, Atom was created in early 2007 and released in open-source of April of the same year.\nInspired by TRS \nand Bluespec, Atom compiled circuit descriptions, that were based on guarded atomic operations, or conditional term rewriting, into Verilog netlists for simulation and logic synthesis.\nAs a hardware compiler, Atom's primary", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25336602", "url": "https://en.wikipedia.org/wiki/Networked%20music%20performance", "title": "Networked music performance", "text": "A networked music performance or network musical performance is a real-time interaction over a computer network that enables musicians in different locations to perform as if they were in the same room. These interactions can include performances, rehearsals, improvisation or jamming sessions, and situations for learning such as master classes. Participants may be connected by \"high fidelity multichannel audio and video links\" as well as MIDI data connections and specialized collaborative softw", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25367419", "url": "https://en.wikipedia.org/wiki/Loqu8", "title": "Loqu8", "text": "Loqu8 is a software company that helps users access and learn information, such as languages and real-time facts. Its products are based on an augmented learning model that was originally developed using cognitive science and information processing research at Caltech and Stanford University. Users interact with the augmented environment by touching the screen or pointing to content with a mouse. A pop-up window immediately displays contextually-relevant information with links to supporting reso", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25388707", "url": "https://en.wikipedia.org/wiki/Convia", "title": "Convia", "text": "Convia, Inc., based in Buffalo Grove, Illinois, is an American manufacturer of components which provide an integrated energy management platform that allows for the control and metering of lighting, plug-loads and HVAC. It is notable as one of the first companies to deliver and control power while at the same time monitoring energy and adapting its use in real-time.\n\nHistory\nIn the late 1990s, Herman Miller, Inc., Convia\u2019s parent company, realized that they could not create truly flexible enviro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25400651", "url": "https://en.wikipedia.org/wiki/Digital%20geologic%20mapping", "title": "Digital geologic mapping", "text": "Digital geologic mapping is the process by which geological features are observed, analyzed, and recorded in the field and displayed in real-time on a computer or personal digital assistant (PDA). The primary function of this emerging technology is to produce spatially referenced geologic maps that can be utilized and updated while conducting field work.\n\nTraditional geologic mapping\nGeologic mapping is an interpretive process involving multiple types of information, from analytical data to pers", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25419082", "url": "https://en.wikipedia.org/wiki/Battlefront.com", "title": "Battlefront.com", "text": "Battlefront.com is a video game developer and publisher. Battlefront specialises in war-related games, including turn-based and real-time strategies, as well as simulations of air, land and naval military vehicles.\n\nApart from publishing the self-developed Combat Mission series, the company publishes games created by other studios (such as 1C Company), including Strategic Command and Theatre of War series.\n\nHistory\nThe company began life as Big Time Software when Charles Moylan and Steve Grammon", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25421093", "url": "https://en.wikipedia.org/wiki/Avitus%20%28disambiguation%29", "title": "Avitus (disambiguation)", "text": "Avitus was a Roman emperor. The term also may refer to:\n\n Avitus of Braga was an early fifth-century literary priest of Braga (Portugal)\n Alphius Avitus (flourished 1st century BC & 1st century), Latin poet\n Gaius Julius Avitus Alexianus, Syrian aristocrat (flourished 2nd century & 3rd century)\n Avitus Marinianus, Roman consul in 423\n Avitus of Vienne, Latin poet and bishop (494-517)\n Avitus (spider), a genus of jumping spiders\n A major character in the real-time strategy game Dawn of War II, se", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25432303", "url": "https://en.wikipedia.org/wiki/Multi-conjugate%20Adaptive%20optics%20Demonstrator", "title": "Multi-conjugate Adaptive optics Demonstrator", "text": "Multi-conjugate Adaptive optics Demonstrator (MAD) is an instrument that allowed the European Southern Observatory's Very Large Telescope to observe celestial objects with most of the atmosphere's blurring removed. As other adaptive optics systems, it works by performing real-time corrections to the atmospheric turbulence by means of computer-controlled deformable mirrors. Its particularity is the correction over a wider field of view than previous systems, that only used a single deformable mi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25477746", "url": "https://en.wikipedia.org/wiki/MTConnect", "title": "MTConnect", "text": "MTConnect is a manufacturing technical standard to retrieve process information from numerically controlled machine tools. As explained by a member of the team that developed it, \"This standard specifies the open-source, royalty-free communications protocol based on XML and HTTP Internet technology for real-time data sharing between shopfloor equipment such as machine tools and computer systems. MTConnect provides a common vocabulary with standardized definitions for the meaning of data that mac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25480920", "url": "https://en.wikipedia.org/wiki/OZ%20Virtual", "title": "OZ Virtual", "text": "OZ Virtual was a 3D world viewer created by OZ Interactive that enabled real-time collaboration communications in shared spaces on the Internet with a strong focus on creative content production.\n\nThe viewer supported the Virtual Reality Modeling Language (VRML 2.0) a standard for creating and experiencing virtual reality worlds on the Internet. It came with an avatar editor that allowed the user to select from a set of pre-defined avatars with body movements and modify their appearance. Users", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25486093", "url": "https://en.wikipedia.org/wiki/Starpoint%20Gemini", "title": "Starpoint Gemini", "text": "Starpoint Gemini is a real-time, simulation, role-playing game focused on the control and strengths of individual vessels and their command crews. The game is set in a science-fiction universe where various thriving technological directions exist side by side. Players will freely traverse the rich and filled vastness of the Gemini star system, fight skirmishes with rogue ships, trade commodities, mine ore from asteroids, research anomalies, buy new vessels, enlarge their fleet, upgrade their shi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25499938", "url": "https://en.wikipedia.org/wiki/Schlieren%20imaging", "title": "Schlieren imaging", "text": "Schlieren imaging is a method to visualize density variations in transparent media.\n\nThe term \"schlieren imaging\" is commonly used as a synonym for schlieren photography, though this article particularly treats visualization of the pressure field produced by ultrasonic transducers, generally in water or tissue-mimicking media. The method provides a two-dimensional (2D) projection image of the acoustic beam in real-time (\"live video\"). \nThe unique properties of the method enable the investigation", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25572811", "url": "https://en.wikipedia.org/wiki/Carrier%20Command%3A%20Gaea%20Mission", "title": "Carrier Command: Gaea Mission", "text": "Carrier Command: Gaea Mission is a real-time strategy action game by Bohemia Interactive, a remake of the original 1988 Carrier Command.\n\nGameplay\nCarrier Command is a real-time strategy game, where the overarching objective is to conquer and control islands. It features a 33-island archipelago on the moon Taurus.\n\nThe player's fundamental unit is the Carrier, from which they may deploy and dock up to four aerial units and four amphibious units. Other defensive and offensive systems are present", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25584860", "url": "https://en.wikipedia.org/wiki/X-Wars", "title": "X-Wars", "text": "X-Wars was a massively multiplayer browser game, in which thousands of players interact in realtime. It contains elements of real-time strategy and construction and management simulation.\n\nThe player colonizes and develops planets, designs, builds and commands starships as well as trades, allies and battles with other players.\n\nThe game has become popular in the early stages of massively multiplayer browser games from 2002 in Germany, mainly for its complexity and innovative features. Later it h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25597303", "url": "https://en.wikipedia.org/wiki/Unknown%20Horizons", "title": "Unknown Horizons", "text": "Unknown Horizons is a city-building game and real-time strategy game, inspired by the Anno series. It is released under the GNU General Public License (GPLv2) and is therefore free and open source software. Much of the artwork is open content under e.g. CC BY-SA Creative Commons licenses. The game is still under active development; milestone snapshots are released occasionally.\n\nGameplay \n\nThe player guides a group of people settling in a newly discovered archipelago of islands. The player must ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25606587", "url": "https://en.wikipedia.org/wiki/International%20Journal%20of%20Computational%20Methods", "title": "International Journal of Computational Methods", "text": "The International Journal of Computational Methods has been published by World Scientific since 2004. It covers modern computational methods, such as optimizations, interpolations and approximation techniques and real-time computation. It aims for interdisciplinary coverage of real-life applications, whether in theoretical, simulated forms or actual programming.\n\nThe current Chief Editors are G.R. Liu, R.C. Batra, G. Yagawa, E. O\u00f1ate, and Z.H. Zhong.\n\nAbstracting and indexing \nThe journal is abs", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25650438", "url": "https://en.wikipedia.org/wiki/ORBexpress", "title": "ORBexpress", "text": "OIS ORBexpress is a commercial, object request broker (ORB) product from Objective Interface Systems for the Ada, C++, C#, and Java programming languages.\n\nORBexpress features tools for developing and debugging distributed, real-time applications.\n\n1998 software\nObject request broker", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25652739", "url": "https://en.wikipedia.org/wiki/King%20Arthur%3A%20The%20Role-Playing%20Wargame", "title": "King Arthur: The Role-Playing Wargame", "text": "King Arthur: The Role-Playing Wargame is a real-time tactics and role-playing video game developed by NeocoreGames and published by Paradox Interactive in North America, Ubisoft in Europe, and E-Frontier in Japan. It seeks to blend elements of the real-time tactics, role-playing, and grand strategy genres into one. A sequel titled King Arthur II: The Role-Playing Wargame (not to be confused with the original's Japanese title, which was released in July 2010) was released online in Europe on Sept", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25678313", "url": "https://en.wikipedia.org/wiki/Context-aware%20services", "title": "Context-aware services", "text": "Context-aware services is a computing technology which incorporates information about the current location of a mobile user to provide more relevant services to the user. An example of a context-aware service could be a real-time traffic update or even a live video feed of a planned route for a motor vehicle user. Context can refer to real-world characteristics, such as temperature, time or location. This information can be updated by the user (manually) or from communication with other devices ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25693592", "url": "https://en.wikipedia.org/wiki/TipTop%20Technologies", "title": "TipTop Technologies", "text": "TipTop Technologies is a real-time web, social search engine with a platform for semantic analysis of natural language. TipTop Search provides results capturing individual and group sentiment, opinions, and experiences from content of various sorts including real-time messages from Twitter or consumer product reviews on Amazon.com. TipTop Technologies and ITC Infotech have worked together to develop a semantic engine and search interface for both enterprise and consumer applications. TipTop's p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25738871", "url": "https://en.wikipedia.org/wiki/Rounds%20%28website%29", "title": "Rounds (website)", "text": "Rounds (formally known as 6rounds) is a video-enabled real-time social network with collaborative browsing, chat, multi-player gaming and built-in social recommendation features that can be expanded through an open API. Rounds was founded by Israeli entrepreneurs Dany Fishel, Ilan Leibovich and Dimitry Shestek in February 2008. Fishel is Rounds' CEO and Ilan Leibovich is the company COO. The company is based in Tel Aviv, Israel.\n\nRounds is the first product released using the GixOO software plat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25763960", "url": "https://en.wikipedia.org/wiki/Metal%20Fatigue", "title": "Metal Fatigue", "text": "Metal fatigue is the initiation and propagation of cracks in a material due to cyclic loading.\n\nMetal Fatigue may also refer to:\nMetal Fatigue (album), a 1985 album by Allan Holdsworth.\nMetal Fatigue (novel), a 1996 science fiction novel by Sean Williams.\nMetal Fatigue (video game), a 2000 real-time strategy video game by Zono Incorporated.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25776534", "url": "https://en.wikipedia.org/wiki/Christopher%20Weaver", "title": "Christopher Weaver", "text": "Christopher S. Weaver is an American entrepreneur, software developer, scientist, author, and educator. He is known for founding Bethesda Softworks, where he was one of the creators and Executive Producer of the original The Elder Scrolls role-playing series.\n\nWeaver and Bethesda are credited with developing the first real-time physics engine for sports simulation, used in Bethesda's Gridiron! video game. Weaver also developed game screen captioning for the deaf and made it available as open sou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25781662", "url": "https://en.wikipedia.org/wiki/Bulk%20material%20analyzer", "title": "Bulk material analyzer", "text": "The term bulk material analyzer is the generic noun for that device which fits around a conveyor belt and conducts real-time elemental analysis of the material on the belt. Other names often found for such a device include belt analyzer, crossbelt analyzer and elemental analyzer. This product first found popularity in the cement industry during the 1990s, and today most new cement plants include at least one analyzer, if not two.\n\nCement industry\nA couple of applications predominate for the bul", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25787884", "url": "https://en.wikipedia.org/wiki/Trendrr", "title": "Trendrr", "text": "Trendrr is a New York-based digital and social media business intelligence platform that was acquired by Twitter in 2013.\n\nA \"virtual scratch pad\" enables users to compare data sets and create mashups. Graphs can be shared with links or embed codes, or exported in xml, json, or excel. Trendrr allows users to make real-time actions based on quantitative and qualitative trends by understanding social media's impact on sales, savings and brand equity\u2014three sources through which Trendrr enables user", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25792737", "url": "https://en.wikipedia.org/wiki/Zaccar", "title": "Zaccar", "text": "Zaccar is a town and commune in Djelfa Province, Algeria. According to the 1998 census it has a population of 3,142.\n\nTourist Attractions\n\nAl-Daqourin Monastery \nTo the southeast of the municipality of Zakar, about 02 km away, we find \u201cDeir al-Daqourin\u201d, the site discovered in 1907 by Judge \u201cMaun\u201d, which has been classified as a national heritage since 1982 and consists of:\n\nA- A rock cache that displays a wonderful painting of a moving hunting scene that highlights the real-time movement of the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25905316", "url": "https://en.wikipedia.org/wiki/Wizards%20%26%20Warriors%20%282000%20video%20game%29", "title": "Wizards & Warriors (2000 video game)", "text": "Wizards & Warriors is a role-playing video game for Microsoft Windows designed by David W. Bradley.\n\nGameplay \nGameplay is similar in style to Bradley's earlier Wizardry games. Players control a party of characters through a first-person perspective and fight turn-based combats. Outside of combat, the game is real-time. Characters can join guilds that give exclusive quests, and each character maintains their own individual quest log. Guilds also allow characters to switch classes. Characters can", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25914088", "url": "https://en.wikipedia.org/wiki/Roam%20%28disambiguation%29", "title": "Roam (disambiguation)", "text": "\"Roam\" is the fourth single from The B-52's' 1989 hit album Cosmic Thing.\n\nRoam may also refer to:\n\n ROAM (real-time optimally adapting mesh), a computer graphics algorithm\n ROAM (R\u00e9union des Organismes d'Assurance Mutuelle) in France\n Roam (public transit), the bus operator in Banff, Alberta, Canada\n Roam (band), British pop punk band\n Roam (musician), a Canadian musician\n\nSee also\n Free roam (disambiguation)\n Roamer (disambiguation)\n Roaming (disambiguation)\n Rome (disambiguation)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25961921", "url": "https://en.wikipedia.org/wiki/Empress%20Embedded%20Database", "title": "Empress Embedded Database", "text": "Empress Embedded Database is a relational database management system that has been embedded into applications, including medical systems, network routers, nuclear power plant monitors, satellite management systems. Empress is an ACID compliant relational database management system (RDBMS) with two-phase commit and several transaction isolation levels for real-time embedded applications. It supports both persistent and in-memory storage of data and works with text, binary, multimedia, as well as ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "25973146", "url": "https://en.wikipedia.org/wiki/Curotek", "title": "Curotek", "text": "Curotek is an American company based in Portland, Oregon that provides technology for community-based care settings such as assisted living communities and group home settings serving those with Dementia, Alzheimer's, Mental Retardation and Developmental Disabilities and other disabilities that cause safety risks associated with freedom of movement and personal autonomy. Curotek provides various hardware devices providing real-time tracking of residents and care staff, an alert system tied to va", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26016902", "url": "https://en.wikipedia.org/wiki/Aliens%20Versus%20Predator%3A%20Extinction", "title": "Aliens Versus Predator: Extinction", "text": "Aliens Versus Predator: Extinction is a 2003 military science fiction real-time strategy video game developed by Zono and published by Electronic Arts for the PlayStation 2 and Xbox. Based on the Alien vs. Predator franchise, the game offers three single player campaigns that cover Alien, Predator, and human storylines. Each storyline and species has unique characteristics and gameplay elements that are adapted from film and comic sources.\n\nUnlike many real-time strategy games, there are no base", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26041421", "url": "https://en.wikipedia.org/wiki/Data%20virtualization", "title": "Data virtualization", "text": "Data virtualization is an approach to data management that allows an application to retrieve and manipulate data without requiring technical details about the data, such as how it is formatted at source, or where it is physically located, and can provide a single customer view (or single view of any other entity) of the overall data.\n\nUnlike the traditional extract, transform, load (\"ETL\") process, the data remains in place, and real-time access is given to the source system for the data. This r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26063592", "url": "https://en.wikipedia.org/wiki/TenMarks%20Education%2C%20Inc.", "title": "TenMarks Education, Inc.", "text": "TenMarks Education, Inc. was an American company that provided personalized online math practice and enrichment programs for K-Algebra/Geometry using a structured approach of practice, on-demand hints, video lessons and real-time results. \n\nFounded in 2009, TenMarks Education had offices in San Francisco, CA and Boston, MA (formerly Newton, MA)\n\nAmazon acquired TenMarks in 2013 and discontinued TenMarks apps in 2019.\n\nMilestones\n\u2022 June 2009: Launched Beta Program for Middle School Math (6th, 7th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26173331", "url": "https://en.wikipedia.org/wiki/Best%20Way", "title": "Best Way", "text": "Best Way is a Ukrainian company which develops real-time strategy video games. The company was founded in 1991 in Sievierodonetsk, Luhans'k, Ukraine. Its first title was Soldiers: Heroes of WWII. The Best Way's games use the Gem game engine.\n\nProjects\n\nOwn games\nSoldiers: Heroes of WWII (June 2004), publishers: 1C Company, Codemasters\nFaces of War (September 2006), publishers: 1C Company, Ubisoft\nMen of War (February 2009), publishers: 1C Company, 505 Games\nMen of War II: Arena formally known as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26185276", "url": "https://en.wikipedia.org/wiki/ETrace", "title": "ETrace", "text": "eTrace is an Internet-based firearm trace request submission system, developed by the United States' federal government, Bureau of Alcohol, Tobacco, Firearms and Explosives, that provides for the electronic exchange of traced firearm data in a secure internet-based environment. Participating law enforcement agencies (domestic and foreign) with access to the internet can acquire 24/7 real-time capabilities to electronically submit firearm trace requests, monitor the progress of traces, retrieve c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26188458", "url": "https://en.wikipedia.org/wiki/Men%20of%20War%3A%20Red%20Tide", "title": "Men of War: Red Tide", "text": "Men of War: Red Tide (, or Black Jackets) is a real-time strategy and real-time tactics video game and expansion pack to the game Men of War, developed in partnership with Best Way by Digitalmindsoft and published by 1C Company. Game concept and scenario are elaborated by Alexander Zorich, modern Russian writer and scenarist. The game's single player focuses on the Soviet Naval Infantry of the Black Sea Fleet during the Crimean campaign. The arsenals of two more countries, Italy and Romania, are", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26217339", "url": "https://en.wikipedia.org/wiki/Close%20Combat%3A%20Battle%20of%20the%20Bulge", "title": "Close Combat: Battle of the Bulge", "text": "Close Combat: Battle of the Bulge, sometimes known as Close Combat IV: Battle of the Bulge, is a 1999 computer wargame developed by Atomic Games and published by Strategic Simulations Inc. (SSI). A simulation of the Battle of the Bulge during World War II, it is the fourth game in the Close Combat series.\n\nGameplay\nClose Combat: Battle of the Bulge is a computer wargame that simulates the Battle of the Bulge during World War II, using real-time gameplay.\n\nDevelopment\nThe game was developed by At", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26246088", "url": "https://en.wikipedia.org/wiki/IEEE%201394", "title": "IEEE 1394", "text": "IEEE 1394 is an interface standard for a serial bus for high-speed communications and isochronous real-time data transfer. It was developed in the late 1980s and early 1990s by Apple in cooperation with a number of companies, primarily Sony and Panasonic. Apple called the interface FireWire. It is also known by the brand names i.LINK (Sony), and Lynx (Texas Instruments).\n\nThe copper cable used in its most common implementation can be up to long. Power and data is carried over this cable, allowi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26248401", "url": "https://en.wikipedia.org/wiki/Battleswarm%3A%20Field%20of%20Honor", "title": "Battleswarm: Field of Honor", "text": "Battleswarm: Field of Honor was a free-to-play first-person shooter/real-time strategy video game developed by Game World Tech. Battleswarm featured an item mall which used Reality Gap's e-currency called 'MetaTIX'. Battleswarm was officially launched on November 19, 2009.\n\nOn July 1, 2011 Reality Gap announced they were to shut down game servers, while 'in the process of a sale to a new company who specializes in children's games'. On July 16, 2011 the game servers were officially shut down.\n\nP", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26337508", "url": "https://en.wikipedia.org/wiki/Gratuitous%20Space%20Battles", "title": "Gratuitous Space Battles", "text": "Gratuitous Space Battles is a video game developed by the UK-based company Positech Games. It was released on November 17, 2009. On one level the title is a space warfare simulation consisting of a number of engagements between two opposing fleets of ships. While sometimes assumed to be a real-time strategy (RTS) game based on screenshots, actual gameplay focuses on the setup prior to the battle, making it play more like a tower defense game.\n\nA custom made game engine was produced for the 2D ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26365478", "url": "https://en.wikipedia.org/wiki/Under%20Siege%20%28disambiguation%29", "title": "Under Siege (disambiguation)", "text": "Under Siege is a 1992 action film starring Steven Seagal.\n\nUnder Siege may also refer to:\nUnder Siege, a 1986 made-for-TV film co-written by Bob Woodward\nUnder Siege (US), / Hostages (UK) / Traficantes de p\u00e1nico, a 1980 film directed by Ren\u00e9 Cardona Jr.\nUnder Siege (2005 video game), a 2005 action/first-person shooter video game for the PC (unrelated to the 1992 film)\nUnder Siege (2011 video game), a 2011 real-time tactics video game for the PlayStation 3 (unrelated to the 1992 film)\nUnder Siege", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26402275", "url": "https://en.wikipedia.org/wiki/Ceridian-UCLA%20Pulse%20of%20Commerce%20Index", "title": "Ceridian-UCLA Pulse of Commerce Index", "text": "The Ceridian-UCLA Pulse of Commerce Index (PCI) is based on real-time diesel fuel consumption data for over-the-road trucking and serves as an indicator of the state and possible future direction of the U.S. economy. By tracking the volume and location of fuel being purchased, the index closely monitors the over the road movement of raw materials, goods-in-process, and finished goods to U.S. factories, retailers, and consumers.\n\nWorking with economists at UCLA Anderson School of Management and C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26604137", "url": "https://en.wikipedia.org/wiki/Arkansas%20Department%20of%20Education%20Distance%20Learning%20Center", "title": "Arkansas Department of Education Distance Learning Center", "text": "The Arkansas Department of Education Distance Learning Center (ADE Distance Learning Center or ADE DLC) is a provider of real-time or synchronous elementary and secondary education classes for students throughout the state of Arkansas. The DLC currently teaches classes to almost 3,200 students, located at more than 100 schools around the state.\n\nOrganizational structure\nThe ADE DLC is a part of the Arkansas Department of Education, as its name implies. However, the fiscal agent for the ADE DLC", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26677325", "url": "https://en.wikipedia.org/wiki/Parkan%20%28series%29", "title": "Parkan (series)", "text": "Parkan is a series of video games that combine space flight and trade simulation with first-person shooter style game play. Namely it allows players to board ships. \"Parkan\" is the name of the spaceship, which means boomerang for its shape.\nParkan: The Imperial Chronicles () - the first game of the series space simulator and first-person shooter\nParkan: Iron Strategy () - a spin-off first-person shooter and real-time strategy and mecha\nParkan II () - the newest game space simulator and first-per", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26685290", "url": "https://en.wikipedia.org/wiki/Signal%20chain", "title": "Signal chain", "text": "Signal chain, or signal-processing chain is a term used in signal processing and mixed-signal system design to describe a series of signal-conditioning electronic components that receive input (data acquired from sampling either real-time phenomena or from stored data) sequentially, with the output of one portion of the chain supplying input to the next. \n\nSignal chains are often used in signal processing applications to gather and process data or to apply system controls based on analysis of re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26720177", "url": "https://en.wikipedia.org/wiki/Extromatica%20Network%20Monitor", "title": "Extromatica Network Monitor", "text": "Extromatica Network Monitor is a network monitoring application created and maintained by Extromatica company. It is designed to monitor network hardware, servers and network services for faults and performance degradation. It alerts users when things go wrong and again when they get better. The software supports a variety of real-time notification mechanisms, including Short Message Service (SMS).\n\nHistory \nThe development of this software began in 1999 as an internal project by Maxim Perenesen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26779160", "url": "https://en.wikipedia.org/wiki/Shadow%20Company%3A%20Left%20For%20Dead", "title": "Shadow Company: Left For Dead", "text": "Shadow Company: Left for Dead is a real-time tactics game developed by Sinister Games and published by Ubisoft for Microsoft Windows in 1999. The player begins the game with only a three-man squad, left for dead after an operation in Angola for a company called Granite.\n\nGameplay\n\nPlot\nA feared and well equipped private military company named Granite is hired by a client claiming to be the government of Angola. They are tasked with the mission to recover an important petroleum refining facility", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26798011", "url": "https://en.wikipedia.org/wiki/OpenVibe", "title": "OpenVibe", "text": "OpenViBE is a software platform dedicated to designing, testing and using brain-computer interfaces. The package includes a Designer tool to create and run custom applications, along with several pre-configured and demo programs which are ready for use.\n\nOpenViBE is software for real-time neuroscience (that is, for real-time processing of brain signals). It can be used to acquire, filter, process, classify and visualize brain signals in real time.\n\nApplications\nThe main OpenViBE application fiel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26848468", "url": "https://en.wikipedia.org/wiki/Sonalleve%20MR-HIFU", "title": "Sonalleve MR-HIFU", "text": "Sonalleve MR-HIFU is a medical system developed by Philips Healthcare for the treatment of uterine fibroids without surgery. The system uses non-invasive high-intensity focused ultrasound (HIFU) guided by magnetic resonance (MR), whence the acronym MR-HIFU. The procedure involves volumetric heating of fibroids with real-time feedback. In June 2017, Philips and Profound Medical announced an agreement to transfer Philips' MR-HIFU business, which includes the Sonalleve system, to Profound Medical.\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26888749", "url": "https://en.wikipedia.org/wiki/Corpse%20Craft%3A%20Incident%20at%20Weardd%20Academy", "title": "Corpse Craft: Incident at Weardd Academy", "text": "Corpse Craft: Incident at Weardd Academy is a Flash and web browser game developed by Grey Havens and released on their game portal Whirled in 2008. A version for the iPad was released in December, 2010.\n\nGameplay\nThe game is a combination of basic real-time strategy and puzzle game elements which takes place on single-screen levels. Players must gather resources from an area located along the bottom of the playing screen, which is filled with squares in four different colors. These resources a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26911293", "url": "https://en.wikipedia.org/wiki/Vampire%20Village", "title": "Vampire Village", "text": "Vampire Village is a 1983 video game published by Terminal Software.\n\nGameplay\nThe game was described as \"a real-time graphic adventure\" by the publisher. Players assume the role of the Mayor of Vladsdorf, a fictional village on the bank of the River Ripple. Over the river from the village lies the Red Cliffs, above which stands a castle in which a vampire has taken up residence. The farmsteads at the base of the cliff are threatened by the vampire. As the Mayor, the player is tasked with using ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "26936785", "url": "https://en.wikipedia.org/wiki/Marketcetera", "title": "Marketcetera", "text": "Marketcetera is a financial software company that has developed the Marketcetera open source trading platform, linking financial exchanges to users through broker services allowing the development of automated trading systems, essentially acting as a meta-broker itself. The Marketcetera platform uses the ACTIV Financial data steam services for a real-time low-latency equity data feed. The open platform uses the open source library QuickFIX to implement the standardized FIX communication protoco", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27105397", "url": "https://en.wikipedia.org/wiki/Dragon%20Storm", "title": "Dragon Storm", "text": "Dragon Storm may refer to:\n\n Dragon Storm (game), a role-playing game and collectible card game\n Dragon Storm (astronomy), the Dragon Storm on Saturn\n Dragon Storm (film), a Sci-Fi Channel original movie\n SpellForce 2: Dragon Storm, a role-playing and real-time strategy hybrid video game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27110014", "url": "https://en.wikipedia.org/wiki/Charles%20McClelland", "title": "Charles McClelland", "text": "Charles A. McClelland Jr. was the police chief of the Houston Police Department (HPD) from 2010 through 2016. Joining the department in May 1977, McClelland worked his way up through the ranks, from rookie to assistant chief in 1998, before being asked to step in as acting chief. A graduate of the University of , University of , and the FBI National Academy, he oversaw the department's implementation of tasers and a real-time crime analysis program.\n\nEducation\nMcClelland holds a bachelor's degre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27165236", "url": "https://en.wikipedia.org/wiki/Netwitness", "title": "Netwitness", "text": "NetWitness was a Reston, Virginia-based network security company that provides real-time network forensics and automated threat analysis solutions. Its flagship product was NetWitness NextGen. In 2011, NetWitness was acquired by EMC Corporation and later integrated into the line of products at RSA Security.\n\nHistory\nIn the mid-1990s the NetWitness technology was established by CTX Corporation, a Washington D.C. based system integrator. The technology, initially chartered as a US Government rese", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27167867", "url": "https://en.wikipedia.org/wiki/Ravenloft%3A%20Stone%20Prophet", "title": "Ravenloft: Stone Prophet", "text": "Ravenloft: Stone Prophet is a fantasy role-playing video game developed by DreamForge Intertainment for MS-DOS and published by Strategic Simulations in 1995. On October 27, 2015 the game was re-released by GOG.com on their own store, with support for Microsoft Windows, OS X, and Linux pre-packed with DOSBox.\n\nGameplay\nThe game is a follow-on to Ravenloft: Strahd's Possession and uses the same engine as its predecessor. The game presents a real-time, three dimensional view from the character's p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27169354", "url": "https://en.wikipedia.org/wiki/IClone", "title": "IClone", "text": "iClone is a real-time 3D animation and rendering software program. Real-time playback is enabled by using a 3D videogame engine for instant on-screen rendering.\n\nOther functionality includes: full facial and skeletal animation of human and animal figures; lip-syncing; import of standard 3D file types including FBX; a timeline for editing and merging motions; a Python API and a scripting language (Lua) for character interaction; application of standard motion-capture files; the ability to control", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27203975", "url": "https://en.wikipedia.org/wiki/Local%20Data%20Manager", "title": "Local Data Manager", "text": "The Local Data Manager (LDM) is a suite of programs for the distribution of near real-time atmospheric earth data to researchers and educators free of charge as it becomes available. The system is specifically focused with passing, receiving, and managing arbitrary data products accessed through event-driven (push) technologies via the Internet. Data products mostly include GOES satellite imagery, radar imagery, and model output from the National Centers for Environmental Prediction, the Canad", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27262733", "url": "https://en.wikipedia.org/wiki/Security%20information%20and%20event%20management", "title": "Security information and event management", "text": "Security information and event management (SIEM) is a field within the field of computer security, where software products and services combine security information management (SIM) and security event management (SEM). They provide real-time analysis of security alerts generated by applications and network hardware. Vendors sell SIEM as software, as appliances, or as managed services; these products are also used to log security data and generate reports for compliance purposes. The term and the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27277232", "url": "https://en.wikipedia.org/wiki/Nokia%20Point%20%26%20Find", "title": "Nokia Point & Find", "text": "Nokia Point & Find is a mobile application, which lets you point your Nokia smartphone camera at objects and images you want to know more about, to find more information. It is a visual search technology that uses the phone's camera to obtain information by using image recognition to identify objects, images and places in the physical world in real-time. For example, one can use the application to find information on movies by pointing the camera at movie posters and then view reviews, or find t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27282564", "url": "https://en.wikipedia.org/wiki/Distant%20Worlds", "title": "Distant Worlds", "text": "Distant Worlds is a real-time grand strategy wargame developed by Code Force and published by Matrix Games.\n\nDistant Worlds was released on March 25, 2010. Three subsequent expansions, Return of the Shakturi, Legends, and Shadows were released in 2010, 2011, and 2013, respectively. The game appeared on the Steam platform on May 23, 2014 under the name Distant Worlds: Universe, gathering the original game and all expansions into a single package with new content.\n\nGameplay \nGameplay features up t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27302683", "url": "https://en.wikipedia.org/wiki/Gbanga", "title": "Gbanga", "text": "Gbanga is a mixed reality, social gaming platform for mobile phones developed by Zurich-based startup, Millform AG. The platform runs on real-time locative media, developed in-house, which means that the gaming environment changes relative to the players real-world location. Players can interact with each other using built-in social and chat functions, which indicate their current real-world locations as well as online and offline status. Additional features enable social gaming in forms such as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27304641", "url": "https://en.wikipedia.org/wiki/David%20Luckham", "title": "David Luckham", "text": "David Luckham is an emeritus professor of electrical engineering at Stanford University. As a graduate student at the Massachusetts Institute of Technology (MIT), he was one of the implementers of the first systems for the programming language Lisp.\n\nHe is best known as the originator of complex event processing (CEP) as proposed in his 2002 book The Power of Events. CEP consists of a set of concepts and techniques for processing real-time events and extracting information from event streams as ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27321822", "url": "https://en.wikipedia.org/wiki/Modul8", "title": "Modul8", "text": "Modul8 is a software for live visual performance developed by GarageCube, a company established in 2005 by Yves Schmid and Boris Edelstein, based in Geneva, Switzerland. Modul8 was started with the intention of providing a tool for VJing in openGL.\n\nHistory\nThe first public release was in 2004, followed by version 2 in 2005.\n\nFeatures\nWhile the first version was a stripped down real-time compositing environment, the second version introduced a module system, allowing customization of the softwar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27321982", "url": "https://en.wikipedia.org/wiki/Will%20Horton", "title": "Will Horton", "text": "Will Horton is a fictional character from the American daytime TV soap opera Days of Our Lives, known for a highly praised coming out story, award-winning performances by actor Chandler Massey, and as one half of US daytime drama's first male gay wedding and marriage. The character first appears in the episode of November 16, 1995, when his mom Sami Brady (Alison Sweeney) gives birth to him. Initially portrayed by a series of child actors, the character grew up in real-time as the show aired, ev", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27335440", "url": "https://en.wikipedia.org/wiki/Chris%20Taylor%27s%20Kings%20and%20Castles", "title": "Chris Taylor's Kings and Castles", "text": "Chris Taylor's Kings and Castles was a real-time strategy (RTS) video game that was in development by Gas Powered Games. Development of the game was announced on 15 February 2010 via press release, then put on hold indefinitely in 2013, and ultimately was cancelled when the company was closed in 2018.\n\nGameplay\nAlthough specific gameplay details are few, the game represented a departure from Gas Powered Games prior RTS series, Supreme Commander, given a new setting in a fantasy universe. This wa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27339435", "url": "https://en.wikipedia.org/wiki/Greg%20Skibiski", "title": "Greg Skibiski", "text": "Gregory Roman Skibiski (born 1973), is an American entrepreneur. Skibiski founded Thasos Group, an artificial intelligence based data analytics firm that uses real-time locations from mobile phones worldwide to provide information for the financial services industry. Skibiski was also the Founder and former Chairman & CEO of Sense Networks, a New York City based company focused on analyzing big data from mobile phones and carrier networks. Skibiski is named lead inventor on three patent applicat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27352942", "url": "https://en.wikipedia.org/wiki/Stronghold%203", "title": "Stronghold 3", "text": "Stronghold 3 is a 2011 real-time strategy video game for Microsoft Windows developed by Firefly Studios and published by 7Sixty. The game is the seventh in the series after several spin-offs, including a remake, Stronghold: Crusader Extreme, and Stronghold Kingdoms. It is the sequel to Stronghold, released in 2001, and Stronghold 2 released in 2005. Unlike previous games in the series which were published by Take-Two Interactive, the game has been published by SouthPeak Games, the new parent com", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27356583", "url": "https://en.wikipedia.org/wiki/ERIKA%20Enterprise", "title": "ERIKA Enterprise", "text": "ERIKA Enterprise is a real-time operating system (RTOS) kernel for embedded systems, which is OSEK/VDX certified. It is free and open source software released under a GNU General Public License (GPL). The RTOS also includes RT-Druid, an integrated development environment (IDE) based on Eclipse.\n\nERIKA Enterprise implements various conformance classes, including the standard OSEK/VDX conformance classes BCC1, BCC2, ECC1, ECC2, CCCA, and CCCB. Also, ERIKA provides other custom conformance classes ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27362878", "url": "https://en.wikipedia.org/wiki/Isadora%20%28software%29", "title": "Isadora (software)", "text": "Isadora is a proprietary graphic programming environment for Mac OS X and Microsoft Windows, with emphasis on real-time manipulation of digital video. It was first released in 2002. It has support for Open Sound Control and MIDI. Isadora was designed by Mark Coniglio.\n\nReferences\n\nExternal links\n Isadora homepage\n Isadora review on Octapod\n Isadora review on VJCentral\n\nVideo editing software\nStagecraft software\nSound production\nSound production technology\nDigital art\nInteractive media\nInteractiv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27416218", "url": "https://en.wikipedia.org/wiki/Microsoft%20FUSE%20Labs", "title": "Microsoft FUSE Labs", "text": "Microsoft's Future Social Experiences (FUSE) Labs was started by Ray Ozzie and is run by Lili Cheng. The group focuses on real-time and media rich experiences and is located in Bellevue, WA. It used to have offices in Cambridge, Massachusetts, and Cambridge, UK. A similar, earlier initiative was Microsoft Live Labs, a collaboration between Microsoft Research and MSN which ended in 2010.\n\nProjects\n - Microsoft Bot Framework & Conversational AI tools for developers.\nBing Twitter - Find out what to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27429895", "url": "https://en.wikipedia.org/wiki/GPS%20aircraft%20tracking", "title": "GPS aircraft tracking", "text": "GPS aircraft tracking is a means of tracking the position of an aircraft fitted with a GPS receiver. By communication with GPS satellites, detailed real-time data on flight variables can be passed to a server on the ground. This server stores the flight data, which can then be transmitted via telecommunications networks to organizations wishing to interpret it.\n\nNetworks\nThe different kinds of telecommunication networks used are:\nACARS - a hybrid of the VHF, satellite and HF network\nThe transpon", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27434961", "url": "https://en.wikipedia.org/wiki/America%20%28video%20game%29", "title": "America (video game)", "text": "America is a real-time strategy game developed by Related Designs and published by Data Becker, released in December 2000 and January 2001 to mixed reviews. Set in a post-civil war America, the game plays similarly to Age of Empires. The player may choose to control a group of either settlers, Native Americans, Mexicans or outlaws of that time.\n\nDevelopment \nAmerica was the first released game developed by German studio Related Designs after the studio had been founded in 1995, and the first ful", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27437364", "url": "https://en.wikipedia.org/wiki/Gob%20Squad", "title": "Gob Squad", "text": "Gob Squad is a British-German collective based in Nottingham and Berlin. They have worked collaboratively since 1994 in the fields of performance, video installation and theatre.\n\nHistory \nGob Squad was founded in 1994. At the time, its members were students at Nottingham Trent University and the University of Giessen.\nThey have made approximately 28 projects to date. They create mid-scale work that combines audience interaction with real-time video editing. The company often use popular culture", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27441151", "url": "https://en.wikipedia.org/wiki/Windows%20Embedded%20Compact%207", "title": "Windows Embedded Compact 7", "text": "Windows Embedded Compact 7 (formerly known as Windows Embedded CE 7.0) is the seventh major release of the Windows Embedded CE operating system, released on March 1, 2011. Windows Embedded Compact 7 is a real-time OS, separate from the Windows NT line, and is designed to target enterprise specific tools such as industrial controllers and consumer electronics devices such as digital cameras, GPS systems and also automotive infotainment systems. Windows Embedded Compact is designed to run on multi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27461244", "url": "https://en.wikipedia.org/wiki/Sync.in", "title": "Sync.in", "text": "Sync.in is a web-based collaborative real-time editor, from Cynapse. It allows multiple people to edit the same text document simultaneously. Participants can see the changes in real-time, with each author's text in their own color. A chat box in the sidebar allows participants to communicate.\n\nSync.in is based on EtherPad that was acquired by Google in December 2009 and released as open-source later that month.\n\nSync.in uses the Freemium financial model. Free service requires no sign-up or regi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27580203", "url": "https://en.wikipedia.org/wiki/Real%20Time%20Digital%20Simulator", "title": "Real Time Digital Simulator", "text": "Real Time Digital Simulator or RTS as the abbreviation recommended by IEEE committee on real-time simulator applied for power systems provides power systems simulation technology for fast, reliable, accurate, and cost-effective study of power systems with complex High Voltage Alternating Current (HVAC) and High Voltage Direct Current (HVDC) networks. The RTS is a fully digital electromagnetic transient power system simulator that operates in real time. \n\nHYPERSIM is one of the commercial RTS av", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27581577", "url": "https://en.wikipedia.org/wiki/ATM%20Adaptation%20Layer%201", "title": "ATM Adaptation Layer 1", "text": "An ATM Adaptation layer 1 or AAL1 is used for transmitting Class A network traffic, that is, real-time, constant bit rate, connection oriented traffic (example- uncompressed audio and video). Bits are fed in by the application at constant rate and must be delivered to other end with minimum delay, jitter or overhead. The input is stream of bits without message boundaries. For this traffic, error detection protocols cannot be used since timeouts and retransmission causes delay but the missing cel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27588365", "url": "https://en.wikipedia.org/wiki/Carma", "title": "Carma", "text": "Carma Technology Corporation is a real-time transportation technology company headquartered in Cork, Ireland. Its flagship product, Carma Carpooling, matches users with nearby commuters and enables them to share the cost of driving. Carma also has offices in San Francisco, California and Austin, Texas.\n\nCompany history\nFormerly known as Avego, the company was founded in 2007 by Sean O'Sullivan as a research and development division of the company Mapflow. In April 2009, Avego became a separate e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27632098", "url": "https://en.wikipedia.org/wiki/Lord%20of%20Ultima", "title": "Lord of Ultima", "text": "Lord of Ultima was a free-to-play, browser-based, massively multiplayer real-time strategy (MMORTS) video game by Electronic Arts. The game started a beta test on April 20, 2010 and was developed by EA Phenomic. While it is, technically, part of the Ultima series of games, there was very little actual connection to the other games in the series.\n\nThe game was a 2D strategy game similar to Evony. Though the game was nominally free, players could purchase \"Funds\" for real-world money, providing th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27633941", "url": "https://en.wikipedia.org/wiki/Algoryx%20Simulation%20AB", "title": "Algoryx Simulation AB", "text": "Algoryx Simulation AB was formed in 2007 in Ume\u00e5, Sweden as a spin-off company from Ume\u00e5 University. Algoryx currently has three products: Algodoo (formerly Phun), Dynamics for SpaceClaim, and AGX Multiphysics, a professional physics engine for engineering and real-time simulations.\n\nAwards\nIn February 2011 Algoryx was selected for the list of Top-20 companies to represent Swedish Innovation, by the Swedish Institute, a Swedish government agency. In March 2011 Algoryx was ranked as one of Swede", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27645323", "url": "https://en.wikipedia.org/wiki/OpenPDC", "title": "OpenPDC", "text": "The openPDC is a complete set of applications for processing streaming time-series data in real-time. The name stands for \"open source phasor data concentrator\" and was originally designed for the concentration and management of real-time streaming synchrophasors. Due to the system's modular design, the openPDC can be classified as a generic event stream processor.\n\nHistory\nThe openPDC is based on the SuperPDC which was developed by the Tennessee Valley Authority starting in 2004. The openPDC of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27731250", "url": "https://en.wikipedia.org/wiki/Grendel%27s%20Cave", "title": "Grendel's Cave", "text": "Grendel's Cave is a real-time browser-based role-playing video game and MUD. Grendel Enterprises published and ran it exclusively on the Internet. The basis for Grendel\u2019s Cave was Anglo-Saxon mythology and Beowulf, and it is set in the historical medieval period. Scholars consider it an artistic depiction of Grendel and the poem, Beowulf, as well as a modern adaptation and a derivative work of the epic. Educational websites use Grendel's Cave as an Internet learning aid for medieval literatu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27756027", "url": "https://en.wikipedia.org/wiki/Nintendogs%20%2B%20Cats", "title": "Nintendogs + Cats", "text": "is a real-time pet simulation video game for the Nintendo 3DS. It is a sequel to the Nintendogs games for the Nintendo DS systems. It was announced alongside the 3DS during Nintendo's E3 press conference, and is a launch game, released February 26, 2011 in Japan, March 25, 2011 in Europe and March 27, 2011 in North America, launched earlier in Australia.\n\nIt is one of the first online-enabled games to use the Nintendo Network, and is the first such Nintendo-published game, although the Nintendo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27758065", "url": "https://en.wikipedia.org/wiki/CEDEP-1", "title": "CEDEP-1", "text": "\n\nCEDEP-1 is an experimental unmanned aerial vehicle (UAV) developed by the Project Development Center (CEDEP) of the Peruvian Air Force.\n\nDesign and development\nFunding is currently being provided through the Ministry of Defence and a grant from the National Council of Science and Technology (Concytec). The aircraft is equipped with optical and infrared sensing technologies, with real-time communication to a ground station. In 2008, a prototype made a first test flight at Las Palmas Air Force", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27815296", "url": "https://en.wikipedia.org/wiki/Policy%20and%20charging%20rules%20function", "title": "Policy and charging rules function", "text": "Policy and Charging Rules Function (PCRF) is the software node designated in real-time to determine policy rules in a multimedia network. As a policy tool, the PCRF plays a central role in next-generation networks. Unlike earlier policy engines that were added onto an existing network to enforce policy, the PCRF is a software component that operates at the network core and accesses subscriber databases and other specialized functions, such as a charging system, in a centralized manner. Because", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27824668", "url": "https://en.wikipedia.org/wiki/Time-late", "title": "Time-late", "text": "Time-late is a term used primarily in naval warfare that refers to the time lag between some datum's generation and actions taken based on it. In other words, it is something that is not real-time.\n\nIt is often used in the context of a weapon's time of flight: the time between launch and (intended) contact with a target results in a time-late.\n\nMilitary terminology", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27834320", "url": "https://en.wikipedia.org/wiki/Gnip", "title": "Gnip", "text": "Gnip, Inc. was a social media API aggregation company that was purchased by Twitter in 2014. Headquartered in Boulder, Colorado, it provided data from dozens of social media websites via a single API. Gnip was among the first social media API aggregation services.\n\nGnip is known as an early influencer in building the real-time web. The company has also been instrumental in defining relevant web standards: Gnip's co-founder Eric Marcoullier actively advocated for adoption of open web standards, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27835467", "url": "https://en.wikipedia.org/wiki/ExtraHop%20Networks", "title": "ExtraHop Networks", "text": "ExtraHop is a network detection and response provider headquartered in Seattle, Washington. ExtraHop helps organizations understand and secure their environments by analyzing all network interactions in real-time and leveraging machine learning to identify threats, deliver critical applications, and secure investments in the hybrid cloud.\n\nHistory\n\nJesse Rothstein and Raja Mukerji founded ExtraHop in 2007. The co-founders were\nformerly senior engineers at F5 Networks and architects of the\nBIG-I", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27835598", "url": "https://en.wikipedia.org/wiki/CollabraSpace", "title": "CollabraSpace", "text": "CollabraSpace is a computer software and consulting services company located in Annapolis Junction, MD.\n\nThe company is a provider and developer of secure, real-time, web-based collaboration software for government and commercial clients, with a traditional market in the Intelligence Community, Department of Defense (DoD) and other public and private agencies with enterprise software needs. CollabraSpace also offers professional consulting services to support visible, mission critical programs i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27890513", "url": "https://en.wikipedia.org/wiki/The%20Settlers", "title": "The Settlers", "text": "The Settlers () is a city-building and real-time strategy video game series created by Volker Wertich. The original game was released on the Commodore Amiga in 1993, with subsequent games released primarily on MS-DOS and Microsoft Windows: The Settlers II (1996), The Settlers III (1998), The Settlers IV (2001), The Settlers: Heritage of Kings (2004), The Settlers: Rise of an Empire (2007), and The Settlers 7: Paths to a Kingdom (2010). There are also several spin-offs; The Settlers II (10th Anni", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27926328", "url": "https://en.wikipedia.org/wiki/Numen%3A%20Contest%20of%20Heroes", "title": "Numen: Contest of Heroes", "text": "Numen: Contest of Heroes is a 2009 (released 2010 worldwide) video game developed by the Czech company Cinemax.\n\nGameplay\nNumen is a Greek mythology-themed action role-playing game. The player's character levels up by killing monsters and completing quests, upon which their abilities improve. Some skills improve automatically based on the abilities performed, but the player may also allocate points. Combat is real-time, but the mechanics are likened more to those of MMORPGs rather than the hack ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "27954029", "url": "https://en.wikipedia.org/wiki/Cherry%20Tree%20Lane", "title": "Cherry Tree Lane", "text": "Cherry Tree Lane is a 2010 British urban dramatic real-time horror-thriller film, written and directed by Paul Andrew Williams.\n\nPlot\nIn a house at Cherry Tree Lane, distant couple Christine (Rachael Blake) and Mike (Tom Butcher) are eating dinner while their son, Sebastian, is out at football practice. When the doorbell rings and Christine goes to answer it, the couple is attacked by Rian (Jumayn Hunter), Asad (Ashley Chin), and Teddy (Sonny Muslim), who hold them both hostage and tie them up i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28045268", "url": "https://en.wikipedia.org/wiki/RTL/2", "title": "RTL/2", "text": "RTL/2 (Real-Time Language) is a discontinued high-level programming language for use in real-time computing, developed at Imperial Chemical Industries, Ltd. (ICI), by J.G.P. Barnes. It was originally used internally in ICI but was distributed by SPL International in 1974.\nIt was based on concepts from ALGOL 68, and intended to be small and simple. RTL/2 was standardised in 1980 by the British Standards Institution.\n\nLanguage overview\nThe data types in RTL/2 were strongly typed, with separate com", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28063235", "url": "https://en.wikipedia.org/wiki/Warcraft%20II%3A%20Tides%20of%20Darkness", "title": "Warcraft II: Tides of Darkness", "text": "Warcraft II: Tides of Darkness is a fantasy real-time strategy computer game developed by Blizzard Entertainment and released for DOS in 1995 and Mac OS in 1996 by Blizzard's parent, Davidson & Associates. A sequel to Warcraft: Orcs & Humans, the game was met with positive reviews and won most of the major PC gaming awards in 1996. In 1996, Blizzard released an expansion pack, Warcraft II: Beyond the Dark Portal, for DOS and Mac OS, and a compilation, Warcraft II: The Dark Saga, for the PlayStat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28141082", "url": "https://en.wikipedia.org/wiki/Adeptia", "title": "Adeptia", "text": "Adeptia is a Chicago-based software company. It provides application to exchange business data with other companies using a self-service integration approach. This business software helps organizations quickly create automated data connections to their customers and partners and automate pre-processing and post-processing steps such as data validation, exception handling and back-end data integration.\n\nAdeptia's products are designed to help on-board customer data, implement real-time interfaces", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28233863", "url": "https://en.wikipedia.org/wiki/Wargasm", "title": "Wargasm", "text": "WARGASM (or War Ground Air Special Missions) is a 3D shooter / real-time strategy game developed by Digital Image Design and published by Infogrames for Microsoft Windows in 1998\u20131999.\n\nGameplay\nThe game uses the 3Dream engine to process populated and varied battlefields, as well as relatively advanced graphical elements for its time of release. Acting as the commander of an army, the player of Wargasm directs the actions of AI friendly units via a simple control interface on a 2D overhead map, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28242586", "url": "https://en.wikipedia.org/wiki/Online%20Banking%20ePayments", "title": "Online Banking ePayments", "text": "Online Banking ePayments (OBeP) is a type of payments network, developed by the banking industry in conjunction with technology providers. It is specifically designed to address the unique requirements of payments made via the Internet.\n\nKey aspects of OBeP that distinguish it from other online payments systems are:\n The consumer is authenticated in real-time by the consumer financial institution's online banking infrastructure.\n The availability of funds is validated in real-time by the consume", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28252044", "url": "https://en.wikipedia.org/wiki/Web2project", "title": "Web2project", "text": "web2project is a web-based, multi-user, multi-language Project Management application. It is an open-source software and free for any uses and is maintained by an open community of volunteer programmers. web2project, as collaborative software, allows for real-time interaction between task assignees and updates for participants.\n\nStructures and Features\nBasic data elements and management functions include:\n Projects and Tasks\n Contact Manager with vCard support\n Resource / Asset Manager\n Gantt ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28260739", "url": "https://en.wikipedia.org/wiki/Clock%20port", "title": "Clock port", "text": "The clock port is a commonly used term for the real-time clock interface of the Amiga 1200 computer. The port is a remnant of an abandoned design feature for addition of internal RAM and a clock for time keeping. However, it was later widely used as a general purpose expansion port by third-party developers for devices, such as, I/O cards, sound cards and even a USB controller. Although a real-time clock can be connected to the port, the clock was typically added by other means (usually integrat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28352547", "url": "https://en.wikipedia.org/wiki/Multiple%20Render%20Targets", "title": "Multiple Render Targets", "text": "In the field of 3D computer graphics, Multiple Render Targets, or MRT, is a feature of modern graphics processing units (GPUs) that allows the programmable rendering pipeline to render images to multiple render target textures at once. These textures can then be used as inputs to other shaders or as texture maps applied to 3D models. Introduced by OpenGL 2.0 and Direct3D 9, MRT can be invaluable to real-time 3D applications such as video games. Before the advent of MRT, a programmer would hav", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28392851", "url": "https://en.wikipedia.org/wiki/StuffBuff", "title": "StuffBuff", "text": "StuffBuff was an online auction platform based on social networking and real-time technology.\n\nHistory\nStuffBuff was founded by Michael Langer on October 1, 2008. The following year, in 2009, StuffBuff was selected as a TechCrunch50 Demo Pit company. According to Jason Kincaid, senior writer at TechCrunch, the company's use of embedded auction windows which allowed for auction hosting from any website had a \"potentially viral nature\". StuffBuff raised $250,000 in seed funding.\n\nIn 2010, the comp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28393605", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20Online", "title": "Age of Empires Online", "text": "Age of Empires Online is a multiplayer online real-time strategy game developed by Robot Entertainment and Gas Powered Games, which released on August 16, 2011. Based upon the gameplay of the Age of Empires series, it was originally developed by Robot Entertainment, but on February 24, 2011, Gas Powered Games, took over production. The game was published by Microsoft.\n\nThe game was free-to-play\u2014it was free for users to play, though premium content could be earned or purchased, such as access to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28454466", "url": "https://en.wikipedia.org/wiki/OE-Cake%21", "title": "OE-Cake!", "text": "OE-Cake, OE-CAKE! or OE Cake is a 2D fluid physics sandbox which was used to demonstrate the Octave Engine fluid physics simulator created by Prometech Software Inc. It was one of the first engines with the ability to realistically process water and other materials in real-time. In the program, which acts as a physics-based paint program, users can insert objects and see them interact under the laws of physics. It has advanced fluid simulation, and support for gases, rigid objects, elastic reac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28495100", "url": "https://en.wikipedia.org/wiki/Affective%20haptics", "title": "Affective haptics", "text": "Affective haptics is the emerging area of research which focuses on the study and design of devices and systems that can elicit, enhance, or influence the emotional state of a human by means of sense of touch. The research field is originated with the Dzmitry Tsetserukou and Alena Neviarouskaya papers on affective haptics and real-time communication system with rich emotional and haptic channels. Driven by the motivation to enhance social interactivity and emotionally immersive experience of use", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28503060", "url": "https://en.wikipedia.org/wiki/MQX", "title": "MQX", "text": "MQX (Message Queue eXecutive) is a real-time operating system (RTOS) developed by Precise Software Technologies, Inc., and currently sold by Synopsys, Embedded Access, Inc., and NXP Semiconductors.\n\nLike most RTOSs, MQX includes a multitasking kernel with pre-emptive scheduling and fast interrupt response, extensive inter-process communication and synchronization facilities, and a file system.\n\nIts configurable size conserves computer memory space using a minimum of 6 KB of read-only memory (ROM", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28542189", "url": "https://en.wikipedia.org/wiki/DDC-I", "title": "DDC-I", "text": "DDC-I, Inc. is a privately held company providing software development of real-time operating systems, software development tools, and software services for safety-critical embedded applications, headquartered in Phoenix, Arizona. It was first created in 1985 as the Danish firm DDC International A/S (also known as DDC-I A/S), a commercial outgrowth of Dansk Datamatik Center, a Danish software research and development organization of the 1980s. The American subsidiary was created in 1986. For ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28545080", "url": "https://en.wikipedia.org/wiki/OSIsoft", "title": "OSIsoft", "text": "OSIsoft, LLC was a manufacturer of application software for real-time data management, called the PI System. Founded in 1980, OSIsoft was privately held and headquartered in San Leandro, California. In August 2020, it was announced that the UK-based production company Aveva agreed to buy OSIsoft in a deal worth $5 billion; the purchase was subsequently completed on 19 March 2021 for a final consideration of \u00a33,831.4 million.\n\nProducts\nOSIsoft develops and supports software used to capture, proce", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28575516", "url": "https://en.wikipedia.org/wiki/Warhammer%2040%2C000%3A%20Dawn%20of%20War%20II%20%E2%80%93%20Retribution", "title": "Warhammer 40,000: Dawn of War II \u2013 Retribution", "text": "Warhammer 40,000: Dawn of War II \u2013 Retribution is the stand-alone second expansion to Warhammer 40,000: Dawn of War II, part of the Warhammer 40,000: Dawn of War series of real-time strategy video games. Set in Games Workshop's Warhammer 40,000 fictional universe, the single player campaign is playable with multiple races.\n\nImperial Guard is introduced as a new faction, and all races including the races from the original game and the first expansion (the Eldar, the Space Marines, Chaos, the Orks", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28577827", "url": "https://en.wikipedia.org/wiki/ULTRAY2000", "title": "ULTRAY2000", "text": "ULTRAY2000 is concept chip for 3D graphics processing designed by Digital Media Professionals Inc. (DMP), a Japanese GPU design company, which enables the best quality real-time 3D graphics available. It was produced in 0.13\u00b5m TSMC manufacturing process and contained more than 100 million CMOS transistors, with GPU core clock running at 200MHz and its integrated memory controller having support for DDR-400 memory. DMP announced ULTRAY2000 concept chip July 21, 2005 and its first exhibition was a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28651121", "url": "https://en.wikipedia.org/wiki/Bio-layer%20interferometry", "title": "Bio-layer interferometry", "text": "Bio-layer interferometry (BLI) is an optical biosensing technology that analyzes biomolecular interactions in real-time without the need for fluorescent labeling. Alongside Surface Plasmon Resonance, BLI is one of few widely available label-free biosensing technologies, a detection style that yields more information in less time than traditional processes. The technology relies on the phase shift-wavelength correlation created between interference patterns off of two unique surfaces on the tip o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28660341", "url": "https://en.wikipedia.org/wiki/Achtung%20Panzer%3A%20Kharkov%201943", "title": "Achtung Panzer: Kharkov 1943", "text": "Achtung Panzer: Kharkov 1943 is a 2010 real-time strategy video game developed by Ukrainian studio Graviteam and published by Paradox Interactive.\n\nReception\n\nAchtung Panzer: Kharkov 1943 received mixed reviews from critics upon release. On Metacritic, the game holds a score of 70/100 based on 6 reviews, indicating \"mixed or average reviews.\" On GameRankings, the game holds a score of 80.00% based on 5 reviews.\n\nSee also\nWargame (video games)\nList of Paradox Interactive games\nList of PC games\n20", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28661884", "url": "https://en.wikipedia.org/wiki/Gone%20Dark", "title": "Gone Dark", "text": "Gone Dark (also known as The Limit) is a 2003 Canadian-British crime drama mystery film directed by Lewin Webb, written by Matt Holland and starring Lauren Bacall, Claire Forlani, Henry Czerny and Pete Postlethwaite.\n\nThe film was screened at the Montreal World Film Festival on August 29, 2003 and initially released on DVD on June 1, 2004 under the title Gone Dark.\n\nPlot\nThis story takes place in an undisclosed area of New York City and is told in both real-time and multiple flashback scenes. Mo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28669204", "url": "https://en.wikipedia.org/wiki/Universal%20Time-Sharing%20System", "title": "Universal Time-Sharing System", "text": "The Universal Time-Sharing System (UTS) is a discontinued operating system for the XDS Sigma series of computers, succeeding Batch Processing Monitor (BPM)/Batch Time-Sharing Monitor (BTM). UTS was announced in 1966, but because of delays did not actually ship until 1971. It was designed to provide multi-programming services for online (interactive) user programs in addition to batch-mode production jobs, symbiont (spooled) I/O, and critical real-time processes. System Daemons, called \"ghost ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28677568", "url": "https://en.wikipedia.org/wiki/Oil%20Rush", "title": "Oil Rush", "text": "Oil Rush is a tower defense real-time strategy game developed by UNIGINE Holding S.\u00e0 r.l. using their Unigine engine technology. Set in a flooded, post-apocalyptic world, the game consists of players fighting over control of the world's last remaining oil reserves. The game was released as a digital download for Microsoft Windows, Linux, and OS X.\n\nThis theme has been viewed as controversial by some, especially as Oil Rush was originally intended to be released only a little more than a year aft", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28687367", "url": "https://en.wikipedia.org/wiki/Real-time%20MRI", "title": "Real-time MRI", "text": "Real-time magnetic resonance imaging (MRI) refers to the continuous monitoring (\"filming\") of moving objects in real time. Because MRI is based on time-consuming scanning of k-space, real-time MRI was possible only with low image quality or low temporal resolution. Using an iterative reconstruction algorithm these limitations have recently been removed: a new method for real-time MRI achieves a temporal resolution of 20 to 30 milliseconds for images with an in-plane resolution of 1.5 to 2.0\u00a0mm. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28718893", "url": "https://en.wikipedia.org/wiki/Xerox%20Operating%20System", "title": "Xerox Operating System", "text": "The Xerox Operating System (XOS) was an operating system for the XDS Sigma series of computers \"optimized for direct replacement of IBM DOS/360 installations\" and to provide real-time and timesharing support.\n\nThe system was developed, beginning in 1969, for Xerox by the French firm CII (now Bull).\n\nXOS was more successful in Europe than in the US, but was unable to compete with IBM. By 1972 there were 35 XOS installations in Europe, compared to 2 in the US.\n\nReferences\n\nExternal links\n XOS Docu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28755009", "url": "https://en.wikipedia.org/wiki/Quraysh%20%28disambiguation%29", "title": "Quraysh (disambiguation)", "text": "The Quraysh (Arabic: \u0642\u0631\u064a\u0634) were a mercantile Arab tribe that historically inhabited and controlled Mecca and its Ka'aba.\n\nQuraysh or Quraish may also refer to:\n\nQuraysh (surah), the 106th chapter of the Quran\nQuraish (video game), a 2005 real-time strategy 3D computer video game\nQuraish Shihab (born 1944), an Arab Indonesian Muslim scholar \nQuraish Pur (Zulqarnain Qureshi, 1932\u20132013), Pakistani scholar and writer \nQuraish, Iran, or Koreshk, a village in South Khorasan Province\n\nSee also\n\nKoreshk", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28799152", "url": "https://en.wikipedia.org/wiki/YouTube%20Instant", "title": "YouTube Instant", "text": "YouTube Instant is a real-time search engine built and launched in September 2010 by nineteen-year-old college student and Facebook-software-engineer intern Feross Aboukhadijeh of Stanford University that allows its users to search the YouTube video database as they type. It follows on the heels of Google Instant, and has been described as a \"novelty toy\", a \"prototypal digit to tie the \"instant\" bandwagon\" as well as a \"completely excellent way to waste 15 minutes\".\n\nAboukhadijeh was offered a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28832249", "url": "https://en.wikipedia.org/wiki/Supreme%20Commander%20%28video%20game%29", "title": "Supreme Commander (video game)", "text": "Supreme Commander (sometimes SupCom) is a 2007 real-time strategy video game designed by Chris Taylor and developed by his company, Gas Powered Games. The game is considered to be a spiritual successor, not a direct sequel, to Taylor's 1997 game Total Annihilation, and also the Spring remake. First announced in the August 2005 edition of PC Gamer magazine, the game was released in Europe on February 16, 2007, and in North America on February 20.\n\nThe standalone expansion Supreme Commander: Forg", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28832428", "url": "https://en.wikipedia.org/wiki/Advanced%20disaster%20management%20simulator", "title": "Advanced disaster management simulator", "text": "The ADMS (advanced disaster management simulator) is an emergency and disaster management training simulation system designed to train incident commanders, first responders, and incident command teams in a real-time, interactive virtual reality environment. ADMS was first introduced by Environmental Tectonics Corporation (ETCC:US) in 1992. The development of ADMS was in response to the crash of British Airtours Flight 28M at the Manchester airport in 1985, in which 55 people died. Following the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28842499", "url": "https://en.wikipedia.org/wiki/Valkyria%20Chronicles%20III", "title": "Valkyria Chronicles III", "text": ", commonly referred to as Valkyria Chronicles III outside Japan, is a tactical role-playing video game co-developed by Sega and Media.Vision for the PlayStation Portable. Released in January 2011 in Japan, it is the third game in the Valkyria Chronicles series. Employing the same fusion of tactical and real-time gameplay as its predecessors, the story runs parallel to the first game and follows the \"Nameless\", a penal military unit serving the nation of Gallia during the Second Europan War that ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28846270", "url": "https://en.wikipedia.org/wiki/Mobile%20business%20intelligence", "title": "Mobile business intelligence", "text": "Mobile Business Intelligence (Mobile BI or Mobile Intelligence) is defined as \u201cMobile BI is a system comprising both technical and organizational elements that present historical and/or real-time information to its users for analysis on mobile devices such as smartphones and tablets (not laptops), to enable effective decision-making and management support, for the overall purpose of increasing firm performance.\u201d (Peters et al., 2016). Business intelligence (BI) refers to computer-based technique", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28958070", "url": "https://en.wikipedia.org/wiki/Social%20City", "title": "Social City", "text": "Social City was a real-time city-building simulation game developed in association with American studio PushButton Labs and published by Playdom. Social City was released as an application for Facebook and the iPhone. The iPhone version was developed by Playdom in their Mountain View, CA office.\n\nIn 2010, Social City won the first ever \"Best Social Network Game\" award presented at GDC Online. In addition, it was ranked the #2 Facebook game available in 2010 by Inside Social Games. City of Wonder", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28972386", "url": "https://en.wikipedia.org/wiki/BlackBerry%20Tablet%20OS", "title": "BlackBerry Tablet OS", "text": "BlackBerry Tablet OS is an operating system from BlackBerry Ltd based on the QNX Neutrino real-time operating system designed to run Adobe AIR and BlackBerry WebWorks applications, currently available for the BlackBerry PlayBook tablet computer.\nThe BlackBerry Tablet OS is the first tablet running an operating system from QNX (now a subsidiary of RIM).\n\nBlackBerry Tablet OS supports standard BlackBerry Java applications. Support for Android apps has also been announced, through sandbox \"app pla", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28991357", "url": "https://en.wikipedia.org/wiki/LinuxCNC", "title": "LinuxCNC", "text": "LinuxCNC (formerly Enhanced Machine Controller or EMC2) is a free, open-source Linux software system that implements numerical control capability using general purpose computers to control CNC machines. Designed by various volunteer developers at linuxcnc.org, it is typically bundled as an ISO file with a modified version of 32-bit Ubuntu Linux which provides the required real-time kernel.\n\nDue to the tight real-time operating system integration, a standard Ubuntu Linux desktop PC without the re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "28999289", "url": "https://en.wikipedia.org/wiki/Golden%20Horde%20%28disambiguation%29", "title": "Golden Horde (disambiguation)", "text": "Golden Horde was a Mongol khanate established in the 13th century, and reaching from northern Central-Asia to the Black Sea.\n\nGolden Horde may also refer to:\n\n The Golden Horde (band), an Irish rock group\n The Golden Horde (film), a 1951 historical adventure film\n The Golden Horde (video game), a 2008 real-time strategy game\n Golden Horde (horse) (born 2017), winner of the 2020 Commonwealth Cup\n The Golden Horde / Zolotaya Orda, 2018 Russian TV series.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29068806", "url": "https://en.wikipedia.org/wiki/Romeo%20Model%20Checker", "title": "Romeo Model Checker", "text": "Rom\u00e9o is an integrated tool environment for modeling, validation and verification of real-time systems modeled as time Petri Nets or stopwatch Petri Nets, extended with parameters.\n\nThe tool has been developed by the Real-Time Systems group at LS2N lab (\u00c9cole centrale de Nantes, University of Nantes, CNRS) in Nantes, France.\n\nReferences\n\nExternal links \n Web page of Rom\u00e9o\n Web page of LS2N lab\n\nModel checkers", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29096486", "url": "https://en.wikipedia.org/wiki/Jscrambler", "title": "Jscrambler", "text": "Jscrambler is a technology company that is chiefly known for its JavaScript obfuscator and monitoring framework of the same name. The obfuscator makes it harder to reverse engineer a web application's client-side code and tamper with its integrity. For real-time detection of web skimming, DOM tampering and user interface changes, the monitoring framework can be used. Jscrambler's products are used in a number of sectors including finance, broadcasting and online gaming.\n\nHistory\n\nEarly days and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29199932", "url": "https://en.wikipedia.org/wiki/LiteOS", "title": "LiteOS", "text": "Huawei LiteOS is a lightweight real-time operating system (RTOS) developed by Huawei. It is an open source, POSIX compliant operating system for Internet of things (IoT) devices, released under a three-clause BSD license. Microcontrollers of different architectures such as ARM (M0/3/4/7, A7/17/53, ARM9/11), x86, and RISC-V are supported by the project. Huawei LiteOS is part of Huawei's '1+8+N' Internet of Things solution, and has been featured in a number of open source development kits and ind", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29290534", "url": "https://en.wikipedia.org/wiki/Real-time%20economy", "title": "Real-time economy", "text": "Real-time economy (not to be confused with real economy) is an environment where all the transactions between business entities are in digital format, increasingly automatically generated, and completed in real-time (as they occur) without store and forward processing, both from business and IT-processing perspectives. For enterprises, public sector, and citizens this means, for example, that (purchase) orders, order confirmations, invoices, and payments flow from system to system without delays", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29296208", "url": "https://en.wikipedia.org/wiki/VenueGen", "title": "VenueGen", "text": "VenueGen is a browser-based web conferencing service created and marketed by The Venue Network. It is a 3D virtual meeting software that enables users to interact with each other using avatars. Users can host and attend meetings, conferences, and trainings with other colleagues and upload rich media into virtual meeting rooms for real-time collaboration.\n\nTechnology\n\nAvatars\nThe avatars in VenueGen are created using a licensed technology developed at the University of Southern California that co", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29333286", "url": "https://en.wikipedia.org/wiki/Isyvmon", "title": "Isyvmon", "text": "isyVmon was a computer system and network monitoring software application system created by iT-CUBE SYSTEMS. It was designed to monitor and track the status of various applications, network services, servers, and other network hardware.\n\nOverview \n\nisyVmon was based on the Open Source Software Nagios and Centreon licensed under the GNU GPL V3.\n\nSpecial features: \n monitoring hosts, networks, applications & business processes\n ready-to-run distribution\n real-time exploitation and management fron", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29367923", "url": "https://en.wikipedia.org/wiki/Project%20Earth%3A%20Starmageddon", "title": "Project Earth: Starmageddon", "text": "Project Earth: Starmageddon is a science fiction space-based real-time strategy video game developed by Lemon Interactive (an early incarnation of a Polish company that would be later known as City Interactive) and published on April 26, 2002 by DreamCatcher Games for Microsoft Windows. It follows a conflict between human and alien factions, the latter being \"Daemons\".\n\nIt was also released as simply \"Starmageddon\" in its native country and \"Project Stars\" in parts of Europe (e. g. Germany).\n\nTh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29533404", "url": "https://en.wikipedia.org/wiki/Lloyd%27s%20List%20Intelligence", "title": "Lloyd's List Intelligence", "text": "Lloyd's List Intelligence (formerly Lloyd's MIU) is a specialist business information service dedicated to the global maritime community. It is a member of the publicly quoted group Informa plc and forms part of the Lloyd's List Group along with sister company Lloyd's List.\n\nOverview \nLloyd's List Intelligence, with a history of collecting maritime data dating back nearly 300 years, provides an interactive online service offering detailed vessel movements, real-time AIS positioning, comprehensiv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29545609", "url": "https://en.wikipedia.org/wiki/QP%20%28framework%29", "title": "QP (framework)", "text": "QP (\"Quantum Platform\") is a family of lightweight, open source software frameworks for building responsive and modular real-time embedded applications as systems of cooperating, event-driven active objects (actors).\n\nOverview \nThe QP family consists of QP/C, QP/C++, and QP-nano frameworks, which are all quality controlled, documented, and commercially licensable.\n\nAll QP frameworks can run on \"bare-metal\" single-chip microcontrollers, completely replacing a traditional Real-Time Operating Syste", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29566489", "url": "https://en.wikipedia.org/wiki/Ayeah%20Games", "title": "Ayeah Games", "text": "Ayeah Games, Inc. was a social games developer located in Boston. The company was founded in January, 2010 by Douglas Levin and released its first Facebook game entitled FanSwarm on October 31, 2010. It was credited as the first \"social reality\" game on Facebook, using real-time news to determine a celebrity's buzz.\n\nHistory\nIn January, 2010, the company was founded by Douglas Levin. On August 16, 2010, Ayeah Games received seed funding from a Boston-based angel fund. On October 31, 2010, Ayeah ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29764286", "url": "https://en.wikipedia.org/wiki/Real-time%20outbreak%20and%20disease%20surveillance", "title": "Real-time outbreak and disease surveillance", "text": "Real-time outbreak and disease surveillance system (RODS) is a syndromic surveillance system developed by the University of Pittsburgh, Department of Biomedical Informatics. It is \"prototype developed at the University of Pittsburgh where real-time clinical data from emergency departments within a geographic region can be integrated to provide an instantaneous picture of symptom patterns and early detection of epidemic events.\"\n\nRODS uses a combination of various monitoring tools.\n The first t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29792406", "url": "https://en.wikipedia.org/wiki/Jam2jam", "title": "Jam2jam", "text": "jam2jam is a family of audiovisual software for collaborative performance. The systems use generative algorithms for audio and visual material whose parameters are controlled by users with either a graphical user interface or external hardware controllers. jam2jam software applications can connect over local networks or the internet allowing real-time collaboration. This type of functionality is referred to as Network Jamming and is the topic of ongoing research.\n\nThe jam2jam software has been p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29812656", "url": "https://en.wikipedia.org/wiki/Yggdra%20Unison", "title": "Yggdra Unison", "text": "is a real-time strategy game for the cellular phone and Nintendo DS, developed by Sting Entertainment as a \"fandisc\"-type spinoff to Yggdra Union. The original cellphone version was self-published and released on November 11, 2007; the DS version was published by Atlus and released on December 12, 2009. Neither installment has been released in any language other than Japanese. The game display is similar to that of Yggdra Union and Blaze Union, but all action is in real-time and units are allowe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29856234", "url": "https://en.wikipedia.org/wiki/Rosenborg%20tram%20stop%20%28original%29", "title": "Rosenborg tram stop (original)", "text": "Rosenborg () was a tram stop on the Oslo Tramway. It was located on the shopping street Bogstadveien, in the area of the same name in the neighbourhood Hegdehaugen. The station was preceded by Schultz' gate on the Briskeby Line and succeeded by Homansbyen and Uranienborgveien on the Homansby and Briskeby Line, respectively. In 2005, the station was upgraded, with heightened platforms, new skeds and real-time monitors. In 2014, the stop was closed and replaced by the newly established Bogstadveie", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29856516", "url": "https://en.wikipedia.org/wiki/CognoVision", "title": "CognoVision", "text": "CognoVision Solutions Inc. was a Toronto-based provider of real-time audience measurement and retail intelligence solutions. The company created Anonymous Video Analytics (AVA) software that uses small video cameras and real-time Computer vision algorithms to detect faces and people for measuring viewership of Digital signage or estimating traffic flow patterns in a retail store.\n\nOn November 15, 2010, it was announced that Intel Corporation, the world's largest semiconductor chip maker, had ac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "29992087", "url": "https://en.wikipedia.org/wiki/Pacific%20Biosciences", "title": "Pacific Biosciences", "text": "Pacific Biosciences of California, Inc. (aka PacBio) is an American biotechnology company founded in 2004 that develops and manufactures systems for gene sequencing and some novel real time biological observation. PacBio describes its platform as single-molecule real-time sequencing (SMRT), based on the properties of zero-mode waveguides.\n\nHistory\nThe company was founded based on research done at Cornell University that combined semiconductor processing and photonics with biotechnology research", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30040137", "url": "https://en.wikipedia.org/wiki/Hisao%20Yamada", "title": "Hisao Yamada", "text": "was a Japanese computer scientist, known for his influential contributions to theoretical computer science, as well as for the development of Japanese keyboard layouts, a challenging practical problem. From 1972 to 1991, he was professor of the formal languages division at the Department for Information Science at the University of Tokyo.\n\nWork\nIn the field of theoretical computer science, Yamada introduced the notion of real-time computability. As his colleague Aravind Joshi recalls:\n\nSelected ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30087965", "url": "https://en.wikipedia.org/wiki/Valencian%20International%20University", "title": "Valencian International University", "text": "The Valencian International University (VIU) is a private university in Spain with an international remit. It was founded by the regional government of Valencia in 2008. 70% of it was later acquired by the Planeta publishing house. The university is officially recognized by the Spanish Ministry of Education. It is headquartered in Valencia, Spain.\n\nVIU is a distance synchronous learning institution. The teaching and learning is conducted exclusively online, with students receiving real-time clas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30098224", "url": "https://en.wikipedia.org/wiki/Word%20Lens", "title": "Word Lens", "text": "Word Lens was an augmented reality translation application from Quest Visual. Word Lens used the built-in cameras on smartphones and similar devices to quickly scan and identify foreign text (such as that found in a sign or a menu), and then translated and displayed the words in another language on the device's display. The words were displayed in the original context on the original background, and the translation was performed in real-time without a connection to the internet. For example, us", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30112182", "url": "https://en.wikipedia.org/wiki/Revenge%20of%20the%20Titans", "title": "Revenge of the Titans", "text": "Revenge of the Titans is a tower defense/real-time strategy video game developed and published by Puppy Games. It was released for one of the five games included in the second Humble Indie Bundle in 2010. As a result of the success of the Humble Indie Bundle sale the source code of Revenge of the Titans was released. On March 16, 2011, the game was released on Steam.\n\nThe game received positive reviews from critics, who commended its art style, gameplay, and writing.\n\nGameplay\n\nRevenge of the Ti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30163081", "url": "https://en.wikipedia.org/wiki/Dungeons%20%26%20Dragons%3A%20Daggerdale", "title": "Dungeons & Dragons: Daggerdale", "text": "Dungeons & Dragons: Daggerdale is an action role-playing video game developed by Bedlam Games and published by Atari. The game includes both single and co-operative multiplayer modes and is set in the Forgotten Realms.\n\nGameplay\nDaggerdale features third-person real-time tactics combat, questing, character development, and exploration. Two modes, campaign and freeplay, are in the game. Single and multiplayer modes are also included, with split-screen multiplayer for up to four players. While so", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30169878", "url": "https://en.wikipedia.org/wiki/Star%20Trak%20%28service%29", "title": "Star Trak (service)", "text": "Star Trak was a real-time bus information system operating in Leicester and Derby between 2000 and 2011. It was run by the Leicester City Council.\n\nHistory\n\nStar Trak was created in 2000 by Leicester City Council to provide its citizens with a real-time system. The system counts down the departure time to the next bus's arrival. In 2004, the system was in use for over thirty bus routes. At that time, the system was a partnership between Leicester City Council, Leicestershire County Council, Arri", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30179318", "url": "https://en.wikipedia.org/wiki/Creeper%20World", "title": "Creeper World", "text": "Creeper World is a tower defense real-time strategy video game developed by Knuckle Cracker. The player must survive the onslaught of the titular blue mass, known as Creeper, which rises up the playing field and attempts to destroy their base of operations, Odin City. \n\nTwo expansions were subsequently released. The first, Creeper World: Evermore, features randomly generated new maps that are generated daily. The second, Creeper World: User Space, features new graphics and a selection of 14 maps", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30224371", "url": "https://en.wikipedia.org/wiki/Naharnet", "title": "Naharnet", "text": "Naharnet is one of the first Lebanese online media after An Nahar newspaper was online in September 1995. It was launched in September 2000. At its initial phase it was a portal and virtual community for Lebanese and Arabs everywhere.\n\nNaharnet quickly grew to become one of the leading portals in the Lebanese market and diaspora spreading over 220 countries. It provides news, information, entertainment, mobile and social networking services.\n\nNaharnet currently focuses on providing real-time pol", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30321138", "url": "https://en.wikipedia.org/wiki/Psytechnics", "title": "Psytechnics", "text": "Psytechnics is a telecommunications company, spun out of British Telecom's research labs in December 2000. The company's technology is behind 7 ITU standards, including PESQ ITU-T P.862. They developed real-time Quality of Experience monitoring software for calls made with Voice over IP, video, telepresence, and unified communications networks.\n\nPsytechnics was acquired by NetScout Systems on April 1, 2011.\n\nNetworking software companies\nPrivately held companies of the United Kingdom\nCompanies e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30419009", "url": "https://en.wikipedia.org/wiki/SCHED%20DEADLINE", "title": "SCHED DEADLINE", "text": "SCHED_DEADLINE is a CPU scheduler available in the Linux kernel since version 3.14, based on the Earliest Deadline First (EDF) and Constant Bandwidth Server (CBS) algorithms, supporting resource reservations: each task scheduled under such policy is associated with a budget Q (aka runtime), and a period P, corresponding to a declaration to the kernel that Q time units are required by that task every P time units, on any processor. This makes SCHED_DEADLINE particularly suitable for real-time app", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30587686", "url": "https://en.wikipedia.org/wiki/APOX", "title": "APOX", "text": "APOX is a real-time strategy game developed and published by Indian studio BlueGiant Interactive for Microsoft Windows, released through Steam on January 20, 2011, takes place in a near-future, post-apocalyptic, Mad Max-esque setting.\n\nGameplay\n\nAPOX includes features inherent in most RTS games including base-building, control points, and resource management. It is distinctive, however, in having units that can assume the prone position, crouch, and loot corpses like an FPS game.\n\nPlayers can, a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30641247", "url": "https://en.wikipedia.org/wiki/Zahra%27s%20Paradise", "title": "Zahra's Paradise", "text": "Zahra's Paradise (Persian: \u0628\u0647\u0634\u062a \u0632\u0647\u0631\u0627 Behesht-e Zahra) is a webcomic and graphic novel by Amir Soltani and Khalil set in modern Iran. It has been described as a political webcomic dealing with real-time events. Its story follows a mother searching for her son, who disappeared around the time of the Iran's 2009 elections. Serialized online beginning in early 2010, Zahra's Paradise was published in hardcover format in 2011, and has received numerous positive reviews in mainstream press and blogs.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30696327", "url": "https://en.wikipedia.org/wiki/War%20Diary%20%28video%20game%29", "title": "War Diary (video game)", "text": "Choongmoogong (Korean: \ucda9\ubb34\uacf5\uc804 : \ub09c\uc911\uc77c\uae30\ud3b8, \u4e82\u4e2d\u65e5\u8a18\ud3b8) (retitled War Diary in Europe and the US) was the second computer game released in 1996 by Trigger Soft Corporation (Korean:(\uc8fc)\ud2b8\ub9ac\uac70\uc18c\ud504\ud2b8), developed in cooperation with the indie developer HQ Team led by Tae Gon Kim. It is based upon Yi Sun-shin's War Diary, Nanjung Ilgi.\nWar Diary was one of the first real-time strategy games based upon Korea's military history.\n\nPlot\nWar Diary is a real-time strategy game based on actual events that took place toward th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30721092", "url": "https://en.wikipedia.org/wiki/Hoard%20%28video%20game%29", "title": "Hoard (video game)", "text": "Hoard (trademarked as HOARD) is an action-strategy video game developed by Canadian studio Big Sandwich Games Inc. It was released in November 2010 in North America on PlayStation Network, and April 4, 2011 for the PC and Mac on Steam and was released on June 2, 2011 on the PAL PlayStation Network regions.\n\nGameplay \nHoard is an action strategy game that combines elements of a dual-stick shooter with those of a real-time strategy game. Each player controls a dragon that has the ability to fly, b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30745691", "url": "https://en.wikipedia.org/wiki/MNI%20-%20Market%20News", "title": "MNI - Market News", "text": "MNI - Market News is a financial news organization focused on international capital markets. It is a provider of real-time news and analysis for the global foreign exchange market and fixed income markets. MNI has 12 bureaus across the United States, Asia, and Europe and is headquartered in London. Market News has press credentials recognized by the White House, United States Congress, the Federal Reserve, the Deutsche Bundesbank, the European Central Bank, as well as by the governments and cent", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30747613", "url": "https://en.wikipedia.org/wiki/OpenComRTOS", "title": "OpenComRTOS", "text": "OpenComRTOS is a commercial network-centric, formally developed real-time operating system, aimed primarily at the embedded systems market.\n\nOverview \n\nOpenComRTOS is a network-centric RTOS (Real-time operating system) that was developed using Formal Methods. It has features like the capability to support heterogeneous multi-processor systems in a transparent way, independently of the processor type (16bit, 24bit, 32bit, 64bit) and the communication medium (shared memory, buses, point-to-point l", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30827415", "url": "https://en.wikipedia.org/wiki/PAT%20%28model%20checker%29", "title": "PAT (model checker)", "text": "PAT (Process Analysis Toolkit) is a self-contained framework for composing, simulating and reasoning of concurrent, real-time systems and other possible domains. It includes user interfaces, model editor and animated simulator. PAT implements various model checking techniques catering for different properties such as freedom from deadlock and divergence, reachability, LTL properties with fairness assumptions, refinement checking and probabilistic model checking. To achieve good performance, adva", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30830244", "url": "https://en.wikipedia.org/wiki/RT-Thread", "title": "RT-Thread", "text": "RT-Thread is an open-source real-time operating system (RTOS) for Embedded devices and Internet of things (IoT). It is developed by the RT-Thread Development Team based in China. RT-Thread is aimed to change the current situation in China that there is no well used open-source real-time operating system in the microcontroller area. \n\nAs of August 2020, RT-Thread was reported to be #3 on the list of RTOSes with the largest number of contributors (behind Zephyr and mbed OS).\n\nOverview\nRT-Thread ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30862029", "url": "https://en.wikipedia.org/wiki/C-RAN", "title": "C-RAN", "text": "C-RAN (Cloud-RAN), sometimes referred to as Centralized-RAN, is an architecture for cellular networks. Simply speaking, C-RAN is a centralized, cloud computing-based architecture for radio access networks that supports 2G, 3G, 4G and future wireless communication standards. Its name comes from the four 'C's in the main characteristics of C-RAN system, \"Clean, Centralized processing, Collaborative radio, and a real-time Cloud Radio Access Network\".\n\nBackground\nTraditional cellular, or Radio Acces", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30864722", "url": "https://en.wikipedia.org/wiki/Combat%20Mission", "title": "Combat Mission", "text": "Combat Mission is the name of a successful series of computer wargames simulating tactical battles. The series has progressed through two distinct game engines. The original game engine, referred to as 'CMx1' by the developer, Battlefront.com, powered a trio of games set in the Second World War. Combat Mission: Shock Force was released in July 2007 as the debut of the 'CMx2' game engine. The Combat Mission games are a mixture of turn-based gameplay and simultaneous real-time execution. The game ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30865585", "url": "https://en.wikipedia.org/wiki/Cossacks%20II%3A%20Napoleonic%20Wars", "title": "Cossacks II: Napoleonic Wars", "text": "Cossacks II: Napoleonic Wars is the fourth computer game in the Cossacks series of real-time strategy games, released in Spring 2005. This game focuses exclusively on the Napoleonic era, meaning it has a much shorter time span than others in this series, which spanned several centuries. Therefore, fewer technologies can be researched than in other Cossacks games, and there aren't as many different unit types for each country as before. On the other hand, Cossacks II allows a large number of unit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30881724", "url": "https://en.wikipedia.org/wiki/OpenKBM", "title": "OpenKBM", "text": "OpenKBM is a set of computer software for systems management of applications that use knowledge management techniques (the KBM in OpenKBM stands for Knowledge Based Management). \n\nOriginally conceived of and developed as a next generation replacement for Gensym's G2 real-time expert system development platform, the OpenKBM technology and its first layered product, NetCure, were acquired by Rocket Software in 2001 from Gensym Corporation. OpenKBM is used by Rocket and, via OEM agreements, by pa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30939580", "url": "https://en.wikipedia.org/wiki/Come%20Rain%2C%20Come%20Shine", "title": "Come Rain, Come Shine", "text": "Come Rain, Come Shine (; literally \"I Love You, I Love You Not\") is a 2011 South Korean film by Lee Yoon-ki. A young woman (Im Soo-jung) informs her husband of five years (Hyun Bin) that she is leaving him for another man (Ha Jung-woo), but the husband remains calm and even helps her pack. The experimental film traces in real-time parts of their last three hours together while the wife prepares to move out. The film premiered in competition at the 61st Berlin International Film Festival in 2011.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "30978955", "url": "https://en.wikipedia.org/wiki/UNIVAC%20BP", "title": "UNIVAC BP", "text": "The Univac Buffer Processor (BP) was used in several real-time computer system installations in the 1960s as a network concentrator and front end system to the UNIVAC 418 and UNIVAC 490/494 real-time systems. \n\nA notable set of installations was at British European Airways in London (the BEACON Online Reservations system). The initial reservations system at B.E.A. comprised over 200 agent sets in London, connected to the Univac 490 via a network of eight Univac Buffer Processors. \n\nSubsequent", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31024658", "url": "https://en.wikipedia.org/wiki/Elsword", "title": "Elsword", "text": "Elsword (Korean: \uc5d8\uc18c\ub4dc) is a free-to-play, 2.5D action MMORPG developed by the South Korean company KOG Studios. It features real-time action gameplay and includes both player vs. environment and player vs. player modes. There are fourteen playable characters within the game, each with unique backstories and distinct abilities. While playing the game is free, some items and costumes can be purchased through an in-game \"Item Mall\" using real currency. The game was originally made with the intention", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31052911", "url": "https://en.wikipedia.org/wiki/Fwix", "title": "Fwix", "text": "Fwix is a local information company for developers and media publishers. The mission of the company is to index the Web by location, specifically by organizing content on the Web by latitude and longitude coordinates. Fwix aggregates, in real-time, the news, events, status-updates, photos, reviews, places, and other social media in your city.\n\nAfter a two years internship at Facebook, Daren Shirazi decided to found his own company Fwix in 2008.\n\nPivot to Radius \nIn April 2012, the company annou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31142494", "url": "https://en.wikipedia.org/wiki/The%20Clearing%20House", "title": "The Clearing House", "text": "The Clearing House is a banking association and payments company owned by the largest commercial banks in the United States. The Clearing House is the parent organization of The Clearing House Payments Company L.L.C., which owns and operates core payments system infrastructure in the United States, including ACH, wire payments, check image clearing, and real-time payments through the RTP network, a modern real-time payment system for the U.S. \n\nSupporting services include The Clearing House Paym", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31214698", "url": "https://en.wikipedia.org/wiki/Hills%20and%20Rivers%20Remain", "title": "Hills and Rivers Remain", "text": "is a video game developed and published by Square Enix and released for the iPhone and iPod Touch in North America and Japan, and additionally for DSIWare and cell phones in Japan. The game was released in November 2009, and has seen many map expansions released. The game is a strategy game that incorporates turn-based and real-time elements. It sees the player controlling several forts in a group of connected bases, choosing each round which base will create new forces that are used to attack e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31216179", "url": "https://en.wikipedia.org/wiki/World%20of%20the%20Living%20Dead", "title": "World of the Living Dead", "text": "World of the Living Dead (WoTLD) : Resurrection was a real-time zombie survival strategy browser game developed using OpenStreetMap to provide the underlying game world, with in-depth gameplay features to make a browser-based massively multiplayer online role-playing game accessible on desktop, tablet and mobile devices.\n\nThe game was set in a post-apocalyptic Los Angeles, overrun by the zombie apocalypse. Players were tasked with commanding, sustaining, and protecting one or more squads of sur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31287530", "url": "https://en.wikipedia.org/wiki/The%20Kings%27%20Crusade", "title": "The Kings' Crusade", "text": "The Kings' Crusade (formerly Lionheart: Kings' Crusade) is a real-time strategy video game with elements of role-playing. It was developed by NeocoreGames, and was published in October 2010 by Paradox Interactive. In Russia the game was published by 1C Company and Snowball Studios called Kings' Crusade. Lionheart.\n\nGameplay\nThe player has a choice to play the campaign scenario or multiplayer game.\n\nCampaign\n\nThe player's aim in the campaign is to conquer the Middle East and merge it under his ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31287560", "url": "https://en.wikipedia.org/wiki/DioneOS", "title": "DioneOS", "text": "DioneOS (pronounced /djoneos/) is a multitasking preemptive, real-time operating system (RTOS). The system is designed for microcontrollers, originally released on 2 February 2011 for the Texas Instruments TI MSP430x, and then on 29 March 2013 for the ARM Cortex-M3. Target microcontroller platforms have limited resources, i.e., system clock frequency of tens of MHz, and memory amounts of tens to a few hundred kilobytes (KB). The RTOS is adapted to such conditions by providing a compact and effic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31316540", "url": "https://en.wikipedia.org/wiki/DataScene", "title": "DataScene", "text": "DataScene is a scientific graphing, animation, data analysis, and real-time data monitoring software package. It was developed with the Common Language Infrastructure technology and the GDI+ graphics library. With the two Common Language Runtime engines - the .Net and Mono frameworks - DataScene runs on all major operating systems.\n\nWith DataScene, the user can plot 39 types 2D & 3D graphs (e.g., Area graph, Bar graph, Boxplot graph, Pie graph, Line graph, Histogram graph, Surface graph, Polar g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31344698", "url": "https://en.wikipedia.org/wiki/Anomaly%3A%20Warzone%20Earth", "title": "Anomaly: Warzone Earth", "text": "Anomaly: Warzone Earth is a real-time strategy tower defense video game by 11 bit studios. The game was initially announced in late 2010, and released on April 8, 2011 for Windows and Mac OS X.\n\nPlot\nThe game is set in the near future, where sections of an alien spacecraft have crash-landed in several major cities around the world including Baghdad and Tokyo.\n\nThe player assumes the role of the commander of an armor battalion (referred to as \"14th Platoon\" in the story) sent to investigate anoma", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31366648", "url": "https://en.wikipedia.org/wiki/Akoranga%20busway%20station", "title": "Akoranga busway station", "text": "Akoranga Busway Station is in Northcote, New Zealand, on the Northern Busway. It is adjacent to Auckland University of Technology's North Campus and linked to it by a footbridge over the Northern Motorway. It has shelters, electronic real-time information and passenger drop off and pick up.\n\nIt opened on 2 February 2008, the closest busway station to Britomart Transport Centre and the Auckland Harbour Bridge.\n\nIt is the southernmost station on the busway. The next station northbound is Smales Fa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31390903", "url": "https://en.wikipedia.org/wiki/Anno%202070", "title": "Anno 2070", "text": "Anno 2070 is a city-building and economic simulation game, with real-time strategy elements. It is the 5th game of the Anno series. It was released on 17 November 2011, and was co-developed by the German studios Related Designs and Blue Byte, and published by Ubisoft. Anno 2070 required Uplay to operate as an always online DRM System, later removed for receiving severe criticism from players.\n\nPlot\nThe scenario is set in the year 2070. Global warming has melted the Arctic ice cap, which has rais", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31429209", "url": "https://en.wikipedia.org/wiki/T-Kernel", "title": "T-Kernel", "text": "T-Kernel is an open source real-time operating system (RTOS) designed for 32-bit microcontrollers. It is standardized by the T-Engine Forum, which distributes it under a T-License agreement. There is also a corresponding Micro T-Kernel (\u03bcT-Kernel) implementation designed for embedded systems with 16-bit or 8-bit microcontrollers.\n\nHistory\nIn 1984 professor Ken Sakamura started The Real-time Operating system Nucleus (TRON project) at the University of Tokyo, with the goal of designing an open rea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31437888", "url": "https://en.wikipedia.org/wiki/Microblogging%20in%20China", "title": "Microblogging in China", "text": "Weibo (\u5fae\u535a w\u0113i b\u00f3) is a general term for microblogging, but normally understood as Chinese-based mini-blogging services, including social chat sites and platform sharing.\n\nWeibo services makes it possible for internet users to set up real-time information sharing communities individually, and upload and update information.\nWeibo services use a format similar to the American-based Twitter-service, but is used almost exclusively by Chinese language speakers. The format of specific features is not e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31475181", "url": "https://en.wikipedia.org/wiki/Grove.io", "title": "Grove.io", "text": "Grove.io was originally Convore, a real-time chat web application created by co-founders Eric Florenzano, Leah Culver, and Eric Maguire.\n\nPC World said \"It works as a news aggregate as well as a question/answer forum for its myriad of topics\"; according to MIT Technology Review, it had \"the polish and responsiveness that most new sites of its ilk lack.\"\n\nIn January 2012, Convore pivoted into Grove.io, with a focus on providing services for businesses, and touting as a core feature that it was ba", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31539839", "url": "https://en.wikipedia.org/wiki/Microsoft%20Safety%20Scanner", "title": "Microsoft Safety Scanner", "text": "Microsoft Safety Scanner is a free virus scanner similar to Windows Malicious Software Removal Tool that can be used to scan a system for computer viruses and other forms of malware. It was released on 15 April 2011, following the discontinuation of Windows Live OneCare Safety Scanner.\n\nIt is not meant to be used as a day-to-day tool, as it does not provide real-time protection against viruses, cannot update its virus definitions and expires after ten days. However, it can be run on a computer ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31550858", "url": "https://en.wikipedia.org/wiki/AGX%20Multiphysics", "title": "AGX Multiphysics", "text": "AGX Multiphysics (now renamed to AGX Dynamics) is a proprietary real-time physics engine developed by Algoryx Simulation AB that simulates rigid body dynamics, collision detection, dry frictional contacts, jointed systems, motors, fluids, deformable materials, hydraulics, hydrodynamics, cable systems and wires. AGX targets several domains, such as virtual reality real-time simulator applications for training and marketing; computer aided engineering and virtual prototyping; movie visual effects", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31557744", "url": "https://en.wikipedia.org/wiki/Interact%20Incorporated", "title": "Interact Incorporated", "text": "Interact Incorporated is a technology company that specializes in providing interactive voice response (IVR) applications and real-time billing and rating platforms. Products and services include:\n\n Invigorate: 3GPP real-time billing and rating platform that supports Diameter\n VIP (Voice Information Processing): interactive voice response system (IVR)\n SPOT SIP Engine: VoiceXML and CCXML interpreters with integrated SIP stack\n Listen: conferencing, voicemail, find-me / follow-me, and IP-PBX syst", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31562826", "url": "https://en.wikipedia.org/wiki/Smales%20Farm%20busway%20station", "title": "Smales Farm busway station", "text": "Smales Farm Busway Station is a bus station in Westlake, New Zealand, on the Auckland Northern Busway. It opened on 2 February 2008, and is the second-closest busway station to Britomart Transport Centre. It has shelters, electronic real-time information on each platform, a customer service centre and passenger drop off and pick up.\n\nIt is adjacent to Westlake Girls High School and the Smales Farm Office Park, which houses Sovereign, Air New Zealand and Telstra Clear. North Shore Hospital is not", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31588217", "url": "https://en.wikipedia.org/wiki/MIT%20Billion%20Prices%20project", "title": "MIT Billion Prices project", "text": "The Billion Prices Project (BPP) is an academic initiative at MIT Sloan and Harvard Business School that uses prices collected from hundreds of online retailers around the world on a daily basis to conduct research in macro and international economics and compute real-time inflation metrics. It was started in 2008 by professors Alberto Cavallo and Roberto Rigobon.\n\nIn 2007, the BPP initiated Inflaci\u00f3n Verdadera, a project that provided a daily inflation gauge for Argentina, serving as an alterna", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31624503", "url": "https://en.wikipedia.org/wiki/Men%20of%20War%3A%20Assault%20Squad", "title": "Men of War: Assault Squad", "text": "Men of War: Assault Squad (, or Behind Enemy Lines 2: Storm), is a real-time tactics / strategy game set in World War II.\n\nDevelopment\nIn the development of Assault Squad it was decided to focus more on the infantry part of the game. It adds 15 new missions, improved graphics, Great Britain and Japan as new factions, and a few new units. There was also a temporary name, where A4 defines the build name (Men of War is A3).\n\nOn April 27, 2011 DMS released the first official DLC for the Men of War s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31656376", "url": "https://en.wikipedia.org/wiki/Lytx", "title": "Lytx", "text": "Lytx is a San Diego, California based technology company that designs, manufactures and sells video telematics products used by commercial and public-sector fleets to help improve driver safety and business productivity. Products include risk detection, fleet tracking, and driver safety programs that use artificial intelligence and analysts to identify risky driving behaviors and report real-time fleet information. The company's clients include waste management and sanitation companies, trucking", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31657457", "url": "https://en.wikipedia.org/wiki/Armored%20Brigade%20%28video%20game%29", "title": "Armored Brigade (video game)", "text": "Armored Brigade is a real-time tactical wargame, focusing on realism and playability. The first incarnation of the game was published in 2008 and the most recent version was released in January 2016; marking last freeware version to be published. A commercial version, including drastic gameplay improvements, new features and reworked unit and terrain graphics is being actively developed with scheduled completion during the fall of 2018.\n\nPlayers control individual tanks and vehicles from a top-d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31664400", "url": "https://en.wikipedia.org/wiki/Octane%20Render", "title": "Octane Render", "text": "Octane Render is an unbiased rendering application with real-time capability developed by graphics software company OTOY Inc. It was created by Terrence Vergauwen of the New Zealand based startup company Refractive Software LTD before being sold to OTOY Inc. in 2012. Octane render was the first commercially available unbiased raytracer that fully utilized the GPU, giving it a significant speed advantage; this allows users to more easily modify scenes in real time.\n\nOctane Render runs on Nvidi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31681546", "url": "https://en.wikipedia.org/wiki/Illinois%20Structural%20Health%20Monitoring%20Project", "title": "Illinois Structural Health Monitoring Project", "text": "The Illinois Structural Health Monitoring Project (ISHMP) is a structural health monitoring project devoted to researching and developing hardware and software systems to be used for distributed real-time monitoring of civil infrastructure. The project focuses on monitoring bridges, and aims to reduce the cost and installation effort of structural health monitoring equipment. It was founded in 2002 by Professor Bill F. Spencer and Professor Gul Agha of the University of Illinois at Urbana\u2013Cham", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31689100", "url": "https://en.wikipedia.org/wiki/8Realms", "title": "8Realms", "text": "8realms was a Browser based empire-building massively multiplayer online real-time strategy game developed by Jagex. It is the company's first internally developed MMORTS, and second published MMORTS, after War of Legends.\n\nHistory\nThe 8Realms closed beta was released on 5 May 2011 as Jagex's first HTML-based game. Players were given advanced access to the closed beta by invitation through e-mail and through the game's Facebook page.\n\nShutdown\nJagex shut down 8Realms 1 July 2012, having met only", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31694170", "url": "https://en.wikipedia.org/wiki/Zero-K", "title": "Zero-K", "text": "Zero-K is a free multi-platform open source real-time strategy video game. Initially based on content from Total Annihilation on the open source Spring Engine, it was forked and all proprietary content replaced, and evolved into a completely new game with unique features. Among the games powered by the Spring Engine, Zero-K makes extensive use of Lua scripting for interface and gameplay changes/enhancements, as well as unique real-time strategy concepts such as a flat technology tree.\n\nGameplay ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31712282", "url": "https://en.wikipedia.org/wiki/OStatus", "title": "OStatus", "text": "OStatus is an open standard for federated microblogging, allowing users on one website to send and receive status updates with users on another website. The standard describes how a suite of open protocols, including Atom, Activity Streams, WebSub, Salmon, and WebFinger, can be used together, which enables different microblogging server implementations to route status updates between their users back-and-forth, in near real-time.\n\nHistory \n\nOStatus federation was first possible between StatusNet", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31761639", "url": "https://en.wikipedia.org/wiki/Serial%20time-encoded%20amplified%20microscopy", "title": "Serial time-encoded amplified microscopy", "text": "Time Stretch Microscopy also known as Serial time-encoded amplified imaging/microscopy or stretched time-encoded amplified imaging/microscopy' (STEAM) is a fast real-time optical imaging method that provides MHz frame rate, ~100 ps shutter speed, and ~30\u00a0dB (\u00d7 1000) optical image gain. Based on the Photonic Time Stretch technique, STEAM holds world records for shutter speed and frame rate in continuous real-time imaging. STEAM employs the Photonic Time Stretch with internal Raman amplification t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31762789", "url": "https://en.wikipedia.org/wiki/Lonely%20%282NE1%20song%29", "title": "Lonely (2NE1 song)", "text": "\"Lonely\" is a song by South Korean girl group 2NE1, serving as one of the lead singles from their 2011 self-titled second EP. The single was written and produced by Teddy Park and was released via digital download and streaming on May 12, 2011 by YG Entertainment. The song was a commercial success, peaking at number 1 on the Gaon Digital Chart in addition to topping all of the South Korean real-time digital charts following its release, achieving a perfect all-kill.\n\nA Japanese version of the so", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31764662", "url": "https://en.wikipedia.org/wiki/GeoTime", "title": "GeoTime", "text": "GeoTime is geospatial analysis software that allows the visual analysis of events over time. It adds time as the third dimension to a two-dimensional map (which can include 3D projection of terrain elevation geodata or any abstract diagrammatic space), allowing users to see changes within time series data. Users can view real-time animated playback of data and use automated analysis tools within the software to identify location patterns, connections between events, and trends.\n\nGeoTime can impo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31779000", "url": "https://en.wikipedia.org/wiki/Sunnynook%20busway%20station", "title": "Sunnynook busway station", "text": "Sunnynook Busway Station is the smallest station on the Northern Busway in Auckland, New Zealand. It is located in the suburb of Sunnynook. Many passengers walk to the station, one of the busiest on the busway, as it does not have park and ride facilities like the other busway stations.\n\nIt has shelters, electronic real-time information and passenger drop off and pick up, but does not have ramps allowing feeder buses to enter the station.\n\nThe next station southbound is Smales Farm Busway Statio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31799026", "url": "https://en.wikipedia.org/wiki/Stronghold%20Kingdoms", "title": "Stronghold Kingdoms", "text": "Stronghold Kingdoms is a Massively multiplayer online real-time strategy game video game with a Medieval castle building theme. It was developed by Firefly Studios and based upon their commercially successful and popular Stronghold series of games. Firefly Studios started development of Stronghold Kingdoms in 2007 as their first entry into the MMO genre. The first Alpha test began in 2009 and was open to 150 players.\n\nReception\nStronghold Kingdoms has achieved a Metacritic score of 75, indic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31817935", "url": "https://en.wikipedia.org/wiki/Thingbuzz", "title": "Thingbuzz", "text": "Thingbuzz is the first real-time search and discovery shopping platform based on social media information generated on Twitter, the microblogging service. Thingbuzz was purchased by Nextag, the leading shopping comparison site based in San Mateo, California, in October 2011, for an undisclosed sum.\n\nHistory\nThingBuzz was founded in 2009 in Benicia, California.\n\nDescription\nThingbuzz searches for things or products that people are talking about or recommending on Twitter, and presents the data in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31824158", "url": "https://en.wikipedia.org/wiki/Sqlstream", "title": "Sqlstream", "text": "SQLstream is a distributed, SQL standards-compliant plus Java stream processing platform. SQLstream, Inc. is based in San Francisco, California and was launched in 2009 by Damian Black, Edan Kabatchnik and Julian Hyde, author of the open source Mondrian Relational OLAP Server Engine.\n\nLeadership Position\nIn 2016, SQLstream announced it had licensed a subset of SQLstream Blaze, its flagship product suite, to Amazon's AWS for their Kinesis Analytics service that provides streaming real-time insigh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31858610", "url": "https://en.wikipedia.org/wiki/Irisys", "title": "Irisys", "text": "Infrared Integrated Systems Ltd (generally called Irisys) is a technology and engineering company based near Northampton in the United Kingdom that manufacturers thermal imaging, people counting technologies and real-time grocery queue management systems. The company was acquired by the American Fluke Corporation in 2012.\n\nThe company was awarded The Queen\u2019s Award for Enterprise, the highest official award for British businesses, in 2011 and 2012.\n\nHistory \n\nIrisys was founded in 1996 by a small", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31871726", "url": "https://en.wikipedia.org/wiki/Video%20games%20in%20South%20Korea", "title": "Video games in South Korea", "text": "In South Korea, video games are considered to be a major social activity, with most of the games being cooperative or competitive. Locally developed role-playing, first-person shooter, MMORPG and mobile games have proven to be very popular in the country. Professional competition surrounding video games (especially those involving real-time strategy games) also enjoy a substantial following in South Koreamajor tournaments are often broadcast on television and have large prizes available.\n\nSouth ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31872121", "url": "https://en.wikipedia.org/wiki/Harvey%20mannequin", "title": "Harvey mannequin", "text": "Harvey was one of the earliest medical simulators available for training of health care professionals. Harvey was created in 1968 by Dr. Michael S. Gordon at the University of Miami. Harvey is currently sold by the Laerdal Corporation.\n\nBackground\nConsidered one of the groundbreaking products in medical simulation, the cardiopulmonary patient simulator Harvey provides a method of standardized testing for real-time procedures, and skills of the trainee, usually a medical student or resident.\n\nFir", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31884673", "url": "https://en.wikipedia.org/wiki/IQAir", "title": "IQAir", "text": "IQAir is a Swiss air quality technology company, specializing in protection against airborne pollutants, developing air quality monitoring and air cleaning products. IQAir also operates AirVisual, a real-time air quality information platform. As of February 2020, it had around 500 employees worldwide, 150 of them in China, and its most important markets were Asia and North America.\n\nHistory \nIQAir was founded 1963 by brothers Manfred and Klaus Hammes, who introduced an air filter system for resi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31901625", "url": "https://en.wikipedia.org/wiki/Geomerics", "title": "Geomerics", "text": "Geomerics was a software company based in Cambridge, UK, that specialised in creating lighting technology for the video game industry.\n\nThe company's main product was Enlighten, software code that calculates indirect lighting (\"radiosity\") in real-time for live action games running on systems such as the PlayStation 3, PlayStation 4, Xbox 360, and personal computers. The company licensed this code to game companies for incorporation into their proprietary rendering engines.\nThe software was por", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31944603", "url": "https://en.wikipedia.org/wiki/NOAA%20National%20Operational%20Model%20Archive%20and%20Distribution%20System%20%28NOMADS%29", "title": "NOAA National Operational Model Archive and Distribution System (NOMADS)", "text": "The NOAA National Operational Model Archive and Distribution System (NOMADS) is a Web-services based project providing both real-time and retrospective format independent access to climate and weather model data.\n\nOverview\nTo address a growing need for remote access to high volume numerical weather prediction and global climate models and data, the National Climatic Data Center (NCDC), along with the National Centers for Environmental Prediction (NCEP) and the Geophysical Fluid Dynamics Laborato", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31945108", "url": "https://en.wikipedia.org/wiki/OpenX%20%28company%29", "title": "OpenX (company)", "text": "OpenX Software Ltd. is a programmatic advertising technology company. The company has developed an integrated technology platform that combines ad server and a real-time bidding (RTB) exchange with a standard supply-side platform (SSP) ensuring the highest real-time value for any trade. OpenX was founded in 2008 and has raised over $75 million from Accel, Index, Samsung, Dentsu, Mangrove Capital and others.\n\nBackground \nOpenX has offices in Pasadena (HQ), New York, Tokyo, London, and Krak\u00f3w.\n\nIn", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31950946", "url": "https://en.wikipedia.org/wiki/WebRTC", "title": "WebRTC", "text": "WebRTC (Web Real-Time Communication) is a free and open-source project providing web browsers and mobile applications with real-time communication (RTC) via application programming interfaces (APIs). It allows audio and video communication to work inside web pages by allowing direct peer-to-peer communication, eliminating the need to install plugins or download native apps. Supported by Apple, Google, Microsoft, Mozilla, and Opera, WebRTC specifications have been published by the World Wide Web ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31953149", "url": "https://en.wikipedia.org/wiki/Opus%20%28audio%20format%29", "title": "Opus (audio format)", "text": "Opus is a lossy audio coding format developed by the Xiph.Org Foundation and standardized by the Internet Engineering Task Force, designed to efficiently code speech and general audio in a single format, while remaining low-latency enough for real-time interactive communication and low-complexity enough for low-end embedded processors. Opus replaces both Vorbis and Speex for new applications, and several blind listening tests have ranked it higher-quality than any other standard audio format at ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "31958369", "url": "https://en.wikipedia.org/wiki/MapR", "title": "MapR", "text": "MapR was a business software company headquartered in Santa Clara, California. MapR software provides access to a variety of data sources from a single computer cluster, including big data workloads such as Apache Hadoop and Apache Spark, a distributed file system, a multi-model database management system, and event stream processing, combining analytics in real-time with operational applications. Its technology runs on both commodity hardware and public cloud computing services. In August 2019", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32055443", "url": "https://en.wikipedia.org/wiki/Virtual%20Reference%20Station", "title": "Virtual Reference Station", "text": "Virtual Reference Station (VRS) networks use real-time kinematic (RTK) solutions to provide high-accuracy, RTK Global Navigation Satellite Systems.\n\nTo reach centimeter-level \u2014 or even better \u2014 accuracy of positioning typically requires precise dual-frequency carrier phase observations. Furthermore, these observations are usually processed using a differential GNSS (DGNSS) algorithm, such as real time kinematic (RTK) or post-processing (PP). Regardless of the specific differential algorithm, how", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32069811", "url": "https://en.wikipedia.org/wiki/Demand%20sensing", "title": "Demand sensing", "text": "Demand sensing is a forecasting method that leverages new techniques such as artificial intelligence, machine learning and real-time data capture to create an accurate forecast of demand based on the current realities of the supply chain. Traditionally, forecasting accuracy was based on time series techniques which create a forecast based on prior sales history and draws on several years of data to provide insights into predictable seasonal patterns. However, past sales are frequently a poor pre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32071503", "url": "https://en.wikipedia.org/wiki/SceneTap", "title": "SceneTap", "text": "SceneTap, previously known as BarTabbers, is a data analytics, marketing services, and mobile application company launched in 2010. SceneTap started in Chicago, Illinois, and is currently based in Austin, Texas. The tool allows end users to view real-time data on crowd sizes, gender ratios, and the average age of patrons in a given location. In addition, it allows establishments to post live coupons and specials for users to purchase.\n\nApplication and Website \n\nSceneTap offers an administrative", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32078264", "url": "https://en.wikipedia.org/wiki/Oscilloscoop", "title": "Oscilloscoop", "text": "OscilloScoop is an interactive music app for iOS that runs on the iPad, iPhone, and iPod Touch, available through the iTunes App Store. The app presents a real-time interface for creating electronic music in various electronic music genres from hip hop to techno and house. The app is designed with a minimalist modern interface of three colored crowns, that spin like potters' wheels. Touching each crown affects the parameters of the audio. The top crown controls pitch, the middle a low pass reson", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32083207", "url": "https://en.wikipedia.org/wiki/ACI%20Worldwide", "title": "ACI Worldwide", "text": "ACI Worldwide Inc. () is a payment systems company headquartered in Miami, Florida. ACI develops a broad line of software focused on facilitating real-time electronic payments. These products and services are used globally by banks, financial intermediaries such as third-party electronic payment processors, payment associations, switch interchanges, merchants, corporations, and a wide range of transaction-generating endpoints, including automated teller machines (\"ATM\"), merchant point of sale (", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32115678", "url": "https://en.wikipedia.org/wiki/Ravenna%20%28networking%29", "title": "Ravenna (networking)", "text": "Ravenna is a technology for real-time transport of audio and other media data over IP networks. Ravenna was introduced on September 10, 2010 at the International Broadcasting Convention in Amsterdam. Ravenna can operate on most existing network infrastructures using standard networking technology. Performance and capacity scale with network performance. Ravenna is designed to match broadcasters' requirements for low latency, full signal transparency and high reliability. Fields of application in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32132682", "url": "https://en.wikipedia.org/wiki/Dwolla", "title": "Dwolla", "text": "Dwolla is a United States-only fintech company that provides businesses with a connection to the ACH Network or RTP\u00ae Network (Clearing House\u2019s privately-owned real-time payments network).\n\nHistory\nThe company was founded in 2008 with services based only in Iowa, and having two employees. After raising US$1.31 million in funding, Dwolla launched in the United States on December 1, 2010, with founders Ben Milne (CEO) and Shane Neuerburg (CTO), in Des Moines, Iowa, and initially with a few small b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32163102", "url": "https://en.wikipedia.org/wiki/Enterprise%20control", "title": "Enterprise control", "text": "Enterprise control is the ability to combine control, intelligence and process management to enable business optimization that is inclusive of business and production operations. It combines the strength of both business processes and production operations processes. It is the deliberate act of synchronizing business strategy with operational execution in real-time to enable closed loop business control across an enterprise.\n\nKey elements of enterprise control\n\n Enterprise resource planning (ER", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32173477", "url": "https://en.wikipedia.org/wiki/Pokeware", "title": "Pokeware", "text": "Pokeware was a set of protocols, an ad exchange, and a client-server program that enables viewers to search for information about objects within video for real-time search results.\n\nPokeware was released by Pokeware, a company founded by Maryse Liburdi. In 2017, Liburdi pleaded guilty to having defrauded investors of millions of dollars, having used investors' money to pay for her personal life. She had manipulated bank accounts to make the company look healthy. The US Justice Department has sta", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32227897", "url": "https://en.wikipedia.org/wiki/Heroes%20%26%20Generals", "title": "Heroes & Generals", "text": "Heroes & Generals is a free-to-play first-person shooter and real-time strategy video game set in World War II developed and published by Reto-Moto now by TLM since February 3 2022. Reto-Moto was founded by some of the original founders of IO Interactive and the Hitman series. The developers called it a \"mass participation game\" in contrast to a traditional massively multiplayer online game, where the actions in the FPS-part of the game reflect into the strategy-part. The player can use weapons ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32309295", "url": "https://en.wikipedia.org/wiki/SAP%20StreamWork", "title": "SAP StreamWork", "text": "SAP StreamWork is an enterprise collaboration tool from SAP SE released in March 2010, and sunset in December 2015. StreamWork allows real-time collaboration like Google Wave, but focuses on business activities such as analyzing data, planning meetings, and making decisions. It incorporates technology from Box.net and Evernote to allow users to connect to online files and documents, and document-reader technology from Scribd to allow users to view documents directly within its environment.\n\nStre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32329094", "url": "https://en.wikipedia.org/wiki/Real-time%20marketing", "title": "Real-time marketing", "text": "Real-time marketing is marketing performed \"on-the-fly\" to determine an appropriate or optimal approach to a particular customer at a particular time and place. It is a form of market research inbound marketing that seeks the most appropriate offer for a given customer sales opportunity, reversing the traditional outbound marketing (or interruption marketing) which aims to acquire appropriate customers for a given 'pre-defined' offer. The dynamic 'just-in-time' decision making behind a real-time", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32370268", "url": "https://en.wikipedia.org/wiki/ASU%20Campus%20Metabolism", "title": "ASU Campus Metabolism", "text": "ASU Campus Metabolism (Campus Metabolism) is a website managed by Arizona State University, demonstrating Energy monitoring and targeting through use of real-time and historic energy use data of buildings on the campus in Tempe, Arizona. The site displays data from an Energy Information System in order to support education, research, operations and outreach regarding sustainability of operations on the ASU Tempe campus. The site is part of a plan for the campus to be carbon-neutral by 2025.\n\nHis", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32382121", "url": "https://en.wikipedia.org/wiki/Nefsis", "title": "Nefsis", "text": "Nefsis Corporation is a communications technology company. It was an early developer of real-time communications software and the first to use cloud computing in the videoconferencing industry.\n\nNefsis offers multipoint video conferencing with integrated voice and live collaboration solutions for small to medium-sized business and distributed enterprise customers.\n\nHistory\n\nNefsis was founded in 1998 by Allen Drennan as WiredRed Corporation. The company name was changed to Nefsis Corporation in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32452178", "url": "https://en.wikipedia.org/wiki/Allein%20gegen%20die%20Zeit", "title": "Allein gegen die Zeit", "text": "Allein gegen die Zeit (Alone Against Time) is a German real-time television series, aired since 2010. Broadcast on KI.KA, structurally, it resembles the American TV series 24. It was followed in 2016 by a special TV movie.\n\nPlot\n\nSeason 1\nThe Teenagers Ben, Leo, Jonas, Sophie and \u00d6zzi have a detention on a Saturday morning. When their teacher Mr. Funke, Ben's father, leaves the classroom and does not return, the five children go and look for him. While passing another classroom, they realise tha", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32515373", "url": "https://en.wikipedia.org/wiki/Kixeye", "title": "Kixeye", "text": "KIXEYE (stylized as KIXEYE, formerly known as Casual Collective) is a video game company founded in July 2007 and headquartered in Victoria, B.C., Canada. \nThe company creates, develops and publishes massively multiplayer online real-time strategy games (MMORTS) for PC and mobile devices. KIXEYE gained popularity as a pioneer in midcore action games featuring real-time combat on the social networking website Facebook. Following their initial launch, KIXEYE's games generated twenty times more rev", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32648121", "url": "https://en.wikipedia.org/wiki/Atom%20Zombie%20Smasher", "title": "Atom Zombie Smasher", "text": "Atom Zombie Smasher is a real-time strategy game developed by independent developer Blendo Games. In it, the player attempts to rescue as many citizens as possible from an oncoming zombie horde using helicopter rescue units and an array of military units to protect the citizens and defeat the zombies.\n\nGameplay\n\nThe player is responsible for saving as many citizens as possible from the various regions of Nuevos Aires, a large fictional city being invaded by zombies, by deploying and directing a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32678550", "url": "https://en.wikipedia.org/wiki/Inder%20Singh%20%28philanthropist%29", "title": "Inder Singh (philanthropist)", "text": "Inder Singh is the founder and CEO of Kinsa, a Kleiner Perkins, First Mark Capital and Founder Collective-backed startup creating a real-time health map. He formerly served as the Executive Vice President of the Clinton Foundation's Clinton Health Access Initiative, a global not-for-profit organization fighting malaria and other diseases. Singh is known for his work towards improving global health, most notably by brokering the deals announced by former President Clinton that reduced the price o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32685437", "url": "https://en.wikipedia.org/wiki/Meporter", "title": "Meporter", "text": "Meporter was a citizen journalist mobile phone application that used geolocation and multimedia to create hyperlocal, real-time news. The name is a combination of Me and Reporter. Users posted news with headlines, text, videos, and images using their smartphones to the Meporter database and to the Meporter website; users could have the story pinpointed on a map using GPS. When the story was uploaded, it was viewable by other meporters via their smartphone or the Meporter website. Users earned \"P", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32708406", "url": "https://en.wikipedia.org/wiki/Terracotta%2C%20Inc.", "title": "Terracotta, Inc.", "text": "Terracotta, Inc. is a computer software company that specializes in increasing scalability, availability, and performance of real-time Big Data applications. The company's flagship product is Terracotta DB, an in-memory distributed data management platform which provides persistent storage, caching and compute capabilities. Terracotta is used in 190 countries by over two million developers and has more than 2.5 million deployments. The company is owned by Software AG.\n\nHistory \nTerracotta began ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32716562", "url": "https://en.wikipedia.org/wiki/Kumatanchi", "title": "Kumatanchi", "text": "is a life simulation video game co-developed for the Nintendo DS by Vanillaware and studio Ashinaga Oji-san. It was published on September 25, 2008 by Dimple Entertainment. The premise and gameplay revolves around the player taking care of an anthropomorphic girl based on the mascot character Habanero-tan, seeing her interactions with other anthropomorphic characters over two weeks in real-time. Due to its gameplay and subject matter, it was only released in Japan.\n\nVanillaware artist Shigetake", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32733678", "url": "https://en.wikipedia.org/wiki/Feng%20%28program%29", "title": "Feng (program)", "text": "Feng is a multimedia streaming server compliant with IETF standards for real-time streaming of multimedia content over IP networks. Feng implements Real Time Streaming Protocol (RTSP, ) and Real-time Transport Protocol / RTP Control Protocol (RTP/RTCP, ). It supports the RTP Profile for Audio and Video Conferences with Minimal Control ().\n\nFeng is part of the LScube project, supported by the Internet Media Group at the Politecnico di Torino. It is released under the LGPL v2.1.\n\nSee also\n\nCompari", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32767004", "url": "https://en.wikipedia.org/wiki/Men%20of%20War%3A%20Vietnam", "title": "Men of War: Vietnam", "text": "Men of War: Vietnam (, or Saboteurs: Vietnam) is a real-time tactics and strategy game developed and published by 1C Company. Men of War: Vietnam is the fourth game in the Men of War series. The game was released on September 9, 2011, for Microsoft Windows. The game is set during the Vietnam War.\n\nGameplay\nTwo new, story-driven campaigns are added along with new features like the Vietnamese jungle and Cold War weaponry of early 1968. \n\nThe US campaign focuses on a team of elite US Army S", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32776974", "url": "https://en.wikipedia.org/wiki/Space%20Pirates%20and%20Zombies", "title": "Space Pirates and Zombies", "text": "Space Pirates and Zombies (S.P.A.Z.) is a real-time strategy video game released on August 15, 2011, on the Steam distribution platform. with a top-down perspective based around space combat. The game was developed by a two-man team under the studio MinMax Games using the Torque engine. The game was later ported for Mac OS X and Linux systems.\n\nA sequel, Space Pirates and Zombies 2, was announced on February 5, 2014, and was set to be released in the 1st quarter of 2015, but it was delayed until", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32782328", "url": "https://en.wikipedia.org/wiki/Open%20Space%20%28publications%29", "title": "Open Space (publications)", "text": "Open Space was begun in 1988 in a collaborative effort by Benjamin Boretz, J.K. Randall, and Elaine Barkin. Inspired by the publications of Kenneth Gaburo's Lingua Press whose graphical presentation was far from the typically institutional look of some academic music publications, Open Space began to represent the real-time soundmaking sessions in and around Bard College and Princeton University. \n\nThe Open Space Magazine and The Open Space Web Magazine, began in 1999 and Mary Lee Roberts and T", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32803916", "url": "https://en.wikipedia.org/wiki/Enterprise%20social%20graph", "title": "Enterprise social graph", "text": "An enterprise social graph is a representation of the extended social network of a business, encompassing relationships among its employees, vendors, partners, customers, and the public. With the advent of Web 2.0 and Enterprise 2.0 technologies a company can monitor and act on these relationships in real-time. Given the number of relationships and the volume of associated data, algorithmic approaches are used to focus attention on changes that are deemed relevant.\n\nOrigin \nThe term was first po", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32821388", "url": "https://en.wikipedia.org/wiki/Geospatial%20authentication", "title": "Geospatial authentication", "text": "\n\nGeospatial Authentication \nA software package that has been designed to allow authentication for determining if the rover(s) is/are within a set of boundaries or a specific area to access critical geospatial information by using GPS signal structures as a means to authenticate mobile devices into a network wirelessly and in real-time has been developed. The advantage lies in that the system only allows those with designated geospatial boundaries or areas into the server.\n\nThe Geospatial Authen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32840093", "url": "https://en.wikipedia.org/wiki/242.pilots", "title": "242.pilots", "text": "242.pilots were a live video improvisation ensemble consisting of HC Gilje, Kurt Ralske and Lukasz Lysakowski, which performed at various international festivals and venues between 2001 and 2004.\n\nUtilizing their own custom software, 242.pilots expressively improvise rich, layered video works in real-time (both as a trio, and as soloists). The performance software created by Gilje, Lysakowski, and Ralske allows video to be controlled on-the-fly in a fluid and expressive manner. Improvising as a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32857676", "url": "https://en.wikipedia.org/wiki/Meteocentre", "title": "Meteocentre", "text": "Meteocentre (also named UQAM Weather Centre) is a website displaying real-time weather information for North America and Europe organized in three different portals, each adapted for a given area and named after a town part of the region of interest: 1) Montr\u00e9al, for Qu\u00e9bec, 2) Toulouse, for France and 3) Reading, for the United Kingdom. The website created in 1994 is maintained by its founder Christian Pag\u00e9, actually a research engineer at CERFACS, in collaboration since 2009 with Jean-Fran\u00e7ois", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "32895691", "url": "https://en.wikipedia.org/wiki/Kune%20%28software%29", "title": "Kune (software)", "text": "Kune is a free/open source distributed social network focused on collaboration rather than just on communication. That is, it focuses on online real-time collaborative editing, decentralized social networking and web publishing, while focusing on workgroups rather than just on individuals. It aims to allow for the creation of online spaces for collaborative work where organizations and individuals can build projects online, coordinate common agendas, set up virtual meetings, publish on the web, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33074346", "url": "https://en.wikipedia.org/wiki/Syndicate%20%282012%20video%20game%29", "title": "Syndicate (2012 video game)", "text": "Syndicate is a 2012 cyberpunk first-person shooter video game developed by Starbreeze Studios and published by Electronic Arts. It is a reboot of the Syndicate series of real-time tactical shooter games developed by Bullfrog Productions. The game was released in February 2012 worldwide. Set in the year 2069, the narrative revolves around Miles Kilo, a EuroCorp agent who must eliminate important personnel from rival corporations; in the process, he discovers the evil, secret practice used by Euro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33184429", "url": "https://en.wikipedia.org/wiki/Krunk%20UAV", "title": "Krunk UAV", "text": "Krunk (Armenian: \u053f\u057c\u0578\u0582\u0576\u056f; 'crane') is an Armenian unmanned aerial vehicle (UAV) in service with the Armed Forces of Armenia. It is intended for close reconnaissance, transmitting real-time video data (visual or infrared) or taking higher resolution still images.\n\nThe Krunk was demonstrated for the first time on September 21, 2011 during a military parade dedicated to the 20th anniversary of the independence of Armenia.\n\nThe name refers to range of different models. Latest ones are Krunk-9 and K", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33290114", "url": "https://en.wikipedia.org/wiki/Kingdom%20Under%20Fire", "title": "Kingdom Under Fire", "text": "Kingdom Under Fire is a video games series developed by Blueside and Phantagram.\n\nGames\nKingdom Under Fire: A War of Heroes, a 2001 real-time strategy video game developed by Phantagram and published by Gathering of Developers\nKingdom Under Fire: The Crusaders, a 2004 tactical wargame developed by the Korean studio Phantagram for the Xbox\nKingdom Under Fire: Heroes, a 2005 action strategy game, the prequel to Kingdom Under Fire: The Crusaders\nKingdom Under Fire: Circle of Doom, a 2007 action ro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33294820", "url": "https://en.wikipedia.org/wiki/Kingdom%20Under%20Fire%3A%20A%20War%20of%20Heroes", "title": "Kingdom Under Fire: A War of Heroes", "text": "Kingdom Under Fire: A War of Heroes is a real-time strategy video game developed by Phantagram and published by Gathering of Developers. Released for Windows in 2001, the game is based in a high fantasy setting and is played from an overhead isometric perspective. The game included single-player and multiplayer online modes through Phantagram's Wargate server. The game is the first release in the Kingdom Under Fire series, which later received critical acclaim through the Xbox release Kingdom Un", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33374391", "url": "https://en.wikipedia.org/wiki/Online%20model", "title": "Online model", "text": "An online model is a mathematical model which tracks and mirrors a plant or process in real-time, and which is implemented with some form of automatic adaptivity to compensate for model degradation over time.\n\nRelationship to other kinds of models \n\nAn online model is also sometimes referred to as an \"online simulator\" or \"online system\".\n\nAn online model is related to the concept of real-time simulation, as an online model runs in real-time by definition. \nConversely, a real-time simulation is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33382289", "url": "https://en.wikipedia.org/wiki/Proximic", "title": "Proximic", "text": "Proximic is a platform that provides real-time data services for contextual data for online advertisers and agencies. The company is based in Palo Alto, with research and development facilities in Munich. The company's CEO Philipp Pieper co-founded the company with mathematician Thomas Nitsche. Thomas Nitsche and Elmar Henne, Proximic's chief architect, developed the Mephisto Chess Computer. Chief Scientist is Louis Monier, founder of the AltaVista search engine.\n\nProximic launched in alpha test", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33426248", "url": "https://en.wikipedia.org/wiki/Tonara%20%28company%29", "title": "Tonara (company)", "text": "Tonara is an Israeli education and technology company that developed sheet music software of the same name. It allows music teachers to track the practice sessions of their students.\n\nSoftware\nTonara software is capable of acoustic polyphonic score following, showing the musician's real-time position on the score, and turning the pages automatically as the player reaches the end of a page. The software was initially launched as an iPad application in September 2011. The application includes seve", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33505745", "url": "https://en.wikipedia.org/wiki/Real-time%20testing", "title": "Real-time testing", "text": "Real-time testing is the process of testing real-time computer systems.\n\nSoftware testing is performed to detect and help correct bugs (errors) in computer software. Testing involves ensuring not only that the software is error-free but that it provides the required functionality to the user. Static and conventional methods of testing can detect bugs, but such techniques may not ensure correct results in real time software systems.\nReal-time software systems have strict timing constraints and h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33514386", "url": "https://en.wikipedia.org/wiki/Tomas%20Dy-Liacco", "title": "Tomas Dy-Liacco", "text": "Tomas Enciso Dy-Liacco (November 12, 1920 \u2013 October 24, 2019) was a Filipino-American electrical engineer, researcher, and developer often referred to as the father of modern energy control centers.\n\nDy-Liacco is one of the early pioneers of the basic concepts of security control. He developed several industry-first applications of advanced real-time functions in control centers. He also served as an international consultant on SCADA/EMS (Supervisory Control and Data Acquisition/Energy Managemen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33538564", "url": "https://en.wikipedia.org/wiki/Reach-In", "title": "Reach-In", "text": "Reach-In formerly Apriori Control is a technology company that \"provides real-time physical interactions over the internet.\" It manufactures devices and webcams that can be controlled remotely. A popular product is iPet Companion, which allows users to view and interact with pets.\n\niPet Companion\n\nReach-In (Apriori, LLC) developed iPet Companion in cooperation with the Idaho Humane Society and the Oregon Humane Society. Using cat toys tied to robotic arms, website visitors could play with kitten", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33539196", "url": "https://en.wikipedia.org/wiki/Zepol", "title": "Zepol", "text": "Zepol provides subscription access to U.S. trade data tools that contain near real-time statistics on U.S. imports and exports. Zepol provides access to over 150 million bills of lading. This information shows key details on companies that import into and export from the United States and global suppliers overseas. \"The information comes from U.S. Customs, other government sources and also is gathered from vessel manifests filed at various ports.\n\nProducts\n\"It offers TradeIQ, a U.S. customs bill", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33604379", "url": "https://en.wikipedia.org/wiki/Simulation%20%28journal%29", "title": "Simulation (journal)", "text": "Simulation is a peer-reviewed academic journal that publishes papers in the field of computer Science. The journal's editor is Levent Yilmaz (Auburn University). It has been in publication since 1963 and is currently published by SAGE Publications in association with Society for Modeling and Simulation International.\n\nScope\nSimulation publishes articles in areas such as the modelling and simulation of computer networking and communications, high performance computers and real-time systems. The ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33655088", "url": "https://en.wikipedia.org/wiki/Highland%20Warriors", "title": "Highland Warriors", "text": "Highland Warriors is a real-time strategy computer game which takes place during the Middle Ages of the British history. It was developed by German studio Soft Enterprises and produced by Data Becker. It has been released on the January 20, 2003.\n\nThere are four major sections in the Highland Warriors campaign:\n\n The unification of the clans under a single king.\n The conquest of Scotland by England.\n The rebellion of William Wallace and his uprising against the English army (during the 14th cent", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33699194", "url": "https://en.wikipedia.org/wiki/Mobile%20Suit%20Gundam%20Unicorn%20%28video%20game%29", "title": "Mobile Suit Gundam Unicorn (video game)", "text": "is an action game developed by From Software, exclusively for the PlayStation 3. The game is based on the first three episodes of the anime adaptation. Mobile Suit Gundam Unicorn was released in Japan on March 8, 2012 by Namco Bandai.\n\nGameplay \nThe game features a \"Sub Flight\" system, where the character-in-control can climb atop a Mobile Suit to initiate its transformation into flight form. The transformations occur seamlessly in real-time.\n\nPlot\n\nStory \nThe game consists of several different ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33704625", "url": "https://en.wikipedia.org/wiki/MegaGlest", "title": "MegaGlest", "text": "MegaGlest is a free and open source real-time strategy computer game in a fantasy world, mixing elements of re-imagined past civilizations, magic and steampunk. It is an actively developed fork of the 2004 game Glest, which is no longer under development.\n\nGameplay\nMegaGlest is set in a fantasy world with seven factions: Magic, Tech, Indians, Egypt, Norsemen, Persian and Romans, which together form the Megapack. Each come with their own set of units, buildings and upgrades, advantages and disadv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33719526", "url": "https://en.wikipedia.org/wiki/Earliest%20deadline%20first%20scheduling", "title": "Earliest deadline first scheduling", "text": "Earliest deadline first (EDF) or least time to go is a dynamic priority scheduling algorithm used in real-time operating systems to place processes in a priority queue. Whenever a scheduling event occurs (task finishes, new task released, etc.) the queue will be searched for the process closest to its deadline. This process is the next to be scheduled for execution.\n\nEDF is an optimal scheduling algorithm on preemptive uniprocessors, in the following sense: if a collection of independent jobs, e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33743651", "url": "https://en.wikipedia.org/wiki/Jamuna%20Bank", "title": "Jamuna Bank", "text": "Jamuna Bank Limited is a commercial bank in Bangladesh registered under the Companies Act 1994. It was established on June 3, 2001. Jamuna Bank had 132 branches as of March 2019 . Its head office is located at Hadi Mansion, 2, Dilkusha C/A, Dhaka-1000, Bangladesh. Jamuna Bank Ltd is a 3rd generation private commercial bank, was established by a group of local entrepreneurs. The bank, aside from conventional, also provides Islamic banking through designated branches. The Bank has real-time onli", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33744450", "url": "https://en.wikipedia.org/wiki/Napatech", "title": "Napatech", "text": "Napatech is a public company based in Denmark that develops and manufactures high speed network accelerators specifically designed for real-time network monitoring and analysis applications. The accelerators can be used in standard servers, allowing OEM vendors to build products using commercial off-the-shelf hardware. Examples of typical applications are network performance monitoring, test and measurement, security and optimization. Napatech's products are used in a variety of industries such ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33811414", "url": "https://en.wikipedia.org/wiki/Mojolicious", "title": "Mojolicious", "text": "Mojolicious is a real-time web application framework, written by Sebastian Riedel, creator of the web application framework Catalyst. Licensed as free software under the Artistic License v 2.0, it is written in the Perl programming language, and is designed for use in both simple and complex web applications, based on Riedel's previous experience developing Catalyst. Documentation for the framework was partly funded by a grant from The Perl Foundation.\n\nAs it is written in Perl, Mojolicious can ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33812598", "url": "https://en.wikipedia.org/wiki/Real-time%20bidding", "title": "Real-time bidding", "text": "Real-time bidding (RTB) is a means by which advertising inventory is bought and sold on a per-impression basis, via instantaneous programmatic auction, similar to financial markets. With real-time bidding, advertising buyers bid on an impression and, if the bid is won, the buyer's ad is instantly displayed on the publisher's site. Real-time bidding lets advertisers manage and optimize ads from multiple ad-networks, allowing them to create and launch advertising campaigns, prioritize networks, an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33835886", "url": "https://en.wikipedia.org/wiki/Romonet", "title": "Romonet", "text": "Romonet is a UK-based, privately held company, headquartered in London, UK that provides cloud-based solutions and services to data centers and associated technology. Romonet solves energy, water, capacity and financial challenges in data centers. It claims it makes the first software that accurately predicts total cost of ownership (TCO) and properly model energy flow. They began by creating a term called 'data center predictive modeling' (DCPM) that \"Rather than collecting real-time data, they", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33849454", "url": "https://en.wikipedia.org/wiki/CODA%20Content%20Delivery%20Architecture", "title": "CODA Content Delivery Architecture", "text": "CODA Content Delivery Architecture - from Cambridge Visual Networks (Camvine) is both a digital signage product and a platform. The product is a media player with a \u2018drag and drop\u2019 web-based content management system. As a platform, CODA is a customisable system for partners to tailor solutions for different applications. \n\nContent sources supported include images, video in various formats, Flash, PowerPoint, PDFs, web pages, calendars and web cams. It also connects to real-time information su", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33876822", "url": "https://en.wikipedia.org/wiki/Total%20conversation", "title": "Total conversation", "text": "Total conversation is an ITU standard of simultaneous video, voice and text service in telecommunications. Total conversation allows people in two or more locations to: (a) see each other, (b) hear each other, and (c) conduct a text interaction (real-time text) with each other, or choose to communicate with any combination of those three modes and to do so in real-time.\n\nThe standard was defined in ITU-T recommendation F.703 of 2000 as \"an audiovisual conversation service providing bidirectional", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33924753", "url": "https://en.wikipedia.org/wiki/Pinba", "title": "Pinba", "text": "Pinba is the free high-performance real-time statistic and monitoring server for PHP with MySQL read-only interface developed for highloaded websites by Badoo Development. Available for download under GNU GPL license.\n\nPinba receives all the statistical data from numerous PHP threads through UDP protocol. It allows not to affect overall performance of PHP scripts on high loaded production servers. Pinba developers states that it is not a debugging tool, since in general it's a bad idea to debug ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "33971937", "url": "https://en.wikipedia.org/wiki/Soo-Bong%20Kim", "title": "Soo-Bong Kim", "text": "Soo-Bong Kim is a South Korean physicist.\n\nEducation\nKim was born and raised in Busan, South Korea. He attended Dongrae High School, graduating in the class of 1979. Kim then graduated in 1983 and obtained his MS degree from Seoul National University. He received his Ph.D. from the University of Pennsylvania in 1989. Kim's Ph.D. thesis was supervised by Alfred K. Mann and resulted in real-time and directional measurement of solar neutrinos in the Kamiokande-II detector and search for short-time ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34007442", "url": "https://en.wikipedia.org/wiki/ARM%20Cortex-R", "title": "ARM Cortex-R", "text": "The ARM Cortex-R is a family of 32-bit and 64-bit RISC ARM processor cores licensed by Arm Holdings. The cores are optimized for hard real-time and safety-critical applications. Cores in this family implement the ARM Real-time (R) profile, which is one of three architecture profiles, the other two being the Application (A) profile implemented by the Cortex-A family and the Microcontroller (M) profile implemented by the Cortex-M family. The ARM Cortex-R family of microprocessors currently consist", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34007513", "url": "https://en.wikipedia.org/wiki/IEEE%20802.15.6", "title": "IEEE 802.15.6", "text": "The IEEE 802.15.6 standard is the latest international standard for Wireless Body Area Network (WBAN).\n\nWBAN supports a variety of real-time health monitoring and consumer electronics applications. The latest international standard for WBAN is the IEEE 802.15.6 standard which aims to provide an international standard for low power, short range, and extremely reliable wireless communication within the surrounding area of the human body, supporting a vast range of data rates for different applicat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34036910", "url": "https://en.wikipedia.org/wiki/WebSub", "title": "WebSub", "text": "WebSub (formerly PubSubHubbub) is an open protocol for distributed publish\u2013subscribe communication on the Internet. Initially designed to extend the Atom (and RSS) protocols for data feeds, the protocol can be applied to any data type (e.g. HTML, text, pictures, audio, video) as long as it is accessible via HTTP. Its main purpose is to provide real-time notifications of changes, which improves upon the typical situation where a client periodically polls the feed server at some arbitrary interval", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34052082", "url": "https://en.wikipedia.org/wiki/RAPIEnet", "title": "RAPIEnet", "text": "RAPIEnet (Real-time Automation Protocols for Industrial Ethernet) is Korea's first Ethernet international standard for real-time data transmission.\nAn Ethernet-based industrial networking protocol developed in-house by LSIS guarantees real-time transmission and is registered as an international standard. (IEC 61158-3-21: 2010, IEC 61158-4-21: 2010, IEC 61158-5-21: 2010, IEC 61158-6-21: 2010, IEC 61784-2: 2010, IEC 62439-7)\nAn embedded Ethernet switch with two ports enables the network expansion", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34052456", "url": "https://en.wikipedia.org/wiki/2012%20Pulitzer%20Prize", "title": "2012 Pulitzer Prize", "text": "The 2012 Pulitzer Prizes were awarded on April 16, 2012 by the Pulitzer Prize Board for work during the 2011 calendar year. The deadline for submitting entries was January 25, 2012. For the first time, all entries for journalism were required to be submitted electronically. In addition, the criteria for the Pulitzer Prize for Local Reporting has been revised to focus on real-time reporting of breaking news. For the eleventh time in Pulitzer's history (and the first since 1977), no book received", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34082863", "url": "https://en.wikipedia.org/wiki/Jesse%20Robbins", "title": "Jesse Robbins", "text": "Jesse Robbins (born 1978) is an American technology entrepreneur and firefighter notable for his investing career (including at Heavybit), contributions in wearable communication, web operations, DevOps, and emergency management.\n\nCareer\n\nCurrent work at Orion Labs on real-time voice communication \n\nRobbins is founder & CEO of Orion Labs, a startup which has created a \"Real-Life Star Trek Communicator\" called \"Onyx\". He says he \"wanted to bring heads-up, real-time communication to everybody\" to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34130470", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Tiberium%20Alliances", "title": "Command & Conquer: Tiberium Alliances", "text": "Command & Conquer: Tiberium Alliances is a military science fiction massively multiplayer online real-time strategy video game developed by Electronic Arts Phenomic and published by Electronic Arts as a free-to-play online-only browser game. The game entered it's Closed beta stage in December 2011. The game entered its open beta stage on March 15, 2012 and its official release was on May 24, requiring an Origin account to play.\n\nGameplay\nTiberium Alliances is a massively multiplayer online real-", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34196780", "url": "https://en.wikipedia.org/wiki/Live%20conferencing", "title": "Live conferencing", "text": "Live conferencing refers to the live streaming of interactive audio and video presentations, lectures, meetings, and seminars to the global audience with the help of a camera and conferencing equipment. Such equipment lets businesses connect and coordinate with remote workforces located in different region, engage them in productive real-time discussions, and record individual or group responses.\n\nLive conferencing enables presenters to transmit and share information beyond geographical boundar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34231324", "url": "https://en.wikipedia.org/wiki/Apteligent", "title": "Apteligent", "text": "Apteligent (previously known as Crittercism Inc.), based in San Francisco, California, is a mobile application providing both tools and app performance insights for mobile developers and product managers and mobile ecosystem performance data. The Apteligent platform provides a real-time global view of app diagnostics and crashes across iOS, Android, Hybrid, and Unity apps and is used in more than 8 billion monthly app launches by 23 million apps including the popular Pok\u00e9mon Go.\n\nMobile Ecosyste", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34231754", "url": "https://en.wikipedia.org/wiki/Tishk%20TV", "title": "Tishk TV", "text": "Tishk TV () was a Kurdish satellite TV channel established in 2006 broadcasting from Europe to Iran and Kurdistan. Tishk TV belonged to the Kurdistan Democratic Party of Iran (KDPI) and was a non-profit TV station with programs in Kurdish, Persian, Arabic and Baluchi languages. Tishk TV had reporters in many countries including Iraq where real-time reportings produced on issues related to human rights and democracy promotion in Iran and across the Kurdish regions in Iran, Iraq, Turkey and Syria.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34270042", "url": "https://en.wikipedia.org/wiki/Time%20stretch%20dispersive%20Fourier%20transform", "title": "Time stretch dispersive Fourier transform", "text": "Time stretch dispersive Fourier transform (TS-DFT), otherwise known as time-stretch transform (TST), temporal Fourier transform or photonic time-stretch (PTS) is a spectroscopy technique that uses optical dispersion instead of a grating or prism to separate the light wavelengths and analyze the optical spectrum in real-time. It employs group-velocity dispersion (GVD) to transform the spectrum of a broadband optical pulse into a time stretched temporal waveform. It is used to perform Fourier tran", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34272208", "url": "https://en.wikipedia.org/wiki/4%2B1%20Ensemble", "title": "4+1 Ensemble", "text": "4+1 Ensemble is an album by American keyboardist and composer Wayne Horvitz recorded in 1996 and released on the German Intuition label. The name of the group refers to its membership: four men playing standard musical instruments, plus an additional person processing their performances with various electronic effects in real-time.\n\nReception\nThe Allmusic review awarded the album 4 stars.\n\nTrack listing\n\nRecorded at Bear Creek Studios in Seattle, Washington in 1996\n\nPersonnel\nWayne Horvitz - pia", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34285508", "url": "https://en.wikipedia.org/wiki/Castle%20Story", "title": "Castle Story", "text": "Castle Story is a sandbox and real-time strategy game developed by Sauropod Studio. Funded through crowdfunding website Kickstarter in 2012, the game launched in September 2013 in early access, and was fully released in August 2017.\n\nGameplay \n\nIn Castle Story, the player is in control of workers called \"Bricktrons\" which can be directed to gather resources, build castles and fight enemies. The aim is to build a castle that can withstand attacks from creatures and other players. The game takes p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34321714", "url": "https://en.wikipedia.org/wiki/Star%20Reach%20%28video%20game%29", "title": "Star Reach (video game)", "text": "Star Reach is a real-time strategy video game for DOS released by Interplay in 1994. It was published as Space Federation in Europe.\n\nPlot\nThe purpose of the game is to lead one of seven species (humans and six other alien species) in a race to rule the universe, one galaxy at a time.\n\nGameplay\n\nReception\nA reviewer for Next Generation commented that though Star Reach \"attempts to bring the best elements of arcade play and strategy together\", it lacks any innovative or unique feature aside from ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34332903", "url": "https://en.wikipedia.org/wiki/King%20Arthur%20II%3A%20The%20Role-Playing%20Wargame", "title": "King Arthur II: The Role-Playing Wargame", "text": "King Arthur II: The Role-Playing Wargame is a real-time tactics and role-playing video game and a sequel to King Arthur: The Role-Playing Wargame, released online in Europe on September 20, 2011, and then worldwide in 2012. It was developed by NeocoreGames and published by Paradox Interactive. It blends elements of the real-time tactics, role-playing, and grand strategy genres into one.\n\nGameplay\n\nGameplay in King Arthur II is a mix of real-time strategy, role-playing, and grand strategy element", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34346707", "url": "https://en.wikipedia.org/wiki/Holomorphic%20Embedding%20Load-flow%20method", "title": "Holomorphic Embedding Load-flow method", "text": "The Holomorphic Embedding Load-flow Method (HELM) is a solution method for the power-flow equations of electrical power systems. Its main features are that it is direct (that is, non-iterative) and that it mathematically guarantees a consistent selection of the correct operative branch of the multivalued problem, also signalling the condition of voltage collapse when there is no solution. These properties are relevant not only for the reliability of existing off-line and real-time applications, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34354787", "url": "https://en.wikipedia.org/wiki/Madeon", "title": "Madeon", "text": "Hugo Pierre Leclercq (; born 30 May 1994), better known by his stage name Madeon (), is a French musician, DJ, record producer, singer and songwriter from Nantes, currently based in Los Angeles. He initially came to widespread public attention at 17 through a YouTube video, \"Pop Culture\", where he performed a mash-up of 39 different popular songs in real-time using a Novation Launchpad. It received millions of hits in its first few days of release. Leclercq has cited The Beatles and Daft Punk as", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34388355", "url": "https://en.wikipedia.org/wiki/Frictionless%20sharing", "title": "Frictionless sharing", "text": "Frictionless sharing refers to the transparent sharing of resources using social media services.\n\nThe term became popularised following Mark Zuckerberg's announcement at the F8 developers conference in 2011 in which he described developments to Facebook that would allow \"real-time serendipity in a friction-less experience\". \nFacebook applications that implemented such frictionless sharing included a news-sharing app developed by The Guardian.\nThe growth in importance is indicated by the ReadWrit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34418766", "url": "https://en.wikipedia.org/wiki/Ixigo", "title": "Ixigo", "text": "ixigo (pronounced \"ik-si-go\") is an Indian AI-based online travel portal, launched in 2007. Headquartered in Gurgaon, ixigo aggregates and compares real-time travel information, prices and availability for flights, trains, buses, and hotels, and allows ticket booking through its associate websites and apps.\n\nHistory \nixigo (Le Travenues Technology Pvt. Ltd.) was started by Rajnish Kumar and Aloke Bajpai in June 2007, with the launch of their flights meta-search website. In 2008, it introduced a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34420188", "url": "https://en.wikipedia.org/wiki/Furmins", "title": "Furmins", "text": "Furmins is a physics-based action puzzle game for iOS and PlayStation Vita.\n\nGameplay\nFurmins is a blend of physics-based \"set-up-and-go\" gameplay and real-time interaction. To complete each level, the player is required to herd the Furmins from the level's starting point to its end point \u2014in this case, a basket. This is accomplished by solving a puzzle which incorporates physical chain reactions between various items and the Furmins.\n\nSolving each puzzle is a two-step process: 1) \"Setup Mode\": ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34503273", "url": "https://en.wikipedia.org/wiki/EXtremeDB", "title": "EXtremeDB", "text": "eXtremeDB is a high performance, low-latency, ACID-compliant embedded database management system using an in-memory database system (IMDS) architecture and designed to be linked into C/C++ based programs. It works on Windows, Linux, and other real-time and embedded operating systems.\n\nHistory \nMcObject LLC introduced eXtremeDB in 2001, targeting embedded systems running in resource-constrained environments (i.e. with limited random-access memory and relatively low-powered central processing unit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34603054", "url": "https://en.wikipedia.org/wiki/Wargame%3A%20European%20Escalation", "title": "Wargame: European Escalation", "text": "Wargame: European Escalation is a real-time tactics video game developed by Eugen Systems and published by Focus Home Interactive, released on February 23, 2012. It is set in Europe during the Cold War, most specifically in the years 1975\u201385 with alternate history scenarios portraying open war between NATO and the Warsaw Pact.\n\nGameplay\nWargames playable factions are the Warsaw Pact, which is subdivided into the Soviet Union, Communist Poland, East Germany, and Czechoslovakia; and NATO, which is", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34638276", "url": "https://en.wikipedia.org/wiki/Back-off%20pattern", "title": "Back-off pattern", "text": "Back off pattern is a behavioral software design pattern that is used when the software developer wants to reduce the usage of system resources.\n\nOverview \nThe pattern typically does some kind of task that is not subject of real-time computing. An example would be the task of sending e-mails, where the end-user waiting several minutes is not a problem. The pattern design will typically implement worker thread that accesses a message queue that holds all unprocessed tasks and regularly check and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34642271", "url": "https://en.wikipedia.org/wiki/VenueWize", "title": "VenueWize", "text": "VenueWize is a web and mobile-based application created for event organizers. It lets event organizers collaborate on events, access real-time guest information during their events (via iPhone and iPad apps), track guest profitability and stay green.\n\nThe company started out by focusing on guest list creation and management by letting team members collaborate on lists which are then accessed by door managers using an iPhone. Since then, they ran an international pilot test in an attempt to best ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34730719", "url": "https://en.wikipedia.org/wiki/Kingdoms%20of%20Camelot", "title": "Kingdoms of Camelot", "text": "Kingdoms of Camelot is a massively multiplayer online real-time strategy browser game created by Canadian studio Kabam when it was named Watercooler Inc. It went into beta on November 2, 2009 and was released on November 6, 2009. On December 9, 2014, Kabam announced it was selling most of its web games, including Kingdoms of Camelot, to RockYou. The transfer formally happened at the beginning of April 2015.\n\nGame play\nEssentially a build and warfare game, Kingdoms of Camelot relies heavily on ti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34781030", "url": "https://en.wikipedia.org/wiki/Protecting%20Children%20from%20Internet%20Predators%20Act", "title": "Protecting Children from Internet Predators Act", "text": "The Protecting Children from Internet Predators Act (officially titled Bill C-30, originally titled Lawful Access Act) was a proposed amendment to the Criminal Code introduced by the Conservative government of Stephen Harper on February 14, 2012, during the 41st Canadian Parliament.\n\nThe bill would have granted authorities new powers to monitor and track the digital activities of Canadians in real-time, required service providers to log information about their customers and turn it over if reque", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34837845", "url": "https://en.wikipedia.org/wiki/Hermann%20Kopetz", "title": "Hermann Kopetz", "text": "Hermann Kopetz is a professor emeritus at Vienna University of Technology. He was named an IEEE Fellow in 1994 for contributions to fault-tolerant, real-time systems. He is a cofounder of the company TTTech.\n\nAwards\nWilhelm Exner Medal (2005).\n\nReferences\n\nTU Wien faculty\nLiving people\nFellow Members of the IEEE\nYear of birth missing (living people)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34916978", "url": "https://en.wikipedia.org/wiki/Merrick%20Systems%2C%20Inc.", "title": "Merrick Systems, Inc.", "text": "Merrick Systems, Inc. provides industrial information technologies for the midstream and upstream oil and gas industry. Merrick delivers integrated applications that include real-time surveillance and optimization; field operations management; field data capture; hydrocarbon production accounting; mobile computing for field and drilling operations and ruggedized RFID for drilling and asset management.\n\nMerrick employs nearly 80 people and is headquartered in Houston, Texas.\n\nMerrick\u2019s worldwide", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34950838", "url": "https://en.wikipedia.org/wiki/Social%20media%20and%20television", "title": "Social media and television", "text": "Social media and television broadcasting have a number of connections and interrelationships that have led to the phenomenon of Social Television, which is an emerging communication digital technology that centers around real-time interactivity involving digital media displayed on television. The main idea behind Social Television is to make television consumption a more active content experience for audiences. In the 2010s, social media platforms and websites allow for television shows to be ac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "34956453", "url": "https://en.wikipedia.org/wiki/Customer%20value%20maximization", "title": "Customer value maximization", "text": "Customer value maximization (CVM) is a real-time service model that, proponents say, goes beyond basic customer relationship management (CRM) capabilities, identifying and capturing maximum potential from prospects and existing customers.\n\nCustomer-centricity \n\nThe CVM framework evaluates current methods and effectiveness, makes changes where required, and sets up a measurement system that helps in evaluating effectiveness. The CVM framework operates as a continuous process in a closed loop.\n\nTh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35009804", "url": "https://en.wikipedia.org/wiki/Zenonia%204", "title": "Zenonia 4", "text": "Zenonia 4: Return of the Legend is an action role-playing game created, developed, and published by Gamevil for the Android and iOS. It is the sequel to Zenonia 3 and the fourth game in the Zenonia series. It was released on the App Store on December 22, 2011, on Google Play on February 13, 2012, and on the Amazon Appstore on May 4, 2012.\n\nGameplay\nZenonia 4 follows the same general gameplay formula of its predecessors, including real-time combat and exploration. You control the protagonist, Re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35030454", "url": "https://en.wikipedia.org/wiki/REX%20OS", "title": "REX OS", "text": "The REX Operating System (Real-time Executive Operating System) is a real-time operating system (RTOS) developed by Qualcomm for the ARM processor based mobile phone Dual-Mode Subscriber Station (DMSS) or Advanced Mode Subscriber Software (AMSS) development. As of 2007, most Korean cell phones ran on REX.\n\nREX is a combination of two operating systems: L4A Pistachio embedded microkernel and Iguana, with extensive modifications and extensions by Qualcomm and HTC.\n\nOriginally developed for the Int", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35061359", "url": "https://en.wikipedia.org/wiki/Sumo%20Logic", "title": "Sumo Logic", "text": "Sumo Logic, Inc. is a cloud-based machine data analytics company focusing on security, operations and BI usecases. It provides log management and analytics services that leverage machine-generated big data to deliver real-time IT insights. Sumo Logic was founded in April 2010 by ArcSight veterans Kumar Saurabh and Christian Beedgen, and is headquartered in Redwood City, California.\n\nOn September 17, 2020 Sumo Logic debuted on the NASDAQ stock exchange in its initial public offering as a public c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35067476", "url": "https://en.wikipedia.org/wiki/Healthsouk", "title": "Healthsouk", "text": "HealthSouk is the United States first health plan without monthly fees. It is a real-time pricing model for health services where fees update every 60 seconds. It allows medical providers to list their prices for different procedures as well as available appointment times.\n\nBusiness model\nUnlike discount plans or medical insurance, the patient does not pay any upfront cost to participate. In addition, the healthcare provider is never charged a monthly fee.\n\nCompany history\nHealthSouk was founded", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35186455", "url": "https://en.wikipedia.org/wiki/Future%20Airborne%20Capability%20Environment", "title": "Future Airborne Capability Environment", "text": "The Open Group Future Airborne Capability Environment (FACE Consortium) was formed in 2010 to define an open avionics environment for all military airborne platform types. Today, it is a real-time software-focused professional group made up of industry suppliers, customers, academia, and users. The FACE approach is a government-industry software standard and business strategy for acquisition of affordable software systems that promotes innovation and rapid integration of portable capabilities ac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35215882", "url": "https://en.wikipedia.org/wiki/Isothermal%20microcalorimetry", "title": "Isothermal microcalorimetry", "text": "Isothermal microcalorimetry (IMC) is a laboratory method for real-time monitoring and dynamic analysis of chemical, physical and biological processes. Over a period of hours or days, IMC determines the onset, rate, extent and energetics of such processes for specimens in small ampoules (e.g. 3\u201320\u00a0ml) at a constant set temperature (c. 15\u00a0\u00b0C\u2013150\u00a0\u00b0C).\n\nIMC accomplishes this dynamic analysis by measuring and recording vs. elapsed time the net rate of heat flow (\u03bcJ/s = \u03bcW) to or from the specimen amp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35225941", "url": "https://en.wikipedia.org/wiki/Epsio", "title": "Epsio", "text": "Epsio is a suite developed by the Belgian company EVS Broadcast Equipment which allows virtual graphic overlay insertions in real-time or in instant replays. All these effects can instantly be added with the Multicam (LSM) remote controller and are immediately available. Operators can also insert virtual advertisements allowing the field advertisements to adapt to the audience.\n\nGraphics\nEditorial graphics can be an offside line, the circle for the direct free kick, the distance to the goal or ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35236624", "url": "https://en.wikipedia.org/wiki/Sensor%20Observation%20Service", "title": "Sensor Observation Service", "text": "The Sensor Observation Service (SOS) is a web service to query real-time sensor data and sensor data time series and is part of the Sensor Web. The offered sensor data consists of data directly from the sensors, which are encoded in the Sensor Model Language (SensorML), and the measured values in the Observations and Measurements (O & M) encoding format. The web service as well as both file formats are open standards and specifications of the same name defined by the Open Geospatial Consortium (", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35286258", "url": "https://en.wikipedia.org/wiki/Men%20of%20War%3A%20Condemned%20Heroes", "title": "Men of War: Condemned Heroes", "text": "Men of War: Condemned Heroes is a real-time tactics / strategy game set during World War II. It tells the story of Soviet penal battalions formed under Joseph Stalin's infamous Order 227.\n\nReception\n\nMen of War: Condemned Heroes received a score of 57/100 on Metacritic from 12 reviews, indicating \"mixed or average\" reviews.\n\nGameSpot gave the game a \"mediocre\" score of 5/10, criticizing the repetition of mission objectives and its overall difficulty.\n\nReferences\n\nExternal links\n\n2012 video games", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35315815", "url": "https://en.wikipedia.org/wiki/Mob%20Rule", "title": "Mob Rule", "text": "Mob Rule (also known as Constructor: Street Wars and Street Wars: Constructor Underworld in Europe) is a real-time strategy video game for Microsoft Windows released in 1999 by Simon & Schuster and 3Studio. It is the successor to the 1997 video game Constructor. The goal of the game is to construct buildings and fight enemy teams in a Mafia-themed background. It was re-released on GOG.com in 2010 for Windows and in 2013 for MacOS.\n\nCritical reception \n\nThe game received mixed reviews according t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35316136", "url": "https://en.wikipedia.org/wiki/Garbage-first%20collector", "title": "Garbage-first collector", "text": "The Garbage-First Collector (G1) is a garbage collection algorithm introduced in the Oracle HotSpot Java virtual machine (JVM) 6 and supported from 7 Update 4. It was planned to replace Concurrent mark sweep collector (CMS) in JVM 7 and was made default in Java 9.\n\nGarbage collector\nGarbage-first (G1) collector is a server-style garbage collector, targeted for multiprocessors with large memories, that meets a soft real-time goal with high probability, while achieving high throughput. G1 preferen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35349168", "url": "https://en.wikipedia.org/wiki/Legend%20of%20Grimrock", "title": "Legend of Grimrock", "text": "Legend of Grimrock is an action role-playing game video game developed and published by Almost Human. The title is a 3D grid-based, real-time dungeon crawler based on the 1987 game Dungeon Master. It was originally released for Microsoft Windows in April 2012, and later ported for OS X and Linux in December 2012 and iOS in May 2015.\n\nLegend of Grimrock was the debut game of Almost Human, a four-man Finnish indie development team formed in February 2011, which self-financed the title's developmen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35411127", "url": "https://en.wikipedia.org/wiki/Jeff%20Wayne%27s%20The%20War%20of%20the%20Worlds", "title": "Jeff Wayne's The War of the Worlds", "text": "Jeff Wayne's The War of the Worlds may refer to:\n\nMusic\nJeff Wayne's Musical Version of The War of the Worlds, a 1978 concept album by Jeff Wayne\nHighlights from Jeff Wayne's Musical Version of The War of the Worlds, a 1981 compilation album by Jeff Wayne\nJeff Wayne's Musical Version of The War of the Worlds \u2013 The New Generation, a 2012 concept album by Jeff Wayne\n\nGames\nJeff Wayne's The War of the Worlds (1998 video game), a real-time strategy video game developed by Rage Software Limited for t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35498785", "url": "https://en.wikipedia.org/wiki/Pedagogy%203.0", "title": "Pedagogy 3.0", "text": "Pedagogy 3.0 is a neologism, developed in 2010 by Jim Vanides for the Hewlett Packard Catalyst Initiative. It refers to the attitudes, competencies and skills required by teachers and educators working in a Web 3.0 enabled world.\n\nWeb 3.0 is considered to extend the social aspects of Web 2.0, through its use of internet-enabled mobile devices, cloud computing, social networking, and cloud-based collaborative working tools (e.g. Google Apps), which facilitate real-time and asynchronous collaborat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35533169", "url": "https://en.wikipedia.org/wiki/MintChip", "title": "MintChip", "text": "MintChip is a digital currency that provides the underlying system to facilitate the exchange of value between consumers and merchants in real-time. It was designed to reduce the cost and risk of financial transactions. This technology was created by the Royal Canadian Mint, backed by the Government of Canada and denominated in a variety of fiat currencies. The Royal Canadian Mint announced the MintChip project in 2012 and simultaneously launched the MintChip Challenge contest to encourage devel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35535478", "url": "https://en.wikipedia.org/wiki/Port%20Royale%203%3A%20Pirates%20%26%20Merchants", "title": "Port Royale 3: Pirates & Merchants", "text": "Port Royale 3: Pirates & Merchants is the third installment to the business simulation game Port Royale: Gold, Power and Pirates and Port Royale 2. It is set in the Caribbean during the 16th and 17th centuries. Created by Kalypso Media which founded Gaming Minds Studios in 2009 after Ascaron Entertainment went bankrupt, it combines a business simulator with real-time battles and towns that can be owned, built, developed or razed. This is the 1st installment of the Port Royale Series done by Gami", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35544996", "url": "https://en.wikipedia.org/wiki/Uprising%202%3A%20Lead%20and%20Destroy", "title": "Uprising 2: Lead and Destroy", "text": "Uprising 2: Lead and Destroy is an action/real-time strategy video game developed by Cyclone Studios and published by 3DO on December 9, 1998 for Microsoft Windows. The game is a direct sequel to Uprising which was developed and published by the same companies. The game allows the player to again take control of the powerful Wraith command tank, and enter the fight with a ruthless horde of enemies called the Kri'iSara, who also appeared in the PlayStation port of the first game. Upon release, c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35568276", "url": "https://en.wikipedia.org/wiki/LocationSmart", "title": "LocationSmart", "text": "LocationSmart, originally called TechnoCom Location Platform, is a location-as-a-service (LaaS) company based in Carlsbad, California, that provides location APIs to enterprises and operates a secure, cloud-based and privacy-protected platform. In February 2015, it acquired a competitor, Locaid.\n\nLocationSmart provides near real-time location data for devices including smartphones, feature phones, tablets, M2M, IoT and other connected devices on Tier 1 and Tier 2 wireless networks in the U.S. an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35627762", "url": "https://en.wikipedia.org/wiki/Gemini%20Wars", "title": "Gemini Wars", "text": "Gemini Wars is a 2012 space real-time strategy computer game developed and published by American studio Camel101.\n\nHistory\nGemini Wars was released on June 8, 2012, and will be available on Microsoft Windows and OS X.\n\nStory\nIn the game, the player controls a fleet commander and rises up through the ranks of the US Federation Forces. Players begin with a small group of frigates. Players have to control battleships, carriers and planetary bases throughout space battles and boarding actions. Playe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35757363", "url": "https://en.wikipedia.org/wiki/Company%20of%20Heroes%202", "title": "Company of Heroes 2", "text": "Company of Heroes 2 is a real-time strategy video game developed by Relic Entertainment and published by Sega for Microsoft Windows, OS X, and Linux. It is the sequel to the 2006 game Company of Heroes. As with the original Company of Heroes, the game is set in World War II but with the focus on the Eastern Front, with players primarily controlling the side of the Soviet Red Army during various stages of the Eastern Front, from Operation Barbarossa to the Battle of Berlin. Company of Heroes 2 r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35886833", "url": "https://en.wikipedia.org/wiki/Sorry%20But%20I", "title": "Sorry But I", "text": "\"Sorry But I\" is a song and the first single by South Korean girl group C-REAL. The single was released on May 16, 2012. The song has been in the upper ranks of the charts since it was released, and it finally ranked 8th on Melon\u2019s real-time chart. It attracted attention as it entered the top ten with the songs of IU, Baek Ji-young, Girls' Generation-TTS, Sistar, Ulala Session, Park Jin-young, and Busker Busker.\n\nBackground\nThe song was produced by the same producer, Choi Kap Won and was also wr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35893987", "url": "https://en.wikipedia.org/wiki/The%20Aaron%20Sims%20Company", "title": "The Aaron Sims Company", "text": "Aaron Sims Creative is a studio in Los Angeles, California that creates visual effects for film, television and gaming. Founded in 2005 by Aaron Sims, it provides a variety of services including concept design and development, 3D printing, previs and real-time VFX, augmented and virtual reality, and video game development.\n\nBackground\nAaron Sims began his career as a special effects artist under Rick Baker and Stan Winston, where he helped develop visual-effects techniques that had a significant", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35924553", "url": "https://en.wikipedia.org/wiki/Swabr", "title": "Swabr", "text": "Swabr is an enterprise microblogging service for companies, organizational and educational institutions located in Berlin, Germany. The service launched in December 2010.\n\nSwabr combines elements from Facebook (restricted network) as well from Twitter (short messages) merging into one single communication. On swabr each company has its own closed and private network for employees with a verified email address for internal corporate communication in real-time.\n\nFeatures \nThe central elements of s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35934538", "url": "https://en.wikipedia.org/wiki/Collaborative%20project%20management", "title": "Collaborative project management", "text": "Collaborative project management is a method used to plan, coordinate, control, and monitor distributed and complex projects. It enables project teams to collaborate across departmental, corporate, and national boundaries and to master growing project complexity. Everybody in the project has access to the information in the project such as tasks, messages, and documents etc. This information is updated in real-time when changes occur.\nWith the advent of collaborative software more project teams ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35955203", "url": "https://en.wikipedia.org/wiki/Real-time%20communication", "title": "Real-time communication", "text": "Real-time communication is a category of software protocols and communication hardware media that gives real-time guarantees, which is necessary to support real-time guarantees of real-time computing.\n\nThe spacecraft communication network SpaceWire supports real-time communication.\n\nTime-Triggered Ethernet supports real-time synchronous communication in complex multi-hop Ethernet networks.\n\nSee also\n WebRTC\n\nReferences\n\nCommunication software\nVoice over IP\nMultimedia", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35967032", "url": "https://en.wikipedia.org/wiki/Scheduling%20analysis%20real-time%20systems", "title": "Scheduling analysis real-time systems", "text": "The term scheduling analysis in real-time computing includes the analysis and testing of the scheduler system and the algorithms used in real-time applications. In computer science, real-time scheduling analysis is the evaluation, testing and verification of the scheduling system and the algorithms used in real-time operations. For critical operations, a real-time system must be tested and verified for performance. \n\nA real-time scheduling System is composed of the scheduler, clock and the proce", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "35969004", "url": "https://en.wikipedia.org/wiki/Planet%20Earth%20Live%20%28TV%20series%29", "title": "Planet Earth Live (TV series)", "text": "Planet Earth Live is a live-action nature documentary screened on British television. Produced by the BBC Natural History Unit and broadcast in May 2012, the programme was presented by Richard Hammond and Julia Bradbury.\n\nFormat\nPlanet Earth Live featured real-time footage of young animals from five continents throughout the month of May. Broadcast three times per week, teams of nature experts and documentary makers monitored the activity of animals in their area, reporting back on the day's eve", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36023545", "url": "https://en.wikipedia.org/wiki/National-Report", "title": "National-Report", "text": "The National-Report is the Colombian music industry standard singles popularity chart tracking company. Chart rankings are based on radio play and issued weekly. The data are compiled by monitoring radio stations through an automated system in real-time. National-Report also monitors data from Venezuela and Ecuador. The company provides the Top 100 Nacional, with only the first 20 positions released to the public, and the rest of the chart only available for subscribers.\n\nRecords, milestones and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36095423", "url": "https://en.wikipedia.org/wiki/Mobile%20Suit%20Gundam%3A%20Try%20Age", "title": "Mobile Suit Gundam: Try Age", "text": "Mobile Suit Gundam: Try Age, is a card-based real-time strategy arcade game based on the Gundam. Released by Bandai in July 2011.\n\nSeries Featured\n Mobile Suit Gundam\n Mobile Suit Gundam: The 08th MS Team\n Mobile Suit Gundam 0083: Stardust Memory\n Mobile Suit Zeta Gundam\n Mobile Suit Gundam ZZ\n Mobile Suit Gundam: Char's Counterattack\n Mobile Suit Gundam 0080: War in the Pocket\n Mobile Suit Gundam 00\n Mobile Suit Gundam SEED\n Mobile Suit Gundam Unicorn\n Mobile Suit Gundam AGE\n Mobile Fighter G ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36189580", "url": "https://en.wikipedia.org/wiki/T3%20Live", "title": "T3 Live", "text": "T3Live is an online financial media network and educational platform that provides active traders with market analysis, real-time access to strategies, and in-depth training from seasoned professionals.\n\nHistory\nT3 Live was founded in 2007 as part of a remote training program for Nexis Capital who recognized the need for greater educational opportunities for young and aspiring traders. It is now a part of the existing umbrella of T3 Companies. It represents one of the three pillars of the T3 phi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36231990", "url": "https://en.wikipedia.org/wiki/Silicon%20Studio", "title": "Silicon Studio", "text": "Silicon Studio is a Japanese computer graphics technology company and video game developer based in Tokyo. As a technology company, Silicon Studio has produced several products in the 3D computer graphics field, including middleware software, such as a post-processing visual effects library called YEBIS, as well as general real-time graphics engines and game development engines, such as OROCHI and Mizuchi, a physically based rendering engine. As a video game developer, Silicon Studio has worked ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36244326", "url": "https://en.wikipedia.org/wiki/ADvantage%20Framework", "title": "ADvantage Framework", "text": "ADvantage Framework is a model-based systems engineering software platform used for a range of activities including building and operating real-time simulation-based lab test facilities for hardware-in-the-loop simulation purposes. ADvantage includes several desktop applications and run-time services software. The ADvantage run-time services combine a Real-Time Operating System (RTOS) layered on top of commercial computer equipment such as single board computers or standard PCs. The ADvantag", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36283415", "url": "https://en.wikipedia.org/wiki/Guidestones%20%28web%20series%29", "title": "Guidestones (web series)", "text": "Guidestones is a Canadian award-winning thriller web series created by Jay Ferguson. It premiered in February 2012, distributed via email subscription as a real-time, interactive mystery series. In June 2012, the series launched a linear, on-demand version. The episodes are also available through CTV, a Facebook application and Hulu.\n\nSeason Two is currently in post-production, and will debut in 2014.\n\nSeason One follows Sandy Rai (Supinder Wraich), who is living in Canada on exchange from India", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36305970", "url": "https://en.wikipedia.org/wiki/Total%20War%3A%20Rome%20II", "title": "Total War: Rome II", "text": "{{Infobox video game\n| title = Total War: Rome II\n| image = Total War Rome II cover.jpg\n| developer = Creative Assembly\n| publisher = Sega\n| designer = \n| composer = Richard Beddow\n| series = Total War\n| engine = Warscape\n| platforms = Microsoft Windows, macOS\n| released = Microsoft Windows macOS| genre = Turn-based strategy, real-time tactics\n| modes = Single-player, multiplayer\n}}Total War: Rome II' is a strategy video game developed by Creative", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36389725", "url": "https://en.wikipedia.org/wiki/The%20X%20Factor%20Digital%20Experience", "title": "The X Factor Digital Experience", "text": "The X Factor Digital Experience is a live digital pre-show produced by SYCOtv, FOX, Sony and FremantleMedia North America that aired in 2011 ahead of The X Factor. In addition to watching the program live on television, the audience was able to participate on multiple platforms in real-time.\n\nParticipants could start online with the streaming digital pre-show one hour prior to each live televised broadcast. Hosts Taryn Southern, Jim Cantiello and Dan Levy along with guests\u2014including judges Simon", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36389918", "url": "https://en.wikipedia.org/wiki/Incubus%20HQ%20Live", "title": "Incubus HQ Live", "text": "Incubus HQ Live is a participatory media exhibit and real-time documentary by American rock band Incubus in collaboration with Sony Music Entertainment and producer/director Marc Scarpa. Held in the summer of 2011, it allowed fan access and interaction with the band as they prepared for the release of their seventh studio album, If Not Now, When?. From June 30 to July 6 in a warehouse space in West Los Angeles, California, band members Brandon Boyd, Mike Einziger, Jose Pasillas, Ben Kenney and D", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36457556", "url": "https://en.wikipedia.org/wiki/I.%20Michael%20Ross", "title": "I. Michael Ross", "text": "Isaac Michael Ross is a Distinguished Professor and Program Director of Control and Optimization at the Naval Postgraduate School in Monterey, CA. He has published a highly-regarded textbook on optimal control theory and seminal papers in pseudospectral optimal control theory,\nenergy-sink theory, the optimization and deflection of near-Earth asteroids and comets,\nrobotics, attitude dynamics and control, orbital mechanics, real-time optimal control and \nunscented optimal control. The Kang-Ross-", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36531926", "url": "https://en.wikipedia.org/wiki/Pfinder", "title": "Pfinder", "text": "Pfinder is a computer vision system which detects features in video images in order to recognize human figures and their movements and gestures. Pfinder was designed by Wren, et al. of the MIT Media Laboratory in 1997. As described by its authors, Pfinder is a \"real-time system for tracking people and interpreting their behavior\". The system improves upon previous works by not only identifying the boundaries of a person in the image, but also analyzing the regions inside the boundaries and re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36549053", "url": "https://en.wikipedia.org/wiki/Star%20Sonata", "title": "Star Sonata", "text": "Star Sonata is a space-themed massively multiplayer online role-playing game (MMO) by American studio Star Sonata LLC released in 2004 that combines elements of action games and real-time strategy games such as real-time ship-to-ship combat and galactic conquest.\n\nThe game offers complex and involved commerce, construction and team systems. The goal for players in Star Sonata is to bring their team to domination and claim the seat of Emperor. Star Sonata belongs to the space opera genre establis", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36566772", "url": "https://en.wikipedia.org/wiki/Impire", "title": "Impire", "text": "Impire is a real-time strategy video game developed by Cyanide Studios and published by Paradox Interactive, and released for the PC on February 14, 2013.\n\nGameplay\nInitial press reactions to Impire drew comparisons with Bullfrog Productions's Dungeon Keeper, a real-time strategy game released in 1997 that received widespread critical acclaim. Alongside Dungeon Keeper, Impire similarly grants the player command over a subterranean empire, with the ability to construct buildings, recruit monsters", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36719401", "url": "https://en.wikipedia.org/wiki/European%20Academic%20and%20Research%20Network", "title": "European Academic and Research Network", "text": "The European Academic and Research Network (EARN) was a computer network connecting universities and research institutions across Europe, and was connected in 1983 via transatlantic circuits and a gateway funded by IBM to BITNET, its peer in the United States.\n\nHistory \nServices available on EARN/BITNET included electronic mail, file transfer, real-time terminal messages, and access to EARN server machines which provided information retrieval services. Gateways existed from EARN to the ARPA Inte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36745625", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%20%28cancelled%20video%20game%29", "title": "Command & Conquer (cancelled video game)", "text": "Command & Conquer (previously known as Command & Conquer: Generals 2) is a cancelled real-time strategy video game in the Command & Conquer series. It was being developed by the now-closed video game studio Victory Games for Microsoft Windows. The game was set to use the Frostbite 3 engine and would have introduced downloadable content to the series. It was supposed to be the first game in the series to be developed by Victory Games, making them the series' third developer after Westwood Studios", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36751831", "url": "https://en.wikipedia.org/wiki/Land%20Air%20Sea%20Warfare", "title": "Land Air Sea Warfare", "text": "Land Air Sea Warfare (abbreviated as LASW) is a real-time strategy game developed by Isotope 244. It is the sequel to Machines at War and the predecessor of Machines at War 3. LASW was released in 2010 for Microsoft Windows, Android, Mac OS X, iOS (iPhone/iPod Touch/iPad) and Windows Mobile. It features gameplay similar to other RTS titles like Command & Conquer: Red Alert, Age of Empires, StarCraft, Warcraft, and Supreme Commander.The game is going to be ported on Ouya on Q1 2015.\n\nGameplay \nWh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36754007", "url": "https://en.wikipedia.org/wiki/Krater%20%28video%20game%29", "title": "Krater (video game)", "text": "Krater is a role-playing video game for Microsoft Windows. Fatshark developed the game following the studio's moderate success after developing Lead and Gold: Gangs of the Wild West and other titles.\n\nKrater was released in 2012 via the Steam digital distribution platform.\n\nGameplay\n\nKrater is a squad-based real-time strategy role-playing game. The player controls a team of gas masked survivalists in a post-apocalyptic Sweden. Players venture in a post-apocalyptic world scoured by a nuclear war.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36755364", "url": "https://en.wikipedia.org/wiki/RTP-MIDI", "title": "RTP-MIDI", "text": "RTP-MIDI (also known as AppleMIDI) is a protocol to transport MIDI messages within RTP (Real-time Protocol) packets over Ethernet and WiFi networks. It is completely open and free (no license is needed), and is compatible both with LAN and WAN application fields. Compared to MIDI 1.0, RTP-MIDI includes new features like session management, device synchronization and detection of lost packets, with automatic regeneration of lost data. RTP-MIDI is compatible with real-time applications, and suppor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36773607", "url": "https://en.wikipedia.org/wiki/Planetary%20Annihilation", "title": "Planetary Annihilation", "text": "Planetary Annihilation is a real-time strategy PC game originally developed by Uber Entertainment, whose staff included several video game industry veterans who worked on Total Annihilation and Supreme Commander. The game was released in 2014, and the stand-alone expansion Planetary Annihilation: Titans was released in 2015.\n\nAs of February 2021, Planetary Annihilation Inc. maintains development of both Planetary Annihilation and Planetary Annihilation: Titans via ongoing content additions and b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36959063", "url": "https://en.wikipedia.org/wiki/Legends%20of%20Pegasus", "title": "Legends of Pegasus", "text": "Legends of Pegasus is a turn-based, real-time strategy 4X game developed by now defunct German company NovaCore Studios, and published by Kalypso Media.\n\nPlot\nIn 2281, .... discovered a new spaceship engine so they could explore the universe. Humanity built spaceships, colonized faraway worlds and started terraforming others in order to settle on planets like Earth. While exploring the universe, Humanity came together to unite. But soon enough, Man's warlike nature got the better of Humanity, ag", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "36973341", "url": "https://en.wikipedia.org/wiki/FTL%3A%20Faster%20Than%20Light", "title": "FTL: Faster Than Light", "text": "FTL: Faster Than Light is a space-based top-down real-time strategy roguelike game created by indie developer Subset Games, which was released for Microsoft Windows, macOS and Linux in September 2012. In the game, the player controls the crew of a single spacecraft, holding critical information to be delivered to an allied fleet, while being pursued by a large rebel fleet. The player must guide the spacecraft over eight sectors, each with planetary systems and events procedurally generated in a ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37001938", "url": "https://en.wikipedia.org/wiki/Ted%20Myerson", "title": "Ted Myerson", "text": "Ted Nathan Myerson (born 1975) is an American entrepreneur and business executive who holds two U.S. patents for innovations in real-time risk management and data aggregation. Myerson coined the term \u201cnaked access\u201d in 2009, calling on the SEC to ban it. He was quoted in the SEC Market Access Rule.\n\nFTEN Inc\n\nMyerson founded the software startup FTEN Inc. in September 2001 at age 26, and sold it to The NASDAQ OMX Group for an undisclosed nine figures in December 2010, remaining in place as CEO. F", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37014888", "url": "https://en.wikipedia.org/wiki/Advanced%20fire%20information%20system", "title": "Advanced fire information system", "text": "The advanced fire information system (AFIS) provides information on current and historical fires detected by sensors on Earth observation satellites, e.g. NASA MODIS, EUMETSAT MSG, GOES, NPP, etc. covering multiple regions across the globe. The system provides monitoring of active fire on a web-based map and delivers near real-time alerts to registered users when a fire is detected within their specified areas of interest via email, SMS, XMPP, etc.\n\nThe system started as a research project at th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37017979", "url": "https://en.wikipedia.org/wiki/Plague%20Inc.", "title": "Plague Inc.", "text": "Plague Inc. is a real-time strategy simulation video game, developed and published by UK-based independent video game studio Ndemic Creations. The player creates and evolves a pathogen in an effort to annihilate the human population with a deadly pandemic. The game uses an epidemic model with a complex and realistic set of variables to simulate the spread and severity of the plague. It was released on 26 May 2012 for iOS and Microsoft Windows, 4 October 2012 for Android and \n2015 for Windows Ph", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37046489", "url": "https://en.wikipedia.org/wiki/Boundary%20%28company%29", "title": "Boundary (company)", "text": "Boundary is an Application Performance Management (APM) company based in San Francisco, California. Boundary\u2019s APM solution, also called Boundary, is delivered in a software as a service (SaaS) model. Boundary\u2019s APM software can monitor applications that are running in cloud, on-premises, or hybrid environments. The software displays data as a real-time visual map so that IT managers can see changes to their systems. The application runs on Windows and Linux operating systems.\n\nHistory\n\nBoundar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37059137", "url": "https://en.wikipedia.org/wiki/CORA%20dataset", "title": "CORA dataset", "text": "CORA (standing for Coriolis Ocean database ReAnalysis) is a global oceanographic temperature and salinity dataset produced and maintained by the French institute IFREMER. Most of those data are real-time data coming from different types of platforms such as research vessels, profilers, underwater gliders, drifting buoys, moored buoys, sea mammals and ships of opportunity.\n\nDescription \nThis in-situ dataset produced by the French institute Ifremer in the framework of the European project MyOcean ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37059626", "url": "https://en.wikipedia.org/wiki/Coriolis%20%28project%29", "title": "Coriolis (project)", "text": "Coriolis involves 7 institutes in operational oceanography in France (CNES, CNRS, Ifremer, IPEV, IRD, M\u00e9t\u00e9o-France, Shom) decided in 2001 to joint their efforts within Coriolis in order to:\n\n organise and maintain data acquisition in real-time and delayed mode of in-situ measurements necessary for operational oceanography.\n Set up an operational in-situ data centre,\n develop and improve the technology necessary for operational oceanography.\n\nContext \nData useful for operational oceanography, are", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37110580", "url": "https://en.wikipedia.org/wiki/PlanGrid", "title": "PlanGrid", "text": "PlanGrid is a construction productivity software. The platform provides real-time updates and seamless file synchronization over Wi-Fi and cellular networks. PlanGrid replaces paper blueprints, brings the benefits of version control to construction teams, and is a collaborative platform for sharing construction information like field markups, progress photos and issues tracking.\n\nPlanGrid is a venture capital-backed company based in San Francisco, California that creates construction software f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37128225", "url": "https://en.wikipedia.org/wiki/Skymotion", "title": "Skymotion", "text": "SkyMotion was a weather forecasting mobile application developed by Canadian firm Sky Motion Research Inc. Its main suite of mobile applications, SkyMotion, was first released for Apple's iOS system in August 2012. The firm has since designed and released a version for Android operating systems, as well as a desktop version.\n\nSkyMotion tracks and predicts all precipitation in the United States and Canada in real-time, using Doppler weather radars and other weather observation tools. It current", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37144199", "url": "https://en.wikipedia.org/wiki/Ragnarok%20Odyssey", "title": "Ragnarok Odyssey", "text": "is a role-playing video game for the PlayStation Vita system. It is based on the universe of the MMORPG Ragnarok Online, containing many elements of Norse mythology. It was released in February 2012 within Japan, August 21, 2012 in South Korea, October 30, 2012 in North America and February 20, 2013 in Europe. An updated version titled Ragnarok Odyssey Ace has been released on PlayStation Vita and PlayStation 3.\n\nGameplay\nRagnarok Odyssey is a real-time action RPG in similar vein to the series M", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37194754", "url": "https://en.wikipedia.org/wiki/Ripple%20%28payment%20protocol%29", "title": "Ripple (payment protocol)", "text": "Ripple is a real-time gross settlement system, currency exchange and remittance network created by Ripple Labs Inc., a US-based technology company. Released in 2012, Ripple is built upon a distributed open source protocol, and supports tokens representing fiat currency, cryptocurrency, commodities, or other units of value such as frequent flier miles or mobile minutes. Ripple purports to enable \"secure, instantly and nearly free global financial transactions of any size with no chargebacks\". Th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37195381", "url": "https://en.wikipedia.org/wiki/Isotope%20244", "title": "Isotope 244", "text": "Isotope 244 is a video game developer, based in the USA. It was founded by James Bryant in 1999. Isotope 244 is best known for developing retro remakes and real-time strategy genres for both desktop and mobile devices. Isotope 244 was also a leading developer of 3D screensavers in the early 2000s. The company received several mentions for its retrogaming and real-time strategy games, above all on portable platforms.\n\nHistory \n\nAtomic Cannon Pocket was a notable turn-based strategy game available", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37231994", "url": "https://en.wikipedia.org/wiki/3D%20Wayfinder", "title": "3D Wayfinder", "text": "3D Wayfinder is an indoor wayfinding software and service used to help visitors to navigate in large public buildings (shopping centers, airports, train stations, hospitals, universities etc.)\n3D Wayfinder uses a 3D floor plans of a building and renders it in real-time. It displays interactive information layers. Software can be used on interactive kiosks or as a mobile application.\n\n3D Wayfinder enables users to visualize the shortest path from users' position to searched location. At the same ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37279471", "url": "https://en.wikipedia.org/wiki/VSee", "title": "VSee", "text": "VSee is a proprietary low-bandwidth, group video chat and screen-sharing software tool. It came out of a Stanford University PhD project addressing the problem of making virtual teamwork easy and conveying trust over video.\n\nThe service allows multiple users in various locations to communicate in real-time by video and audio. Its interface is able to concurrently display video faces and allow users annotate on shared screen content. VSee sends video at rates as low as 50 kbit/s and is capable ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37281085", "url": "https://en.wikipedia.org/wiki/ObjectDatabase%2B%2B", "title": "ObjectDatabase++", "text": "ObjectDatabase++ (ODBPP) is an embeddable object-oriented database designed for server applications that require minimal external maintenance. It is written in C++ as a real-time ISAM level database with the ability to auto recover from system crashes while maintaining database integrity. Its unique transaction process allows for maintenance of both the indexes and tables, preventing double allocation of index entries that could prohibit rollback of transactions.\n\nFeatures of ODBPP include: full", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37293330", "url": "https://en.wikipedia.org/wiki/Endomicroscopy", "title": "Endomicroscopy", "text": "Endomicroscopy is a technique for obtaining histology-like images from inside the human body in real-time, a process known as \u2018optical biopsy\u2019. It generally refers to fluorescence confocal microscopy, although multi-photon microscopy and optical coherence tomography have also been adapted for endoscopic use. Commercially available clinical and pre-clinical endomicroscopes can achieve a resolution on the order of a micrometre, have a field-of-view of several hundred \u00b5m, and are compatible with fl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37325258", "url": "https://en.wikipedia.org/wiki/List%20of%20number-one%20songs%20of%202012%20%28Colombia%29", "title": "List of number-one songs of 2012 (Colombia)", "text": "This is a list of the National-Report Top 100 Nacional number-one songs of 2012. Chart rankings are based on radio play and are issued weekly. The data is compiled monitoring radio stations through an automated system in real-time.\n\nNumber ones by week\n\nReferences \n\n \n\nNumber-one hits\nColombia\nColombian record charts", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37354888", "url": "https://en.wikipedia.org/wiki/Bauhaus%20Entertainment", "title": "Bauhaus Entertainment", "text": "is a Japanese video game developer. Created in 2006 by the human resource agency Imagica DigitalScape (part of Imagica Robot Holdings Inc.), both merged in 2009 in order to be able to diversify its services spectrum. Bauhaus Entertainment has helped with the creation of over a dozen videogames from well known franchises. The company usually takes part in the creation of character modelling, background modelling, real-time animation and cutscene animation of large games. Bauhaus specializes in ke", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37375417", "url": "https://en.wikipedia.org/wiki/IBM%20System/360%20Model%2044", "title": "IBM System/360 Model 44", "text": "The IBM System/360 Model 44 is a specialized member of the IBM System/360 family, with a variant of the System/360 computer architecture, designed for scientific computing, real-time computing, process control and numerical control (NC).\n\nThe Model 44 was announced August 16, 1965 and withdrawn September 24, 1973.\n\nArchitecture\nThe base Model 44 lacks the storage-to-storage character and decimal instruction sets of a standard System/360, however an \"extended instruction set\" feature was availabl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37416629", "url": "https://en.wikipedia.org/wiki/KDE%20Telepathy", "title": "KDE Telepathy", "text": "KDE Telepathy is an instant messaging (IM) and voice over IP (VoIP) client which supports text, voice, video, file transfers, and inter-application communication over various IM protocols. It uses the Telepathy framework as its back-end. It is the slated replacement for Kopete, and its main focus is the integration between different components of the KDE Software Compilation that may benefit from real-time communication and collaboration features.\n\nThemes\n\nKDE Telepathy has support for Adium th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37484221", "url": "https://en.wikipedia.org/wiki/Helldorado%20%28video%20game%29", "title": "Helldorado (video game)", "text": "Helldorado is a real-time tactics video game. It is the spin-off/sequel to the 2006 game Desperados 2: Cooper's Revenge, continuing a plot development introduced in the final sequence of that game.\n\nPlot\nAngel Face's widow kidnaps and poisons Doc McCoy, and unless John does some 'menial' tasks for her, she will leave McCoy to die. These menial tasks inevitably brand Cooper and his friends as criminals, since they involve robbing a bank and stealing a train full of U.S. Army weapons. While Cooper", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37550399", "url": "https://en.wikipedia.org/wiki/Reallusion", "title": "Reallusion", "text": "Reallusion is a 2D and 3D character creation and animation software developer with tools from cartoon characters to digital humans and animation pipelines for films, real-time engines, video games, virtual production, archvis.\n\nThe character is core to Reallusion software in both 2D and 3D animation. The current releases from Reallusion, Character Creator 3, the Headshot plugin, iClone 7, Motion Live and 3DXchange is the Reallusion digital human pipeline with character creation, animation, motio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37552574", "url": "https://en.wikipedia.org/wiki/GoPago", "title": "GoPago", "text": "GoPago (pronounced \u2018go\u2019-\u2019PAY\u2019-\u2019go\u2019) was a cloud-based mobile payment platform with an integrated point of sale system, based in Pasadena, CA. GoPago's payment platform allows customers to purchase orders in advance of arriving at brick-and-mortar merchants and merchants to manage orders in real-time. In August 2012, GoPago released GoPago LIVE, an application-based tablet point of sale system, which are free to merchants. GoPago's mobile payments platform is cloud-based, which allows transaction", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37564140", "url": "https://en.wikipedia.org/wiki/Light%20Table%20%28software%29", "title": "Light Table (software)", "text": "Light Table is an integrated development environment for software engineering developed by Chris Granger and Robert Attorri. It features real-time feedback allowing instant execution, debugging and access to documentation. The instant feedback provides an execution environment intended to help developing abstractions.\n\nThe development team attempted to create a program which shows the programmer what the effects of their additions are in real-time, rather than requiring them to work out the effe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37573113", "url": "https://en.wikipedia.org/wiki/Video%20spectroscopy", "title": "Video spectroscopy", "text": "Video spectroscopy combines spectroscopic measurements with video technique. This technology has resulted from recent developments in hyperspectral imaging. A video capable imaging spectrometer can work like a camcorder and provide full frame spectral images in real-time that enables advanced (vehicle based) mobility and hand-held imaging spectroscopy. Unlike hyperspectral line scanners, a video spectrometer can spectrally capture randomly and quickly moving objects and processes. The product of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37601885", "url": "https://en.wikipedia.org/wiki/Continuous%20noninvasive%20arterial%20pressure", "title": "Continuous noninvasive arterial pressure", "text": "Continuous noninvasive arterial pressure (CNAP) is the method of measuring arterial blood pressure in real-time without any interruptions (continuously) and without cannulating the human body (noninvasive).\n\nBenefit of CNAP technology \nContinuous noninvasive arterial blood pressure measurement (CNAP) combines the advantages of the following two clinical \u201cgold standards\u201d: it measures blood pressure (BP) continuously in real-time like the invasive arterial catheter system (IBP) and it is non-invas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37629890", "url": "https://en.wikipedia.org/wiki/Dornier%20DO-960", "title": "Dornier DO-960", "text": "The Dornier DO-960 was a hybrid computer designed for the Dornier Do 31 experimental VTOL aircraft.\n\nThe hybrid approach was necessary because the computations for controlling VTOL were not feasible with digital computers available at that time. Vertical take-off requires solving complex differential equations in real-time. The DO-960 incorporates both digital computer and analog computer elements. The analog units are fit for solving computationally challenging differential equations, while the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37635058", "url": "https://en.wikipedia.org/wiki/Supremacy%201914", "title": "Supremacy 1914", "text": "Supremacy 1914 is a player real-time strategy browser game created and published by German studio Bytro Labs, in which the player manages one of the countries in the world during World War I. The player competes with countries controlled by other players playing the same game and with countries controlled by the computer. Resource management, province upgrades, coalitions and alliances play key roles in the game, in addition to the conquest aspect. The main view of the game is a map that could b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37658000", "url": "https://en.wikipedia.org/wiki/MyTracks", "title": "MyTracks", "text": "MyTracks was a GPS tracking application that ran on Android. The application used a device's GPS to collect data, allowing real-time review of path, speed, distance, and elevation. Later, this data could be saved to Google Maps, Google Fusion Tables, or Google Docs and shared with Google+, Facebook, or Twitter. The application also allowed a user to record annotations along the path, hear periodic voice announcements of progress, and sync with select third-party bio-metric sensors.\n\nGoogle has ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37694108", "url": "https://en.wikipedia.org/wiki/Machines%20at%20War%203", "title": "Machines at War 3", "text": "Machines at War 3 is a real-time strategy video game developed by Isotope 244 and published in September 2012 for Windows and on November 10, 2012 for Mac OS X. It is the direct successor of Land Air Sea Warfare and is the third part of Machines at War.\n\nGameplay \n\nThe gameplay is inspired by the seminal real-time strategy game series Command & Conquer. Where its direct predecessor Land Sea Warfare added naval units, Machines at War 3 adds infantry units, campaign missions and the long anticipa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37698148", "url": "https://en.wikipedia.org/wiki/NuttX", "title": "NuttX", "text": "NuttX is a real-time operating system (RTOS) with an emphasis on technical standards compliance and small size. Scalable from 8-bit to 64-bit microcontroller environments, the main governing standards in NuttX are from the Portable Operating System Interface (POSIX) and the American National Standards Institute (ANSI). Further standard application programming interfaces (APIs) from Unix and other common RTOSes (such as VxWorks) are adopted for functions unavailable under these standards, or inap", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37766195", "url": "https://en.wikipedia.org/wiki/Run-time%20estimation%20of%20system%20and%20sub-system%20level%20power%20consumption", "title": "Run-time estimation of system and sub-system level power consumption", "text": "Electronic systems\u2019 power consumption has been a real challenge for Hardware and Software designers as well as users especially in portable devices like cell phones and laptop computers. Power consumption also has been an issue for many industries that use computer systems heavily such as Internet service providers using servers or companies with many employees using computers and other computational devices. Many different approaches (during design of HW, SW or real-time estimation) have been d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37868931", "url": "https://en.wikipedia.org/wiki/AirMech%20%28soundtrack%29", "title": "AirMech (soundtrack)", "text": "AirMech is a video game soundtrack album by Vancouver industrial band Front Line Assembly. The album was released by Carbon Games in 2012 as the soundtrack for free-to-play real-time strategy game AirMech.\n\nRelease\nAirMech was released as limited edition CD album and digital download. Each item of the CD version contained a code which granted access to exclusive game content and design. Canadian label Artoffact Records re-released AirMech in 2014 as double vinyl in different variations.\n\nBackgro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37893492", "url": "https://en.wikipedia.org/wiki/War%20for%20the%20Overworld", "title": "War for the Overworld", "text": "War for the Overworld is a real-time strategy video game developed by Subterranean Games, which changed its name to Brightrock Games based in Brighton, UK. The game started as a crowdfunding campaign on Kickstarter, which ran from November 29, 2012, to January 3, 2013. In the game, players build dungeons containing deadly traps to kill adventuring heroes that enter. The game is inspired by Dungeon Keeper, StarCraft, Overlord, and Evil Genius. It includes a campaign, sandbox mode, and online mult", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37967171", "url": "https://en.wikipedia.org/wiki/Mechanized%20Assault%20%26%20Exploration", "title": "Mechanized Assault & Exploration", "text": "M.A.X.: Mechanized Assault & Exploration is a 1996 hybrid real-time/turn-based strategy video game for PC (MS-DOS, Windows) developed and published by Interplay Productions. The goal is to colonize newly-discovered planets, controlling the resources found there, and defend the colony against other rival factions.\n\nReception\n\nAccording to Interplay, global sales of M.A.X. surpassed 150,000 copies by June 1998.\n\nM.A.X. was met with overwhelmingly positive reviews. Writing for Computer Gaming World", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37975023", "url": "https://en.wikipedia.org/wiki/Satellite%20crop%20monitoring", "title": "Satellite crop monitoring", "text": "Satellite crop monitoring is the technology which facilitates real-time crop vegetation index monitoring via spectral analysis of high resolution satellite images for different fields and crops which enables to track positive and negative dynamics of crop development. The difference in vegetation index informs about single-crop development disproportions that speaks for the necessity of additional agriculture works on particular field zones\u2014that is because satellite crop monitoring belongs to pr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "37997242", "url": "https://en.wikipedia.org/wiki/Road%20Weather%20Information%20System", "title": "Road Weather Information System", "text": "A Road Weather Information System (RWIS) comprises automatic weather stations (AWS) (often technically referred to as Environmental Sensor Stations (ESS) as they also cover non-meteorological variables) in the field, a communication system for data transfer, and central systems to collect field data from numerous ESS. These stations measure real-time atmospheric parameters, pavement conditions, water level conditions, visibility, and sometimes other variables. Central RWIS hardware and software ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38037339", "url": "https://en.wikipedia.org/wiki/BEAST%20%28music%20composition%29", "title": "BEAST (music composition)", "text": "Beast is a music composition and modular synthesis application released as free software under the GNU GPL and GNU LGPL licenses, that runs under Unix. It supports MIDI, WAV/AIFF/MP3/OggVorbis/etc audio files and LADSPA modules. It is capable of multitrack editing, unlimited undo/redo support, real-time synthesis support, 32-bit audio rendering, full duplex support, multiprocessor support, conditional MMX/SSE utilisation for plugins, precise timing down to sample granularity, on-demand and parti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38104854", "url": "https://en.wikipedia.org/wiki/Stronghold%20Crusader%20II", "title": "Stronghold Crusader II", "text": "Stronghold Crusader II is a real-time strategy video game, developed by Firefly Studios, part of the Stronghold series. It was released on September 23, 2014. It is the sequel to their 2002 title Stronghold: Crusader.\n\nGameplay \nThe first gameplay demo was given to journalists at E3 2013 and the first gameplay trailer, showing pre-alpha footage, was released at Gamescom 2013. Both the demo and trailer showed off several new aspects that the game will introduce to the series.\n\nFeatures \nThe game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38113592", "url": "https://en.wikipedia.org/wiki/Thomas%20Webb%20%28artist%29", "title": "Thomas Webb (artist)", "text": "Thomas Webb (born Thomas Webb; 11 December 1991) is a contemporary artist, hacker, video game developer, TEDx speaker and magician. The theme of his work explores how society interacts with technology and the effect of social media and AI on mental health. His artwork is programmed into electronic installations using real-time data sources, AI and computer algorithms.\n\nEarly life\nWebb grew up in Ashford, Kent, United Kingdom. As a child, he attended Friars School which later became Ashford Schoo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38121494", "url": "https://en.wikipedia.org/wiki/List%20of%20number-one%20songs%20of%202013%20%28Colombia%29", "title": "List of number-one songs of 2013 (Colombia)", "text": "This is a list of the National-Report Top 100 Nacional number-one songs of 2013. Chart rankings are based on radio play and are issued weekly. The data is compiled monitoring radio stations through an automated system in real-time.\n\nNumber ones by week\n\nReferences\n\n \n\nNumber-one songs\nColombia\nColombian record charts", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38133834", "url": "https://en.wikipedia.org/wiki/Defenders%20of%20Ardania", "title": "Defenders of Ardania", "text": "Defenders of Ardania is a hybrid tower defense and real-time strategy video game for Microsoft Windows, iOS, Xbox 360, and PlayStation 3. It was developed by Most Wanted Entertainment and published by Deep Silver and Paradox Interactive. The game was released December 6, 2011 for iOS and on March 14, 2012 on all other platforms. The game's iOS release was well received by some critics and poorly received by others. A subsequent release on the PC, Xbox 360, and PlayStation 3 was significantly les", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38144851", "url": "https://en.wikipedia.org/wiki/Aerospike%20%28company%29", "title": "Aerospike (company)", "text": "Aerospike is the company behind the Aerospike open source NoSQL distributed database management system. Citrusleaf, a Mountain View, California based company which rebranded to Aerospike in August 2012, announced the product in 2011. The software is used by developers to deploy real-time big data applications.\n\nHistory\nCitrusleaf, was founded in 2009 by CTO Brian Bulkowski and vice president of engineering and operations Srini V. Srinivasan. The company rebranded to Aerospike in 2012.\nThe databa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38193458", "url": "https://en.wikipedia.org/wiki/Greentree%20Business%20Software", "title": "Greentree Business Software", "text": "Greentree (now MYOB Greentree) is an ERP business software company based in Australia and New Zealand. The MYOB Greentree product is made for medium-sized organisations and distributed through a partner model.\n\nGreentree is not industry vertical specific but provides capability across a wide range of market sectors. Its main markets are in Australia and New Zealand and growing in the UK, USA and the Pacific Islands.\n\nGreentree operates in real-time and uses an integrated single design architectu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38227448", "url": "https://en.wikipedia.org/wiki/Reputation%20marketing", "title": "Reputation marketing", "text": "The reputation marketing field has evolved from the marriage of the fields reputation management and brand marketing, and involves a brand's reputation being vetted online in real-time by consumers leaving online reviews and citing experiences on social networking sites. With the popularity of social media in the new millennium reputation, vetting has turned from word-of-mouth to the digital platform, forcing businesses to take active measures to stay competitive and profitable.\n\nImpact\nA study ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38235594", "url": "https://en.wikipedia.org/wiki/Inter-cell%20interference%20coordination", "title": "Inter-cell interference coordination", "text": "In mobile telecommunications, inter-cell interference coordination (ICIC) techniques apply restrictions to the radio resource management (RRM) block, improving favorable channel conditions across subsets of users that are severely impacted by the interference, and thus attaining high spectral efficiency. This coordinated resource management can be achieved through fixed, adaptive or real-time coordination with the help of additional inter-cell signaling in which the signaling rate can vary acco", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38278635", "url": "https://en.wikipedia.org/wiki/Star%20Wars%20Combine", "title": "Star Wars Combine", "text": "Star Wars Combine (SWC) is a real-time massively multiplayer online browser game, set in the Star Wars universe as a persistent world. It was released in December 1998 as a sort of continuation of a game that existed between the mid-90s and summer 1998 known as Star Wars Simulation. When the Sim Master disappeared suddenly - and the servers were shut down soon after - some players of that stranded community decided to create their own version of the game that evolved a lot through the years and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38297936", "url": "https://en.wikipedia.org/wiki/Cold%20War%20Conflicts", "title": "Cold War Conflicts", "text": "Cold War Conflicts is a real-time strategy game developed by Russian studios Fireglow Games and Red Ice software, set in the historical period of the Cold War era from 1950 to 1973. In four campaigns you take control of the military forces of eight nations (United States, Israel, Egypt, North Korea, United Kingdom, Syria, USSR and China). Some of the campaigns are non-linear which means that success or failure in some missions results in a different starting point and strength of military forces", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38310231", "url": "https://en.wikipedia.org/wiki/Platoon%20%282002%20video%20game%29", "title": "Platoon (2002 video game)", "text": "Platoon is a real-time strategy video game developed by Digital Reality and published by Monte Cristo for the PC Windows in 2002. It was also published by Strategy First as Platoon: The 1st Airborne Cavalry Division in Vietnam. Platoon is the second video game adaptation of the 1986 war film of the same title, following the 1987 game by Ocean Software. Despite it being marketed as \"the first strategy game about the Vietnam War\", the first such game was actually SSI's 1986 Nam.\n\nPlot\n\nThe game b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38337631", "url": "https://en.wikipedia.org/wiki/Lehmann%20Aviation%20drones", "title": "Lehmann Aviation drones", "text": "Lehmann Aviation Ltd (France), designs and manufactures professional civilian drones/UAVs since 2005. The company has two lines of UAVs: L-A series line of fully automatic drones designed for high precision mapping; construction/mining and precision agriculture; and L-M series line of both automatic and ground-controlled drones for long-range real-time surveillance.\n\nL-A series\nThe L-A series was launched in 2012 with the release of LA100 fully automatic personal drone for GoPro users (out of pr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38349867", "url": "https://en.wikipedia.org/wiki/Killer%20Queen%20%28video%20game%29", "title": "Killer Queen (video game)", "text": "Killer Queen is a real-time strategy platform video game for up to ten players, developed by Josh DeBonis and Nikita Mikros, the co-founders of BumbleBear Games. It premiered in 2013 at New York University's fourth annual \"No Quarter\" exhibition for indie arcade games. A new game inspired by Killer Queen, called Killer Queen Black was released in 2019 on Microsoft Windows and Nintendo Switch, on February 22, 2021 for Xbox One and a month later on March 30, 2021 for Google Stadia.\n\nThe game is ba", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38383946", "url": "https://en.wikipedia.org/wiki/Hexoskin", "title": "Hexoskin", "text": "Hexoskin is an open data smart shirt for monitoring EKG, heart rate, heart rate variability, breathing rate, breathing volume, actigraphy and other activity measurements like step counting and cadence. Hexoskin allows real-time remote health monitoring on smartphones and tablets using Bluetooth. The smart shirt was created to be used for personal self-experiments, and has also been used by health researchers to study physiology, elite and professional athletes to optimize their physical conditio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38411277", "url": "https://en.wikipedia.org/wiki/SignalR", "title": "SignalR", "text": "SignalR is a free and open-source software library for Microsoft ASP.NET that allows server code to send asynchronous notifications to client-side web applications. The library includes server-side and client-side JavaScript components.\n\nDetails\nASP.NET SignalR is a library for ASP.NET developers to add real-time web functionality to their applications. Real-time web functionality is the ability to have server-side code push content to the connected clients as it happens, in real-time.\n\nSignalR ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38461259", "url": "https://en.wikipedia.org/wiki/Autonomous%20Landing%20Hazard%20Avoidance%20Technology", "title": "Autonomous Landing Hazard Avoidance Technology", "text": "Autonomous Landing Hazard Avoidance Technology (ALHAT) is technology NASA is developing to autonomously land spacecraft on the Moon, Mars or even an asteroid.\n\nAccording to the NASA web page on the project, it will provide state-of-the-art automated descent and landing system for planetary lander craft. A surface-tracking sensor suite with real-time hazard avoidance capabilities will assess altitude and velocity of the descending vehicle and the topography of the landing site to permit precisio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38491046", "url": "https://en.wikipedia.org/wiki/Mechanized%20Assault%20%26%20Exploration%202", "title": "Mechanized Assault & Exploration 2", "text": "M.A.X. 2: Mechanized Assault & Exploration (known in Europe as M.A.X. 2: Mechanised Assault & Exploration), or simply M.A.X. 2, is a 1998 hybrid real-time/turn-based strategy video game developed and published by Interplay Productions. It's a sequel to Mechanized Assault & Exploration.\n\nReception\n\nThe game received mixed reviews according to the review aggregation website GameRankings. Next Generation, however, said, \"Will the new M.A.X. satisfy die-hard fans of the original? Probably not. Some ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38518053", "url": "https://en.wikipedia.org/wiki/RailRadar", "title": "RailRadar", "text": "RailRadar GPS (by RailYatri) is a live tracker allowing users to watch the movements of passenger trains running in India on an interactive map. All passenger trains in India are operated by state-owned Indian Railways. In the first release the location and status of trains shown on the map was typically 15 to 30 minutes delayed from real-time. RailRadar was created when Indian Railways Center for Railway Information System (CRIS) and RailYatri joined hands, and the service was launched on 10 O", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38574165", "url": "https://en.wikipedia.org/wiki/SeeVolution", "title": "SeeVolution", "text": "SeeVolution is a real-time website analytic web service that shows a heatmap of a website, detailing where visitors are clicking, mouse moves and scrolls. The data is used to allow webmasters to see what areas of a website visitors are using.\n\nHistory\nSeeVolution was founded by Edo Cohen in 2010. The company began by offering its service for free to website owners. In 2011, the company introduced premium features but also kept their free platform.\n\nIn 2011, the company secured $530,000 in angel ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38583478", "url": "https://en.wikipedia.org/wiki/J%C3%BCrg%20Gutknecht", "title": "J\u00fcrg Gutknecht", "text": "J\u00fcrg Gutknecht (born 3 January 1949 in B\u00fclach) is a Swiss computer scientist. He developed, with Niklaus Wirth, the programming language Oberon and the corresponding operating system Oberon.\n\nBiography \nJ\u00fcrg Gutknecht was full professor in the computer science department at the Eidgen\u00f6ssische Technische Hochschule (ETH Zurich) until April 2014.\n\nFrom 1967 to 1970, he was a member of the real-time computing system programming group at Swissair. Then he studied mathematics at the ETH and worked in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38624298", "url": "https://en.wikipedia.org/wiki/Fallen%20Empire", "title": "Fallen Empire", "text": "Fallen Empire or Fallen Empires may refer to:\n\nFilm\nFallen Empire (film), 2012 film by Alejo Mo-Sun\n\nGames\nFallen Empires (Magic: The Gathering), a Magic: The Gathering expansion set\nFallen Empire, renamed Legions: Overdrive, a 2010 computer game\nFallen Empires (2019), an upcoming real-time-strategy game on Steam\n\nMusic\nFallen Empires (album), a 2011 album by Snow Patrol\nFallen Empires Tour\nThe Fallen Empire, a 2006 album by Altaria\nThe Fallen Empires, Swedish band\nFallen Empires, a 2010 album b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38720643", "url": "https://en.wikipedia.org/wiki/Zitrr%20Camera", "title": "Zitrr Camera", "text": "Zitrr Camera is an iPhone Camera app developed by Zitrr \u2013 a division of Rootwork Systems. The app can be used to apply real-time filters, effects and lenses to both photos and videos. Zitrr Camera provides 8 different shooting modes and 6 grid modes, has a gallery that allows the user to add tags, search for photos by location, tags and date, and view the captured photos as a slideshow. Zitrr Camera also provides integrated sharing options via Facebook, Twitter, YouTube, Flickr, Instagram, Tumbl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38850732", "url": "https://en.wikipedia.org/wiki/Crisis%20mapping", "title": "Crisis mapping", "text": "Crisis mapping (also known as disaster mapping) is the real-time gathering, display and analysis of data during a crisis, usually a natural disaster or social/political conflict (violence, elections, etc.). Crisis mapping projects usually allows large numbers of people, including the public and crisis responders, to contribute information either remotely or from the site of the crisis. One benefit of the crisis mapping method over others is that it can increase situational awareness, since the p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38869123", "url": "https://en.wikipedia.org/wiki/Rodos%20%28operating%20system%29", "title": "Rodos (operating system)", "text": "Rodos (Realtime Onboard Dependable Operating System) is a real-time operating system for embedded systems and was designed for application domains demanding high dependability.\n\nHistory \nRodos was developed at the German Aerospace Center and has its roots in the operating system BOSS. It is used for the current micro satellite program of the German Aerospace Center. The system runs on the operational satellite TET-1 and will be used for the currently developed satellite BiROS.\n\nRodos is further ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38876872", "url": "https://en.wikipedia.org/wiki/Wicked%20%28video%20game%29", "title": "Wicked (video game)", "text": "Wicked is a real-time strategy horror-themed video game released for the Amiga, Atari ST, and Commodore 64 in 1989 by Binary Vision and Electric Dreams Software. Activision had intended to release the game for MS-DOS with EGA graphics in 1989, but the port was cancelled.\n\nPlot\nThe protagonist of the game is sacrificed in order to become a ring of fire to combat the evil forces of darkness that mean to plunge the earth in eternal darkness. The evil forces exist in three different points of each Z", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38899724", "url": "https://en.wikipedia.org/wiki/Unified%20interoperability", "title": "Unified interoperability", "text": "Unified interoperability is the property of a system that allows for the integration of real-time and non-real time communications, activities, data, and information services (i.e., unified) and the display and coordination of those services across systems and devices (i.e., interoperability). Unified interoperability provides the capability to communicate and exchange processing across different applications, data, and infrastructure.\n\nUnified communications\n\nUnified communications has been led", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38917776", "url": "https://en.wikipedia.org/wiki/Swiss%20Interbank%20Clearing", "title": "Swiss Interbank Clearing", "text": "The Swiss Interbank Clearing (SIC) system is a mechanism for the clearing of domestic and international payments.\n\nHistory \nThe development of the SIC started in 1980. Since 1987, the SIC system has been operated by SIX Interbank Clearing AG (100% owned by the SIX Group) on behalf of the Swiss National Bank (SNB). 12 Swiss banks participated to the launch. The SIC was one of the first real-time gross settlement system operating worldwide (Cedel was launched in 1970).\n\nIn 1990, different prioriti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "38949170", "url": "https://en.wikipedia.org/wiki/Total%20War%3A%20Arena", "title": "Total War: Arena", "text": "Total War: Arena was a strategy game under development by Creative Assembly and published by Wargaming Alliance. It was the first free-to-play title in the Total War series. Total War: Arena focused on online multiplayer, mixing elements of real-time strategy and multiplayer online battle arena gameplay. The game featured 10-vs-10 battles with each player controlling 3 units, each containing up to 100 warriors.\n\nIn November 2016, Wargaming, Sega and Creative Assembly announced a new strategic pa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39053924", "url": "https://en.wikipedia.org/wiki/Sparrowiq", "title": "Sparrowiq", "text": "SparrowIQ is a packet-based traffic analysis and network performance monitoring solution that provides network managers with near real-time traffic visibility into network usage based on conversations, applications, users and class of service.\n\nThe product was developed by Solana Networks (Ottawa, Ontario, Canada) to allow smaller businesses to gain access to flow-based network traffic monitoring solutions - normally too complex or unaffordable.\n\nSparrowIQ was awarded the \"Best New Product\" by t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39054902", "url": "https://en.wikipedia.org/wiki/Nodefly", "title": "Nodefly", "text": "NodeFly is a Canadian company headquartered in Vancouver, British Columbia, Canada. It develops and supports a NodeFly Application Performance Monitoring (APM) system that provides real-time monitoring for Node.js applications.\n\nServices\nNode.js is a scalable server-side JavaScript framework, and the NodeFly APM agent allows developers to monitor and improve their Node.js product by uncovering and resolving issues as they arise. CEO Glen Lougheed explained, \u201cWe\u2019re trying to provide devops with t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39228495", "url": "https://en.wikipedia.org/wiki/Kohan%20II%3A%20Kings%20of%20War", "title": "Kohan II: Kings of War", "text": "Kohan II: Kings of War is a real-time strategy video game developed by TimeGate Studios. It is the sequel to Kohan: Immortal Sovereigns.\n\nGameplay\n\nRaces\nKohan II features six playable races: human, haroun, drauga, gauri, undead, and shadow. Each race has its own unique units, buildings, and economic factors, such as reliances on particular types of resources over other types. Each race can also belong to a particular faction. There are five factions total (although not every race can choose fro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39229009", "url": "https://en.wikipedia.org/wiki/RAE%20Systems", "title": "RAE Systems", "text": "RAE Systems, Inc., or RAE System by Honeywell, is a provider of wireless, gas and radiation detection instruments and systems that enable real-time safety and security threat detection to help mitigate risk, and protect workers, contractors, the public and assets. RAE Systems is located in San Jose, California. The company was founded in 1991 by Robert I. Chen and Peter Hsi.\n\nThe company's competitors include Ion Science Ltd, Mine Safety Appliances, Industrial Scientific Corporation, and Dr\u00e4ger.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39231132", "url": "https://en.wikipedia.org/wiki/Wargame%3A%20AirLand%20Battle", "title": "Wargame: AirLand Battle", "text": "Wargame: AirLand Battle is a real-time strategy video game developed by Eugen Systems and published by Focus Home Interactive, released on May 29, 2013. It is set in Europe during the Cold War, most specifically in the years 1975\u201385. It is the sequel to the 2012 Wargame: European Escalation.\n\nGameplay\nWargames playable factions are the Warsaw Pact, which is subdivided into the Soviet Union, Communist Poland, East Germany, and Czechoslovakia; and NATO, which is subdivided into the United States o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39244093", "url": "https://en.wikipedia.org/wiki/Giditraffic", "title": "Giditraffic", "text": "GidiTraffic (or GIDITRAFFIC) is an online social service started on 23 September 2011. Based primarily on social media, the service employs crowdsourcing as its primary means of providing real-time traffic updates to subscribers on its platform. The service, delivered free of charge, affords its users access to various types of information. Though its broadest category of users are road users and motorists, GIDITRAFFIC lends itself as a platform for answering inquiries from anyone who requires i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39337785", "url": "https://en.wikipedia.org/wiki/Artis%2C%20LLC", "title": "Artis, LLC", "text": "Artis is a research and development company located in Herndon, Virginia. Founded in 1999, the company provides services and creates products for defense and commercial markets using extremely high-speed sensing and parallel processing. The name of the company stems from an acronym, short for \"advanced real-time information systems.\"\n\nProducts\nOne of the company's products is Iron Curtain, an active protection system designed to defeat attacks from rocket-propelled grenades, tandem RPGs and ot", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39370052", "url": "https://en.wikipedia.org/wiki/Pirates%20of%20Black%20Cove", "title": "Pirates of Black Cove", "text": "Pirates of Black Cove is a pirate-themed real-time strategy game published by Paradox Interactive on August 2, 2011.\n\nGameplay\n\nReception\nIGN gave the game a score of 5.5/10 and GameSpot a score of 3.5/10; both reviewers praised the game's vibrant visuals and charming presentation, but heavily criticized the gameplay and repetitiveness.\n\nReferences\n\nExternal links\n\n \n \n\n2011 video games\nParadox Interactive games\nReal-time strategy video games\nWindows games\nWindows-only games\nVideo games about pi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39413035", "url": "https://en.wikipedia.org/wiki/Packet%20Design", "title": "Packet Design", "text": "Packet Design is an Austin, Texas-based network performance management software company credited with pioneering route analytics technology. This network monitoring technology analyzes routing protocols and structures in meshed IP networks by participating as a peer in the network to passively \u201clisten\u201d to Layer 3 routing protocol exchanges between routers for the purpose of network discovery, mapping, real-time monitoring and routing diagnostics.\n\nThe company maintains offices in San Jose, CA, A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39414760", "url": "https://en.wikipedia.org/wiki/Swipp", "title": "Swipp", "text": "Swipp was a privately held company based in Mountain View, California that provided a social intelligence platform that captures, aggregates, and reports real time sentiment data via consumer and commercial applications built on their platform.\n\nSwipp referred to the aggregated data as the \"Swipp Index\" as it aggregated multiple social data points in near real-time, and gave a global view of the data source (location, gender, age), trending information, over-time reporting, and other data points", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39483107", "url": "https://en.wikipedia.org/wiki/Tessellation%20%28computer%20graphics%29", "title": "Tessellation (computer graphics)", "text": "In computer graphics, tessellation refers to the dividing of datasets of polygons (sometimes called vertex sets) presenting objects in a scene into suitable structures for rendering. Especially for real-time rendering, data is tessellated into triangles, for example in OpenGL 4.0 and Direct3D 11.\n\nIn graphics rendering\n\nA key advantage of tessellation for realtime graphics is that it allows detail to be dynamically added and subtracted from a 3D polygon mesh and its silhouette edges based on con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39500579", "url": "https://en.wikipedia.org/wiki/OBS%20Studio", "title": "OBS Studio", "text": "OBS Studio (formerly Open Broadcaster Software or OBS, for short) is a free, open-source, and cross-platform screencasting and streaming app. It is available for Windows, macOS, Linux distributions, and BSD. OBS Project raises funds on Open Collective and Patreon.\n\nOverview \nOBS Studio is a free and open-source app for screencasting and live streaming. Written in C/C++ and built with Qt, OBS Studio provides real-time capture, scene composition, recording, encoding, and broadcasting via the Real ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39565567", "url": "https://en.wikipedia.org/wiki/Kapsch%20CarrierCom%20AG", "title": "Kapsch CarrierCom AG", "text": "Kapsch CarrierCom is a global system integrator and supplier of end-to-end telecommunications solutions for public and railway operators, urban transport organizations and companies seeking real-time asset management solutions. The company generated a total revenue of \u20ac170,2 million as of March 2014 with 740 employees worldwide. The headquarters are located in Vienna, Austria and has subsidiaries in more than 20 countries around the globe. The management board consists of Kari Kapsch (CEO), Thom", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39677607", "url": "https://en.wikipedia.org/wiki/PSOS", "title": "PSOS", "text": "PSOS, PSOs or pSOS may refer to:\n pSOS (real-time operating system)\n Provably Secure Operating System\n Project Support Open Source\n Protective services officers\n The Police Service of Scotland\n\nSee also\n pSOS+", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39684242", "url": "https://en.wikipedia.org/wiki/Rymdkapsel", "title": "Rymdkapsel", "text": "Rymdkapsel is a 2013 minimalist real-time strategy video game by indie developer Grapefrukt, the studio of Martin Jonasson. Players build a space station using tetromino pieces while managing resources and minions, defending against attacks, and extending the base towards four monoliths at the edges of the level. The game was built over a year and a half and was inspired by the base-building aspects of the Command & Conquer series. It was Jonasson's first full game as an indie developer. Rymdkap", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39737459", "url": "https://en.wikipedia.org/wiki/Sagan%20%28software%29", "title": "Sagan (software)", "text": "Sagan is an open source (GNU/GPLv2) multi-threaded, high performance, real-time log analysis & correlation engine developed by Quadrant Information Security that runs on Unix operating systems. It is written in C and uses a multi-threaded architecture to deliver high performance log & event analysis. Sagan's structure and rules work similarly to the Sourcefire Snort IDS/IPS engine. This allows Sagan to be compatible with Snort or Suricata rule management softwares and give Sagan the ability", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39750321", "url": "https://en.wikipedia.org/wiki/Divinity%3A%20Dragon%20Commander", "title": "Divinity: Dragon Commander", "text": "Divinity: Dragon Commander is a real-time strategy video game developed by Larian Studios as part of the Divinity series of fantasy role-playing games. The game features a hybrid of gameplay styles and has single-player, competitive multiplayer and cooperative multiplayer modes.\n\nGameplay \nThe gameplay of Divinity: Dragon Commander is broken up into three phases which affect each other. The first phase has elements of a political simulation, where the player has conversations with multiple non-p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39762654", "url": "https://en.wikipedia.org/wiki/Resurs-P%20No.1", "title": "Resurs-P No.1", "text": "Resurs-P No.1 is a Russian commercial earth observation satellite capable of acquiring high-resolution imagery (resolution up to 1.0 m). The spacecraft is operated by Roscosmos as a replacement of the Resurs-DK No.1 satellite.\n\nThe satellite is designed for multi-spectral remote sensing of the Earth's surface aimed at acquiring high-quality visible images in near real-time as well as on-line data delivery via radio link and providing a wide range of consumers with value-added processed data.\n\nIn", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39809989", "url": "https://en.wikipedia.org/wiki/Real-Time%20Object-Oriented%20Modeling", "title": "Real-Time Object-Oriented Modeling", "text": "Real-Time Object-Oriented Modeling (ROOM) is a domain specific language.\n\nROOM was developed in the early 1990s for modeling Real-time systems. The initial focus was on telecommunications, even though ROOM can be applied to any event-driven real-time system.\n\nROOM was supported by ObjecTime Developer (commercial) and is now implemented by the official Eclipse project eTrice\n\nWhen UML2 was defined (version 2 of UML with real time extensions), many elements of ROOM were adopted.\n\nConcepts and Key ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39830246", "url": "https://en.wikipedia.org/wiki/Evolving%20digital%20ecological%20network", "title": "Evolving digital ecological network", "text": "Evolving digital ecological networks are webs of interacting, self-replicating, and evolving computer programs (i.e., digital organisms) that experience the same major ecological interactions as biological organisms (e.g., competition, predation, parasitism, and mutualism). Despite being computational, these programs evolve quickly in an open-ended way, and starting from only one or two ancestral organisms, the formation of ecological networks can be observed in real-time by tracking interaction", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39855605", "url": "https://en.wikipedia.org/wiki/SIUI", "title": "SIUI", "text": "Shantou Institute of Ultrasonic Instruments Co., Ltd (SIUI) is China's biggest manufacturing base of ultrasound with longest history. \nSIUI goes through a technology development of A-B-C-D-E. Each step has driven the industry progress in China. A: A mode \nultrasound equipment. B:B mode ultrasound imaging equipment. C:Color Doppler. In 1997, SIUI manufactured its first color Doppler system Apogee 800.D:Real-time 3D/4D ultrasound. In 2008, SIUI developed the real-time 3D/4D technology, and releas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39859607", "url": "https://en.wikipedia.org/wiki/FloodAlerts", "title": "FloodAlerts", "text": "FloodAlerts is a software application, developed by software specialists Shoothill, which takes real-time flooding information, and displays the data on an interactive Bing map, updating and warning its users when they, their premises or the routes they need to travel could be at risk of flooding.\n\nHistory \nFloodAlerts was launched in 2012, originally as the world\u2019s first Facebook flood warning app.\n\nOperation \nFloodAlerts is made available free of charge to individuals. Users are able to set up", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "39972314", "url": "https://en.wikipedia.org/wiki/Real-Time%20Systems%20%28company%29", "title": "Real-Time Systems (company)", "text": "Real-Time Systems GmbH, headquartered in Ravensburg, Germany, is a privately held software company.\n\nReal-Time Systems develops and sells software products for embedded systems and real-time applications.\n\nFounded in 2006 as a spin-out from industrial robot maker KUKA, Real-Time Systems is providing its solutions globally directly and through distributors and is a member of the Intel Intelligent Systems Alliance, an Intel Premier Software Partner and Microsoft Embedded Gold Partner.\n\nCore prod", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40000349", "url": "https://en.wikipedia.org/wiki/IcCube", "title": "IcCube", "text": "icCube is a company founded in Switzerland that provides business intelligence (BI) software of the same name. The software can be fully embedded, can be hosted in a managed environment or installed in a customer's machine on premises.\n\nThe BI tool allows end-users to create or edit dashboards themselves and is capable of processing data from multiple sources in real-time. The software makes the dashboards, the dashboard builder, the schema/cube builder and the server monitoring application acce", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40038536", "url": "https://en.wikipedia.org/wiki/European%20Storm%20Forecast%20Experiment", "title": "European Storm Forecast Experiment", "text": "The European Storm Forecast Experiment, known as ESTOFEX, is an initiative of a team of European meteorologists, and students in meteorology founded in 2002. It serves as a platform for exchange of knowledge about forecasting severe convective storms in Europe and elsewhere. It is a voluntary organisation and is currently unfunded. It aims to raise awareness and provide real-time education about severe weather forecasting.\nIt issues storm warnings on a daily basis. It also collects reports f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40111866", "url": "https://en.wikipedia.org/wiki/ObjecTime%20Developer", "title": "ObjecTime Developer", "text": "ObjecTime Developer (or ObjecTime or OTD, for short) is a software automation tool designed to meet the development needs of real-time software development teams. The tool was created by ObjecTime Limited of Kanata, Ontario, and was aimed at aiding software developers in building applications using Real-Time Object-Oriented Modeling (ROOM) for real-time, graphical design models. ObjecTime, using the design models, will then generate production-quality applications for real-time operating systems", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40112214", "url": "https://en.wikipedia.org/wiki/K-9%20Mail", "title": "K-9 Mail", "text": "K-9 Mail is an independent email application for the Android operating system. It is made available as Free/Open Source Android Software under the Apache-2.0 license. The program is marketed as a more functional replacement for the default mail application included on most phones. It supports both POP3 and IMAP mailboxes and supports IMAP IDLE for real-time notifications.\n\nIts name and logo stem from a dog-like robot in the BBC cult TV series Doctor Who.\n\nThe source code was first published to i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40120621", "url": "https://en.wikipedia.org/wiki/Satellite%20Reign", "title": "Satellite Reign", "text": "Satellite Reign is a cyberpunk real-time tactics video game that was released in August 2015 for Windows, macOS, and Linux. The game was developed by Australia's 5 Lives Studios and is a spiritual successor to the Syndicate series, which co-founder and programmer Mike Diskett had worked on. The name derived from one of the weapons featured in Syndicate Wars called \"Satellite Rain.\"\n\nDevelopment\n\nAfter the release of the Syndicate reboot in 2012, the Syndicate Wars producer and lead programmer, M", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61704879", "url": "https://en.wikipedia.org/wiki/Game%20of%20Thrones%3A%20Winter%20Is%20Coming", "title": "Game of Thrones: Winter Is Coming", "text": "Game of Thrones: Winter is Coming is a MMORTS videogame published in 2019 and based on the Game of Thrones television series and the A Song of Ice and Fire book series.\n\nOn 26 March 2019, Chinese studio Yoozoo Games announced the global launch of Game of Thrones Winter is Coming, a real-time strategy browser game officially licensed by Warner Bros, under license from HBO. The version of the game for Steam was released on November 19, 2019 and the mobile port was released on July 20, 2020.\n\nThe p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40176198", "url": "https://en.wikipedia.org/wiki/DIPS%20%28Digital%20Image%20Processing%20with%20Sound%29", "title": "DIPS (Digital Image Processing with Sound)", "text": "DIPS (Digital Image Processing with Sound) is a set of plug-in objects that handle real-time digital image processing in Max/MSP programming environment. Combining with the built-in objects of the environment, DIPS enables to program the interaction between audio and visual events with ease, and supports the realization of interactive multimedia art as well as interactive computer music.\n\nSummary of Features \nA plug-in software for Max/MSP (Max 5 and 6)\nMore than 300 Max external objects and abs", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40179122", "url": "https://en.wikipedia.org/wiki/Eliademy", "title": "Eliademy", "text": "Eliademy [\u0259l\u026aa\u02c8d\u0259mi] was a free online classroom that allowed educators and students to create, share and manage online courses with real-time discussions and task management. Eliademy was based on Moodle (support import in Moodle format), Bootstrap and other open source technologies. Eliademy was unveiled to public in February 2013 by CBTec. Eliademy was available in 32 languages.\n\nHistory \nCBTec was founded in Helsinki, Finland in 2012 by Sotiris Makrygiannis and Sergey Gerasimenko. Following ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40185216", "url": "https://en.wikipedia.org/wiki/PERSIANN", "title": "PERSIANN", "text": "PERSIANN, \"Precipitation Estimation from Remotely Sensed Information using Artificial Neural Networks\", is a satellite-based precipitation retrieval algorithm that provides near real-time rainfall information. The algorithm uses infrared (IR) satellite data from global geosynchronous satellites as the primary source of precipitation information. Precipitation from IR images is based on statistical relationship between cloud top temperature and precipitation rates. The IR-based precipitation esti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40193995", "url": "https://en.wikipedia.org/wiki/Samsung%20WatchON", "title": "Samsung WatchON", "text": "Samsung WatchON, first introduced on Galaxy S4 devices, was a service that allowed users to view programming information on their TV or set-top box, and choose programs directly from their mobile devices. Samsung WatchON also provides real-time programming and VOD content recommendations based on the user's viewing patterns; it also includes a virtual remote controller which uses the built-in IR Blaster of the device to control televisions, home theater systems, and media players of any brand, p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40219611", "url": "https://en.wikipedia.org/wiki/Breach%203", "title": "Breach 3", "text": "Breach 3 is a 1995 real-time tactics video game developed by Impressions Games and published by Sierra On-Line. It is the sequel to Breach and Breach 2.\n\nGameplay\nBreach 3 is a real-time tactics game, in which the player navigates an armed squad through discrete missions. It follows a pausable real-time structure, and has been compared to titles such as Jagged Alliance and UFO: Enemy Unknown.\n\nReception\n\nWriting for PC Entertainment, Christopher Lindquist argued, \"Breach 3s big problem is that t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40266609", "url": "https://en.wikipedia.org/wiki/IForIndia", "title": "IForIndia", "text": "iForIndia.org Foundation is a not-for-profit organization which aims to politically empower citizens through the use of technology. It is a platform where citizens can rate the performance of their elected representatives on I for India's web-platform, based on the quality of public services in their assembly constituency. This data is used to generate real-time report cards for Members of Legislative Assembly (MLAs), Members of Parliament (MPs), Chief Ministers (CMs) and the Prime Minister.\n\nMi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40285950", "url": "https://en.wikipedia.org/wiki/RDOS", "title": "RDOS", "text": "RDOS may refer to:\n\nRegional District of Okanagan-Similkameen, a regional district of British Columbia\nData General RDOS, a real-time operating system by Data General since 1972\nCromemco RDOS, the resident operating system on some Cromenco S-100 cards\nRDOS (Microsoft), a name sometimes used for the Russian versions of MS-DOS 4.01 and 5.00\nRDOS (Ekblad), a 32-bit DOS-compatible operating system by Leif Ekblad since 1988\n\nSee also\nDOS (disambiguation)\nROS (disambiguation)\nRTOS, real-time operating", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40288798", "url": "https://en.wikipedia.org/wiki/Navia%20%28vehicle%29", "title": "Navia (vehicle)", "text": "The Navia is an electric 10-passenger robo-driven vehicle made by France's Induct Technology. It operates at a maximum speed of 20\u00a0km/h (12.5\u00a0mph), using four lidar (\"LIght raDAR\") units, along with stereoscopic optical cameras, to generate a real-time 3D map of its surroundings. It does not require rails, overhead lines or other road changes.\n\nIt is being tested at campuses in Switzerland, the United Kingdom and Singapore.\n\nApplications\nPlans call for it to transport passengers between Singapor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40362619", "url": "https://en.wikipedia.org/wiki/Panama%20Civil%20Defense%20Seismic%20Network", "title": "Panama Civil Defense Seismic Network", "text": "The Panama Civil Defense Seismic Network collects and studies ground motion from about 60 seismometers throughout Panama. These stations monitor volcanoes, tectonic activities, rivers, and tsunami to give fast, real-time information and warnings about these potential hazards.\n\nEarthquake and seismic risk mitigation\nGeology of Panama\nSeismological observatories, organisations and projects", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40379898", "url": "https://en.wikipedia.org/wiki/Metal%20Knight", "title": "Metal Knight", "text": "Metal Knight () is a sci-fi type real-time strategy released in 1998, developed by Object Software Limited and published in mainland China by Object Software and in Taiwan by T-time Technology Co., Ltd. In 1999 the English version was published by Microforum in the USA and Italy. The game supports eight online players. The game sold over 300,000 copies and received high ratings from indigenous game magazines such as Popsoft and Play. There is an expansion named Black Front.\n\nReferences\n\n1998 vid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40383409", "url": "https://en.wikipedia.org/wiki/Fabio%20Rosati", "title": "Fabio Rosati", "text": "Fabio Rosati is an internet entrepreneur best known for his work as CEO of online work marketplace platforms Elance and Upwork, and as Chairman of hourly work marketplace Snagajob. Rosati is a contributor to online work, the freelance economy, and real-time hiring.\n\nEducation and career\n\nOriginally from Florence, Italy, attended Georgetown University. Rosati joined Gemini Consulting (a division of Capgemini) in its early days and left a decade later to join a Silicon Valley start-up, Elance, as ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40388268", "url": "https://en.wikipedia.org/wiki/Networked%20Society", "title": "Networked Society", "text": "The Networked Society is a type of future ecosystem in which widespread internet connectivity drives change for individuals and communities. The concept has been popularized by the Information and Communications Technology (ICT) company Ericsson. Connectivity means a device can digitally communicate with and transfer data to other systems through a real-time communication network (typically the internet). It is expected that people living in the Networked Society will be able to use connectivity", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40465745", "url": "https://en.wikipedia.org/wiki/Flash%20flood%20guidance%20system", "title": "Flash flood guidance system", "text": "The flash flood guidance system (FFGS) was designed and developed by the Hydrologic Research Center a non-profit public-benefit corporation located in of San Diego, CA, US, for use by meteorological and hydrologic forecasters throughout the world. The primary purpose of the FFGS is to provide operational forecasters and disaster management agencies with real-time informational guidance products pertaining to the threat of small-scale flash flooding throughout a specified region (e.g., country or", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40480913", "url": "https://en.wikipedia.org/wiki/Avare", "title": "Avare", "text": "Avare is a free open source \"moving map\" aviation GPS, A/FD and EFB app for phones or tablets using the Android Operating System. The app uses any internal Android or compatible external GPS receiver to determine location, allowing real-time display of location, heading, speed, distance, time, and altitude on free U.S. FAA IFR or VFR aviation charts; or on select topographic charts. Included are 3D, ADSB-In and other advanced options. The user can access all relevant static current FAA official ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40513026", "url": "https://en.wikipedia.org/wiki/SafetyNET%20p", "title": "SafetyNET p", "text": "SafetyNET\u00a0p is a standard for Ethernet-based fieldbus communication in automation technology. SafetyNET p is suitable as a drive bus due to its real-time behaviour, with cycle times of up to 62.5\u00a0\u00b5s. In accordance with the standard requirements from EN\u00a061508 and EN 61511, it can be used in safety circuits up to and including Category 3, SIL 3.\n\nOrigin \nSafetyNET\u00a0p is a registered trademark of Pilz GmbH & Co. KG and was presented in public for the first time in 2006. Its objective was to enable f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40522096", "url": "https://en.wikipedia.org/wiki/Wall%20Street%20Magnate", "title": "Wall Street Magnate", "text": "Wall Street Magnate is a fantasy stock-trading platform and community website. By March 2015, the platform had exceeded 60,000 monthly users. Participants are given $100,000 in simulated currency to build their fantasy stock portfolio. Stocks are traded on the platform based on data from the New York Stock Exchange, NASDAQ and AMEX. According to IDC, \"Wall Street Magnate has woven together social elements, real-time feeds, leaderboards, and data-rich progress reports into a compelling game-like ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40575597", "url": "https://en.wikipedia.org/wiki/L4Linux", "title": "L4Linux", "text": "{{DISPLAYTITLE:L4Linux}}\n\nL4Linux is a variant of the Linux kernel for operating systems, that is altered to the extent that it can run paravirtualized on an L4 microkernel, where the L4Linux kernel runs a service. L4Linux is not a fork but a variant and is binary compatible with the Linux x86 kernel, thus it can replace the Linux kernel of any Linux distribution.\n\nL4Linux is being developed by the Dresden Real-Time Operating System Project (DROPS) to allow real-time and time-sharing programs to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40696187", "url": "https://en.wikipedia.org/wiki/Atomic%20Reach", "title": "Atomic Reach", "text": "Atomic Reach is a real-time content optimization engine that analyzes and measures content based on its quality and potential for amplified reach. It also promotes the discovery and sharing of relevant content for a writer, publisher, or blogger's target audience.\n\nPrior to the launch of the company's content optimization engine, Atomic Reach developed content curation software.\n\nAtomic Reach has received several rounds of funding from notable investors including Genwealth Venture Partners.\n\nAto", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40714668", "url": "https://en.wikipedia.org/wiki/Microwave%20analog%20signal%20processing", "title": "Microwave analog signal processing", "text": "Real-time Analog Signal Processing (R-ASP), as an alternative to DSP-based processing, might be defined as the manipulation of signals in their pristine analog form and in real time to realize specific operations enabling microwave or millimeter-wave and terahertz applications.\n\nThe exploding demand for higher spectral efficiency in radio has spurred a renewed interest in analog real-time components and systems beyond conventional purely digital signal processing techniques. Although they are un", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40757180", "url": "https://en.wikipedia.org/wiki/Test%20and%20Training%20Enabling%20Architecture", "title": "Test and Training Enabling Architecture", "text": "Test and Training Enabling Architecture (TENA) is an architecture designed to bring interoperability to United States Department of Defense test and training systems. TENA is designed to promote integrated testing and simulation-based acquisition through the use of a large-scale, distributed, real-time synthetic environment, which integrates testing,\ntraining, simulation, and high-performance computing technologies, distributed across many facilities, using a common architecture.\n\nThe purpose of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40767013", "url": "https://en.wikipedia.org/wiki/Augment%20%28app%29", "title": "Augment (app)", "text": "Augment is an augmented reality SaaS platform that allows users to visualize their products in 3D in real environment and in real-time through tablets or smartphones. The software can be used for Retail, E-Commerce, architecture, and other purposes.\n\nAugment created a mobile app of the same name, used to visualize 3D models in augmented reality and a web application called Augment Manager for 3D content management. The company is based in Paris, France and was founded in October 2011 by Jean-Fra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40817876", "url": "https://en.wikipedia.org/wiki/Linux%20range%20of%20use", "title": "Linux range of use", "text": "Besides the Linux distributions designed for general-purpose use on desktops and servers, distributions may be specialized for different purposes including computer architecture support, embedded systems, stability, security, localization to a specific region or language, targeting of specific user groups, support for real-time applications, or commitment to a given desktop environment. Furthermore, some distributions deliberately include only free software. , over four hundred Linux distributio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40900240", "url": "https://en.wikipedia.org/wiki/Twist%20and%20Shout%2C%20Inc.", "title": "Twist and Shout, Inc.", "text": "Twist and Shout, Inc. was an American software company based in San Francisco, California and founded in 2011. Its main product was a mobile application called Twist which allowed users to share their estimated time of arrival (ETA) and real-time GPS location while traveling.\n\nTwist closed its doors on April 1, 2014.\n\nHistory \nTwist and Shout, Inc. was founded by Bill Lee, Mike Belshe, Frank VanZile and Edward Marks. Twist and Shout, Inc. collected $6 million in venture capital funds from Bridg", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40917609", "url": "https://en.wikipedia.org/wiki/Strongloop", "title": "Strongloop", "text": "StrongLoop is an American company working with Node.js to create and support StrongLoop Suite, a Mobile API Tier. StrongLoop employs two members of the Node.js Technical Steering Committee.\n\nServices\n\nStrongLoop offers a subscription-based product known as StrongLoop Suite. StrongLoop Suite includes three components: an open source private mobile Backend-as-a-Service mBaaS named LoopBack; a second component called StrongOps, which provides operations and real-time performance monitoring in a con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40962579", "url": "https://en.wikipedia.org/wiki/Cadi%20Scientific", "title": "Cadi Scientific", "text": "Cadi Scientific is a Singapore-based healthcare technology company that develops and markets wireless sensing and tracking devices base on active Radio-frequency identification (RFID) technology for healthcare institutions. Cadi Scientific is known in the Singapore Healthcare market for its Cadi SmartSense System that is designed for tracking patients' real-time locations for automating workflow as well as monitoring patients' temperatures automatically to reduce nurses' workload.\n\nWireless temp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40964806", "url": "https://en.wikipedia.org/wiki/PublicStuff", "title": "PublicStuff", "text": "PublicStuff is a digital communications system for residents to submit real-time requests in their neighborhoods. Accessed by traditional web browser, smartphone app, phone, or SMS, residents can use the system to submit issues, such as road maintenance or waste management, and create an issue tracking ticket. \n\nCo-founders Lily Liu and Vincent Polidoro began to develop PublicStuff in 2009 and officially launched the service in 2010. \n\nTo date, PublicStuff is used in approximately 250 cities in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40974732", "url": "https://en.wikipedia.org/wiki/Fly100%25", "title": "Fly100%", "text": "Lu Weiliang (), who also goes by the pseudonym Fly100%, is a Chinese professional esports player of the real-time strategy game Warcraft III: The Frozen Throne. He previously been a member of Team Hacker, EHOME and Mousesports. He is considered one of the best Orc players. He had one of the longest playing careers of professional players of Warcraft III.\n\nCareer \nFly100% started his professional e-sports career in team Hacker and started gaining recognition in international competitive gaming af", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "40982098", "url": "https://en.wikipedia.org/wiki/Google%20Helpouts", "title": "Google Helpouts", "text": "Google Helpouts was an online collaboration service from Google which launched in November 2013 and allowed users to share their expertise through live video and provide real-time help from their computers or mobile devices. As of April 20, 2015, Google closed Google Helpouts.\n\nOperation\nPeople offering help through Helpouts, called \"providers,\" could be companies or individuals. Providers were required to be native English speakers and a resident of U.S., Canada, Ireland, U.K., Australia or New", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41029576", "url": "https://en.wikipedia.org/wiki/Infi", "title": "Infi", "text": "Wang Xuwen (), who goes by the pseudonym Infi, is a Chinese professional esports player of the real-time strategy games Warcraft III: The Frozen Throne and Starcraft II. He previously served in team World Elite, Tyloo and VICI GAMING. He is considered one of the best Human players in the world. In 2008, World Elite was the best team of the year and Wang Xuwen was the core member. In 2009, Wang Xuwen helped World Elite obtain the champion of Warcraft III Champions League Season XIV. Additionally,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41029603", "url": "https://en.wikipedia.org/wiki/Prosa%20Structured%20Analysis%20Tool", "title": "Prosa Structured Analysis Tool", "text": "Prosa Structured Analysis Tool is a visual systems and software development environment which supports industry standard SA/SD/RT structured analysis and design with real-time extensions modeling method. Prosa supports data flow diagrams, state transition diagrams and entity relationship diagrams using Chen's and Bachmans ER notations. Prosa has integrated data dictionary.\n\nProsa actively guides the designer to create correct and consistent graphic diagrams. Prosa offers interactive checking bet", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41047125", "url": "https://en.wikipedia.org/wiki/Jonathan%20Bydlak", "title": "Jonathan Bydlak", "text": "Jonathan Bydlak is director of the Fiscal and Budget Policy Project at the R Street Institute. He was previously founder and president of the Coalition to Reduce Spending and the Institute for Spending Reform, organizations that support spending reform and reduction. He is the primary promoter of SpendingTracker.org, a real-time government spending tracker, and previously spearheaded the \"Reject the Debt Pledge,\" a pledge signed by candidates and elected officials who promise not to increase spe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41067925", "url": "https://en.wikipedia.org/wiki/Wargaming%20%28company%29", "title": "Wargaming (company)", "text": "Wargaming Group Limited (also known as Wargaming.net) is a Belarusian video game company headquartered in Nicosia, Cyprus.\n\nThe group operates across more than 20 offices globally and development studios, the largest of which is located in Minsk, where the company originated from. Initially focused on turn-based strategy and real-time strategy games, Wargaming switched to developing free-to-play online action games in 2009, including the military-themed team-based game World of Tanks, and later ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41079966", "url": "https://en.wikipedia.org/wiki/Defense.Net", "title": "Defense.Net", "text": "Defense.Net is a privately held American information technology and services company. The company's business is to protect Internet-facing infrastructures \u2013 such as e-commerce web sites \u2013 against all forms of Distributed Denial of Service (DDoS) attacks at the network. Defense.Net operates a constellation of DDoS mitigation sites around the Internet which are capable of filtering and removing DDoS attacks real-time.\n\nHistory\nDefense.Net was founded by Barrett Lyon in 2012. Lyon was also the pion", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41118773", "url": "https://en.wikipedia.org/wiki/List%20of%20esports%20games", "title": "List of esports games", "text": "Esports are video games which are played in professional competitions, usually fall into a few major genres. The majority of esports titles are fighting games, first-person shooters (FPS), real-time strategy (RTS), or multiplayer online battle arena games (MOBA), with the MOBA genre being the most popular in terms of participation and viewership. Players around the world will compete in trying to win the prize pool. The following is a selection of games which currently have or had a professional", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41163767", "url": "https://en.wikipedia.org/wiki/Fast%20automatic%20restoration", "title": "Fast automatic restoration", "text": "Fast automatic restoration (FASTAR) is an automated fast response system developed and deployed by American Telephone & Telegraph (AT&T) in 1992 for the centralized restoration of its digital transport network. FASTAR automatically reroutes circuits over a spare protection capacity when a fiber-optic cable failure is detected, hence increasing service availability and reducing the impact of the outages in the network. Similar in operation is real-time restoration (RTR), developed and deployed by", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41216372", "url": "https://en.wikipedia.org/wiki/Virtual%20Regatta", "title": "Virtual Regatta", "text": "Virtual Regatta is an online web browser sailing race simulator, though the development of a mobile app version of the game has seen a significant number of users shift to this platform in recent years.\n\nThe company was created in France by Philippe Guign\u00e9, CEO of ManyPlayers, for the 2006 edition of the Route du Rhum, with Virtual Regatta Offshore established as a real-time yacht routing game. Since then, the company has been working with the media departments of major oceanic races and their s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41313674", "url": "https://en.wikipedia.org/wiki/Marlow%20Briggs%20and%20the%20Mask%20of%20Death", "title": "Marlow Briggs and the Mask of Death", "text": "Marlow Briggs and the Mask of Death is an action-adventure hack and slash video game developed by Microsoft Studios and ZootFly for the Xbox 360 and Microsoft Windows. It was released worldwide on 20 September 2013. The game received mixed reviews.\n\nGameplay \nMarlow Briggs and the Mask of Death uses a real-time control scheme typical of other similar games, such as the God of War and Devil May Cry franchises. Players may attack with their weapon, grapple with and throw enemies, and use magical a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41321945", "url": "https://en.wikipedia.org/wiki/Apache%20Kafka", "title": "Apache Kafka", "text": "Apache Kafka is a framework implementation of a software bus using stream-processing. It is an open-source software platform developed by the Apache Software Foundation written in Scala and Java. The project aims to provide a unified, high-throughput, low-latency platform for handling real-time data feeds. Kafka can connect to external systems (for data import/export) via Kafka Connect and provides Kafka Streams, a Java stream processing library.\nKafka uses a binary TCP-based protocol that is op", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41411241", "url": "https://en.wikipedia.org/wiki/Men%20of%20War%3A%20Assault%20Squad%202", "title": "Men of War: Assault Squad 2", "text": "Men of War: Assault Squad 2 (, or Behind Enemy Lines 2: Assault 2) is a real-time tactics and real-time strategy game set in World War II. It is a sequel to the 2011 game Men of War: Assault Squad. The early access version of the game was released on March 20, 2014. It was fully released on May 15, 2014.\n\nMen of War: Assault Squad 2 features single player skirmish modes that take players from large scale tank combat to sniper stealth missions.\n\nReception\n\nMen of War: Assault Squad 2 has receive", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41417601", "url": "https://en.wikipedia.org/wiki/Astronics%20Max-Viz", "title": "Astronics Max-Viz", "text": "Astronics Max-Viz is an American company founded in Portland, Oregon on May 31, 2001 as Max-Viz, Inc. to design, manufacture and certify Enhanced Vision Systems (\"EVS\") primarily for use in the aerospace industry. Max-Viz EVS devices present real-time images of the external environment on aircraft cockpit monitors to improve pilot situational awareness under circumstances where visibility is impaired by weather or darkness. The company objective is to help the pilot see clearly and fly safely ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41429794", "url": "https://en.wikipedia.org/wiki/Anastasia%20Ailamaki", "title": "Anastasia Ailamaki", "text": "Anastasia Ailamaki is a Professor of Computer Sciences at the \u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne (EPFL) in Switzerland and the Director of the Data-Intensive Applications and Systems (DIAS) lab. She is also the co-founder of RAW Labs SA, a Swiss company developing real-time analytics infrastructures for heterogeneous big data. Formerly, she was an associate professor of computer science at Carnegie Mellon School of Computer Science.\n\nAilamaki's research interests are in the broad area of d", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41441599", "url": "https://en.wikipedia.org/wiki/Reflex%20%28game%20show%29", "title": "Reflex (game show)", "text": "Reflex is a BBC television game show hosted by Shane Richie and aired from 11 January to 29 March 2014 on BBC One.\n\nOverview\nEach episode consists of two families of three competing over a number of challenges in order to win their place in the final round to be in with a chance to win up to \u00a320,000. Although most of the games are completed within mere seconds from the starting trigger, viewers watch them almost exclusively in slow motion. The real-time attempts are shown mostly as replays after", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41442159", "url": "https://en.wikipedia.org/wiki/MyMail", "title": "MyMail", "text": "myMail is a mobile app for managing multiple email accounts created by My.com, a subsidiary of Mail.Ru Group. Using POP/IMAP, SMTP and Microsoft Exchange ActiveSync protocols, myMail provides real-time, customizable notifications, data compression for sending/receiving email traffic and search functionality.\n\nmyMail was released in the U.S. for Android and iOS (iPhone and iPad) mobile platforms in November 2013. It is now available worldwide through the iOS App Store and Google Play.\n\nPrimary fu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41480349", "url": "https://en.wikipedia.org/wiki/KORTV", "title": "KORTV", "text": "KORTV, Inc. is a software-based streaming media company specializing in distributing South Korean movie, television, and premium channel content to audiences in more than 100 countries using both video on demand (VOD) and real-time streaming.\n\nHistory\nKORTV was incorporated in Edison, New Jersey as WKNTV, Inc in 2012. WKNTV began operations streaming content via IPTV to Netgear NeoTV and Roku devices.\n\nOn August 2, 2013, the company filled for the trademark 'KORTV' which was registered on March ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41509737", "url": "https://en.wikipedia.org/wiki/Cooperative%20Engagement%20Capability", "title": "Cooperative Engagement Capability", "text": "Cooperative Engagement Capability (CEC) is a sensor network with integrated fire control capability that is intended to significantly improve battle force air and missile defense capabilities by combining data from multiple battle force air search sensors on CEC-equipped units into a single, real-time, composite track picture (network-centric warfare). This will greatly enhance fleet air defense by making jamming more difficult and allocating defensive missiles on a battle group basis.\n\nUnited ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41518305", "url": "https://en.wikipedia.org/wiki/2150%20%28disambiguation%29", "title": "2150 (disambiguation)", "text": "2150 may refer to:\n\nAD 2150, a year in the 22nd century\n2150 BC, a year in the 22nd century BC\n2150 AD, a novel by Thea Alexander\nDaleks' Invasion Earth 2150 A.D., a 1966 British science fiction film\nEarth 2150, a 2000 real-time strategy video game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41559012", "url": "https://en.wikipedia.org/wiki/OpenFlight", "title": "OpenFlight", "text": "OpenFlight (or .flt) is a 3d geometry model file format originally developed by Software Systems Inc. for its MultiGen real-time 3d modeling package in 1988. Originally called Flight, the format was designed as a nonproprietary 3d model format for use by real-time 3d visual simulation image generators. The format was later renamed to OpenFlight to denote its nonproprietary image generation (IG) usage. The MultiGen modeling package (known now as Creator) and the OpenFlight format were rapidly ad", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41562715", "url": "https://en.wikipedia.org/wiki/Spirit%20DSP", "title": "Spirit DSP", "text": "SPIRIT DSP is a Russian company that develops embedded software for real-time voice and video communication over IP networks \u2013 voice and video engines. Its voice and video software platform is used by carriers, mobile messaging apps, and social networks, serving more than 1 billion users in 100 countries.\n\nThe company is headquartered in Moscow, with sales offices in the United States, Japan, Korea, Israel, Germany, Italy, France, Singapore, Taiwan and China.\n\nHistory \nSPIRIT DSP was founded in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41575410", "url": "https://en.wikipedia.org/wiki/List%20of%20number-one%20songs%20of%202014%20%28Colombia%29", "title": "List of number-one songs of 2014 (Colombia)", "text": "This is a list of the National-Report Top 100 Nacional number-one songs of 2014. Chart rankings are based on radio play and are issued weekly. The data is compiled monitoring radio stations through an automated system in real-time.\n\nNumber ones be week\n\nReferences\n\n \n\nNumber-one songs\nColombia\nColombian record charts", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41597458", "url": "https://en.wikipedia.org/wiki/Free%20Ocean%20CO2%20Enrichment", "title": "Free Ocean CO2 Enrichment", "text": "Free Ocean CO2 Enrichment (FOCE) is a technology facilitating studies of the consequences of ocean acidification for marine organisms and communities by enabling the precise control of CO2 enrichment within in situ, partially open, experimental enclosures. Current FOCE systems control experimental CO2 perturbations by real-time monitoring of differences in seawater pH between treatment (i.e. high-CO2) and control (i.e. ambient) seawater within experimental enclosures.\n\nOverview \nIn situ, control", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41610646", "url": "https://en.wikipedia.org/wiki/Blitzkrieg%203", "title": "Blitzkrieg 3", "text": "Blitzkrieg 3 () is an online massively multiplayer online real-time strategy computer game, based on the events of World War II, a sequel to Blitzkrieg 2 and is the third and latest title in the Blitzkrieg series. Nival published the first trailer for the game on YouTube on August 13, 2013 featuring live action footage mixed with concept artwork and actual in-game footage and renders. Company's CEO Sergey Orlovskiy told in an interview, that game will be released at the third part of 2015. On No", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41610670", "url": "https://en.wikipedia.org/wiki/Massively%20multiplayer%20online%20real-time%20strategy%20game", "title": "Massively multiplayer online real-time strategy game", "text": "Massively multiplayer online real-time strategy game (MMORTS) mixes the genres of real-time strategy and massively multiplayer online games, possibly in the form of web browser-based games, in which a very large number of players interact with one another within a virtual world. Players often assume the role of a general, king, or other type of figurehead leading an army into battle while maintaining the resources needed for such warfare. The titles are often based in a sci-fi or fantasy unive", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41610702", "url": "https://en.wikipedia.org/wiki/List%20of%20massively%20multiplayer%20online%20real-time%20strategy%20games", "title": "List of massively multiplayer online real-time strategy games", "text": "This is a selected list of massively multiplayer online real-time strategy games. MMORTSs are large multi-user games that take place in perpetual online worlds with hundreds or thousands of other players.\n\nBusiness models\n\nMMORTSs today use a wide range of business models, from completely free of charge (no strings attached) or advertise funded to various kinds of payment plans. This list uses the following terms.\nFree-to-play (F2P) means that there might be a cost to purchase the software but t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41611396", "url": "https://en.wikipedia.org/wiki/Massively%20multiplayer%20online%20first-person%20shooter%20game", "title": "Massively multiplayer online first-person shooter game", "text": "A massively multiplayer online first-person shooter game (MMOFPS) is an online game which mixes the genres of first-person shooter and massively multiplayer online game. A MMOFPS is a real-time shooter experience where a very large number of players simultaneously interact with one another in a virtual world. These games provide large-scale, sometimes team-based combat.\n\nHowever, due to the inherent fast-paced, strategic nature of this genre, players must rely on their physical coordination and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41643846", "url": "https://en.wikipedia.org/wiki/National%20Precursor%20Log%20Exchange", "title": "National Precursor Log Exchange", "text": "The National Precursor Log Exchange (NPLEx) is a real-time electronic logging system which tracks sales of the methamphetamine precursors ephedrine and pseudoephedrine in the United States. The program is operated by the National Association of Drug Diversion Investigators (NADDI), funded by manufacturers of pseudoephedrine medicine, and technology provided through contract by Apriss Inc. As of January 2014, 29 states have passed NPLEx-related legislation, and it is implemented in most other sta", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41644345", "url": "https://en.wikipedia.org/wiki/BandFuse%3A%20Rock%20Legends", "title": "BandFuse: Rock Legends", "text": "BandFuse: Rock Legends is a music video game produced by American studio Realta Entertainment Group. It integrates real musical instruments with video game consoles through a proprietary audio engine developed by Realta Entertainment Group. This audio engine supports up to 4 players, and connects to PlayStation 3 and Xbox 360 consoles using real electric guitars, basses and microphones, providing scoring and real-time performance feedback during play.\n\nOverview\nThe game is designed to be a \"Pick", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41653781", "url": "https://en.wikipedia.org/wiki/Money.Net", "title": "Money.Net", "text": "Money.Net Inc is a privately held financial data technology company and financial data vendor based in New York City.\n\nHistory \nMoney.Net provides real-time live streaming financial market information such as prices, breaking financial news, technical analysis charts, trade idea generation tools, and a spreadsheet API over the internet to individual traders and institutional trading floors. The product coverage is global, and is multi-asset class, including equities, fixed income, foreign exchan", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41671035", "url": "https://en.wikipedia.org/wiki/LFE%20%28programming%20language%29", "title": "LFE (programming language)", "text": "Lisp Flavored Erlang (LFE) is a functional, concurrent, garbage collected, general-purpose programming language and Lisp dialect built on Core Erlang and the Erlang virtual machine (BEAM). LFE builds on Erlang to provide a Lisp syntax for writing distributed, fault-tolerant, soft real-time, non-stop applications. LFE also extends Erlang to support metaprogramming with Lisp macros and an improved developer experience with a feature-rich read\u2013eval\u2013print loop (REPL). LFE is actively supported on al", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41672657", "url": "https://en.wikipedia.org/wiki/Unvanquished%20%28video%20game%29", "title": "Unvanquished (video game)", "text": "Unvanquished is a free and open-source video game. It is a multiplayer first-person shooter and real-time strategy game where Humans and Aliens fight for domination.\n\nGameplay \n\nPlayers fight in an alien or human team with respective melee and conventional ballistic weaponry. The aim of the game is to destroy the enemy team and the structures that keep them alive, as well as ensure one's own team's bases and expansions are maintained. Players earn resources for themselves and their team via aggr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41674673", "url": "https://en.wikipedia.org/wiki/OpenH264", "title": "OpenH264", "text": "OpenH264 is a free software library for real-time encoding and decoding video streams in the H.264/MPEG-4 AVC format. It is released under the terms of the Simplified BSD License.\n\nHistory\n\nMove to free-to-use binaries\nOn October 30, 2013, Rowan Trollope from Cisco Systems announced that Cisco would release both binaries and source code of an H.264 video codec called OpenH264 under the Simplified BSD license, and pay all royalties for its use to MPEG LA themselves for any software projects that ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41678937", "url": "https://en.wikipedia.org/wiki/Weather%20media%20in%20the%20United%20States", "title": "Weather media in the United States", "text": "The weather media in the United States includes coverage of weather and weather forecasting by farmers' almanacs, newspapers, radio, television stations, and the internet. Farmers' Almanacs have taken a stab at forecasting for the following year or so for around two centuries. At first, weather media included reporting on past events, with forecasting playing a role from the late 19th century onward. Weather-related information proliferated to near real-time after the invention of the telegraph.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41681886", "url": "https://en.wikipedia.org/wiki/Collabrification", "title": "Collabrification", "text": "Collabrification came from the foundation of making mobile education more collaborative. From the start, it was designed to make something that was inherently non-collaborative and make it collaborative. The infrastructure has been used in the IMLC, University of Michigan, University of Texas, and the department of Mathematics and Information Technology at The Hong Kong Institute of Education. By building real-time, synchronous collaboration into mobile infrastructure, people build on the Four C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41693315", "url": "https://en.wikipedia.org/wiki/European%20Multidisciplinary%20Seafloor%20and%20water%20column%20Observatory", "title": "European Multidisciplinary Seafloor and water column Observatory", "text": "European Multidisciplinary Seafloor and water-column Observatory (EMSO) is a large-scale European distributed Research Infrastructure for ocean observation, enabling real-time interactive long term monitoring of ocean processes. EMSO allows study of the interaction between the geosphere, the biosphere, the hydrosphere, and the lithosphere; including natural hazards, climate change, and marine ecosystems. EMSO nodes have been deployed at key sites in European seas, starting from the Arctic, thro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41698865", "url": "https://en.wikipedia.org/wiki/Anno%20%28video%20game%20series%29", "title": "Anno (video game series)", "text": "Anno is a real-time strategy, economic simulation video game series, conceived in 1998 by Max Design. The series focuses on players establishing colonies on a series of small islands, conducting exploration of the region, diplomacy and trade with other civilisations and traders, while managing resources and engaging in combat both on land and sea. Most games in the series take place during Renaissance and Empire-building historical periods of Earth's history, with cultures, architecture and cust", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41727107", "url": "https://en.wikipedia.org/wiki/Blitzkrieg%20%28video%20game%20series%29", "title": "Blitzkrieg (video game series)", "text": "The Blitzkrieg series is a collection of real-time tactics (RTT) computer games set in World War II.\n\nGameplay\nSimilar to the Sudden Strike games Blitzkrieg focuses on battles rather than real-time strategy aspects like base building.\n\nMultiplayer\nEach Blitzkrieg game has included the ability to play multiplayer games against other humans. With the latest entry in the series Blitzkrieg 3 implementing Massively multiplayer online real-time strategy game elements.\n\nGames\n\nBlitzkrieg\n\nBlitzkrieg ()", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41727515", "url": "https://en.wikipedia.org/wiki/Sudden%20Strike%20%28video%20game%29", "title": "Sudden Strike (video game)", "text": "Sudden Strike is a real-time tactics computer game set in World War II and the first game in the Sudden Strike series. The game was developed by Fireglow based in Russia and published by CDV software of Germany. The player selects a faction (e.g. Soviets, Germans, or Allied forces) and gains control of many varied units such as infantry, tanks and artillery. The games focus primarily on tactics, eschewing traditional real-time strategy resource gathering and base development.\n\nSudden Strike was ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41727739", "url": "https://en.wikipedia.org/wiki/Sudden%20Strike%203%3A%20Arms%20for%20Victory", "title": "Sudden Strike 3: Arms for Victory", "text": "Sudden Strike 3: Arms for Victory or Sudden Strike III is a real-time tactics computer games by Russian studio Fireglow Games set in World War II, the third game in the Sudden Strike series and the sequel to Sudden Strike 2.\n\nGameplay\nSudden Strike 3 was unique in the series in that it was the first released game in the franchise featuring 3D graphics. It was released in April 2008, and it currently has a free add-on for it. It features the pacific campaigns, as well as the U.S. and Allied campa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41728275", "url": "https://en.wikipedia.org/wiki/Timelines%3A%20Assault%20on%20America", "title": "Timelines: Assault on America", "text": "Timelines: Assault on America is a real-time strategy game set in an alternate history World War II, developed by Hungarian studio 4Flash Interactive. The game was being re-released for SteamOS in 2014. Released on iOS and Android on February 17, 2015.\n\nPlot \nOn July 20, 1942, the United States\u2019 Office of Strategic Services (OSS) takes advantage of information provided to them by the underground German Resistance against the Third Reich. The OSS launch Operation \u2018Wolf\u2019s Head\u2019, where top marksmen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41751755", "url": "https://en.wikipedia.org/wiki/List%20of%20tactical%20role-playing%20video%20games", "title": "List of tactical role-playing video games", "text": "\n\nSee also\n Lists of video games\n List of turn-based tactics video games\n List of real-time tactics video games\n\nfr:Liste chronologique des tacticals RPG", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41761705", "url": "https://en.wikipedia.org/wiki/Squeaky%20Dolphin", "title": "Squeaky Dolphin", "text": "Squeaky Dolphin is a program developed by the Government Communications Headquarters (GCHQ), a British intelligence and security organization, to collect and analyze data from social media networks. The program was first revealed to the general public on NBC on 27 January 2014 based on documents previously leaked by Edward Snowden.\n\nScope of surveillance \nAccording to a document of the GCHQ dated August 2012, the program enables broad, real-time surveillance of the following items:\n\n YouTube vid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41797535", "url": "https://en.wikipedia.org/wiki/Men%20of%20War", "title": "Men of War", "text": "Men of War is a real-time tactics video game franchise, based mainly in World War II.\n\nMain series\n\nSoldiers: Heroes of World War II\nSoldiers: Heroes of World War II is the original game of the 'Men of War' series, and uses an early GEM engine. The player can control German, British, American or Soviet soldiers in single and multiplayer. As with many of the Men of War games, the missions are based on leading a small amount of forces into battle against a larger enemy. The goal is to use military", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41839863", "url": "https://en.wikipedia.org/wiki/INtime", "title": "INtime", "text": "The INtime Real Time Operating System (RTOS) family is based on a 32-bit RTOS conceived to run time-critical operations cycle-times as low as 50\u03bcs. INtime RTOS runs on single-core, hyper-threaded, and multi-core x86 PC platforms from Intel and AMD. It supports two binary compatible usage configurations; INtime for Windows, where the INtime RTOS runs alongside Microsoft Windows\u00ae, and INtime Distributed RTOS, where INtime runs one.\n\nLike its iRMX predecessors, INtime is a real-time operating syste", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41853107", "url": "https://en.wikipedia.org/wiki/Nanex", "title": "Nanex", "text": "Nanex is a Chicago-based firm that offers streaming market data services, and real-time analysis and visualization tools. They offer data on all market transactions to their clients who are typically traders and other financial analysis firms. \"The company can analyse millions of trades per second.\"\n\nNanex is the creator and developer of NxCore, a ticker plant that delivers streaming whole market data from Telvent DTN and provides an application programming interface. The company was founded in ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41854640", "url": "https://en.wikipedia.org/wiki/Jungle%20Rumble", "title": "Jungle Rumble", "text": "Jungle Rumble: Freedom, Happiness, and Bananas is a 2014 independent video game developed and published by American indie studio Disco Pixel. The game is a crossover between a rhythm game and a real-time strategy video game in which the player drums on a mobile screen to control a tribe of monkeys.\n\nGameplay \n\nThe game is played on a mobile device held vertically. The player drums on monkeys to control them, with different patterns for moving and attacking. Consistently moving builds \"mojo\" whic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41855438", "url": "https://en.wikipedia.org/wiki/Brigador", "title": "Brigador", "text": "Brigador (originally titled Matador) is an isometric real-time tactical game from independent studio Stellar Jockeys, released on October 16, 2015 on early access. It officially left early access on June 2, 2016. The game has been compared to the Syndicate and MechWarrior series. Brigador: Up-Armored Edition, was the improved relaunch released on June 2, 2017, which provided a new introduction to game mechanics, rebalanced the game's overall difficulty, added localization support, and made graph", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41859803", "url": "https://en.wikipedia.org/wiki/Ontology%20Systems", "title": "Ontology Systems", "text": "Ontology Systems is the trading name of Ontology Partners Limited and since 2 March 2017 has been a wholly owned subsidiary on EXFO Inc. It was founded in London in 2005 by Benedict Enweani and Leo Zancani. Ontology Systems develop a real-time network and service topology platform and toolset used for service and customer assurance applications. They are also used as a source of data for active inventory systems to support visualization, troubleshooting, workflow and data alignment for NOC, SO", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41863561", "url": "https://en.wikipedia.org/wiki/Apache%20Druid", "title": "Apache Druid", "text": "Druid is a column-oriented, open-source, distributed data store written in Java. Druid is designed to quickly ingest massive quantities of event data, and provide low-latency queries on top of the data. The name Druid comes from the shapeshifting Druid class in many role-playing games, to reflect that the architecture of the system can shift to solve different types of data problems.\n\nDruid is commonly used in business intelligence-OLAP applications to analyze high volumes of real-time and histo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "41901166", "url": "https://en.wikipedia.org/wiki/No%20Man%27s%20Land%20%28video%20game%29", "title": "No Man's Land (video game)", "text": "No Man's Land, also known as No Man's Land: Fight for your Rights!, is a 2003 real-time strategy video game for Microsoft Windows developed by Related Designs and published by CDV Software.\n\nGameplay\nThe game is set in the new world where the players can play as one of the six factions. Playable factions are the English, Spaniards, American Patriots, American Settlers, Woodland Native Americans, and Prairie Native Americans. Every faction has its own strength and weaknesses and heroes.\nThe singl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42016322", "url": "https://en.wikipedia.org/wiki/Plague%20Inc%3A%20Evolved", "title": "Plague Inc: Evolved", "text": "Plague Inc: Evolved is a real-time strategy simulation video game, developed and published by UK-based independent games studio Ndemic Creations. The game is a remake of the developer's previous game, Plague Inc., for PC and consoles. In the game, the player creates and evolves a pathogen in an effort to destroy the world with a deadly plague. The game uses an epidemic model with a complex and realistic set of variables to simulate the spread and severity of the plague and has attracted the atte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42094625", "url": "https://en.wikipedia.org/wiki/Age%20of%20Ascent", "title": "Age of Ascent", "text": "Age of Ascent is a video game, aiming \"to become the biggest MMO ever\". It uses an on-demand scaling cloud-based architecture and features real-time direct piloting in a single integrated universe. It was announced on February 28, 2014.\n\nOn March 14, 2014 Age of Ascent sought to officially break the Guinness World Record for the \"World's Largest Videogame PvP Battle\" in a public alpha. The alpha was designed for 50,000+ players with a throttling mechanism for up to 2,000,000. At peak they had 99", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42098121", "url": "https://en.wikipedia.org/wiki/Audiosim%20%28software%20synthesizer%29", "title": "Audiosim (software synthesizer)", "text": "AudioSim is a virtual analog software synthesizer. It was released in 1996 by the German-Hungarian software company Audio Simulation. It was first available for DOS and supported SoundBlaster or Gravis Ultrasound Sound cards.\n\nDescription \n\nAudioSim contains 2 oscillators, 4 envelope generators, 2 LFOs and a self oscillating multimode filter. The parameters of the different modules are adjustable in real-time via the GUI using the mouse. The program also has MIDI support for Gravis Ultrasound an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42176435", "url": "https://en.wikipedia.org/wiki/Visualizing%20Energy%20Resources%20Dynamically%20on%20the%20Earth", "title": "Visualizing Energy Resources Dynamically on the Earth", "text": "VERDE (Visualizing Energy Resources Dynamically on the Earth) is a visualization and analysis capability of the United States Department of Energy (DOE). The system, developed and maintained by Oak Ridge National Laboratory (ORNL), provides wide-area situational understanding of the U.S. electric grid. Enabling grid monitoring, weather impacts prediction and analysis, VERDE supports preparedness and response to potentially large outage events. As a real-time geo-visualization capability, it char", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42191215", "url": "https://en.wikipedia.org/wiki/Pixel%20Piracy", "title": "Pixel Piracy", "text": "Pixel Piracy is an indie side-scrolling real-time strategy video game with roguelike elements, developed by Quadro Delta. In the game, players construct a pirate ship, hire and train a crew, and guide their crew toward notoriety as renowned pirates.\n\nGameplay \nPixel Piracy puts the player in control of a pirate captain. The game's goal is to defeat four notorious pirates, but players are free to adventure in the game as they wish. After customizing difficulty settings, the player's captain spawn", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42230872", "url": "https://en.wikipedia.org/wiki/Flightradar24", "title": "Flightradar24", "text": "Flightradar24 is a Swedish internet-based service that shows real-time commercial aircraft flight tracking information on a map. It includes flight tracking information, origins and destinations, flight numbers, aircraft types, positions, altitudes, headings and speeds. It can also show time-lapse replays of previous tracks and historical flight data by airline, aircraft, aircraft type, area or airport. It aggregates data from multiple sources but, outside of the United States, mostly from crowd", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42301094", "url": "https://en.wikipedia.org/wiki/CrazyTalk", "title": "CrazyTalk", "text": "CrazyTalk is Reallusion's brand name for its 2D animation software. The product series includes CrazyTalk, a 2D facial animation software tool, and CrazyTalk Animator, a face and body 2D animation suite.\n\nCrazyTalk, the 2D facial animation software, is a real-time, 2D animation and rendering software that enables users to make 2D animated cartoons. It is a facial animation tool that uses voice and text to vividly animate facial images. It has an auto motion engine which allows animators to use t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42302113", "url": "https://en.wikipedia.org/wiki/Boom%20Beach", "title": "Boom Beach", "text": "Boom Beach is a freemium massively multiplayer online real-time strategy game for iOS and Android, developed by Supercell. It was soft launched in Canada on 11 November 2013 and released worldwide on 26 March 2014.\n\nGameplay\n\nBoom Beach is a strategy game that combines attacks on and from other players with attacks against computer-generated (NPC) bases. The game's storyline is set in a tropical archipelago with the player on an island with defenses and troops (similar to Supercell's Clash of Cl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42342343", "url": "https://en.wikipedia.org/wiki/Gnowit", "title": "Gnowit", "text": "Gnowit is a real-time media monitoring software tool that provides detailed analysis for media analysts, marketing management, and PR organizations. For years companies would have to rely on humans to perform this analysis but Gnowit employs automation with the use of artificial intelligence. The company is based in Ottawa and is part of the Invest Ottawa incubator program. Co-founded by both Shahzad Khan and Mohammad Al-Azzouni in 2010, they worked on the product for a number of years before la", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42414557", "url": "https://en.wikipedia.org/wiki/Fire%20and%20Darkness", "title": "Fire and Darkness", "text": "Fire and Darkness is a cancelled three-dimensional real-time strategy video game developed by Singularity Software. The game consists of a player controlling one of two factions, and their main mission is to defeat the enemy faction to secure the planet's resources. Its development started in 1996 and lasted for three years, with developers working mostly on summer. Although the project was incomplete, it became the first game to win the Seumas McNally Grand Prize at the Independent Games Festiv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42473398", "url": "https://en.wikipedia.org/wiki/AVATAR%20%28MUD%29", "title": "AVATAR (MUD)", "text": "A.V.A.T.A.R. MUD is a free, online, massively multiplayer, fantasy, text-based role-playing game (or MUD), set in a real-time virtual environment. It combines elements of role-playing games, hack and slash style computer games, adventure games and social gaming.\n\nIt began as an LPMUD called Farside MUD at Newcastle University, in the summer of 1991, before ultimately relocating to the United States of America.{{cite book|last=Ito|first=Mizuko|title=Cybernetic Fantasies: E", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42486671", "url": "https://en.wikipedia.org/wiki/Naandi%20%28film%29", "title": "Naandi (film)", "text": "Naandi is a 1964 Kannada romantic drama film directed and written by N. Lakshminarayan, making his first venture in film direction. The film was produced by actor Vadiraj and Jawahar for Sri Bharathi Chitra studio house. The film starred Dr. Rajkumar and Harini along with Kalpana and Udaykumar playing guest roles. Actor Dinesh made his debut through this film in a supporting role.\n\nThe film, upon release garnered wide appreciation and recognition for capturing the real-time plights of those with", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42521646", "url": "https://en.wikipedia.org/wiki/Hex%20Heroes", "title": "Hex Heroes", "text": "Hex Heroes is an unreleased party, real-time strategy game for Microsoft Windows, macOS, Linux and Wii U. The game is being developed by Prismatic Games, and designed by Mario Casta\u00f1eda, who had previously co-created The Bridge.\n\nGameplay\nUp to five players, one with the Wii U GamePad and four with Wii Remotes, harvest resources, build structures, fend off enemies, and explore dangerous territories. The player using the GamePad manages resources and teammates, makes executive decisions, and surv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42536240", "url": "https://en.wikipedia.org/wiki/Rauland-Borg", "title": "Rauland-Borg", "text": "Rauland is an American manufacturing company based in Mount Prospect, Illinois that produces workflow and life-safety solutions for hospitals and schools worldwide. Rauland's healthcare product, Responder is an intelligent nurse call solution designed for direct patient-to-staff communication, intelligent call routing, and real-time reporting of patient care. Rauland's education product, Telecenter, is a critical communications solution designed to assist school communications involving emerge", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42649214", "url": "https://en.wikipedia.org/wiki/Media-on-demand", "title": "Media-on-demand", "text": "Media on demand (MOD) is a new generation of video on demand, which not only allows users to watch/listen to audio and video content like movies and TV shows, but also provides functions including real-time information, interactive games, attractions guidance, route information, advertising systems, and shopping & ordering services. Users can select content whenever they want, rather than having to watch it at a specific broadcast time.\n\nIn the transportation industry, media on demand technology", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42672869", "url": "https://en.wikipedia.org/wiki/Pingboard", "title": "Pingboard", "text": "Pingboard is real-time organizational chart software that makes it easy to build professional looking org charts. Keep company org charts in sync with HRMS software automatically, replacing the need to make org charts manually using flow charting applications like Microsoft Visio or Lucidchart. Org charts can be shared with specific people, kept private or accessed by all employees via a native mobile org chart app. Employee information can be updated by the employees themselves or by administra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42672986", "url": "https://en.wikipedia.org/wiki/Apache%20Samza", "title": "Apache Samza", "text": "Apache Samza is an open-source, near-realtime, asynchronous computational framework for stream processing developed by the Apache Software Foundation in Scala and Java. It has been developed in conjunction with Apache Kafka. Both were originally developed by LinkedIn.\n\nOverview\nSamza allows users to build stateful applications that process data in real-time from multiple sources including Apache Kafka. \n\nSamza provides fault tolerance, isolation and stateful processing. Unlike batch systems such", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42797366", "url": "https://en.wikipedia.org/wiki/Google%20Forms", "title": "Google Forms", "text": "Google Forms is a survey administration software included as part of the free, web-based Google Docs Editors suite offered by Google. The service also includes Google Docs, Google Sheets, Google Slides, Google Drawings, Google Sites, and Google Keep. Google Forms is only available as a web application. The app allows users to create and edit surveys online while collaborating with other users in real-time. The collected information can be automatically entered into a spreadsheet.\n\nFeatures\nThe G", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42837925", "url": "https://en.wikipedia.org/wiki/Wargame%3A%20Red%20Dragon", "title": "Wargame: Red Dragon", "text": "Wargame: Red Dragon is a real-time strategy video game developed by Eugen Systems and published by Focus Home Interactive, released on April 17, 2014. It is the sequel to the 2013 Wargame: AirLand Battle.\n\nGameplay\nWargame: Red Dragon is set in East Asia during an alternate history Cold War where the Soviet Union doesn't collapse and featuring five new Asia Pacific factions: China, North Korea, South Korea, Japan and the ANZAC. The battlefield is viewed from a top-down perspective, giving the pl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42838891", "url": "https://en.wikipedia.org/wiki/Enplug", "title": "Enplug", "text": "Enplug was an American technology company headquartered in Culver City, California that offers software for digital displays, allowing real-time social media interaction between brands and users. The company was a software licensing business.\n\nEnplug was acquired by Spectrio in 2021.\n\nHistory\nEnplug was part of the emerging Los Angeles startup community, dubbed \"Silicon Beach\" The company was a graduate of StartEngine, founded by Howard Marks, in September 2012. Since its founding, the company h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42859759", "url": "https://en.wikipedia.org/wiki/Twitter%20Amplify", "title": "Twitter Amplify", "text": "Twitter Amplify is a video advertising product that Twitter launched for media companies and consumer brands in May 2013. The product gives broadcasters the opportunity to publish real-time in-tweet video clips that are accompanied by pre-roll or post-roll advertisements. It is Twitter's major initiative in social television, designed to enhance the user experience with premium and timely TV highlights, enable broadcasters to reach new audiences and provide brands with a cross-platform tool for ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42880985", "url": "https://en.wikipedia.org/wiki/Citadels%20%28video%20game%29", "title": "Citadels (video game)", "text": "Citadels is a real-time strategy video game developed by Games Distillery and published by bitComposer Games. Based on a loose interpretation of the King Arthur tale, players are tasked with restoring the honor, glory and reign of the Arthurian line. With two separate campaigns, players are given the choice of seeing the Good or Evil side of the war, as they carve a path into an uncertain future for the King and his loyal men. Upon the successful completion of in-game side-quests, players will b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "42911827", "url": "https://en.wikipedia.org/wiki/Talkomatic", "title": "Talkomatic", "text": "Talkomatic was an online chat system that facilitates real-time text communication among a small group of people. Each participant in Talkomatic has their own section of the screen, broadcasting messages letter-by-letter as they are typed. This interaction is dissimilar from present-day chat systems and is based upon work done in 1973 at the University of Illinois on the PLATO system by Doug Brown and David R. Woolley. This work is part of a conservation effort aimed at preserving historically ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43001443", "url": "https://en.wikipedia.org/wiki/Rise%20of%20Nations%20%28disambiguation%29", "title": "Rise of Nations (disambiguation)", "text": "Rise of Nations is a series of real-time strategy video game. It includes:\n\nRise of Nations, the first video game in the series\nRise of Nations: Thrones and Patriots, the expansion pack to the original game\nRise of Nations: Extended Edition, the re-release of the original game and the expansion\nRise of Nations: Rise of Legends, a real-time strategy fantasy spin-off of the series", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43011758", "url": "https://en.wikipedia.org/wiki/There%20Came%20an%20Echo", "title": "There Came an Echo", "text": "There Came an Echo is a real-time tactics video game developed for the PlayStation 4, Microsoft Windows through Steam and was released on 24 February 2015. The player can use a voice control system to direct their units around the battlefield to ensure a tactical advantage over the enemy. The game features voice actors Wil Wheaton, Ashly Burch, Yuri Lowenthal, Laura Bailey and Cassandra Morris.\n\nThe game was crowdfunded via Kickstarter for $115,570 (USD) by 3,906 backers, the requested budget wa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43025307", "url": "https://en.wikipedia.org/wiki/StarDrive", "title": "StarDrive", "text": "StarDrive is a 4X real-time strategy video game by Zero Sum Games, it was released for Microsoft Windows in April 2013. The game was funded through Kickstarter, raising $17,676 in its December 2011 crowdfunding campaign. The player's goal is to dominate the galaxy with one of the eight races through diplomacy and war while developing new technologies, exploring new star systems and colonizing new planets. The game received a mixed critical reception, generating a score of 61/100 on reviews aggr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43040530", "url": "https://en.wikipedia.org/wiki/Draganflyer%20X6", "title": "Draganflyer X6", "text": "Draganflyer X6 is a commercial unmanned aerial vehicle.\n\nDescription\nDraganflyer X6 is a remote-controlled miniature helicopter that allows users to control it to a maximum height of . It allows for a fixed altitude to be set. The helicopter is mounted with a camera that can collect up to five hundred gigabytes of real-time recording data. It can be set to record at 1080 HD, low-light vision and thermal vision. The camera is mounted on the vibration-free bottom of the drone. The Draganflyer has ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43051163", "url": "https://en.wikipedia.org/wiki/Warhammer%2040%2C000%3A%20Storm%20of%20Vengeance", "title": "Warhammer 40,000: Storm of Vengeance", "text": "Warhammer 40,000: Storm of Vengeance is a real-time strategy video game developed and published by Eutechnyx. It was released for Microsoft Windows, Android and iOS. Warhammer 40,000: Storm of Vengeance was set in the Warhammer 40,000 universe, it follows the Dark Angels, commanded by Grand Master Belial, and the Bad Moons, commanded by Ork Warlord Ghazghkull Thraka on the planet Piscina IV. Warhammer 40,000: Storm of Vengeance was released on 3 April 2014 (Steam), 23 April 2014 (Google Play) an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43054835", "url": "https://en.wikipedia.org/wiki/United%20Nations%20Global%20Pulse", "title": "United Nations Global Pulse", "text": "The United Nations Global Pulse is an initiative of the United Nations that attempts to \"bring real-time monitoring and prediction to development and aid programs.\"\n\nHistory and activities\n\nThe United Nations Global Pulse was launched in 2009 as an information initiative by the Executive Office of the United Nations Secretary-General. In August 2013, the New York Times reported that Global Pulse had its main \"Pulse Lab\" in New York City, with a staff of 14 there, plus a staff of 10 in their lab ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43056044", "url": "https://en.wikipedia.org/wiki/Time-triggered%20architecture", "title": "Time-triggered architecture", "text": "Time-triggered architecture (abbreviated as TTA), also known as a time-triggered system, is a computer system that executes one or more sets of tasks according to a pre-determined and set task schedule. Implementation of a TT system will typically involve use of a single interrupt that is linked to the periodic overflow of a timer. This interrupt may drive a task scheduler (a restricted form of real-time operating system). The scheduler willin turnrelease the system tasks at predetermined poin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43085833", "url": "https://en.wikipedia.org/wiki/PowWow365", "title": "PowWow365", "text": "PowWow365, designed and developed by Hirasoft Corp, is a web conferencing application for businesses and organizations, allowing them to host and attend their meetings, conferences, trainings or workshops from anywhere around the world. The application allows both standard types of communications, i-e, real-time Point-to-point communications and multicast from one sender to the many receivers.\n\nOverview\n\nPowWow365 is complemented by (SSL) with Advanced Encryption Standard AES 256-bit encryption ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43085932", "url": "https://en.wikipedia.org/wiki/FurryBall", "title": "FurryBall", "text": "FurryBall is 3D computer graphics software and plug-in for real-time GPU production quality unbiased. It is also biased final frame render used for many short and full length animated movies. FurryBall was used for rendering the feature animated movie Goat story with Cheese - it was probably the first world feature animated movie rendered completely only on GPU in 2012.\n\nOverview\n\nFurryBall RT offers advanced rendering techniques, implemented directly into Autodesk Maya, Autodesk 3ds Max and Cin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43197227", "url": "https://en.wikipedia.org/wiki/Dualex", "title": "Dualex", "text": "The Dualex is an optical sensor developed by Force-A (No longer in business) for the assessment of flavonol, anthocyanin, and chlorophyll contents in leaves. The sensor is a result of technology transfer from the CNRS (National Center for Scientific Research) and University of Paris-Sud Orsay. It allows to perform real-time and non-destructive measurements. The main applications are plant science and agriculture research.\n\nCalculated indices\nThe assessment of polyphenolic compounds in leaves is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43246896", "url": "https://en.wikipedia.org/wiki/Generosity%3A%20An%20Enhancement", "title": "Generosity: An Enhancement", "text": "Generosity: An Enhancement is the tenth novel by American author Richard Powers. Like other Powers novels it is idea-driven, strongly focusing on social alienation and scientific progress. The novel employs metafiction, including real-time intrusions by the narrator who explicitly sets the novel in a \"parallel\" Chicago.\n\nGenerosity tells the story of Thassadit \"Thassa\" Amzwar, an Algerian refugee who seemingly has overwhelming happiness (\"hyperthymia\") written in her genes, and the confounding", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43248075", "url": "https://en.wikipedia.org/wiki/SMT%20%28media%20company%29", "title": "SMT (media company)", "text": "SMT (formerly SportsMEDIA Technology Corporation) pioneered the first real-time scoring and wireless data system on television. The privately held company specializes in data integration technology and broadcast graphics that enhance broadcasts, webcasts and live events in sports and entertainment. SMT\u2019s customers include major broadcast television networks, regional and specialty networks and sport governing bodies. In 2012 it acquired IDS (Information and Display Systems) as a division of the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43264948", "url": "https://en.wikipedia.org/wiki/Imperia%20Online", "title": "Imperia Online", "text": "Imperia Online is a persistent, browser-based, massively multiplayer, online real-time strategy game developed by the Bulgarian game production company Imperia Online JSC. It was originally released on 23 August 2005.\n\nSet in a medieval world, Imperia Online is a predominantly militaristic strategy game.\nImperia Online has been translated into 30 languages and has over 40 million registered users. The game is currently in its seventh version, but there are still active previous realms (such as ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43335173", "url": "https://en.wikipedia.org/wiki/Honeywell%20Level%206", "title": "Honeywell Level 6", "text": "The Honeywell Level 6 was a line of 16-bit minicomputers, later upgraded to 32-bit, manufactured by Honeywell, Inc. from the mid 1970s. Honeywell literature for Models 6/06, 6/34 and 6/36 say \"Series 60 (Level 6). In 1979 the Level 6 was renamed the DPS 6, subsequently DPS 6 Plus and finally DPS 6000.\n\nDescription\nAs initially introduced the Level 6 consisted of three models: the 6/06, the 6/34, and the 6/36. The CPU featured a real-time clock, a ROM bootstrap loader and 64 interrupt levels. Th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43399563", "url": "https://en.wikipedia.org/wiki/Palakkodu%20railway%20station", "title": "Palakkodu railway station", "text": "Palakkodu railway station is a railway station situated in Palakkodu, a panchayat town and taluk headquarters located in the Dharmapuri district of Tamil Nadu.\n\nAdministration\nIt has been administered by the South Western Railway Zone, included in the Bangalore railway division that was transferred over from the Southern Railway zone.\n\nLocation and layout\nThe station falls on the Dharmapuri\u2013Hosur state highway section. It has one platform.\n\nFacilities\nThe station is equipped with a real-time on", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43444434", "url": "https://en.wikipedia.org/wiki/CYREN", "title": "CYREN", "text": "Cyren Inc. is a cloud-based, Internet security technology company providing security as a service (SECaaS) and threat intelligence services to businesses. Services include email security, web security, DNS security, cloud sandboxing, inbound/outbound anti-spam services, real-time phishing detection and blocking, ransomware protection, URL filtering, IP reputation for email, malware attack detection, anti-malware and IP intelligence, botnet attack prevention, and cloud threat lookup. Cyren also p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43450596", "url": "https://en.wikipedia.org/wiki/Fraunhofer%20FDK%20AAC", "title": "Fraunhofer FDK AAC", "text": "Fraunhofer FDK AAC is an open-source library for encoding and decoding digital audio in the Advanced Audio Coding (AAC) format. Fraunhofer IIS, developed this library for Android 4.1. It supports several Audio Object Types including MPEG-2 and MPEG-4 AAC LC, HE-AAC (AAC LC + SBR), HE-AACv2 (LC + SBR + PS) as well AAC-LD (low delay) and AAC-ELD (enhanced low delay) for real-time communication. The encoding library supports sample rates up to 96\u00a0kHz and up to eight channels (7.1 surround).\n\nOperat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43450801", "url": "https://en.wikipedia.org/wiki/Thandor%3A%20The%20Invasion", "title": "Thandor: The Invasion", "text": "Thandor: The Invasion is a real-time strategy video game, which was developed by Innonics and published by JoWooD Productions in 2000.\n\nIt was met with negative reception. The graphics was measured as good, but resource-consuming. Many complaints caused by units behavioral model. Developers of game and critics says that storyline is present, but is not interesting (developers wanted to focus on gameplay).\n\nPlot\n\nBefore starting company you can choose the difficulty, but you choose not the \"smart", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43475567", "url": "https://en.wikipedia.org/wiki/WRC%2B", "title": "WRC+", "text": "WRC+ (also known as WRC plus) is the over-the-top official media service provider of the FIA World Rally Championship, provided by WRC Promoter GmbH, distributed digitally on connected TVs, smartphones, tablets, and on its website. It is available globally offering a subscription-based streaming service, with live coverage of each event of the World Rally Championship series, along with real-time GPS tracking, onboard videos of every rally, and 2.5 hours of on-demand highlights videos every rall", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43539426", "url": "https://en.wikipedia.org/wiki/Lambda%20architecture", "title": "Lambda architecture", "text": "Lambda architecture is a data-processing architecture designed to handle massive quantities of data by taking advantage of both batch and stream-processing methods. This approach to architecture attempts to balance latency, throughput, and fault-tolerance by using batch processing to provide comprehensive and accurate views of batch data, while simultaneously using real-time stream processing to provide views of online data. The two view outputs may be joined before presentation. The rise of lam", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43540537", "url": "https://en.wikipedia.org/wiki/Evergage", "title": "Evergage", "text": "Evergage is a cloud-based software that allows users to collect, analyze, and respond to user behavior on their websites and web applications in real-time. The company currently positions itself as a \"real-time personalization and customer data platform (CDP).\"\n\nThe company was founded as Apptegic in 2010 by Karl Wirth and Greg Hinkle, who met while working at Red Hat. In May 2012, Evergage was a finalist in the TechCrunch Disrupt Startup Battlefield and shortly thereafter launched its cloud-bas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43601561", "url": "https://en.wikipedia.org/wiki/TiVo%20Media%20File%20System", "title": "TiVo Media File System", "text": "The MFS or Media File System is a proprietary file system used on TiVo hard drives for fault tolerant real-time recording of live TV.\n\nAlthough MFS is still not particularly well understood by programmers unaffiliated with the TiVo corporation, enough is known about the file system to be able to do reads and limited writes. Applications exist to manipulate the file system and objects within it. Most of these applications are reverse engineered from software found on the TiVo itself, as many of t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43611710", "url": "https://en.wikipedia.org/wiki/Tribal%20Wars", "title": "Tribal Wars", "text": "Tribal Wars (TW) is a browser-based, real-time strategy, massively multiplayer online game set in the Middle Ages. The game is set with each player starting off controlling a small village, with the objective being to slowly expand and conquer new villages through the formation of complex armies and a tactical combat system. The game incorporates multiple components of teamwork, planning, and strategy. The game allows players to collect resources, build armies, construct buildings, combat other ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43669588", "url": "https://en.wikipedia.org/wiki/NowCast%20%28air%20quality%20index%29", "title": "NowCast (air quality index)", "text": "The PM NowCast is a weighted average of hourly air monitoring data used by the United States Environmental Protection Agency (USEPA) for real-time reporting of the Air Quality Index (AQI) for PM (PM10 or PM2.5).\n\nThe PM NowCast is computed from the most recent 12 hours of PM monitoring data, but the NowCast weights the most recent hours of data more heavily than an ordinary 12-hour average when pollutant levels are changing. The PM NowCast is used in lieu of a 24-hour average PM concentration i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43672606", "url": "https://en.wikipedia.org/wiki/Openpass", "title": "Openpass", "text": "OpenPass is a method for data recording on RFID card in an integrated access control system, with proprietary software by different providers.\nOpenPass is released under the GPL license.\n\nThe OpenPass system\n\nThe OpenPass system consist of:\ncontactless smartcard ISO 15693, without proprietary restrictions;\nticket counters and gates compatible with the standard\ncentral server and open platform for data collection\nweb service connection and data transmission real-time or [batch].\n\nTo allow the exc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43713849", "url": "https://en.wikipedia.org/wiki/Multiplex%20%28sensor%29", "title": "Multiplex (sensor)", "text": "Multiplex sensor is a hand-held multiparametric optical sensor developed by Force-A. The sensor is a result of 15 years of research on plant autofluorescence conducted by the CNRS (National Center for Scientific Research) and University of Paris-Sud Orsay. It provides accurate and complete information on the physiological state of the crop, allowing real-time and non-destructive measurements of chlorophyll and polyphenols contents in leaves and fruits.\n\nTechnology\nMultiplex assesses the chloroph", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43800179", "url": "https://en.wikipedia.org/wiki/Norton%20Security", "title": "Norton Security", "text": "Norton Security is a cross-platform security suite that provides subscription-based real-time malware prevention and removal in addition to identity theft protection and performance tuning tools. Other features include a personal firewall, email spam filtering, and phishing protection. Released on September 23, 2014 as part of Symantec's streamlined Norton line, it replaces the long-running Norton Internet Security as their flagship antivirus product.\n\nVersion history\nIn 2014, in an effort to st", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43964977", "url": "https://en.wikipedia.org/wiki/Hackpad", "title": "Hackpad", "text": "Hackpad was a web-based collaborative real-time text editor forked from Etherpad.\n\nIn April 2014, Hackpad was acquired by Dropbox. In April 2015, it was announced that Hackpad would be released as open source and source code was published on GitHub in August 2015, under the Apache license 2.0. On April 25, 2017, Hackpad announced that it is to shut down on July 19, 2017, permanently migrating to Dropbox Paper.\n\nSee also \n Etherpad\n Google Docs\n\nReferences\n\nExternal links \n \n\nCollaborative real-t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "43996828", "url": "https://en.wikipedia.org/wiki/Autumn%20Dynasty", "title": "Autumn Dynasty", "text": "Autumn Dynasty is a real-time strategy game developed by Singaporean studio Touch Dimensions, that used to be published by Bulkypix.\n\nCritical reception\nThe game has a Metacritic score of 85% based on 12 critic reviews.\n\nReferences\n\nExternal links\n Official site\n Touch Dimensions site\n\n2012 video games\nAndroid (operating system) games\nBlackBerry games\nIOS games\nReal-time strategy video games\nVideo games developed in Singapore", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44002670", "url": "https://en.wikipedia.org/wiki/CastleStorm", "title": "CastleStorm", "text": "CastleStorm is a 2013 game developed by Zen Studios released for Microsoft Windows, PlayStation 3, PlayStation 4, PlayStation Vita, Wii U, Xbox 360, and Xbox One. A remastered version called CastleStorm: Definitive Edition, as well as a free-to-play mobile version, CastleStorm: Free to Siege, was released in 2014. A sequel, CastleStorm 2 was released on the 31st July 2020.\n\nGameplay\n\nCastleStorm is a side-scrolling physics-based real-time strategy game with tower defense elements. The player pl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44045710", "url": "https://en.wikipedia.org/wiki/Michael%20James%20Aitken", "title": "Michael James Aitken", "text": "Michael James Aitken is a New Zealand author who specializes in the area of security market microstructure and design. He is listed among the top 1000 authors publishing in the finance literature over the last 50 years. His research has contributed to the understanding of market microstructure and its impact on market efficiency and, in particular, on market integrity.This results in great part from his role in the design of information systems for real-time fraud detection in securities markets", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44046965", "url": "https://en.wikipedia.org/wiki/Relational%20data%20stream%20management%20system", "title": "Relational data stream management system", "text": "A relational data stream management system (RDSMS) is a distributed, in-memory data stream management system (DSMS) that is designed to use standards-compliant SQL queries to process unstructured and structured data streams in real-time. Unlike SQL queries executed in a traditional RDBMS, which return a result and exit, SQL queries executed in a RDSMS do not exit, generating results continuously as new data become available. Continuous SQL queries in a RDSMS use the SQL Window function to analyz", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44084888", "url": "https://en.wikipedia.org/wiki/EVRYTHNG", "title": "EVRYTHNG", "text": "EVRYTHNG is an internet of things software company based in London, San Francisco and New York City. The company manages digital identity data in an intelligent IoT \"smart products\" cloud to connect \"consumer packaged goods\" to the Web and drive real-time applications. Niall Murphy, Andy Hobsbawm, Dominique Guinard and Vlad Trifa founded the company in January 2011. Murphy is the company's founding CEO.\n\nHistory\nNiall Murphy, Andy Hobsbawm, Dominique Guinard and Vlad Trifa founded the company i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44146213", "url": "https://en.wikipedia.org/wiki/Real-time%20labor-market%20information", "title": "Real-time labor-market information", "text": "Real-time labor-market information (LMI) is the generation of data on labor demand from open Internet sources. Real-time feeds give an immediate view into conditions that trades precision for currency. Because real-time labor market information is scraped from employer, industry organizations, recruiters and job boards and interpreted using natural language text interpretation, it is intrinsically subject to mis-identifications, missed information, and duplications. Nevertheless, real-time LMI ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44177954", "url": "https://en.wikipedia.org/wiki/War%20Robots", "title": "War Robots", "text": "War Robots (previously titled Walking War Robots) is mobile app game developed and published by the Russian game developer Pixonic. It is a third-person shooter with real-time PvP battles in Multiplayer Online Battle Arena (MOBA) mode. Players operate BattleTech-like robots on a live battlefield. They either have the option to play solo or team up with other players. It was first released on iOS in 2014 and was released to Android the following year.\n\nReception \nEngadget Android Police reviewed", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44193899", "url": "https://en.wikipedia.org/wiki/Spoonr", "title": "Spoonr", "text": "Spoonr (formerly Cuddlr) was a social-meeting application where strangers who lived within walking distance from each other could meet up for casual, platonic cuddling.\n\nOverview\nUsers could send nearby prospective cuddle partners an invitation to cuddle, which the fellow users could either choose to accept or decline within 60 minutes. The application provided real-time walking directions to cuddle partners, allowing them to meet up, either in a private or public setting. Unlike Tinder, the ag", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44218867", "url": "https://en.wikipedia.org/wiki/MitoMap", "title": "MitoMap", "text": "MitoMap is a real time haplotyping protocol that analyzes pathogenic variants that cause several mitochondrial diseases. It was carried out real-time for the first time during the 2013 NexGen Genomics & Bioinformatics Technologies conference at Delhi, India from November 14\u201316. The results have been published online.\n\nReferences \n\n2013 introductions\nBioinformatics", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44241832", "url": "https://en.wikipedia.org/wiki/Bindo", "title": "Bindo", "text": "Bindo is a retail technology company, headquartered in New York, NY with APAC headquarters in Hong Kong. Its core product is a cloud-based point of sale system that enables online shopping for the end consumer. Bindo's hyperlocal marketplace allows merchants to run their stores and merchandise online and connect them with consumers in their neighborhood. Bindo creates a real-time product graph that connects brands, consumers, and merchants.\n\nHistory\nBindo was founded in October 2010, by JoMing A", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44285013", "url": "https://en.wikipedia.org/wiki/AppFlood", "title": "AppFlood", "text": "AppFlood is a programmatic mobile advertising platform created by PapayaMobile. It was launched in 2012, and in 2014 became the first mobile real-time bidding platform to be engineered and made available in China.\n\nHistory\nAppFlood was launched in July 2012 by PapayaMobile, a mobile technology company previously known for its social gaming network. By AppFlood's one-year anniversary, it had attracted 4,500 Android users and was delivering 1.3 billion impressions. In April 2014, AppFlood launc", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44340720", "url": "https://en.wikipedia.org/wiki/L3DT", "title": "L3DT", "text": "L3DT is a Windows application used to create maps and textures which can be used by artists and video game designers to generate 3D environments. The software was developed by Aaron Torpy, proprietor of Bundysoft. Both standard (free) and professional versions of the software can be found on the company's website.\n\nTools\nL3DT has a number of tools which include generating and modifying heightmaps, generating textures and different types of texture maps, real-time 3D display of heightmaps and the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44409598", "url": "https://en.wikipedia.org/wiki/Creacode%20SIP%20Application%20Server", "title": "Creacode SIP Application Server", "text": "Creacode SIP Application Server is a SIP call controller, SIP IVR, SIP Registrar and SIP NAT traversal software product.\n\nFeatures \nCreacode SIP Application Server's javascript-like, event-driven scripting language (CCS) and internal APIs allow real-time control on SIP signals for building complex voice services in VoIP networks. It communicates with external web applications, RADIUS servers or ODBC compliant relational databases in order to save or retrieve data associated with each call sessio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44451864", "url": "https://en.wikipedia.org/wiki/BidKind", "title": "BidKind", "text": "BidKind is an online charity auction site that raises funds for nonprofit organizations by offering users access to celebrities, prominent brands and unforgettable experiences. BidKind is a social enterprise that combines social bidding, entertainment and real-time engagement, as well as multi-lingual content in English, Spanish, and Brazilian Portuguese.\n\nLaunch\n\nThe company launched during the Cannes International Film Festival at the Paradis luncheon, featuring Actress Paz Vega, hosted by chi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44524398", "url": "https://en.wikipedia.org/wiki/Electronic%20Transaction%20Aggregation%20%26%20Analysis%20Layer", "title": "Electronic Transaction Aggregation & Analysis Layer", "text": "Electronic Transaction Aggregation & Analysis Layer (eTaal) is a public service developed by India's National Informatics Centre to measure the impact of various e-governance initiatives at national and state levels.\n\nAs an indispensable analytical service, it also provides an integrated visual interface providing a real-time view of e-transactions taking place under various e-Governance applications implemented by Government, in an easily understandable visual graphic. These include Mission Mod", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44597746", "url": "https://en.wikipedia.org/wiki/Flapit", "title": "Flapit", "text": "Flapit is a split-flap display that reveals real-time social media statistics such as Twitter followers or Yelp ratings. The product is designed to show off a bricks-and-mortar company's online community and increase its online presence by letting offline customers interact with the connected counter.\n\nThe idea came from a product launched by the retailer C&A called the Fashion Like.\n\nThe device can be customised via a web app and API to display any promotional messages, internal stats or disco", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44663824", "url": "https://en.wikipedia.org/wiki/Zoomdata", "title": "Zoomdata", "text": "Zoomdata is a business intelligence software company that specializes in real-time data visualization of big data, streaming data, and multisource analysis. The company's products are deployable on-prem, in the cloud, and embedded in other applications. SAP Data Visualization by Zoomdata is a SaaS version of Zoomdata for SAP customers. On June 10th, 2019, Zoomdata was acquired by Logi Analytics for an undisclosed sum.\n\nProduct and Differentiators\n\nZoomdata sells a data visualization and analytic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44750399", "url": "https://en.wikipedia.org/wiki/Tri-level%20sync", "title": "Tri-level sync", "text": "Tri-level sync is an analogue video synchronization pulse primarily used for the locking of high-definition video signals (genlock).\n\nIt is preferred in HD environments over black and burst, as timing jitter is reduced due to the nature of its higher frequency. It also benefits from having no DC content, as the pulses are in both polarities.\n\nSynchronization\nModern real-time multi-source HD facilities have many pieces of equipment that all output HD-SDI video. If this baseband video is to be mix", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44756217", "url": "https://en.wikipedia.org/wiki/The%20Orchestra%20%28app%29", "title": "The Orchestra (app)", "text": "The Orchestra is an iPad app developed and published by Touch Press in partnership with the Music Sales Group, Esa-Pekka Salonen and the Philharmonia Orchestra. The app features performances of eight works representing three centuries of symphonic music. It allows real-time selection of multiple video and audio tracks, along with an automatically synchronized score and graphical note-by-note visualization of each piece as it is played. The result is an immersive environment for exploring the mus", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44803038", "url": "https://en.wikipedia.org/wiki/Hegemony%20Gold%3A%20Wars%20of%20Ancient%20Greece", "title": "Hegemony Gold: Wars of Ancient Greece", "text": "Hegemony Gold: Wars of Ancient Greece is a real-time strategy game developed and published by Canadian studio Longbow Digital Arts Inc. It began as Hegemony: Philip of Macedon which revolved around the campaigns of Philip II of Macedon. It was originally released on Windows on 11 May 2010. It was updated as Hegemony Gold: Wars of Ancient Greece on 23 February 2011 which added scenarios set in the Peloponnesian War. The game features simultaneous real-time tactical battles and real-time strategi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "44848709", "url": "https://en.wikipedia.org/wiki/Resurs-P%20No.2", "title": "Resurs-P No.2", "text": "Resurs-P No.2 is a Russian commercial Earth observation satellite capable of acquiring high-resolution imagery (resolution up to 1.0 m). The spacecraft will be operated by Roscosmos along with the Resurs-P No.1 satellite.\n\nThe satellite is designed for multi-spectral remote sensing of the Earth's surface aimed at acquiring high-quality visible images in near real-time as well as on-line data delivery via radio link and providing a wide range of consumers with value-added processed data.\n\nAdditio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45003091", "url": "https://en.wikipedia.org/wiki/List%20of%20number-one%20songs%20of%202015%20%28Colombia%29", "title": "List of number-one songs of 2015 (Colombia)", "text": "This is a list of the National-Report Top 100 Nacional number-one songs of 2015. Chart rankings are based on radio play and are issued weekly. The data is compiled monitoring radio stations through an automated system in real-time.\n\nNumber ones by week\n\nReferences\n\nNumber-one songs\nColombia\nColombian record charts", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45022181", "url": "https://en.wikipedia.org/wiki/Web%20Application%20Messaging%20Protocol", "title": "Web Application Messaging Protocol", "text": "WAMP is a WebSocket subprotocol registered at IANA, specified to offer routed RPC and PubSub. Its design goal is to provide an open standard for soft real-time message exchange between application components and ease the creation of loosely coupled architectures based on microservices. Because of this, it is a suitable enterprise service bus (ESB), fit for developing responsive Web applications or to coordinate multiple connected devices in the IoT.\n\nCharacteristics\n\nStructure\n\nWAMP requires a r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45032290", "url": "https://en.wikipedia.org/wiki/Grey%20Goo", "title": "Grey Goo", "text": "Grey Goo is a science fiction real-time strategy video game developed by Petroglyph Games, produced by Six Foot, and published by Grey Box on January 23, 2015 exclusively for PC Microsoft Windows. It features a playable faction based on the grey goo scenario.\n\nGameplay\nIn Grey Goo players can choose one of four playable factions, the Humans, the Beta, the Goo, or the Shroud and use them to complete a single-player campaign or play in a competitive multiplayer mode versus other players. Each fact", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45049553", "url": "https://en.wikipedia.org/wiki/Active%20Network%20Management", "title": "Active Network Management", "text": "In electricity distribution circuits, Active Network Management (ANM) describes control systems that manage generation and load for specific purposes. This is usually done to keep system parameters (voltage, power, phase balance, reactive power and frequency) within predetermined limits. ANM generally refers to automated systems.\n\nDetails\nReal-time or near-real-time measurements are used with a model of the system to determine the control signals that need to be sent to users and generators. The", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45062283", "url": "https://en.wikipedia.org/wiki/Kinetica%20%28software%29", "title": "Kinetica (software)", "text": "Kinetica is a distributed, memory-first OLAP database developed by Kinetica DB, Inc. Kinetica is designed to use GPUs and modern vector processors to improve performance on complex queries across large volumes of real-time data. Kinetica is well suited for analytics on streaming geospatial and temporal data.\n\nBackground\nIn 2009, Amit Vij and Nima Neghaban founded GIS Federal, a developer of software they called GPUdb. The GIS stood for Global Intelligence Solutions. GPUdb was initially marketed", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45062422", "url": "https://en.wikipedia.org/wiki/Shofur", "title": "Shofur", "text": "Shofur LLC is a transportation logistics and charter bus booking platform headquartered in Atlanta, GA that offers bus service in 250+ cities worldwide. The company uses proprietary software with access to real-time availability data to match customers with bus operators. There are currently over 1,000 active bus operators registered on the platform.\n\nCustomers can reserve a bus either through the company's website or by phone. Shofur also provides a transportation for major events and convent", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45075440", "url": "https://en.wikipedia.org/wiki/ScreenOS", "title": "ScreenOS", "text": "ScreenOS is a real-time embedded operating system for the NetScreen range of hardware firewall devices from Juniper Networks.\n\nFeatures \nBeside transport level security ScreenOS also integrates these flow management applications:\n\n IP gateway VPN management \u2013 ICSA-certified IPSec\n IP packet inspection (low level) for protection against TCP/IP attacks\n Virtualization for network segmentation\n\nPossible NSA backdoor and 2015 \"Unauthorized Code\" incident \nIn December 2015, Juniper Networks announce", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45117418", "url": "https://en.wikipedia.org/wiki/Electronic%20Information%20Exchange%20System", "title": "Electronic Information Exchange System", "text": "The Electronic Information Exchange System (EIES, pronounced eyes) was an early online conferencing bulletin board system that allowed real-time and asynchronous communication. The system was used to deliver courses, conduct conferencing sessions, and facilitate research. Funded by the National Science Foundation and developed from 1974-1978 at the New Jersey Institute of Technology (NJIT) by Murray Turoff based on his earlier EMISARI done at the now-defunct Office of Emergency Preparedness, EIE", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45137215", "url": "https://en.wikipedia.org/wiki/IMPACT%20%28computer%20graphics%29", "title": "IMPACT (computer graphics)", "text": "IMPACT (sometimes spelled Impact) is a computer graphics architecture for Silicon Graphics computer workstations. IMPACT Graphics was developed in 1995 and was available as a high-end graphics option on workstations released during the mid-1990s. IMPACT graphics gives the workstation real-time 2D and 3D graphics rendering capability similar to that of even high-end PCs made well after IMPACT's introduction. IMPACT graphics systems consist of either one or two Geometry Engines and one or two Rast", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45139008", "url": "https://en.wikipedia.org/wiki/Battlefleet%20Gothic%3A%20Armada", "title": "Battlefleet Gothic: Armada", "text": "Battlefleet Gothic: Armada is a real-time strategy video game developed by Tindalos Interactive and published by Focus Home Interactive. It is set in the fictional universe of Warhammer 40,000, and is specifically an adaptation of the miniature wargame Battlefleet Gothic by Games Workshop.\n\nGameplay \nPlayers will control fleets representing one of six factions (the Imperium's Imperial Fleet, Chaos Undivided, Orks Pirates, Eldar Corsairs, the Imperium's Space Marines and the Tau Empire) and battl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45230546", "url": "https://en.wikipedia.org/wiki/JsSIP", "title": "JsSIP", "text": "JsSIP is a library for the programming language JavaScript. It takes advantage of SIP and WebRTC to provide a fully featured SIP endpoint in any website. JsSIP allows any website to get real-time communication features using audio and video. It makes it possible to build SIP user agents that send and receive audio and video calls as well as and text messages.\n\nGeneral features\n\n SIP over WebSocket transport\n Audio-video calls, instant messaging and presence\n Pure JavaScript built from the ground", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45251381", "url": "https://en.wikipedia.org/wiki/Quraish%20%28video%20game%29", "title": "Quraish (video game)", "text": "Quraish: The game is a 2005 real-time strategy 3D computer video game produced by Syrian video game production, Afkar Media. It is the second Arabic language-based game and a third person strategy game based on the early battles of Islam, primarily focusing on the Rashidun Caliphate's successful campaigns against the Eastern Roman Empire and the Sassanid dynasty of Persia.\n\nReferences\n\nExternal links\n Official website \n\n2005 video games\nAndroid (operating system) games\nReal-time strategy video g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45317362", "url": "https://en.wikipedia.org/wiki/Live%20online%20tutoring", "title": "Live online tutoring", "text": "Live online tutoring is the process of tutoring in an online environment, with teacher and student interacting in real-time without necessarily being in the same place. This real-time element, whilst presenting a significant technical challenge, sets live online tutoring apart from traditional online tutoring as it attempts to mimic in-person interaction as closely as possible rather than simply facilitating knowledge transfer.\n\nBackground \n\nLive online tutoring is a relatively recent concept, o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45322728", "url": "https://en.wikipedia.org/wiki/African%20MobileMoney", "title": "African MobileMoney", "text": "Mobile Money is a mobile payments system based on accounts held by a mobile operator and accessible from subscribers\u2019 mobile phones. The conversion of cash into electronic value (and vice versa) happens at retail stores (or agents). All transactions are authorised and recorded in real-time using SMS.\n\nIn 2008, a Ugandan software developer named Ronald Egesa of Mobitrix Uganda Ltd was reported by the leading newspapers to have developed the country's first mobile phone bank that he called SmartCa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45362611", "url": "https://en.wikipedia.org/wiki/Cyber%20Threat%20Intelligence%20Integration%20Center", "title": "Cyber Threat Intelligence Integration Center", "text": "The Cyber Threat Intelligence Integration Center (CTIIC) is a new United States federal government agency that will be a fusion center between existing agencies and the private sector for real-time use against cyber attacks. CTIIC was created due to blocked efforts in Congress that were stymied over liability and privacy concerns of citizens.\n\nCTIIC was formally announced by Lisa Monaco February 10, 2015 at the Wilson Center. The agency will be within the Office of the Director of National Intel", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45383305", "url": "https://en.wikipedia.org/wiki/Coordinated%20diagnostics", "title": "Coordinated diagnostics", "text": "Coordinated diagnostics is a portion of the coordinated care healthcare model that focuses on diagnostic workflow, real-time data flow, information systems, expertise, and informed decision making. When practiced, coordinated diagnostics integrates the diagnostic data and activities of care providers, testing facilities, information systems providers, diagnostic domain experts, payers, and patients. Coordinated diagnostics maximizes the effective use of diagnostic information and resources acr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45389413", "url": "https://en.wikipedia.org/wiki/Numerical%20modeling%20in%20echocardiography", "title": "Numerical modeling in echocardiography", "text": "Numerical manipulation of Doppler parameters obtain during routine Echocardiography has been extensively utilized to non-invasively estimate intra-cardiac pressures, in many cases removing the need for invasive cardiac catheterization.\n\nEchocardiography uses ultrasound to create real-time anatomic images of the heart and its structures. Doppler echocardiography utilizes the Doppler principle to estimate intracardiac velocities. Via the modified Bernoulli equation, velocity is routinely converte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45391078", "url": "https://en.wikipedia.org/wiki/Bookatable", "title": "Bookatable", "text": "Founded in 2006, Bookatable is an online restaurant reservation service headquartered in London, United Kingdom.\n\nBookatable provides real-time reservation services for 13,000 restaurants across 12 countries. Diners can also make bookings via Bookatable's consumer-facing websites.\n\nIn January 2016, Michelin announced that they had acquired Bookatable, with the intention of accelerating its development in the online restaurant reservation market in Europe.\n\nIn December 2019, Michelin sold the com", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45397199", "url": "https://en.wikipedia.org/wiki/Overture%20%28video%20game%29", "title": "Overture (video game)", "text": "Overture is a roguelike adventure video game developed by Black Shell Games, a subsidiary of Black Shell Media LLC. The game was released on January 1, 2015 for Microsoft Windows. In the game, players select from one of 24 characters and travel throughout the game vanquishing enemies, collecting loot, and slaying monsters.\n\nGameplay\nOverture is a strategic real-time monster slaying and dungeon crawling adventure set in a retro, pixelated world. The game puts players in control of one of twenty-f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45418965", "url": "https://en.wikipedia.org/wiki/OpenVX", "title": "OpenVX", "text": "OpenVX is an open, royalty-free standard for cross platform acceleration of computer vision applications. It is designed by the Khronos Group to facilitate portable, optimized and power-efficient processing of methods for vision algorithms. This is aimed for embedded and real-time programs within computer vision and related scenarios. It uses a connected graph representation of operations.\n\nOverview\nOpenVX specifies a higher level of abstraction for programming computer vision use cases than com", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45427244", "url": "https://en.wikipedia.org/wiki/Legend%20of%20Grimrock%20II", "title": "Legend of Grimrock II", "text": "Legend of Grimrock II is an action role-playing video game developed and published by Almost Human. It is the sequel to the 2012 title Legend of Grimrock, and was released for Microsoft Windows in October 2014, and later for OS X in March 2015.\n\nGameplay \n\nLike its predecessor, Legend of Grimrock II is a tile-based real-time dungeon crawler, inspired by titles such as Dungeon Master, but it adds a number of modern features, such as nonlinear gameplay, multi-height levels, persistent injuries, an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45449080", "url": "https://en.wikipedia.org/wiki/MindAlign", "title": "MindAlign", "text": "Parlano MindAlign is a group chat solution used as an alternate to email for large enterprises. This real-time chat solution enables organizations to initiate and maintain topic-based conversations within groups of people. Because of its persistent feature, all chat communications are archived and can be searched in retrospect.\n\nMindAlign is used most notably in the financial services industry.\n\nEarly history\nOriginally developed at UBS AG as an internal group chat solution. The product was sold", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45497893", "url": "https://en.wikipedia.org/wiki/Crowfall", "title": "Crowfall", "text": "Crowfall is a massively multiplayer online role-playing game-real-time strategy game developed by ArtCraft, described as a \"Throne War Simulator\". It released on July 6, 2021. Its Kickstarter campaign ended March 26, 2015 with a total funding of $1,766,205, surpassing its original $800,000 goal by $966,205. As of June 20, 2016 the total funding has reached $7,210,680 which includes an amount of $2,726,322 from pledges collected from both the Kickstarter campaign and donations taken on the Crowfa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45564571", "url": "https://en.wikipedia.org/wiki/Profium", "title": "Profium", "text": "Profium is a Finnish company that provides software for companies to use on-premises or as part of cloud computing environments.\n\nProfium has headquarters in Espoo, Finland and offices in Mikkeli, Finland and in Walnut Creek, California.\n\nProducts\n\nProfium Sense\n\nProfium Sense is:\n\n A NoSQL in-memory graph database\n Patented Rule Engine optimized for real-time operations\n\nSense constantly monitors and gathers data from heterogeneous sources such as news feeds, CRM, IoT, Open and Big Data. The da", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45578566", "url": "https://en.wikipedia.org/wiki/Vulkan", "title": "Vulkan", "text": "Vulkan is a low-overhead, cross-platform API, open standard for 3D graphics and computing. Vulkan targets high-performance real-time 3D graphics applications, such as video games and interactive media. In contrast to the older OpenGL and Direct3D 11 APIs, Vulkan is intended to offer higher performance and more balanced CPU and GPU usage. It provides a considerably lower-level API and parallel tasking for the application, comparable to Metal and Direct3D 12. In addition to its lower CPU usage, Vu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45591025", "url": "https://en.wikipedia.org/wiki/Offworld", "title": "Offworld", "text": "Offworld or off-world may refer to: \nin science fiction, the quality of being on an exoplanet or in space\nOffworld Trading Company, real-time strategy video game\nOffworld, a blog that became part of the website Boing Boing\nOffworld (album), the fourth vocal album by electronic rock project Celldweller", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45634113", "url": "https://en.wikipedia.org/wiki/Avasthe", "title": "Avasthe", "text": "Avasthe (\u0c85\u0cb5\u0cb8\u0ccd\u0ca5\u0cc6) is a 1987 Kannada political drama film directed and co-produced by Krishna Masadi and is based on the novel written by the acclaimed writer U. R. Ananthamurthy. The film is broadly based on the life of Social reformist and opposition leader in the Legislative assembly, Shantaveri Gopala Gowda. The film starred Anant Nag in the lead role along with a host of real-time politicians like J. H. Patel, D. B. Chandre Gowda, M. P. Prakash and B. K. Chandrashekar in the key roles. Other ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45637712", "url": "https://en.wikipedia.org/wiki/Sportradar%20US", "title": "Sportradar US", "text": "Sportradar US, formerly SportsData, LLC, is the US branch of Sportradar. Based in Minneapolis, Sportradar US captures live play-by-play data and delivers it in real-time to companies in media, technology and fantasy sports. Its clients include Google, Bleacher Report, Facebook, Twitter and the Pac-12 Conference. They have writers and editors who attend games, watch broadcasts and survey media to gather relevant news related to sports. Coverage includes injuries, in-game information, breaking new", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "45646754", "url": "https://en.wikipedia.org/wiki/Projective%20Set%20%28game%29", "title": "Projective Set (game)", "text": "Projective Set (sometimes shortened to ProSet) is a real-time card game derived from the older game Set.\nThe deck contains cards consisting of colored dots; some cards are laid out on the table and players attempt to find \"Sets\" among them.\nThe word projective comes from the game's relation to Projective spaces over the finite field with two elements.\n\nProjective Set has been studied mathematically as well as played recreationally.\nIt has been a popular game at Canada/USA Mathcamp.\n\nRules \n\nA Pr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46218115", "url": "https://en.wikipedia.org/wiki/Legion%3A%20The%20Legend%20of%20Excalibur", "title": "Legion: The Legend of Excalibur", "text": "Legion: The Legend of Excalibur is a real-time strategy / action role-playing video game hybrid developed by the ex-Westwood Studios 7 Studios and published by Midway Games for the PlayStation 2 in 2002. The game tells the story of the young King Arthur to save the kingdom from the evil sorceress Morgan and was given mostly poor or mediocre reviews by critics.\n\nGameplay\n\nPlot\nLegion: The Legend of Excalibur begins with the dark sorceress Queen Morgan le Fay attacking and slaying her father Uther", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46246817", "url": "https://en.wikipedia.org/wiki/Matrix%20%28protocol%29", "title": "Matrix (protocol)", "text": "Matrix (sometimes stylized as [matrix]) is an open standard and communication protocol for real-time communication. It aims to make real-time communication work seamlessly between different service providers, in the way that standard Simple Mail Transfer Protocol email currently does for store-and-forward email service, by allowing users with accounts at one communications service provider to communicate with users of a different service provider via online chat, voice over IP, and videotelephon", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46279886", "url": "https://en.wikipedia.org/wiki/NEO%20Exchange", "title": "NEO Exchange", "text": "NEO Exchange is a Canadian stock exchange based in Toronto. Marketed as Canada's New Stock Exchange, NEO aims to help companies, dealers and investors by creating a better listing experience, eliminating predatory market behaviours such as high-frequency trading, implementing a unique market making program to ensure liquidity, and offering free real-time market data for all NEO-listed securities.\n\nThe exchange is owned by Aequitas Innovations, a company backed by a number of Canadian and interna", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46280160", "url": "https://en.wikipedia.org/wiki/Reflective%20memory", "title": "Reflective memory", "text": "Reflective memory is a means to share common data between different and independent systems deterministically. Such systems using a common reflective memory form a reflective memory network which is a deterministic one, when any system of the network acquired data and writes it to its local memory, such data is written locally to all other systems, this behaviour is like a dual-ported memory system. Reflective memory networks are real-time local area networks where each device or computer always", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46299919", "url": "https://en.wikipedia.org/wiki/Hipcamp", "title": "Hipcamp", "text": "Hipcamp is an online marketplace company that offers outdoor stays and camping experiences via a website and mobile app. Private landowners primarily list campsites, glampsites, RV space, cabins for users to discover and book based on listing type, location, landscape, activities offered, and amenities. In addition to offering overnight stays on private land, Hipcamp also displays real-time availability, details, user reviews, and user photos of public campgrounds in national parks. Hipcamp was ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46322575", "url": "https://en.wikipedia.org/wiki/DD%20Kisan", "title": "DD Kisan", "text": "DD Kisan is an Indian agriculture 24-hour television channel, which is owned by Doordarshan and was launched on 26 May 2015. The channel is dedicated to agriculture and related sectors, which disseminates real-time inputs to farmers on new farming techniques, water conservation and organic farming among other information.\n\nHistory\nAhead of 2014 Indian general election, the BJP had declared that if they come in power they would try setting up a dedicated channel for Indian Farmers. The public bro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46355194", "url": "https://en.wikipedia.org/wiki/ExactEarth", "title": "ExactEarth", "text": "exactEarth Ltd is a Canadian company that specializes in data services that deliver real-time global location-based maritime vessel tracking information utilizing patented satellite AIS detection technology.\n\nexactEarth provides satellite AIS data services to commercial markets as well as government customers in India, Canada, United States, Australia and across Europe.\n\nFounded in 2009, exactEarth is based in Cambridge, Ontario, Canada. The company was publicly traded until 2021 when Spire Glob", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46360205", "url": "https://en.wikipedia.org/wiki/Kaleidica", "title": "Kaleidica", "text": "The Kaleidica Light Instrument, is software developed by Chuck Henderson and published by Fishrock Studios for creating symmetrical and abstract pattern art, animations and real-time user-generated light-shows much like a mechanical kaleidoscope. Kaleidica creates imagery and script-generated animations based on a number of geometric algorithms that arrange arrays of images or animation clips in various user-determined patterns. Composed of multiple internal \"studios,\" Kaleidica can produce patt", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46400860", "url": "https://en.wikipedia.org/wiki/Bloodsports.TV", "title": "Bloodsports.TV", "text": "Bloodsports.TV is a hero defense video game for Microsoft Windows developed by Toadman Interactive and Fatshark. The game is a spin-off from Fatshark's 2012 role-playing game Krater: Shadows Over Solside, set in the same universe.\n\nBloodsports.TV was released in 2015 via the Steam digital distribution platform.\n\nGameplay\n\nBloodsports.TV features a departure from the squad-based real-time strategy gameplay of Krater: Shadows Over Solside, and replaces it with that of an MOBA. The player takes con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46407280", "url": "https://en.wikipedia.org/wiki/Star%20Ocean%3A%20Integrity%20and%20Faithlessness", "title": "Star Ocean: Integrity and Faithlessness", "text": "Star Ocean: Integrity and Faithlessness is an action role-playing video game developed by tri-Ace and published by Square Enix for the PlayStation 4 and PlayStation 3. It is the fifth major installment in the Star Ocean series, following Star Ocean: The Last Hope.\n\nGameplay\nThe battle system is similar to other games in the Star Ocean series, with the player controlling one of seven party members in battles, with the ability to switch control of characters. The real-time action battle system fea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46444036", "url": "https://en.wikipedia.org/wiki/RethinkDB", "title": "RethinkDB", "text": "RethinkDB is a free and open-source, distributed document-oriented database originally created by the company of the same name. The database stores JSON documents with dynamic schemas, and is designed to facilitate pushing real-time updates for query results to applications. Initially seed funded by Y Combinator in June 2009, the company announced in October 2016 that it had been unable to build a sustainable business and its products would in future be entirely open-sourced without commercial s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46460609", "url": "https://en.wikipedia.org/wiki/Namogoo", "title": "Namogoo", "text": "Namogoo Technologies Ltd. is a Digital Journey Continuity software as a service platform, that autonomously adapts to each customer visit in real-time, that helps improve online customer journeys and business results for global retail brands. Namogoo\u2019s Customer Hijacking Prevention identifies and blocks unauthorized ad injections from diverting online shoppers to competitors. Namogoo\u2019s Intent-Based Promotions predicts and individualizes the minimum promotion for each visit \u2014 synchronizing custom", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46534219", "url": "https://en.wikipedia.org/wiki/Clarinox%20Technologies%20Pty%20Ltd", "title": "Clarinox Technologies Pty Ltd", "text": "Clarinox Technologies Pty Ltd is an Australian wireless embedded systems company that specializes in the creation Bluetooth and wi-fi software for real-time embedded hardware. The company's headquarters are in Melbourne, Australia.\n\nProducts \nClarinox Technologies provides standardized software libraries and tools to enable faster time-to-market for wireless device developers. Their middleware framework, ClarinoxSoftFrame, forms the backbone for the protocol stacks and their wireless development", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46600256", "url": "https://en.wikipedia.org/wiki/Extempore%20%28software%29", "title": "Extempore (software)", "text": "Extempore is a live coding environment focused on real-time audiovisual software development. It is designed to accommodate the demands of cyber-physical computing. Extempore consists of two integrated languages, Scheme (with extensions) and Extempore Language. It uses the LLVM cross-language compiler to achieve performant digital signal processing and related low-level features, on-the-fly.\n\nRelationship to Impromptu \n\nExtempore shares the use of Scheme syntax, real-time audiovisual emphasis an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46603947", "url": "https://en.wikipedia.org/wiki/Arnold%20Spielberg", "title": "Arnold Spielberg", "text": "Arnold Meyer Spielberg (February 6, 1917\u00a0\u2013 August 25, 2020) was an American electrical engineer instrumental in contributions \"to real-time data acquisition and recording that significantly contributed to the definition of modern feedback and control processes\". For General Electric he designed, with his colleague Charles Propster, the GE-225 in 1959. He cited the first computer-controlled \"point of sale\" cash register as his greatest contribution. His children are filmmaker Steven Spielberg and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46636055", "url": "https://en.wikipedia.org/wiki/RTX%20%28operating%20system%29", "title": "RTX (operating system)", "text": "RTX is a line of real-time operating system (RTOS) extensions by the firm IntervalZero. They are a software extension or abstraction layer that converts Microsoft Windows operating system into a RTOS. It was the first Windows real-time solution on the market.\n\nOverview\nRTX real-time software extensions to Windows combines the familiar user experience of Microsoft Windows (rich GUI, extant drivers and software, ...) and the direct control of embedded hardware by providing hard real-time determini", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46642108", "url": "https://en.wikipedia.org/wiki/My%20Little%20Television", "title": "My Little Television", "text": "My Little Television () is a South Korean television program which has been broadcast since February 2015, and features personal internet broadcasting similar to the likes of afreecaTV, Twitch or Daum tvPot. This program is inspired by real-time streaming services. It is a program that values communication with viewers. The program is hosted by Seo Yu-ri. The program is formatted in the form of a competition between main casts based on their internet broadcasting performance. It airs on KakaoTV ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46644741", "url": "https://en.wikipedia.org/wiki/Ultrasound-guided%20peripheral%20nerve%20block", "title": "Ultrasound-guided peripheral nerve block", "text": "Ultrasound-guided peripheral nerve block is a procedure used in anesthesia that allows real-time imaging of the positions of the targeted nerve, needle, and surrounding vasculature and other anatomic structures. This visual aid increases the success rate of the block and may reduce the risk of complications. It may also reduce the amount of local anesthetic required, while reducing the onset time of blocks.\n\nReferences \n\nRegional anesthesia", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46677595", "url": "https://en.wikipedia.org/wiki/Mars%20Cube%20One", "title": "Mars Cube One", "text": "Mars Cube One (or MarCO) was a Mars flyby mission launched on 5 May 2018 alongside NASA's InSight Mars lander mission. It consisted of two nanospacecraft, MarCO-A and MarCO-B, that provided a real-time communications link to Earth for InSight during its entry, descent, and landing (EDL) on 26 November 2018 - when InSight was out of line of sight from the Earth. Both spacecraft were 6U CubeSats, and the mission was a test of new miniaturized communications and navigation technologies. These were ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46752903", "url": "https://en.wikipedia.org/wiki/Act%20of%20Aggression", "title": "Act of Aggression", "text": "Act of Aggression is a 2015 real-time strategy game developed by Eugen Systems and published by Focus Home Interactive.\n\nGameplay\nThe game is a real-time strategy game set in the near future, and its gameplay is similar to the Command & Conquer series. The game tasks players to build a base for their army, collect and manage resources, develop new army types and units, and participate in battles against artificial intelligence. In addition to the single-player mode, the game also features compet", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46842898", "url": "https://en.wikipedia.org/wiki/PicoScope%20%28software%29", "title": "PicoScope (software)", "text": "PicoScope is computer software for real-time signal acquisition of Pico Technology oscilloscopes. PicoScope is supported on Microsoft Windows, Mac OS X, Debian and Ubuntu platforms. PicoScope is primarily used to view and analyze real-time signals from PicoScope oscilloscopes and data loggers. PicoScope software enables analysis using FFT, a spectrum analyser, voltage-based triggers, and the ability to save/load waveforms to disk. PicoScope is compatible with parallel port oscilloscopes and the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46845197", "url": "https://en.wikipedia.org/wiki/ClearVolume", "title": "ClearVolume", "text": "ClearVolume is an open source real-time live 3D visualization library designed for high-end volumetric light sheet microscopes. ClearVolume enables the live visualization of microscope data - allowing the biologists to immediately decide whether a sample is worth imaging. ClearVolume can easily be integrated into existing Java, C/C++, Python, or LabVIEW based microscope software. It has a dedicated interface to MicroManager/OpenSpim/OpenSpin control software. ClearVolume supports multi-channels,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46889261", "url": "https://en.wikipedia.org/wiki/Total%20War%3A%20Warhammer", "title": "Total War: Warhammer", "text": "Total War: Warhammer is a turn-based strategy and real-time tactics video game developed by Creative Assembly and published by Sega for Microsoft Windows via the Steam gaming platform. The game was brought to macOS and Linux by Feral Interactive. The game features the gameplay of the Total War series with factions of Games Workshop's Warhammer Fantasy series; it is the first Total War game not to portray a historical setting. It is the 10th title in the Total War series and the first title to be", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46894073", "url": "https://en.wikipedia.org/wiki/SpellForce", "title": "SpellForce", "text": "SpellForce is a real-time strategy and role-playing series created by Phenomic and currently owned by THQ Nordic. The first release was published by JoWooD Productions and Encore Software in 2003, and by THQ Nordic in 2017.\n\nSetting and plot\n\nThe games take place on a planet called Eo, a high fantasy world ruled by near-immortal mages (collectively known as The Circle) and inhabited by various sapient races, such as humans, dwarves, (dark) elves, orcs and trolls. The mages used servants called r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46944680", "url": "https://en.wikipedia.org/wiki/Sony%20Cyber-shot%20DSC-RX10%20II", "title": "Sony Cyber-shot DSC-RX10 II", "text": "The Sony Cyber-shot DSC-RX10 II is a DSLR-styled digital bridge camera announced by Sony on June 10, 2015. Its main improvement over its predecessor, the 2013 Sony Cyber-shot DSC-RX10, is its 2160p 4K video recording ability, as well as added high-framerate with 1080p doubled to 120fps (real-time and retained audio), and high speed video at 240fps, 480fps, and 960fps.\n\nWhile filming at up to 1080p and up to 60fps, 17-Megapixel still images can be captured. The \"dual video recording\" mode allows ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46954431", "url": "https://en.wikipedia.org/wiki/Fiksu", "title": "Fiksu", "text": "Fiksu is a provider of mobile marketing technology that helps app and brand marketers reach their target audiences on mobile and CTV. The company's mobile-first platform targets users across an array of channels including social and video networks, real-time bidding (RTB) exchanges, traditional mobile ad networks, and mobile web. Device-level data collections are from the actions mobile app users take, including launches, registrations and purchases. Their accumulation of data now includes bil", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46989599", "url": "https://en.wikipedia.org/wiki/Mention%20%28company%29", "title": "Mention (company)", "text": "Mention is a social media and web monitoring tool. The media monitoring tool provides real-time alerts for a company's keyword and allows users to monitor millions of sources in real time and in 42 languages. Mention can be accessed from a mobile app or the web-based app. The media monitoring company has offices in New York and Paris.\n\nMention was acquired by Mynewsdesk in 2018.\n\nProduct \nMention monitors the web and social media, including the sites Twitter, Pinterest, Facebook, and Instagram. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46990882", "url": "https://en.wikipedia.org/wiki/Anno%202205", "title": "Anno 2205", "text": "Anno 2205 is a city-building and economic simulation game, with real-time strategy elements, developed by Blue Byte and published by Ubisoft. Anno 2205 is the sixth game of the Anno series, and was released worldwide on 3 November 2015. As with Anno 2070, the game is set in the future, with players having the opportunity to set up colonies on the Moon.\n\nGameplay\nAnno 2205 is a futuristic city-building video game similar to Anno 2070, as opposed to the previous installments which feature a histor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "46994455", "url": "https://en.wikipedia.org/wiki/Final%20Fantasy%20VII%20Remake", "title": "Final Fantasy VII Remake", "text": "is a 2020 action role-playing game developed and published by Square Enix. It is the first in a planned series of games remaking the 1997 PlayStation game Final Fantasy VII. Set in the dystopian cyberpunk metropolis of Midgar, players control mercenary Cloud Strife. He joins AVALANCHE, an eco-terrorist group trying to stop the powerful megacorporation Shinra from using the planet's life essence as an energy source. The gameplay combines real-time action with strategic and role-playing elements.\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47010894", "url": "https://en.wikipedia.org/wiki/Blood%20Bowl%202", "title": "Blood Bowl 2", "text": "Blood Bowl 2 is a turn-based fantasy sports video game developed by Cyanide Studios and published by Focus Home Interactive. It is a sequel to the 2009 video game Blood Bowl, based on the board game by Games Workshop. The game was developed for Microsoft Windows, PlayStation 4, and Xbox One, and was released on 22 September 2015. A Mac OS X version of the game was launched in May 2016.\n\nThe game uses a new engine and removes the real-time mode found in the previous game, being turn-based only.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47041308", "url": "https://en.wikipedia.org/wiki/Cossacks%203", "title": "Cossacks 3", "text": "Cossacks 3 is a real-time strategy video game for Microsoft Windows made by the Ukrainian developer GSC Game World. The game is a remake of the 2001 game Cossacks: European Wars and is once again set in 17th and 18th century Europe.\n\nThe main differences from the old game are the modern 3D graphics capabilities, updated models and textures, dynamic lighting and full support for custom modifications.\n\nGameplay\nThe original 12 nations make a return, as well as 70 types of unit, 100 technologies, a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47050949", "url": "https://en.wikipedia.org/wiki/SportVU", "title": "SportVU", "text": "SportVU is a camera system that collects data 25 times per second. Its aim is to follow the ball and all players on court. SportVU provides statistics such as real-time player and ball positioning through software and statistical algorithms. Through this data, STATS presents performance metrics for players and teams to use.\n\nSTATS was first created for soccer, however it later expanded the core SportVU technology into basketball beginning with the 2010-2011 NBA season. Currently, STATS is the Of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47085138", "url": "https://en.wikipedia.org/wiki/Project%20Sidekick", "title": "Project Sidekick", "text": "Sidekick is a project developed by NASA and Microsoft to provide virtual aid for astronauts using the Microsoft HoloLens augmented-reality headset. As of December 2015, Sidekick is deployed at the International Space Station.\n\nFunctionality\nSidekick has two modes of operation. Remote Expert Mode uses the functionality of the Holographic Skype application\u2014voice and video chat, real-time virtual annotation\u2014to allow a ground operator and space crew member to collaborate directly over what the astro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47185274", "url": "https://en.wikipedia.org/wiki/My%20Lands", "title": "My Lands", "text": "My Lands (also known as mlgame, ML) is a browser-based multiplayer game in the genre of military-economic real-time strategy set in a fantasy world. The developers from the Elyland company promote My Lands as the very first browser MMOG. My Lands enjoys up to 200,000 active players and has been translated into over 20 languages. The main goals of the game consist of developing one's own kingdom, training army units, interacting with other players (their kingdoms), and gaining Black Gems in vario", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47265427", "url": "https://en.wikipedia.org/wiki/Spy%20aircraft", "title": "Spy aircraft", "text": "Spy aircraft may refer to:\n\nReconnaissance aircraft, using images for later analysis.\nSurveillance aircraft, capturing real-time aerial observation.", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47429624", "url": "https://en.wikipedia.org/wiki/Halo%20Wars%202", "title": "Halo Wars 2", "text": "Halo Wars 2 is a real-time strategy video game developed by 343 Industries and Creative Assembly. It was published by Microsoft Studios and released in February 2017 on Windows and Xbox One. The game is set in the science fiction universe of the Halo franchise in 2559. It is a sequel to Halo Wars (2009). The story follows the crew of Spirit of Fire, a United Nations Space Command (UNSC) ship. Spirit of Fire arrives at the Ark, a Forerunner installation responsible for constructing and remotely c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47485347", "url": "https://en.wikipedia.org/wiki/Embedded%20analytics", "title": "Embedded analytics", "text": "Embedded analytics is the technology designed to make data analysis and business intelligence more accessible by any application or user.\n\nDefinition\n\nAccording to Gartner analysts Kurt Schlegel, in 2008 traditional business intelligence lacked integration and accessibility between data and users. As a result, embedded analytics has been developed to become more pervasive by real-time autonomy and self-service of data visualization or customization.\n\nEmbedded analytics software delivers real-tim", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47498830", "url": "https://en.wikipedia.org/wiki/Breach%20%26%20Clear%3A%20Deadline", "title": "Breach & Clear: Deadline", "text": "Breach & Clear: Deadline (stylized as DEADline) is a 2015 post-apocalypse real-time tactics action role-playing video game developed by Mighty Rabbit Studios and Gun Media, and published by Gambitious Digital Entertainment and Devolver Digital. Home console ports released the following year. The title is a spin-off to the 2013 game Breach & Clear.\n\nGameplay\nIn the game, players control a squad of four United States Army Special Forces soldiers trapped within a desolated city populated with zombi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47515382", "url": "https://en.wikipedia.org/wiki/Gender%20Wars", "title": "Gender Wars", "text": "Gender Wars is a real-time tactics action game developed by The 8th Day and Sales Curve and published for DOS by GT Interactive Software and Sales Curve Interactive in 1996.\n\nGameplay\n\nThe player controls a squad leader and any of their members, as they kill enemies, destroy enemy facilities, or retrieve devices. However, the player will have to control each member at a time, as they have difficulty navigating by themselves.\n\nPlot\n\nIn the future, after an era of \"Political Correctness and equali", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47577212", "url": "https://en.wikipedia.org/wiki/National%20Centers%20for%20Environmental%20Information", "title": "National Centers for Environmental Information", "text": "The National Centers for Environmental Information (NCEI), an agency of the United States government, manages one of the world's largest archives of atmospheric, coastal, geophysical, and oceanic data, containing information that ranges from the surface of the sun to Earth's core, and from ancient tree ring and ice core records to near-real-time satellite images.\n\nNCEI is operated by the National Environmental Satellite, Data, and Information Service (NESDIS), an office of the National Oceanic a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47682722", "url": "https://en.wikipedia.org/wiki/The%20Singles%20Project", "title": "The Singles Project", "text": "The Singles Project is an American interactive dating show series which premiered on August 12, 2014, on Bravo. The show featured a group of young and single professionals living in New York City and trying to find love. The docu-series became the first American dating series showing near real-time situations as each episode of the show is shot and aired within one week. The show later syndicated globally.\n\nBravo had set up an online hub in order to let the viewers to interact with the show's ca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47696066", "url": "https://en.wikipedia.org/wiki/Meanings%20of%20minor%20planet%20names%3A%20435001%E2%80%93436000", "title": "Meanings of minor planet names: 435001\u2013436000", "text": "\n\n435001\u2013435100 \n\n|-bgcolor=#f2f2f2\n| colspan=4 align=center | \n|}\n\n435101\u2013435200 \n\n|-id=127\n| 435127 Virtelpro || || The Virtual Telescope Project, part of the Bellatrix Astronomical Observatory in Italy, is a remotely accessible research facility with robotic telescopes. Since 2006, it shares online images of astronomical events in real-time, including observations of transient near-Earth objects. || \n|-id=186\n| 435186 Jovellanos || || Gaspar Melchor de Jovellanos (1744\u20131811), a Spanish stat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47796548", "url": "https://en.wikipedia.org/wiki/Amaryllo", "title": "Amaryllo", "text": "Amaryllo Inc. is a multinational company founded in Amsterdam, the Netherlands, operating in AI as a Service market. It develops biometric robotic technologies, real-time data mining, a camera robot, fast object recognition, an encrypted P2P network, and flexible cloud storage.\n\nAmaryllo developed and acquired patents for a new type of robotic cameras that is claimed to \"talk, hear, sense, recognize human faces, and track intruders\". It also claims to have made the world's first security robot b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47825715", "url": "https://en.wikipedia.org/wiki/13%20Sentinels%3A%20Aegis%20Rim", "title": "13 Sentinels: Aegis Rim", "text": "13 Sentinels: Aegis Rim is a 2019 video game developed by Vanillaware and published by Atlus. It was released for the PlayStation 4 in Japan in November 2019 and worldwide in September 2020, with a Nintendo Switch version scheduled for release in April 2022. The game is divided between side-scrolling adventure segments and real-time strategy (RTS) battles, and follows thirteen high-school students in a fictionalized 1980s Japan who are dragged into a futuristic war between mechas and hostile Kai", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47887859", "url": "https://en.wikipedia.org/wiki/Cycle%20of%20quantification/qualification", "title": "Cycle of quantification/qualification", "text": "Cycle of quantification/qualification (Cq) is a parameter used in real-time polymerase chain reaction techniques, indicating the cycle number where a PCR amplification curve meets a predefined mathematical criterion. A Cq may be used for quantification of the target sequence or to determine whether the target sequence is present or not.\n\nTwo criteria to determine the Cq are used by different thermocyclers:\nthreshold cycle (Ct) is the number of cycles required for the fluorescent signal to cross", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47896295", "url": "https://en.wikipedia.org/wiki/Digital%20twin", "title": "Digital twin", "text": "A digital twin is a virtual representation that serves as the real-time digital counterpart of a physical object or process. Though the concept originated earlier (attributed to Michael Grieves, then of the University of Michigan, in 2002) the first practical definition of digital twin originated from NASA in an attempt to improve physical model simulation of spacecraft in 2010. Digital twins are the result of continual improvement in the creation of product design and engineering activities. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "47993699", "url": "https://en.wikipedia.org/wiki/EDITED%20%28company%29", "title": "EDITED (company)", "text": "EDITED (formerly EDITD) is a retail intelligence company headquartered in London, England with offices worldwide including New York and Texas. The company produces real-time data analytics software intended for brands and retailers. Its products range across Market Intelligence to monitor the retail market worldwide for apparel, homeware and beauty products; Enterprise Intelligence to provide business analytics across ecommerce, physical stores and omnichannel teams; and Automation that combines", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48074069", "url": "https://en.wikipedia.org/wiki/Strikefleet%20Omega", "title": "Strikefleet Omega", "text": "Strikefleet Omega is a hybrid tower defense and real-time strategy video game for iOS, Android, and Fire OS. The player is put in control a small fleet of human ships, the titular Strikefleet Omega, in a series of battles against a race of aliens that have destroyed the Earth. The player must defend their large, immobile ships by dispatching groups of smaller space fighters to fend off alien ships approaching from all directions. In later stages of the game, additional types of fighter and addit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48234989", "url": "https://en.wikipedia.org/wiki/Object%20Oriented%20Management", "title": "Object Oriented Management", "text": "Object-oriented management is a model for management and for project management. The objective of object-oriented management is to provide a clear set of principles set into a framework that enables all participants while minimizing management overhead.\n\nOverview \nThe primary objective of object-oriented management is Total Quality as defined by the client and/or the end-user(s). This is achieved by real-time management of projects. Object-oriented management integrates many concepts from lig", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48409028", "url": "https://en.wikipedia.org/wiki/Kx%20Systems", "title": "Kx Systems", "text": "KX is a data analysis software developer and vendor. Their products are built upon the proprietary time-series database kdb+ and its programming language q. Kdb+ is optimized for ingesting, analyzing and storing massive amounts of structured data in real-time and has set multiple records in STAC Research benchmarks.\nKdb+ is used in financial modeling and data analysis by Wall Street investment banks, and energy, telecommunications, government, and other industries.\n\nThe company was founded in 19", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48410872", "url": "https://en.wikipedia.org/wiki/New%20Payments%20Platform", "title": "New Payments Platform", "text": "The New Payments Platform (NPP) is an industry-wide payments platform for Australia, national infrastructure for fast, flexible, data rich payments in Australia. It was first made accessible to the general public on 13 February 2018 with the launch of PayID, a simple addressing capability, and Osko, the first NPP Overlay Service, operated by BPAY. As of 2020, more than 60 Australian banks have adopted the system.\n\nThe new instant payment platform for real-time low value payments was in response ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48412872", "url": "https://en.wikipedia.org/wiki/MarineTraffic", "title": "MarineTraffic", "text": "MarineTraffic is an open, community-based project, which provides real-time information on the movements of ships and the current location of ships in harbours and ports. A database of information on the vessels includes for example details of the location where they were built plus dimensions of the vessels, gross tonnage and International Maritime Organisation (IMO) number. Users can submit photographs of the vessels which other users can rate.\n\nVessel locations are shown on a Google Maps back", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48416256", "url": "https://en.wikipedia.org/wiki/Agile%20Policing%20Strategy", "title": "Agile Policing Strategy", "text": "Agile Policing Strategy is a data-oriented approach to crime implemented by the Seattle Police Department, and unveiled October 7, 2015. The approach was developed to increase the responsiveness or agility of the department to address crime and disorder problems through the real-time surfacing, visualization, analysis, and sharing of data across all necessary operational units of the police department. Organizationally this is accomplished through the SPD\u2019s Real Time Crime Center, which houses t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48422258", "url": "https://en.wikipedia.org/wiki/Multidimensional%20DSP%20with%20GPU%20Acceleration", "title": "Multidimensional DSP with GPU Acceleration", "text": "Digital signal processing (DSP) is a ubiquitous methodology in scientific and engineering computations. In practice, DSP problems are often not only one dimensional. For instance, image data is a 2-D signal and radar is a 3-D signal. While the number of dimensions increases, the time and/or storage complexity of processing digital signals grow dramatically. Therefore, solving multidimensional DSP problems in real-time is extremely difficult.\n\nModern general purpose graphics processing units (GPG", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48423079", "url": "https://en.wikipedia.org/wiki/EButterfly", "title": "EButterfly", "text": "eButterfly is a real-time, online database and photo storage program. It provides a way for the butterfly community to report, organize, and access information about butterflies in Central and North America and the Caribbean. eButterfly provides detailed sources for basic data on butterfly abundance, distribution, and phenology at a variety of spatial and temporal scales across the region. eButterfly is maximizing the utility and accessibility of the vast numbers of butterfly observations, phot", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48459845", "url": "https://en.wikipedia.org/wiki/High-frequency%20impulse-measurement", "title": "High-frequency impulse-measurement", "text": "HFIM, acronym for high-frequency-impulse-measurement, is a type of measurement technique in acoustics, where structure-borne sound signals are detected and processed with certain emphasis on short-lived signals as they are indicative for crack formation in a solid body, mostly steel. The basic idea is to use mathematical signal processing methods such as Fourier analysis in combination with suitable computer hardware to allow for real-time measurements of acoustic signal amplitudes as well as th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48470315", "url": "https://en.wikipedia.org/wiki/Conquest%20Earth", "title": "Conquest Earth", "text": "Conquest Earth is a real-time strategy video game, published in 1997 by Eidos Interactive, in which aliens from Jupiter invade Earth.\n\nGameplay\nIn Conquest Earth, the player can choose to play as Jovians, aliens from Jupiter, or humans. Humans and Jovians have different menu layouts and tactics which they can employ for offensive and defensive actions. Also, the Jovians must deal with the atmosphere of the Earth, which obstructs their view, by using special troops; the humans also face a problem", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48500648", "url": "https://en.wikipedia.org/wiki/Global%20Forest%20Watch", "title": "Global Forest Watch", "text": "Global Forest Watch (GFW) is an open-source web application to monitor global forests in near real-time. GFW is an initiative of the World Resources Institute (WRI), with partners including Google, USAID, the University of Maryland (UMD), Esri, Vizzuality and many other academic, non-profit, public, and private organizations.\n\nHistory \nGlobal Forest Watch originally began in 1997 as an initiative to establish a global forest monitoring network, convened by the World Resources Institute and part", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48544350", "url": "https://en.wikipedia.org/wiki/Enduro/X", "title": "Enduro/X", "text": "Enduro/X is an open-source middleware platform for distributed transaction processing. It is built on proven APIs such as X/Open group's XATMI and XA. The platform is designed for building real-time microservices based applications with a clusterization option. Enduro/X functions as an extended drop-in replacement for Oracle Tuxedo. The platform uses in-memory POSIX Kernel queues which insures high interprocess communication throughput.\n\nServices\nThe platform allows runtime system patching, with", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48590779", "url": "https://en.wikipedia.org/wiki/Mobile%20procurement", "title": "Mobile procurement", "text": "Mobile procurement is mobile business software that helps organizations streamline their procurement process from a mobile device. Features of mobile procurement software include mobile purchase order creation, on-demand notifications, and real-time analytics. What makes mobile procurement successful is the ability to leverage software-side servers to move data along. The key benefit for organizations using mobile procurement systems is the ability to track business operations using any ordinary", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48635278", "url": "https://en.wikipedia.org/wiki/Adobe%20Character%20Animator", "title": "Adobe Character Animator", "text": "Adobe Character Animator is an Emmy Award-winning desktop application software product that combines real-time live motion-capture with a multi-track recording system to control layered 2D puppets drawn in Photoshop or Illustrator. It is automatically installed with Adobe After Effects CC 2015 to 2017 and is also available as a standalone application which one can download separately as part of a Creative Cloud all-apps subscription. It is used to produce both live and non-live animation.\n\nDescr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48652480", "url": "https://en.wikipedia.org/wiki/Nutaku", "title": "Nutaku", "text": "Nutaku is an adult gaming platform with primarily hentai games. Located in Canada, Nutaku offers games with mature content. The platform focuses on browser, downloadable and mobile games, offering microtransactions and purchasable options. As of early 2020, Nutaku had 50 million registered users. \nNutaku offers a large pool of 450+ free-to-play and paid titles of various genres, including action-adventure, massively multiplayer online game, real-time strategy, tower defense, dating sim, clicker,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48746193", "url": "https://en.wikipedia.org/wiki/Showself", "title": "Showself", "text": "Showself (\u79c0\u8272\u5a31\u4e50) is a live streaming video entertainment social platform in China that is growing rapidly. Broadcasters setup real-time streaming video channels for self-expression of interests such as singing, disc jockeying, live talk shows, dating, games, education and others. It is available through web browser and the App Store for iPhone, iPad and Google Play for Android. Showself also works with mobile gaming companies, modeling and casting agencies, TV stations, advertising agencies, medi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48816619", "url": "https://en.wikipedia.org/wiki/Kakao%20T", "title": "Kakao T", "text": "Kakao T (formerly KakaoTaxi) is a Korean transportation service app launched by Kakao Mobility Corp., a subsidiary of Kakao in 2017. The service provides taxi-hailing, designated driver booking, nearby parking space searching, and real-time traffic information service.\n\nThe service was launched originally as Kakao Taxi, a taxi-calling service app launched on March 31, 2015 that connects users who needs a ride to taxi drivers. In 2017, Kakao rebranded the platform as Kakao T, where \"T\" stands for", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48840333", "url": "https://en.wikipedia.org/wiki/Homeworld%3A%20Deserts%20of%20Kharak", "title": "Homeworld: Deserts of Kharak", "text": "Homeworld: Deserts of Kharak is a real-time strategy video game developed by Blackbird Interactive and published by Gearbox Software. The game was released on January 20, 2016, and is a prequel to the 1999 space-based real-time strategy video game Homeworld.\n\nDevelopment\nGearbox Software bought the intellectual property rights to the Homeworld franchise during THQ's bankruptcy auction in 2013. Following this, they announced that they were remaking both Homeworld and Homeworld 2 in high definitio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "48866655", "url": "https://en.wikipedia.org/wiki/Alter/Ego", "title": "Alter/Ego", "text": "Alter/Ego (\u30a2\u30eb\u30bf\u30fc\u30fb\u30a8\u30b4) is a free real-time vocal synthesizer software which was created by Plogue.\n\nAbout\nAlter/Ego is a text-to-speech synthesizer which aims to create more modern vocals, working to post 1990s research. It was offered as a free plug-in and is used for music making to produce singing vocals. It operates in a similar manner to Chipspeech. Vocals are clean-cut though robotic sounding and the software is ideal for vocal experimentation. It is capable of running different speech eng", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49007843", "url": "https://en.wikipedia.org/wiki/Frrole", "title": "Frrole", "text": "Frrole, Inc. is a Palo Alto based social intelligence company founded in Jan 2014. It provides contextual topical and people insights to brands, media and technology companies by analyzing social data in real-time. In addition to its standard API provision, Frrole also provides custom built command centers for its clients. The bulk of Frrole\u2019s operations is carried out from its office in Bangalore, India.\n\nFrrole spent 4 months at Microsoft Ventures Accelerator. as part of its 3rd batch in Bang", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49044242", "url": "https://en.wikipedia.org/wiki/Ashes%20of%20the%20Singularity", "title": "Ashes of the Singularity", "text": "Ashes of the Singularity is a real-time strategy video game developed by Oxide Games and Stardock Entertainment. The game was released for Microsoft Windows on March 31, 2016. The game features massive battles involving thousands of units on vast battlefields. As such, it requires relatively high-end hardware. A standalone expansion pack, called Ashes of the Singularity: Escalation was released in November 2016, but was later merged into the main game.\n\nGameplay\nAshes of the Singularity is a rea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49045840", "url": "https://en.wikipedia.org/wiki/Yup%20Technologies", "title": "Yup Technologies", "text": "Yup (formerly known as MathCrunch) is a San Francisco-based educational technology company that provides on-demand tutoring services for math. The service is provided via a mobile app, which connects tutors with students in real-time. The company was founded in 2014 in San Francisco by Naguib S. Sawiris, who also acts as the CEO. The company has been featured in publications such as Forbes, Fox, VentureBeat, and TechCrunch.\n\nHistory\n\nYup (formerly known as MathCrunch) was founded in 2014 in San ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49083018", "url": "https://en.wikipedia.org/wiki/Grimace%20scale", "title": "Grimace scale", "text": "The grimace scale (GS), sometimes called the grimace score, is a method of assessing the occurrence or severity of pain experienced by non-human animals according to objective and blinded scoring of facial expressions, as is done routinely for the measurement of pain in non-verbal humans. Observers score the presence or prominence of \u201cfacial action units\" (FAU), e.g. Orbital Tightening, Nose Bulge, Ear Position and Whisker Change. These are scored by observing the animal directly in real-time,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49087051", "url": "https://en.wikipedia.org/wiki/Bridj", "title": "Bridj", "text": "BRIDJ (pronounced \"bridge\") is a SaaS platform designed to support \u2018demand responsive\u2019 or \u2018on demand\u2019 public transport providers. Its platform includes an optimisation engine, traveller app, driver app and client portal. The traveller app allows passengers to book, pay and track a service between two locations within a service area. The optimisation engine consumes pre-planned and real-time bookings and then allocates passengers to the available vehicles to create the optimal trips for the given", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49103664", "url": "https://en.wikipedia.org/wiki/Clash%20Royale", "title": "Clash Royale", "text": "Clash Royale is a free-to-play real-time strategy video game developed and published by Supercell. The game combines elements from collectible card games, tower defense, and multiplayer online battle arena. The game was released globally on March 2, 2016. Clash Royale reached $1 billion in revenue in less than a year on the market. In three years, Clash Royale made $2.5 billion in revenue according to market intelligence company Sensor Tower.\n\nGameplay\n\nClash Royale is a tower rush video game wh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49134271", "url": "https://en.wikipedia.org/wiki/Dungeon%20Souls", "title": "Dungeon Souls", "text": "Dungeon Souls is a roguelike adventure video game developed by Lamina Studios, and published by Black Shell Media. The game was released on July 7, 2015 for Microsoft Windows in Early Access. Players select from one of 6 characters and travel throughout the game vanquishing enemies, slaying monsters, and collecting items.\n\nGameplay\nDungeon Souls is a strategic real-time monster slaying and dungeon crawling adventure set in a retro, pixelated world. The game puts players in control of one of six ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49261593", "url": "https://en.wikipedia.org/wiki/Fr24", "title": "Fr24", "text": "FR24 may refer to:\n\n France 24, a French state-owned international news television network based in Paris\n Flightradar24, a Swedish internet-based service that shows real-time commercial aircraft flight tracking information on a map", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49270112", "url": "https://en.wikipedia.org/wiki/Remote%20guarding", "title": "Remote guarding", "text": "Remote guarding is a proactive security system combining CCTV video cameras, video analytics, alarms, monitoring centers and security agents. Potential threats are first spotted by cameras and analyzed in real-time by software algorithms based on predefined criteria. Once an event has been identified by the software, a security officer located in a remote center is then alerted to analyze the threat and take appropriate action immediately to prevent or minimize damage from occurring. These actio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49386038", "url": "https://en.wikipedia.org/wiki/Subterfuge%20%28video%20game%29", "title": "Subterfuge (video game)", "text": "Subterfuge is a real-time strategy video game developed by Ron Carmel and Noel Llopis. It is loosely based on the strategic board game Diplomacy.\n\nThe game takes place in an underwater world where players use diplomacy and tactics to defeat their opponents. It features minimalist art, except for the specialist portraits, which were drawn by Shane Nakamura.\n\nGameplay\nSubterfuge takes place in real time to allow for diplomacy; an average game lasts for about a week but can be longer or shorter. De", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49474181", "url": "https://en.wikipedia.org/wiki/Zephyr%20%28operating%20system%29", "title": "Zephyr (operating system)", "text": "Zephyr is a small real-time operating system (RTOS) for connected, resource-constrained and embedded devices (with an emphasis on microcontrollers) supporting multiple architectures and released under the Apache License 2.0. Zephyr includes a kernel, and all components and libraries, device drivers, protocol stacks, file systems, and firmware updates, needed to develop full application software.\n\nHistory\nZephyr originated from Virtuoso RTOS for digital signal processors (DSPs). In 2001, Wind Riv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49533728", "url": "https://en.wikipedia.org/wiki/MAS%20Electronic%20Payment%20System", "title": "MAS Electronic Payment System", "text": "The MAS Electronic Payment System or MEPS in short, is a SGD-only online interbank payment and fund transfer system in Singapore. It went online in July 1998, and is owned and operated by the Monetary Authority of Singapore (MAS). The irrevocable transfer of funds and the real-time nature of transfers are some of the key features of MEPS.\n\nAs of , the system was upgraded to MEPS+, which includes improved features such as the use of SWIFT message formats and network and automated gridlock detecti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49648675", "url": "https://en.wikipedia.org/wiki/Sonic%20City", "title": "Sonic City", "text": "Realised between 2002 and 2004, the project Sonic City was pioneer projects in locative media, in particular the mobile music field which it contributed in establishing.\n\nSonic City was a form of interactive music instrument using the city as an interface. It enabled people to individually create a real-time personal soundscape of electronic music by walking through and interacting with urban environments. Paths turned into musical compositions and mobility through the shifting contexts of a cit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49716161", "url": "https://en.wikipedia.org/wiki/Cargomatic", "title": "Cargomatic", "text": "Cargomatic is a logistics company founded in 2013 by Brett Parker & Jonathan Kessler based in Long Beach, California specifically targeting the fragmented short-haul and drayage trucking markets connecting shippers and carriers real-time with its crowdshipping web platform and mobile app.\n\nFocus\nThe company focuses on assisting shippers and carriers in the trucking industry through the following segments:\n\nFunding\nIn 2016 at the close of Series A funding, Cargomatic raised a total of $20.8M from", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49743093", "url": "https://en.wikipedia.org/wiki/Thread%20carpal%20tunnel%20release", "title": "Thread carpal tunnel release", "text": "Thread carpal tunnel release (TCTR) is a minimally-invasive procedure of performing carpal tunnel release using a piece of surgical dissecting thread as a dividing element. This is instead of using a scalpel as in the situation of open carpal tunnel release (OCTR) or endoscopic carpal tunnel release (ECTR).\n\nProcedure \n\nUnder the real-time guidance of ultrasound, a spinal needle is inserted at the palm of the hand and advanced underneath the transverse carpal ligament (TCL) and exiting at the wr", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49803204", "url": "https://en.wikipedia.org/wiki/Ying%20Lu", "title": "Ying Lu", "text": "Ying Lu is an Associate Professor of Computer Science and Engineering at the University of Nebraska-Lincoln.\n\nLife\nLu received her Ph.D in Computer Science from the University of Virginia, Charlottesville in 2005. She then began her work at the University of Nebraska - Lincoln as an Assistant Professor.\n\nWork\nLu's areas of interest are adaptive real-time systems, autonomic computing, and grid computing, among others. Ying Lu has been a technical program committee member several times, some of wh", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49808784", "url": "https://en.wikipedia.org/wiki/Multi-parametric%20surface%20plasmon%20resonance", "title": "Multi-parametric surface plasmon resonance", "text": "Multi-parametric surface plasmon resonance (MP-SPR) is based on surface plasmon resonance (SPR), an established real-time label-free method for biomolecular interaction analysis, but it uses a different optical setup, a goniometric SPR configuration. While MP-SPR provides same kinetic information as SPR (equilibrium constant, dissociation constant, association constant), it provides also structural information (refractive index, layer thickness). Hence, MP-SPR measures both surface interactions", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49813250", "url": "https://en.wikipedia.org/wiki/Project%20Chrono", "title": "Project Chrono", "text": "Project Chrono is a physics engine developed by University of Wisconsin-Madison and University of Parma and members of its open source community. It supports simulating rigid and soft body dynamics, collision detection, vehicle dynamics, fluid-solid interaction, deformable terrain, and granular dynamics, among other physical systems. The latest developments are in the area of sensor simulation, robotics simulation, human-autonomous agent interaction (real-time simulation), and autonomous vehicle", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49818796", "url": "https://en.wikipedia.org/wiki/Jeff%20Lander", "title": "Jeff Lander", "text": "Jeff Lander is an American video game programmer. He creates real-time 3D graphics at Darwin 3D, a game technology specialist company. He has written several articles on 3D graphics for Gamasutra and Game Developers Conference. In 2002, he received the IGDA Award for Community Contribution at the Game Developers Choice Awards.\n\nLander co-founded the Game Tech conference event with Chris Hecker, and, in 2004, co-designed it with Jonathan Blow.\n\nIn 2009, Jeff Lander and Bob Rafei founded Big Red B", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49835873", "url": "https://en.wikipedia.org/wiki/Starfall%20Online", "title": "Starfall Online", "text": "Starfall Online (formerly Starfall Tactics) is an MMO real-time strategy video game with wargame elements, that mixes intense tactical combat with in-depth spaceship customization. The project is developed by independent Russian company Snowforged Entertainment.\n\nGameplay \nIn Starfall Online players participate in a centuries-old confrontation between three rival factions - Eclipse, Vanguard and Deprived. One can assemble a unique fleet using a variety of blueprints and travel across the galaxy ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49926418", "url": "https://en.wikipedia.org/wiki/Resurs-P", "title": "Resurs-P", "text": "Resurs-P is a series of Russian commercial Earth observation satellites capable of acquiring high-resolution imagery (resolution up to 1.0 m). The spacecraft is operated by Roscosmos as a replacement of the Resurs-DK No.1 satellite.\n\nThe satellite is designed for multi-spectral remote sensing of the Earth's surface aimed at acquiring high-quality visible images in near real-time as well as on-line data delivery via radio link and providing a wide range of consumers with value-added processed dat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "49976679", "url": "https://en.wikipedia.org/wiki/MechWarrior%3A%20Tactical%20Command", "title": "MechWarrior: Tactical Command", "text": "MechWarrior: Tactical Command is a real-time strategy game based on the BattleTech universe developed for iOS. It was developed by Singaporean studio Personae Studios and released on September 27, 2013. The mobile game supports all iOS 5.0 and above devices including the iPhone, iPod Touch, and iPad.\n\nGameplay\nMechWarrior: Tactical Command takes place in the BattleTech universe, a science-fiction universe that often centers around pitched battles between human-piloted walking, heavily armed and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50009629", "url": "https://en.wikipedia.org/wiki/Dwarfs%20%28video%20game%29", "title": "Dwarfs (video game)", "text": "Dwarfs!? is a 2011 real-time strategy game developed by Power of 2 and published by Tripwire Interactive. In the game, the player acts as the overseer for an underground Dwarf colony, as the player must defend them by doing things such as building walls, solidifying rock, and bombing holes as they mine for resources. The game features multiple game modes, which range from an arcade mode, where the goal is getting the highest score, to a tower defence mode. Power of 2's Robin Flodin and Teddy Sj\u00f6", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50021376", "url": "https://en.wikipedia.org/wiki/GoMedia", "title": "GoMedia", "text": "GoMedia is a British company which supplies a management system which delivers entertainment packages including featuring films to travelers on trains and coaches including on Eurostar trains. The system also gives real-time travel information. Rather than using a monitor on the seat in front of the passenger, it uses the passenger's own device (\"Bring Your Own Device\" or BYOD) such as mobiles and tablets. It uses the vehicle's own Wi-Fi rather than the passenger's independent mobile network for", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50081149", "url": "https://en.wikipedia.org/wiki/SaleCycle", "title": "SaleCycle", "text": "SaleCycle is a UK based global Behavioral Marketing firm. It works with online companies to reconnect with customers they've lost online, providing On-Site Remarketing and Email Remarketing solutions or application forms with dynamic and personalized messages in real-time. SaleCycle also offers segmentation and customization of online shopping experiences for consumers. Key features of its services include real-time reporting and IT service management.\n\nThe firm's operations have enabled it to m", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50102924", "url": "https://en.wikipedia.org/wiki/Aegis%20of%20Earth%3A%20Protonovus%20Assault", "title": "Aegis of Earth: Protonovus Assault", "text": "is a 2015 real-time tactics video game developed and published by Acquire in Japan, with a western release by Aksys Games (North America) and PQube (Europe) coming the following year.\n\nPremise and gameplay\nAegis of Earth is set fifty years after a deadly event known as the \"Silent Apocalypse\". This catastrophic event brought forth various creatures hellbent on destroying humanity. Accompanying the arrival of the creatures was a new element called , which stands as earth's last hope at survival. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50115588", "url": "https://en.wikipedia.org/wiki/StarCraft%20II%3A%20Nova%20Covert%20Ops", "title": "StarCraft II: Nova Covert Ops", "text": "StarCraft II: Nova Covert Ops is a downloadable content (DLC) single-player mission pack for the military science fiction real-time strategy game series StarCraft II. Consisting of nine missions, it was released over the course of three installments as DLC, with three missions in each separably purchasable pack. The first mission pack was released March 29, 2016, the second mission pack released on August 2, 2016 and the final mission pack was released on November 22, 2016.\n\nThe plot focuses on ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50139306", "url": "https://en.wikipedia.org/wiki/Unified%20Payments%20Interface", "title": "Unified Payments Interface", "text": "Unified Payments Interface (UPI) is an instant real-time payment system developed by National Payments Corporation of India (NPCI) facilitating inter-bank peer-to-peer (P2P) and person-to-merchant (P2M) transactions. NPCI is umbrella organisation for all digital payments. The interface is regulated by the Reserve Bank of India (RBI) and works by instantly transferring funds between two bank accounts on a mobile platform. As of January 2022, there are 297 banks available on UPI with a monthly vol", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50305913", "url": "https://en.wikipedia.org/wiki/Platform%20display", "title": "Platform display", "text": "A platform display, destination display or train describer (British English) is supplementing the destination sign on arriving trains giving passengers an advance information. Historically they did only show the next destination and sometimes the type of train. In later usage they were replaced by passenger information display systems (PIDS) allowing for real-time passenger information.\n\nThe first railway stations had only a time table for passenger information. On larger stations the train port", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50314348", "url": "https://en.wikipedia.org/wiki/Advanced%20Mobile%20Location", "title": "Advanced Mobile Location", "text": "Advanced Mobile Location (or AML) is a free-of-charge emergency location-based service (LBS) available on smartphones that, when a caller dials the local (in country) short dial emergency telephone number, sends the best available geolocation of the caller to a dedicated end-point, usually a Public Safety Answering Point, making the location of the caller available to emergency call takers in real-time. AML improves the time taken by emergency call takers to verify the location of callers and ca", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50410255", "url": "https://en.wikipedia.org/wiki/Warhammer%2040%2C000%3A%20Dawn%20of%20War%20III", "title": "Warhammer 40,000: Dawn of War III", "text": "Warhammer 40,000: Dawn of War III is a 2017 real-time strategy game with multiplayer online battle arena influences, developed by Relic Entertainment and published by Sega. It is the third stand-alone title in the Dawn of War series, and the first new release in the series since Dawn of War II: Retribution in 2011. It was released for Microsoft Windows on April 27, 2017. On May 26, 2017, Feral Interactive announced that the Linux version would use both the OpenGL and Vulkan graphics APIs, while ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50451633", "url": "https://en.wikipedia.org/wiki/Baopals", "title": "Baopals", "text": "Baopals is an online shopping platform based in Shanghai, China, that enables users to shop from Taobao, Tmall and Jingdong (JD) in English. The platform serves as a bridge to products and sellers from these Chinese platforms, with information updated in real-time and translated to English. Product organization, customer service, payment, and delivery are geared towards non-Chinese users. The platform is accessible online as well through the company's official WeChat service account.\n\nThe platfo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50493521", "url": "https://en.wikipedia.org/wiki/Slow%20media", "title": "Slow media", "text": "Slow media is a movement focusing on the pace of media production and consumption in the digital age. It advocates for alternative ways of making and using media that are more intentional, more enjoyable, longer lasting, better researched/written/designed, more ethical, and of higher quality overall.\n\nSlow Media developed in response to complex media formats and instant communication methods characteristic of digital culture, in which \"high volumes of information are updated in real-time and are", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50498582", "url": "https://en.wikipedia.org/wiki/Apache%20Heron", "title": "Apache Heron", "text": "Apache Heron is a distributed stream processing engine developed at Twitter. According to the creators at Twitter, the scale and diversity of Twitter data has increased, and Heron is a real-time analytics platform to process streaming. It was introduced at the SIGMOD 2015. Heron is API compatible with Apache Storm.\n\nSee also\n List of Apache Software Foundation projects\n\nReferences\n\nExternal links\n Official Apache Heron page\n\nDistributed stream processing", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50512532", "url": "https://en.wikipedia.org/wiki/Fixed-point%20ocean%20observatory", "title": "Fixed-point ocean observatory", "text": "A fixed-point ocean observatory is an ocean observing autonomous system of automatic sensors and samplers that continuously gathers data from deep sea, water column and lower atmosphere, and transmits the data to shore in real or near real-time.\n\nInfrastructure\nFixed-point ocean observatories are typically composed of a cable anchored to the sea floor to which several automatic sensors and samplers are attached. The cable ends with a buoy at the ocean surface that may have some more sensors atta", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50515009", "url": "https://en.wikipedia.org/wiki/8-Bit%20Armies", "title": "8-Bit Armies", "text": "8-Bit Armies is a real-time strategy video game developed by Petroglyph Games, which was released on April 22, 2016 for Microsoft Windows and for Xbox One, and PlayStation 4 on 21 September 2018.\n\nGameplay\n8-Bit Armies is a real time strategy game designed to mirror the look and gameplay of classic RTS games. It features a singleplayer campaign and a multiplayer mode in which players battle each other or the AI in the cooperative game mode. The game takes a very simplistic approach in its gamepl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50527507", "url": "https://en.wikipedia.org/wiki/Dynamic%20syntax", "title": "Dynamic syntax", "text": "Dynamic Syntax (DS) is a grammar formalism and linguistic theory whose overall aim is to explain the real-time twin processes of language understanding and production. Under the DS approach, syntactic knowledge is understood as the ability to incrementally analyse the structure and content of spoken and written language in context and in real-time. While it posits representations similar to those used in Combinatory Categorial Grammars (CCG), it builds those representations left-to-right going w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50629927", "url": "https://en.wikipedia.org/wiki/Apache%20Mynewt", "title": "Apache Mynewt", "text": "Apache Mynewt is a modular real-time operating system for connected Internet of things (IoT) devices that must operate for long times under power, memory, and storage constraints. It is free and open-source software incubating under the Apache Software Foundation, with source code distributed under the Apache License 2.0, a permissive license that is conducive to commercial adoption of open-source software.\n\nOverview \nApache Mynewt is a real-time operating system with a rich set of libraries int", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50808390", "url": "https://en.wikipedia.org/wiki/Hitchball%204000", "title": "Hitchball 4000", "text": "Hitchball 4000 is the biggest hitchhiking race in the Nordic countries, organized during the first weekend of June. It is a weekend-long race where teams of two people hitchhike away from Helsinki and back. Each team is equipped with a GPS tracker, which enables their progress to be followed in real-time on the competition's website. The winner of the main competition is the team that hitchhikes the longest distance and gets the furthest possible during the weekend, but also gets back to the sta", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50818506", "url": "https://en.wikipedia.org/wiki/Listen%20to%20Wikipedia", "title": "Listen to Wikipedia", "text": "Listen to Wikipedia, also known as L2W or Hatnote: Listen To Wikipedia, is a multimedia visualizer developed by Mahmoud Hashemi and Stephen LaPorte which translates recent Wikipedia edits into a display of visuals and sounds. The open source software application creates a real-time statistical graphic with sound from contributions to Wikipedia from around the world. To accomplish this, L2W uses the graphics library D3.js.\n\nThe concept of Listen to Wikipedia is based on BitListen, originally know", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50824843", "url": "https://en.wikipedia.org/wiki/52%20Super%20Series", "title": "52 Super Series", "text": "The 52 Super Series is a high-performance, monohull yacht racing circuit.\n\nThe \"Box Rule\" associated to the TP 52 Class, means that boats must, literally, be able to fit within a box of certain dimensions. This means that there are no time allowances or handicaps and the boats race in real-time \u2013 first past the post wins. The Box Rule is strict enough to eliminate the need to set handicaps, yet flexible enough to encourage small, yearly innovations. The 52 Super Series is won by teams of skilful", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50830497", "url": "https://en.wikipedia.org/wiki/EcoDemonstrator", "title": "EcoDemonstrator", "text": "The ecoDemonstrator Program is a flight test research program of aircraft company Boeing, which has used a series of specially modified aircraft to develop and test aviation technologies designed to improve fuel economy and reduce the noise and ecological footprint of airliners.\nFrom 2012 through 2018, the five airplanes involved have tested 112 technologies: half remain in further development and a third are being implemented like iPad apps for pilot real-time information to reduce fuel use and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50830871", "url": "https://en.wikipedia.org/wiki/Smarthinking", "title": "Smarthinking", "text": "Smarthinking is an academic online tutoring service, provided by Pearson Education. The service provides on-demand support from tutors in over 25 subjects. Smarthinking uses a pedagogical approach along with whiteboard interface technology to connect students and tutors.\n\nSmarthinking launched in 1999 to provide real-time assistance for students in postsecondary education. In 2007, Smarthinking was honored with the Software & Information Industry Association (SIIA) CODie award for Best Instructi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50860835", "url": "https://en.wikipedia.org/wiki/Brandwatch%20Qriously", "title": "Brandwatch Qriously", "text": "Brandwatch Qriously is a market research and polling company, owned by Brandwatch. They are a member of the British Polling Council. According to Bloomberg, Brandwatch Qriously \"provides an online service for measuring location-based public sentiments in real-time\". The company's business model is based around developing advertisements within mobile apps which display questions for users to answer.\n\nHistory\nBrandwatch Qriously was co-founded by Austrians Christopher Kahler (CEO), Gerald M\u00fcller a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50911068", "url": "https://en.wikipedia.org/wiki/MyRIO", "title": "MyRIO", "text": "MyRIO is a real-time embedded evaluation board made by National Instruments. It is used to develop\napplications that utilize its onboard FPGA and microprocessor. It requires LabVIEW. It's geared towards students and basic applications.\n\nSpecifications\n(for myRIO-1900)\n Xilinx Z-7010 processor 667 MHz (ARM Cortex A9 x2 cores 28 nm process NEON SIMD, VFPv3 Vector Float)\n Memory: NV: 256 MB, DDR3 512MB, 533 MHz, 16 bits\n FPGA type same as processor\n Wireless: IEEE 802.11 b,g,n ISM 2.4 GHz 2", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "50935784", "url": "https://en.wikipedia.org/wiki/Redcon%20%28video%20game%29", "title": "Redcon (video game)", "text": "Redcon - Strike Commander (styled as REDCON) is a 2016 real-time strategy video game developed by Hexage. It is inspired by the Japanese anime film Memories.\n\nGameplay\n\nThe player controls a fort (later progressing to \"Fortress\"-type fortifications) armed with cannons. The player's task is to destroy an enemy's fort/fortress without being defeated. Weapons and facilities can be upgraded and configured between battles.\n\nThere are numerous weapons and facilities in-game. Most weapons are artillery", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51004397", "url": "https://en.wikipedia.org/wiki/Cairo%20Knife%20Fight", "title": "Cairo Knife Fight", "text": "Cairo Knife Fight (CKF) is a rock band originating from New Zealand, founded in 2007 by musical artist Nick Gaffaney, featuring a drum and guitar duo incorporating real-time layered loops.\n\nHistory\nCairo Knife Fight (CKF) began as Nick Gaffaney's unnamed side project along with several other band members in 2004, namely Aaron Tokona (guitar and vocals), Ritchie Pickard (bass), Roslen Langton (vocals), Katie Tayor (vocals), and Nick (drums and vocals). Nick was a successful professional session a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51029165", "url": "https://en.wikipedia.org/wiki/Imply%20Data", "title": "Imply Data", "text": "Imply Data, Inc.'is an American software company that develops and provides commercial support for the open-source Apache Druid, a real-time database designed to power fast, modern analytics applications.\n\nHistory\nIn 2011, the Druid project was started at Metamarkets, an online advertising company now part of Snap, to power an analytics product. Druid was open sourced in October 2012 under the GPL license. Over time, notable organizations including Netflix and Yahoo adopted the project into thei", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51051590", "url": "https://en.wikipedia.org/wiki/James%20H.%20Anderson%20%28computer%20scientist%29", "title": "James H. Anderson (computer scientist)", "text": "James Hampton Anderson is a Kenan Professor in the computer science department of the University of North Carolina at Chapel Hill. He was named a Fellow of the Institute of Electrical and Electronics Engineers (IEEE) in 2012 \"for contributions to the implementation of soft-real-time systems on multiprocessor and multicore platforms\", and a Fellow of the Association for Computing Machinery in 2013.\n\nReferences \n\nAmerican computer scientists\nUniversity of North Carolina at Chapel Hill faculty\nFell", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51058603", "url": "https://en.wikipedia.org/wiki/JKool", "title": "JKool", "text": "jKool is a software company based in Plainview, NY, that produces software for visualizing and analyzing machine-generated data, including: logs, metrics and transactions in real-time, via a web-based interface. jKool analyzes big data including both data-in-motion (real-time) and data-at-rest (historical). jKool offer its solutions through several channels including IBM Bluemix and as an on-premises offering.\n\nProduct \njKool was designed to be a highly scalable, SaaS solution leveraging open-so", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51060375", "url": "https://en.wikipedia.org/wiki/Amazon%20Alexa", "title": "Amazon Alexa", "text": "Amazon Alexa, also known simply as Alexa, is a virtual assistant technology largely based on a Polish speech synthesiser named Ivona, bought by Amazon in 2013. It was first used in the Amazon Echo smart speaker and the Echo Dot, Echo Studio and Amazon Tap speakers developed by Amazon Lab126. It is capable of voice interaction, music playback, making to-do lists, setting alarms, streaming podcasts, playing audiobooks, and providing weather, traffic, sports, and other real-time information, such a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51061242", "url": "https://en.wikipedia.org/wiki/Dynamic%20creative%20optimization", "title": "Dynamic creative optimization", "text": "Dynamic creative optimization (DCO), is a form of programmatic advertising that allows advertisers to optimize the performance of their creative using real-time technology. \n\nIn DCO, a variety of ad components (backgrounds, main images, text, value propositions, call to action, etc.) are dynamically assembled on the flight, when the ad is served, according to the particular needs of the impression. Creative development is done using creative studio tools like Adobe Photoshop. It may include vid", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51073178", "url": "https://en.wikipedia.org/wiki/Trainspotting%20Live", "title": "Trainspotting Live", "text": "Trainspotting Live is a live television programme broadcast on BBC Four over three nights from 11 July 2016. It followed on from similar \"live\" programmes on the BBC such as Airport Live and Volcano Live.\n\nProgramme\nThe show was presented by Peter Snow, Hannah Fry, Dick Strawbridge and Tim Dunn from the Didcot Railway Centre in Didcot. Trainspotting Live also featured pre-recorded reports and interviews as well as the real-time broadcast. Live cameras showed railway activity on the nearby Great", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51100056", "url": "https://en.wikipedia.org/wiki/2016%20Cyber%20Grand%20Challenge", "title": "2016 Cyber Grand Challenge", "text": "The 2016 Cyber Grand Challenge (CGC) was a challenge created by The Defense Advanced Research Projects Agency (DARPA) in order to develop automatic defense systems that can discover, prove, and correct software flaws in real-time.\n\nThe event placed machine versus machine (no human intervention) in what was called the \"world's first automated network defense tournament.\"\n\nThe final event was held on August 4, 2016 at the Paris Hotel & Conference Center in Las Vegas, Nevada within the 24th DEF CON", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51122519", "url": "https://en.wikipedia.org/wiki/Door%20Kickers", "title": "Door Kickers", "text": "Door Kickers is a real-time tactics video game developed and published by Romanian indie studio KillHouse Games. The game was released for Microsoft Windows on October 20, 2014, and later for the iPad and Android on June 24, 2015 and September 4, 2015 respectively. A Nintendo Switch version was released on December 26, 2020, published by QubicGames. A sequel, Door Kickers 2 \u2013 Task Force North, which follows special operations forces in a fictional Middle Eastern country, was released in 2020.\n\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51136320", "url": "https://en.wikipedia.org/wiki/Intelligence%20engine", "title": "Intelligence engine", "text": "An intelligence engine is a type of enterprise information management that combines business rule management, predictive, and prescriptive analytics to form a unified information access platform that provides real-time intelligence through search technologies, dashboards and/or existing business infrastructure. Intelligence Engines are process and/or business problem specific, resulting in industry and/or function-specific marketing trademarks associated with them. They can be differentiated f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51190584", "url": "https://en.wikipedia.org/wiki/Social%20media%20in%20the%20financial%20services%20sector", "title": "Social media in the financial services sector", "text": "Social media has affected the financial services sector by allowing for a global reach, improving customer service, advancing marketing strategies, and even creating new products and services offered to customers. Financial companies are able to overcome geographical obstacles and reach customers across the globe by connecting with their customers on a more personal level by using social media as a real-time platform of communication. Being an integral part of everyday life, social media and tec", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51216978", "url": "https://en.wikipedia.org/wiki/Solar-powered%20waste%20compacting%20bin", "title": "Solar-powered waste compacting bin", "text": "A solar-powered waste compactor is a smart device that reads a waste bin's fill-level in real-time and triggers an automatic compaction of the waste, effectively increasing the bin's capacity by up to 5-8 times. The compaction mechanism runs on a battery, which is charged by the solar panel. Fully charged, the battery reserve lasts for approximately 3\u20134 weeks depending on the compaction frequency and usage patterns.\n\nSolar-powered waste compactors are typically connected to a remote software pla", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51225781", "url": "https://en.wikipedia.org/wiki/SportsHero", "title": "SportsHero", "text": "SportsHero is a real-time fantasy sports app and social prediction platform. Within the app, users make predictions on match, game, competition results. These users are ranked based on information provided by other fans and experts in the community, as well as real-time news and statistics.\n\nFootball (soccer) and cricket are currently available on the app, with plans to introduce cycling and further keystone sports such as basketball, AFL, esports and American football. SportsHero is available a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51237471", "url": "https://en.wikipedia.org/wiki/Offworld%20Trading%20Company", "title": "Offworld Trading Company", "text": "Offworld Trading Company is a real-time strategy (RTS) video game developed by Mohawk Games and published by Stardock. The game was released for Microsoft Windows and OS X in April 2016.\n\nGameplay\nOffworld Trading Company is a science fiction themed real-time strategy video game set on Mars. Featuring economic warfare ranging from hostile takeovers to sabotage, it puts the player in charge of one of four titular offworld trading companies. The players' choice of faction comes after they have the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51259241", "url": "https://en.wikipedia.org/wiki/Tabbles", "title": "Tabbles", "text": "Tabbles is a file-tagging application and relational file manager for Windows which is used to organize contents. It can tag any file type in any file system locally or over a network. \n\nThe name \"Tabbles\" is portmanteau of tag and bubbles.\n\nOverview \nTabbles generates in real-time a tag-based relational file system, where tags can be accessed as folders or used as keywords for search. Unlike Windows tagging system, it supports any kind of files and documents on local and shared drives, as well ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51293626", "url": "https://en.wikipedia.org/wiki/Kepler%20Communications", "title": "Kepler Communications", "text": "Kepler Communications Inc. is a private telecommunications company based in Toronto, Ontario, Canada. \u00a0The company\u2019s stated mission is to deliver affordable network connectivity across the globe via a growing network of small satellites.\n\nOverview\nKepler Communications is working to build a constellation of small, shoebox-sized satellites based on the CubeSat standard to deliver connectivity to other satellites and ground-based stations, allowing for near real-time exchange of data from IoT devi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51310437", "url": "https://en.wikipedia.org/wiki/InfluxDB", "title": "InfluxDB", "text": "InfluxDB is an open-source time series database (TSDB) developed by the company InfluxData. It is written in the Go programming language for storage and retrieval of time series data in fields such as operations monitoring, application metrics, Internet of Things sensor data, and real-time analytics. It also has support for processing data from Graphite.\n\nHistory \nY Combinator-backed company Errplane began developing InfluxDB as an open-source project in late 2013 for performance monitoring an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51329921", "url": "https://en.wikipedia.org/wiki/Call%20to%20Arms%20%28video%20game%29", "title": "Call to Arms (video game)", "text": "Call to Arms is a real-time tactics and strategy video game developed by German company Digitalmindsoft as the spiritual successor to the Men of War series. The early access version of the game was released on 30 July 2015 to Steam.\n\nGameplay \n\nCall to Arms is a real-time tactics and strategy video game.\n\nThe Domination game mode requires each team to take strategic points on a map, with the number of points decided by the number of players. The first team to take the greater number of points wi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51331549", "url": "https://en.wikipedia.org/wiki/Assault%20Squad%202%3A%20Men%20of%20War%20Origins", "title": "Assault Squad 2: Men of War Origins", "text": "Assault Squad 2: Men of War Origins is a real-time tactics / strategy game developed by German company Digitalmindsoft, the modern remaster of the original Men of War. The game was released on August 25, 2016. This is a DLC for Men of War: Assault Squad 2.\n\nExternal links\n\nAssault Squad 2: Men of War Origins on Steam\n\nElectronic games\nReal-time strategy video games\nReal-time tactics video games\nVideo games developed in Germany\nVideo games set in Algeria\nVideo games set in Denmark\nVideo games set", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51412782", "url": "https://en.wikipedia.org/wiki/Invasion%20Force", "title": "Invasion Force", "text": "Invasion Force is a science fiction action video game produced by the Tandy Corporation in June, 1979. Invasion Force was a text-based, real-time, Star Trek style game.\n\nGameplay \nThe player is in control of the USS Hephaestus and must make decisions to manage resources, such as fuel and ammunition, so the ship does not become stranded in space while fending off \"Jovian\" attacks. There are 10 levels of difficulty.\n\nReception\nGlenn Mai reviewed Invasion Force in The Space Gamer No. 36. Mai commen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51427212", "url": "https://en.wikipedia.org/wiki/Fru%20%28video%20game%29", "title": "Fru (video game)", "text": "Fru is a puzzle-platform game developed by Through Games. Fru was released for the Xbox One console on 13 July 2016.\n\nGameplay\nFru is a puzzle platform video game, in which players control a young girl wearing a fox mask through a 2-dimensional environment. The game makes use of the Kinect motion sensing peripheral. The player's silhouette is projected in real-time onto the scenery to manipulate and reveal hidden platforms.\n\nDevelopment and release\nFru was developed and published by Through Game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51462681", "url": "https://en.wikipedia.org/wiki/Objective%20vision", "title": "Objective vision", "text": "Objective Vision (Object Oriented Visionary) is a project mainly aimed at real-time computer vision and simulation vision of living creatures. it has three sections contain of an open-source library of programming functions for using inside the projects, Virtual laboratory for scholars to check the application of functions directly and by command-line code for external and instant access, and the research section consists of paperwork and libraries to expand the scientific prove of works.\n\nBackg", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51576689", "url": "https://en.wikipedia.org/wiki/8-Bit%20Hordes", "title": "8-Bit Hordes", "text": "8-Bit Hordes is a real-time strategy video game developed by Petroglyph Games, which was released on August 12, 2016 for Microsoft Windows. It uses the same engine as its predecessor 8-Bit Armies, but is now based in a fantasy themed scenario.\n\nDevelopment\n8-Bit Hordes is the sequel to the game 8-Bit Armies. It uses the same engine and interface. After the release of 8-Bit Armies, Petroglyph Games wanted to release more factions via DLC, but then decided to make an entire spin-off, which led to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51586149", "url": "https://en.wikipedia.org/wiki/Titanfall%3A%20Frontline", "title": "Titanfall: Frontline", "text": "Titanfall: Frontline is a cancelled card battle video game developed by American studio Particle City for Android and iOS devices, as part of the Titanfall franchise.\n\nGameplay \n\nUnlike other prominent collectible card games in the genre, which are played in turns, Titanfall: Frontline is played in real-time. The player collects and places Pilot, Titan, and burn cards to damage and defeat their opponent. Pilot and Titan cards can combine to perform extra damage.\n\nThe game is free-to-play, and pl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51682055", "url": "https://en.wikipedia.org/wiki/Multi-component%20gas%20analyzer%20system", "title": "Multi-component gas analyzer system", "text": "A multi-component gas analyzer system (Multi-GAS) is an instrument package used to take real-time high-resolution measurements of volcanic gases. A Multi-GAS package includes an infrared spectrometer for CO2, two electrochemical sensors for SO2 and H2S, and pressure\u2013temperature\u2013humidity sensors, all in a weatherproof box. The system can be used for individual surveys or set up as permanent stations connected to radio transmitters for transmission of data from remote locations. The instrument pac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51692971", "url": "https://en.wikipedia.org/wiki/Game%20of%20Emperors", "title": "Game of Emperors", "text": "Game of Emperors is a Massively multiplayer online real-time strategy game developed by the Bulgarian game production company Imperia Online JSC. It was released in February 2016 and it has been translated into 30 languages.\n\nGameplay \nGame of Emperors is set in medieval times. The players develop their own cities by constructing economic and military buildings, researching in the university in the capital and expanding their army, which will fight in the battles. Everyone is trying to keep the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51771229", "url": "https://en.wikipedia.org/wiki/Nuclino", "title": "Nuclino", "text": "Nuclino is a cloud-based team collaboration software which allows teams to collaborate and share information in real time. It was founded in Munich, Germany in 2015. Some notable features include a WYSIWYG collaborative real-time editor and a visual representation of a team's knowledge in a graph. In addition to its web-based and desktop application, in 2018, Nuclino launched a free mobile app for Android and iOS.\n\nSee also\n List of collaborative software\n List of wiki software\n Comparison of wi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "51773906", "url": "https://en.wikipedia.org/wiki/TowIt", "title": "TowIt", "text": "\"TowIt\" is a free, global, cross-platform mobile app, website, and Web API that allows civilians to report parking violations and dangerous driving in real-time. The mission is to remove the barriers required to make cities effectively fight and deter bad parking and dangerous driving habits. The company ultimately aims to better existing social controls in order to drive necessary behavioral change through increased education, real-time reporting, optimized enforcement, as well as the resultin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52012786", "url": "https://en.wikipedia.org/wiki/Votecastr", "title": "Votecastr", "text": "Votecastr is a private company, founded in 2016, to track, model, and publish real-time election results from the 2016 Presidential Election, on November 8, 2016.\n\nOn September 10, 2016, Votecastr was profiled in The New York Times by Nick Corasaniti, and announced its partnership with Slate.com to publish the data on Election Day. Additionally, co-founder Sasha Issenberg published a piece on Slate.com outline Votecastr's Election Day strategy.\n\nBackground \nDuring the U.S. Presidential Election", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52157796", "url": "https://en.wikipedia.org/wiki/Viridi", "title": "Viridi", "text": "Viridi is a simulation video game developed by Ice Water Games. The game was released onto Microsoft Windows and OS X on August 20, 2015, and onto iOS and Android on June 20, 2016. The game tasks players to look after a pot of succulents. The game takes on a freemium model, meaning the game is free-to-play, but contains microtransactions.\n\nGameplay\nIn Viridi, the player is tasked with looking after a pot full of different varieties of succulents in real-time, while a snail circumnavigates the ed", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52197275", "url": "https://en.wikipedia.org/wiki/Skam%20%28TV%20series%29", "title": "Skam (TV series)", "text": "Skam (; English: \"Shame\") is a Norwegian teen drama streaming television series about the daily life of teenagers at the Hartvig Nissen School, a gymnasium in the wealthy borough of Frogner in West End Oslo. It was produced by NRK P3, which is part of the Norwegian public broadcaster NRK.\n\nSkam follows a new main character each season. While airing, a new clip, conversation or social media post was published in real-time on the NRK website on a daily basis. Each season has focus on particular to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52244550", "url": "https://en.wikipedia.org/wiki/ClickHouse", "title": "ClickHouse", "text": "ClickHouse is an open-source column-oriented DBMS (columnar database management system) for online analytical processing (OLAP) that allows users to generate analytical reports using SQL queries in real-time. \n\nIts technology works 100-1000x faster than traditional database management systems, and processes hundreds of millions to over a billion rows and tens of gigabytes of data per server per second. With a widespread user base around the globe, the technology has received praise for its relia", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52361875", "url": "https://en.wikipedia.org/wiki/The%20One%20Moment", "title": "The One Moment", "text": "\"The One Moment\" is a song by American rock band OK Go. It was released as the fourth single from their fourth studio album, Hungry Ghosts (2014). The band released a video associated with the song, its production sponsored by Morton Salt to highlight their \"Walk Her Walk\" campaign. The one-shot video primarily consists of 4.2 seconds of real-time footage recording over 300 distinct events set in motion by the band members and timed devices, slowed down to be played over the length of the song.\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52362386", "url": "https://en.wikipedia.org/wiki/Gresham%20Technologies%20plc", "title": "Gresham Technologies plc", "text": "Gresham Technologies plc, known as Gresham Tech and formerly known as Gresham Computing plc, is a software and services company that specialises in providing real-time transaction control and enterprise data integrity solutions. Listed on the main market of the London Stock Exchange GHT and headquartered in the City of London, customers include some of the world's largest financial institutions, all of whom are served locally from offices located in Europe, North America and Asia Pacific.\n\nAll ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52393372", "url": "https://en.wikipedia.org/wiki/SwellRT", "title": "SwellRT", "text": "SwellRT is a free and open-source backend-as-a-service and API focused to ease development of apps featuring real-time collaboration. It supports the building of mobile and web apps, and aims to facilitate interoperability and federation.\n\nHistory\n\nOrigins \nSwellRT has its origins in the work done within the GRASIA research team at the Universidad Complutense de Madrid, as part of the EU-funded project P2Pvalue (2013-2016), in a team led by Samer Hassan. In 2014, the developer Pablo Ojanguren to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52435349", "url": "https://en.wikipedia.org/wiki/Carta%20%28software%20company%29", "title": "Carta (software company)", "text": "Carta (formerly eShares, Inc.) is a San Francisco, California-based technology company that specializes in capitalization table management and valuation software. The company digitizes paper stock certificates along with stock options, warrants, and derivatives to help companies, investors and employees manage their equity, while creating a real-time picture of company ownership. The company also operates the CartaX private stock exchange, and issues studies highlighting the gender equity gap ac", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52493884", "url": "https://en.wikipedia.org/wiki/Mushroom%20Wars%202", "title": "Mushroom Wars 2", "text": "Mushroom Wars 2 is a real-time strategy video game, developed and published by Zillion Whales. It is the sequel to Mushroom Wars, and was released on iOS and tvOS on October 13, 2016 and is also available on Android, Steam and Nintendo Switch. Versions for PlayStation 4, and Xbox One are expected to follow soon.\n\nThe game is set in a fictional woodland world, where armies of mushrooms face off in dynamic real-time strategy battles. The player picks one of the heroes, characters with unique abili", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52591223", "url": "https://en.wikipedia.org/wiki/Room%20scale", "title": "Room scale", "text": "Room-scale (sometimes written without the dash) is a design paradigm for virtual reality (VR) experiences which allows users to freely walk around a play area, with their real-life motion reflected in the VR environment. Using 360 degree tracking equipment such as infrared sensors, the VR system monitors the user's movement in all directions, and translates this into the virtual world in real-time. This allows the player to perform tasks, such as walking across a room and picking up a key from a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52642567", "url": "https://en.wikipedia.org/wiki/Sudden%20Strike%204", "title": "Sudden Strike 4", "text": "Sudden Strike 4 is a real-time tactics video game set in World War II. It is the fifth game in the Sudden Strike series and the fourth standalone release. It is the first game developed by Kite Games, a collaboration of industry veteran game developers. Originally, it was scheduled to be released for PC and PlayStation 4 on June 27, 2017; but was delayed until August 11, 2017 and August 15, 2017 for PC and PlayStation 4, respectively.\n\nGameplay\nThe single-player mode features 3 campaigns (German", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52647325", "url": "https://en.wikipedia.org/wiki/List%20of%20number-one%20songs%20of%202016%20%28Colombia%29", "title": "List of number-one songs of 2016 (Colombia)", "text": "This is a list of the National-Report Top 100 Nacional number-one songs of 2016. Chart rankings are based on radio play and are issued weekly. The data is compiled monitoring radio stations through an automated system in real-time.\n\nNumber ones by week\n\nReferences\n\nNumber-one songs\nColombia\nColombian record charts", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52680501", "url": "https://en.wikipedia.org/wiki/Tactile%20%28device%29", "title": "Tactile (device)", "text": "Tactile is a real-time text-to-braille translation device currently under development at the Massachusetts Institute of Technology. It was conceived by a team of undergraduate students, competing as \"Team 100% Enthusiasm\", during a 15-hour MIT \"hackathon\". The device is slid over printed text and a camera captures images of the words and sends them to a microcontroller. The information moves the pins up and down, translating the text into Braille. Once on the market it is hoped to be much cheape", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52709006", "url": "https://en.wikipedia.org/wiki/Call%20of%20Duty%3A%20Heroes", "title": "Call of Duty: Heroes", "text": "Call of Duty: Heroes was a free-to-play real-time strategy game published by Activision and developed by Faceroll Games. The game was released on Android and iOS on November 26, 2014. On October 23, 2018 Activision announced that the game would no longer be available to play from December 22, 2018 going forward.\n\nGameplay \nCall of Duty: Heroes is a real-time strategy game with similar gameplay to Clash of Clans. Players take control of an army of soldiers called \"Units\" and also called \"Heroes\" ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52721848", "url": "https://en.wikipedia.org/wiki/TopstepTrader", "title": "TopstepTrader", "text": "TopstepTrader is a financial technology firm based in Chicago, IL that evaluates day traders\u2019 performance in real-time simulated accounts. Traders who pass the company\u2019s evaluation earn a funded trading account and trade Forex and futures contracts in the financial markets using the firm\u2019s capital.\n\nCurrent operations \nTopstepTrader currently operates out of their headquarters in the West Loop Gate neighborhood of Chicago at 130 S. Jefferson St. Employees work out of the 10,000+ sq. ft. loft sp", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52809171", "url": "https://en.wikipedia.org/wiki/European%20Component%20Oriented%20Architecture", "title": "European Component Oriented Architecture", "text": "European Component Oriented Architecture (ECOA) is an open specification for a software framework for mission system software comprising components that are both real-time and service-oriented.\n\nECOA is managed by the French Direction g\u00e9n\u00e9rale de l'armement and the UK Ministry of Defence (through the Defence Science and Technology Laboratory - DSTL) with the help of the following industry partners:\n BAE Systems (Electronic Systems and Military Air & Information)\n Groupe Bull\n General Dynamics (U", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52813499", "url": "https://en.wikipedia.org/wiki/Void%20Destroyer", "title": "Void Destroyer", "text": "Void Destroyer is a real-time strategy space combat video game. It was developed by Paul Zakrzewski and was released on January 20, 2015.\n\nGameplay\nVoid Destroyer is a real-time strategy space combat game.\n\nDevelopment\nVoid Destroyer was developed by Paul Zakrzewski. Zakrzewski explained to The Escapist that Homeworld was a major influence for the title, describing himself as a fan. He also said that the interface and mechanics for Void Destroyer was inspired by the 1999 game.\n\nZakrzewski worke", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52832291", "url": "https://en.wikipedia.org/wiki/Plasma%20%28game%20engine%29", "title": "Plasma (game engine)", "text": "CyanWorlds.com Engine (formerly Plasma) is a real-time 3D game engine originally called Headspin and developed by Headspin Technologies in 1997 and later by Cyan Worlds (Cyan purchased the engine as part of the acquisition of Headspin) to power the next generation of real time 3D Myst series games such as URU: Complete Chronicles and Myst V: End of Ages.\n\nCyan Worlds and OpenUru.org Foundry jointly announce open source delivery of the \"CyanWorlds.com Engine\" client and 3ds Max plugin, aka Plasma", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52834708", "url": "https://en.wikipedia.org/wiki/Sydney%20Development%20Corporation", "title": "Sydney Development Corporation", "text": "Sydney Development Corporation (\"SDC\"), was the first publicly-traded software company in Canada. Founded by Tarrnie Williams, SDC developed an online real-time project management system for the IBM System z mainframe computer, then various different business applications for microcomputers such as the Apple II, and eventually became the first developer and publisher of computer games for microcomputers in Canada.\n\nIn 1981, SDC agreed to publish Evolution by Don Mattrick and Jeff Sembers, after ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52838088", "url": "https://en.wikipedia.org/wiki/Vittorio%20Santoro", "title": "Vittorio Santoro", "text": "Vittorio Santoro (born 3 September 1962) is an Italian/Swiss visual artist living in Paris and Zurich. He is primarily known for his multimedia approach including installations, audio works, sculptures, works on paper, real-time activities and his artist books.\n\nEducation \nEssentially an autodidact, Santoro has attended the International Center of Photography (NYC) and the programs at Watermill Art Center with Robert Wilson (Long Island, NY).\n\nWork \n\nSantoro initially developed a literary practi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52847533", "url": "https://en.wikipedia.org/wiki/Soldiers%20Inc.", "title": "Soldiers Inc.", "text": "Soldiers Inc. is a Massively multiplayer online real-time strategy game (MMORTS) developed and published by Plarium. The game was released in 2013 and is designed for use on web browsers. The game is military themed and set in the fictional country of Zandia, where players compete for control of the land's rich mineral fields. The game was named by Facebook as one of the top social games on its platform in 2013.\n\nGameplay\nSoldiers Inc. gameplay involves fighting criminal organizations, corrupt c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52872667", "url": "https://en.wikipedia.org/wiki/Has-Been%20Heroes", "title": "Has-Been Heroes", "text": "Has-Been Heroes is an action video game developed by Frozenbyte and published by GameTrust. The game was released on 28 March 2017 in North America and in Europe and Australia on 4 April 2017 on Nintendo Switch, PlayStation 4, Microsoft Windows, and Xbox One. This game is Gamestop exclusive and was only sold through Gamestop stores at launch.\n\nGameplay\nHas-Been Heroes is an action, strategy video game with roguelike elements. The game features a mixture of turn-based strategy and real-time strat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52927099", "url": "https://en.wikipedia.org/wiki/Dataminr", "title": "Dataminr", "text": "Dataminr is a New York based company that specialises in artificial intelligence to provide real-time information alerts to clients. It was founded in 2009.\n\nHistory \nDataminr was founded in 2009 by Yale University graduates Ted Bailey, Sam Hendel and Jeff Kinsey. Dataminr came to wider notice when it issued an alert that Osama bin Laden had been killed 23 minutes faster than major news organizations.\n\nDataminr\u2019s clients span both public and private sectors, including CNN, USA Today, the United ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52937558", "url": "https://en.wikipedia.org/wiki/Nemesis%20of%20the%20Roman%20Empire", "title": "Nemesis of the Roman Empire", "text": "Nemesis of the Roman Empire is a real-time strategy role-playing video game developed by Haemimont Games and published by Enlight Software. The sequel to Celtic Kings: Rage of War, the game is set in the Punic Wars and allows the player to take control of one of four nations, as well as Hannibal the Great.\n\nIn Spain the game was released on November 27, 2003 under the title Imperivm II: Conquest of Hispania, and in Italy as Imperivm II: The Punic Wars, by the publisher FX Interactive.\n\nGameplay\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52951236", "url": "https://en.wikipedia.org/wiki/ZPEG", "title": "ZPEG", "text": "ZPEG is a motion video technology that applies a human visual acuity model to a decorrelated transform-domain space, thereby optimally reducing the redundancies in motion video by removing the subjectively imperceptible. This technology is applicable to a wide range of video processing problems such as video optimization, real-time motion video compression, subjective quality monitoring, and format conversion.\n\nThe ZPEG company produces modified versions of x264, x265, AV1, and FFmpeg under the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "52963016", "url": "https://en.wikipedia.org/wiki/Pirates%3A%20Tides%20of%20Fortune", "title": "Pirates: Tides of Fortune", "text": "Pirates: Tides of Fortune is a massively multiplayer online real-time strategy game developed and published by Plarium. The game was released for web browser in 2012. The game is set in on fictional desert island where players build their own pirate bay, ships and fight against each other in sea-based battles.\n\nStory and gameplay \nPirates: Tides of Fortune is a nautical-themed social game. The game is geared towards interaction with other players, with frequent popups to remind players of the va", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53014208", "url": "https://en.wikipedia.org/wiki/Computer-generated%20choreography", "title": "Computer-generated choreography", "text": "Computer-generated choreography is the technique of using algorithms to create dance. It is commonly described as using computers for choreographing dances, creating computer animations, studying or teaching aspects of human movement, illustrating dance movements, or assistance in notating dances. It may also be applied in terms of choreographic software for stimulation, enabling real-time choreography and generative dance, or simulation with virtual dancers in the field of Dance technology. His", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53066347", "url": "https://en.wikipedia.org/wiki/The%20Gladiators%3A%20Galactic%20Circus%20Games", "title": "The Gladiators: Galactic Circus Games", "text": "The Gladiators: Galactic Circus Games is a 2002 real-time strategy video game.\n\nPlot \nMajor Greg D. Callahan of the United States Marine Corps gets shot through a black hole and ends up in an alien world where he must fight in gladiator-style fights in an arena, and help a character named Princess Lydia.\n\nGameplay \nPlayers play through three strategy campaigns without the complication of resource-gathering and city-building. The arena announcer gives the player goals which they must complete to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53077401", "url": "https://en.wikipedia.org/wiki/List%20of%20number-one%20songs%20of%202017%20%28Colombia%29", "title": "List of number-one songs of 2017 (Colombia)", "text": "This is a list of the National-Report Top 100 Nacional number-one songs of 2017. Chart rankings are based on radio play and are issued weekly. The data is compiled monitoring radio stations through an automated system in real-time.\n\nNumber ones by week\n\nReferences \n\nNumber-one songs\nColombia\nColombian record charts", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53157189", "url": "https://en.wikipedia.org/wiki/WarFriends", "title": "WarFriends", "text": "WarFriends is a 2017 third-person shooter video game developed by About Fun. It is played by third-person perspective with elements of real-time strategy. It was originally released on 7 October 2016 as early access. The full version was released on 17 January 2017.\n\nAs of 5 April 2017, Warfriends was downloaded by more than 5 million users.\n\nGameplay\nThe player controls a soldier who can move between multiple covers on the map. The player has to kill a live opponent, or in a certain game mode, ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53186675", "url": "https://en.wikipedia.org/wiki/System%20Power%20Management%20Interface", "title": "System Power Management Interface", "text": "The System Power Management Interface (SPMI) is a high-speed, low-latency, bi-directional, two-wire serial bus suitable for real-time control of voltage and frequency scaled multi-core application processors and its power management of auxiliary components. SPMI obsoletes a number of legacy, custom point-to-point interfaces and provides a low pin count, high-speed control bus for up to 4 master and 16 slave devices. SPMI is specified by the MIPI Alliance (Mobile Industry Process Interface Allian", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53276835", "url": "https://en.wikipedia.org/wiki/Eclipse%20ERP", "title": "Eclipse ERP", "text": "Eclipse ERP is a real-time transaction processing accounting software used for order fulfillment, inventory control, accounting, purchasing, and sales. It was created for wholesale distributors in the Electrical, HVAC, Plumbing, and PVF industries, but is used by a wide range of market sectors. At one point this software was called Intuit Eclipse DMS, and Activant Eclipse, and Eclipse Distribution Management System.\n\nThe backend runs on a NoSQL UniVerse database from Rocket U2.\n\nHistory \nBefore", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53287115", "url": "https://en.wikipedia.org/wiki/A%20Game%20of%20Dwarves", "title": "A Game of Dwarves", "text": "A Game of Dwarves is a dwarf-themed real-time strategy dungeon management game developed by Zeal Game Studio and published by Paradox Interactive on October 23, 2012. A PlayStation 3 version was in development but was cancelled before release.\n\nGameplay\nThe gameplay has been compared to the Dungeon Keeper game series.\n\nReception\nReviews of the game criticized its quality, saying A Game of Dwarves was a pale imitation of Dungeon Keeper and \"astonishingly ugly\".\n\nReferences\n\nExternal links\n\n2012 v", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53375615", "url": "https://en.wikipedia.org/wiki/Dynamic%20Roentgen%20stereophotogrammetry", "title": "Dynamic Roentgen stereophotogrammetry", "text": "Dynamic Roentgen stereophotogrammetry (also referred to as dynamic RSA) is a modern and sophisticated x-ray recording method, used to measure real-time 3D motions of prostheses and bones during motion with high accuracy. It is mostly used in orthopedic research settings and is an advancement of conventional RSA.\n\nConventional static RSA is used to evaluate migration of prosthesis with respect to the bone in three dimensions as a function of time. Migration of the prosthesis are normal 12\u201024 mont", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53378270", "url": "https://en.wikipedia.org/wiki/Los%20Arys", "title": "Los Arys", "text": "Ariel Dieguez and Ariel Medeiro are fashion bloggers, photographers, and stylists who are best known by the moniker Los Arys. The duo received the 2016 Influence Award from MTV and Los 40 Principales.\n \nLos Arys was formed by Argentinian's Ariel Dieguez and Ariel Medeiro. In 2011, the two combined their social media popularity to promote their work real-time on Facebook and through the website LosArys.com. Los Arys grew into an influencer platform where Dieguez and Medeiro blogged about food, cl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53417490", "url": "https://en.wikipedia.org/wiki/Transit%20%28app%29", "title": "Transit (app)", "text": "Transit is a mobile app providing real-time public transit data. The app functions in over 175 metropolitan areas around the world. Transit was designed for aggregating and mapping real-time public transit data, crowdsourcing user data to determine the true location of buses and trains. Transit was first released in 2012 for iPhone and soon after launched the Android-compatible version. It offers users schedules and alerts for multiple modes of transportation where available, including bus and r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53498878", "url": "https://en.wikipedia.org/wiki/QUICK%20Corp", "title": "QUICK Corp", "text": "is a financial market information vendor headquartered in Tokyo, Japan. It was founded in 1971 as Quotation Information Center K.K. (\u682a\u5f0f\u4f1a\u793e\u5e02\u6cc1\u60c5\u5831\u30bb\u30f3\u30bf\u30fc), and changed its corporate name to the acronym \"QUICK\" in 1987. QUICK has four offices in Japan (Tokyo, Osaka, Nagoya and Fukuoka) as well as overseas offices in London and Hong Kong.\n\nServices\nQUICK developed one of the three major Japanese real-time news database services in the 1980s (along with Jiji News Wire and Nikkei Telecom).\n\nQUICK is respons", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53543792", "url": "https://en.wikipedia.org/wiki/Switching%20Kalman%20filter", "title": "Switching Kalman filter", "text": "The switching Kalman filtering (SKF) method is a variant of the Kalman filter. In its generalised form, it is often attributed to Kevin P. Murphy, but related switching state-space models have been in use.\n\nApplications\n\nApplications of the switching Kalman filter include:\nbrain-computer interfaces and neural decoding, real-time decoding for continuous neural-prosthetic control, and sensorimotor learning in humans.\nIt also has application in econometrics, signal processing, tracking, computer vi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53586257", "url": "https://en.wikipedia.org/wiki/Connecthings", "title": "Connecthings", "text": "Connecthings is a software company with dual headquarters in Paris, France and New York City, New York. Its main product is a location-based marketing solution (in SaaS) for mobile applications based on geofencing and machine learning and aiming at fostering better app experiences for mobile users.\n\nThe company also operates in the Smart City space, providing cities with the infrastructure required to distribute real-time information about transport and local news.\n\nHistory \nConnecthings was fou", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53599061", "url": "https://en.wikipedia.org/wiki/StarCraft%3A%20Remastered", "title": "StarCraft: Remastered", "text": "StarCraft: Remastered is a remastered edition of the 1998 real-time strategy video game StarCraft and its expansion Brood War, which was released on August 14, 2017. It retains the gameplay of the original StarCraft, but features ultra-high-definition graphics (ultra HD), re-recorded audio, and Blizzard's modern online feature suite. The remaster was developed over the period of a year and included playtesting from professional StarCraft players.\n\nStarCraft: Remastered was the first project rele", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53651776", "url": "https://en.wikipedia.org/wiki/Total%20War%3A%20Warhammer%20II", "title": "Total War: Warhammer II", "text": "Total War: Warhammer II is a turn-based strategy and real-time tactics video game developed by Creative Assembly and published by Sega. It is part of the Total War series and the sequel to 2016's Total War: Warhammer. The game is set in Games Workshop's Warhammer Fantasy fictional universe. The game was released for Microsoft Windows-based PCs on 28 September 2017. Feral Interactive released the game on macOS and Linux on 20 November 2018. The game requires a Steam account to play.\n\nGameplay\nTot", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53718610", "url": "https://en.wikipedia.org/wiki/Steel%20Division%3A%20Normandy%2044", "title": "Steel Division: Normandy 44", "text": "Steel Division: Normandy 44 is a real-time strategy video game developed by Eugen Systems and published by Paradox Interactive, set in World War II.\n\nSetting \nThe game takes place in Normandy, France during the Second World War. It depicts the battles fought between the Allies and Germany, as the Allies push out of their invasion beachheads following the Normandy landings. A wide variety of military forces are represented, including those of Canada, Germany, France, Poland, the United Kingdom, a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53736120", "url": "https://en.wikipedia.org/wiki/Tomohiro%20Hase", "title": "Tomohiro Hase", "text": "Tomohiro Hase from Ryukoku University, in Shiga, Japan was named Fellow of the Institute of Electrical and Electronics Engineers (IEEE) in 2016 for contributions to embedded software for real-time applications.\n\nReferences\n\nFellow Members of the IEEE\nLiving people\nYear of birth missing (living people)\nPlace of birth missing (living people)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53736313", "url": "https://en.wikipedia.org/wiki/Chenyang%20Lu", "title": "Chenyang Lu", "text": "Chenyang Lu is an engineer and the Fullgraf Professor at Washington University in St. Louis, Missouri, as well as the editor-in-chief of ACM Transactions on Sensor Networks.\n\nLu was named a Fellow of the Institute of Electrical and Electronics Engineers (IEEE) in 2016 for his contributions to adaptive real-time computing systems.\n\nReferences \n\nFellow Members of the IEEE\nLiving people\nWashington University in St. Louis faculty\n21st-century American engineers\nYear of birth missing (living people)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53769524", "url": "https://en.wikipedia.org/wiki/Matroid%20%28company%29", "title": "Matroid (company)", "text": "Matroid, Inc. is a computer vision company that offers a platform for creating computer vision models, called detectors, to search visual media for objects, persons, events, emotions, and actions. Matroid provides real-time notifications once the object of interest has been detected, as well as the ability to search past events.\n\nHistory \nMatroid was founded in 2016 by Reza Zadeh, a Stanford professor. Matroid raised $20M in a Series B round led by Energize Ventures to expand into manufacturing ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53802736", "url": "https://en.wikipedia.org/wiki/Giorgio%20Buttazzo", "title": "Giorgio Buttazzo", "text": "Giorgio Buttazzo from the Sant'Anna School of Advanced Studies, Pisa, Italy was named Fellow of the Institute of Electrical and Electronics Engineers (IEEE) in 2012 for contributions to dynamic scheduling algorithms in real-time systems.\n\nReferences\n\nFellow Members of the IEEE\nLiving people\nYear of birth missing (living people)\nPlace of birth missing (living people)\nSant'Anna School of Advanced Studies faculty", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53812649", "url": "https://en.wikipedia.org/wiki/Nasser%20Kehtarnavaz", "title": "Nasser Kehtarnavaz", "text": "Nasser Kehtarnavaz is an Erik Jonsson Distinguished Professor at the University of Texas at Dallas, Richardson, TX, and Editor-in-Chief of Springer Journal of Real-Time Image Processing. His research and educational contributions are in the areas of signal and image processing, real-time implementation on embedded processors, machine learning, and biomedical image analysis. He has published over 10 books and numerous technical articles in these areas. He has pioneered and introduced several nove", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53812945", "url": "https://en.wikipedia.org/wiki/Sivaram%20Murthy", "title": "Sivaram Murthy", "text": "Sivaram Murthy from the Indian Institute of Technology- Madras, Chennai, Tamil Nadu, India was named Fellow of the Institute of Electrical and Electronics Engineers (IEEE) in 2012 for contributions to resource management in high performance real-time computing and communication systems.\n\nReferences \n\nFellow Members of the IEEE\nLiving people\nEngineers from Tamil Nadu\nYear of birth missing (living people)", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53914247", "url": "https://en.wikipedia.org/wiki/Gepard%20%28game%20engine%29", "title": "Gepard (game engine)", "text": "Gepard is a game engine for real-time strategy (RTS) video games developed by StormRegion.\n\nGames using this engine \n S.W.I.N.E. (2001)\n Codename: Panzers (2004)\n Rush for Berlin (2006)\n Joint Task Force (2006) \n Codename: Panzers \u2013 Cold War (2009)\n S.W.I.N.E. HD Remaster (2019)\n\nSee also \n StormRegion\n\nReferences \n\nVideo game engines", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "53940712", "url": "https://en.wikipedia.org/wiki/Money%20Heist", "title": "Money Heist", "text": "Money Heist (, , \"The House of Paper\") is a Spanish heist crime drama television series created by \u00c1lex Pina. The series traces two long-prepared heists led by the Professor (\u00c1lvaro Morte), one on the Royal Mint of Spain, and one on the Bank of Spain, told from the perspective of one of the robbers, Tokyo (\u00darsula Corber\u00f3). The narrative is told in a real-time-like fashion and relies on flashbacks, time-jumps, hidden character motivations, and an unreliable narrator for complexity.\n\nThe series wa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54039901", "url": "https://en.wikipedia.org/wiki/Nicholas%20Roy", "title": "Nicholas Roy", "text": "Nicholas Roy is a Canadian-American aerospace engineer, focusing on robotics, machine learning, autonomous systems, planning and reasoning, human-computer interaction and micro air vehicles and also principles of autonomy and decision-making; real-time systems and software, robotics: science and systems, currently Professor of Aeronautics and Astronautics at Massachusetts Institute of Technology.\n\nReferences\n\nMIT School of Engineering faculty\nAmerican aerospace engineers\nLiving people\nYear of bi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54052204", "url": "https://en.wikipedia.org/wiki/NSSL%20Doppler", "title": "NSSL Doppler", "text": "NOAA's 10\u00a0cm Doppler Weather Radar was a 10\u00a0cm wavelength S-band Doppler Weather Radar commonly referred to as NSSL Doppler, and was used to track severe weather and related meteorological phenomena. The radar became operational soon after its donation, collecting its first data in May 1971. Data was collected on magnetic tapes and processed on a NASA computer post event due to the lack of real-time capability at the time.\n\nHistory \nIn the early 1940s, radar operators throughout Europe noticed ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54136302", "url": "https://en.wikipedia.org/wiki/Portals%20%28initiative%29", "title": "Portals (initiative)", "text": "Portals is a global public art initiative that connects people around the globe through real-time video audiovisual technology housed inside a gold-painted, converted shipping container or other structure. Individuals and groups enter local Portals and engage with individuals or groups in distant Portals through live, full-body video conferencing. The experience has been described as \"breathing the same air.\" Portals are placed in public spaces such as public squares, museums, university campuse", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54221153", "url": "https://en.wikipedia.org/wiki/Network%20Performance%20Monitoring%20Solution", "title": "Network Performance Monitoring Solution", "text": "Network Performance Monitor (NPM) is a solution in Operations Management Suite that monitors network performance between office sites, data centers, clouds and applications in near real-time. It helps a Network Administrator locate and troubleshoot bottlenecks like network delay, data loss and availability of any network link across on-premises networks, Microsoft Azure VNets, Amazon Web Services VPCs, hybrid networks, VPNs or even public internet links.\n\nAbout Operations Management Suite\nOpera", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54255093", "url": "https://en.wikipedia.org/wiki/Required%20run%20rate", "title": "Required run rate", "text": "In cricket, the required run rate (RRR), or asking rate, is the run rate (the average number of runs per over) the batting side must achieve in order to win the present match. Expressed differently, it is the total number of runs required of the batting team to win the match, divided by the total number of overs remaining in the match.\n\nThe required run rate is typically a statistic that is tracked in real-time during a limited-overs match, including Twenty20 and One Day International matches. I", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54270370", "url": "https://en.wikipedia.org/wiki/ARINC%20717", "title": "ARINC 717", "text": "ARINC 717 defines a digital flight data recorder, with its inputs and outputs. It replaces the older ARINC 573 characteristic, which was based on analog inputs. It allows for more data and real-time recording.\n\nDigital Expandable Flight Data Acquisition and Recording System (DEFDARS) flight recorder output signals include the following: \n Primary Output \u2013 ARINC 717 Harvard biphase encoding\n Auxiliary Output \u2013 ARINC 429 (DITS) bi-polar encoding\n\nARINC 747 defines an alternate solid state recorder", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54282893", "url": "https://en.wikipedia.org/wiki/Audio-Technica%20AT-LP120", "title": "Audio-Technica AT-LP120", "text": "The Audio-Technica AT-LP120 is a mid-range direct-drive turntable introduced in 2009 by the Japanese audio equipment manufacturer Audio-Technica. The AT-LP120 was intended to be a viable replacement for the long-running Technics SL-1200 series of turntables that was set to be discontinued in 2010. It supports both phono and line-level output using a built-in preamplifier.\n\nThe turntable also has the ability to dub records directly to a computer in real-time using a USB connection.\n\nAt the Januar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54334017", "url": "https://en.wikipedia.org/wiki/Tomorrow.io", "title": "Tomorrow.io", "text": "Tomorrow.io (formerly ClimaCell; legally known as The Tomorrow Companies Inc.) is an American weather technology company. It provides real-time weather forecasts to customers around the world including Uber, Delta, Ford, National Grid, and others.\n\nIn February 2021, Tomorrow.io announced Operation Tomorrow Space. The company is building proprietary satellites equipped with radar, then launching them into space to improve weather monitoring and forecasting capabilities. Since being founded in 201", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54335549", "url": "https://en.wikipedia.org/wiki/Creation%20%28video%20game%29", "title": "Creation (video game)", "text": "Creation was a cancelled real-time strategy video game developed by Bullfrog Productions as a spin-off of their Syndicate series of real-time tactics games. Set on an alien water world, a player-controlled submarine is tasked with looking after marine life and defending it from the Syndicate, who run planet Earth.\n\nCreation was the working title of multiple Bullfrog games, including Magic Carpet, Power Monger, and Populous. An aquatic-based incarnation of Creation became Magic Carpet, and the fi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54350477", "url": "https://en.wikipedia.org/wiki/Michael%20Baum%20%28entrepreneur%29", "title": "Michael Baum (entrepreneur)", "text": "Michael Baum (born May 28, 1962) is an American entrepreneur and investor. He is best known as the founder & CEO of Splunk, a big data software technology used for understanding machine-generated data primarily for systems management, security forensics, compliance reporting and real-time operational intelligence. Baum is the founder of six technology start-ups, five of which have been acquired and one (NASDAQ: SPLK) which went public. He has also been a venture capital investor with Rembrandt ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54406121", "url": "https://en.wikipedia.org/wiki/Karta%20GPS", "title": "Karta GPS", "text": "Karta GPS is a mobile application developed by Karta Software Technologies Lda a daughter company of NDrive for the Android and iOS operating systems. It is distributed for free and pairs open-source map data from OpenStreetMap\u00a0alongside curated content from Yelp and Foursquare.\n\nThe application does not require connection to Internet data (e.g. 3G, 4G, WiFi, etc.) and uses a GPS satellite connection to determine its location. Routes are calculated and plotted based on real-time traffic informat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54409548", "url": "https://en.wikipedia.org/wiki/Tapered%20element%20oscillating%20microbalance", "title": "Tapered element oscillating microbalance", "text": "A tapered element oscillating microbalance (TEOM) is an instrument used for real-time detection of aerosol particles by measuring their mass concentration. It makes use of a small vibrating glass tube whose oscillation frequency changes when aerosol particles are deposited on it increasing its inertia. TEOM-based devices have been approved by the U.S. Environmental Protection Agency for environmental air quality monitoring, and by the U.S. Mine Safety and Health Administration for monitoring coa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54415866", "url": "https://en.wikipedia.org/wiki/Dreamscape%20Immersive", "title": "Dreamscape Immersive", "text": "Dreamscape Immersive is an American entertainment and technology company. It creates story-based full-roam virtual reality (VR) experiences which allow up to six people to simultaneously explore a virtual 3D environment, seeing fully rendered avatars of one another. Using real-time motion capture technology, full body mapping, virtual reality headsets, and real-life room-scale stage sets, it enables users to move untethered in a virtual environment and interact with physical objects. The technol", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54458252", "url": "https://en.wikipedia.org/wiki/South%20Park%3A%20Phone%20Destroyer", "title": "South Park: Phone Destroyer", "text": "South Park: Phone Destroyer is a free-to-play real-time strategy collectible card game developed by RedLynx, and published by Ubisoft. It was released on iOS and Android on November 9, 2017.\n\nBased upon the American adult animated sitcom South Park, South Park: Phone Destroyer follows the children of the small town as they play a game based around different role-playing games using different themes (Adventure, Sci-Fi, Mystical, Fantasy, Superheroes and Neutral). The player takes the role of The ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54565695", "url": "https://en.wikipedia.org/wiki/Constellation%20busway%20station", "title": "Constellation busway station", "text": "Constellation Busway Station is a bus station on Auckland's Northern Busway in New Zealand. It is located near Constellation Drive in the light industrial and business area of Rosedale. It has shelters, electronic real-time information on each platform, and park and ride parking.\n\nThe next station southbound is Sunnynook Busway Station. The next northbound is Albany Busway Station, to which the busway lanes do not yet extend.\n\nBuses travelling via Constellation Station include double-decker buse", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54565763", "url": "https://en.wikipedia.org/wiki/Albany%20busway%20station", "title": "Albany busway station", "text": "Albany Busway Station is a bus station that is closely associated with Auckland's Northern Busway in New Zealand. It is located near Oteha Valley Road in the suburb of Albany. It has shelters, electronic real-time information on each platform, and park and ride parking. The busway lanes do not yet extend to this station from either the north or the south.\n\nThe next station southbound is Constellation Busway Station. The next station northbound is Hibiscus Coast Busway Station, to which the buswa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54566100", "url": "https://en.wikipedia.org/wiki/Hibiscus%20Coast%20busway%20station", "title": "Hibiscus Coast busway station", "text": "Hibiscus Coast Busway Station is a bus station that is closely associated with Auckland's Northern Busway in New Zealand. It is the northern terminus for services that run via the busway, but the busway lanes do not yet extend north to it. It is located on the Hibiscus Coast Highway a few hundred metres south-west of the village of Silverdale.\n\nThe station, already operating as Silverdale Park and Ride, was opened to Northern Express busway services in 2015. It has shelters, electronic real-time", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54592282", "url": "https://en.wikipedia.org/wiki/Minimum-Pairs%20Protocol", "title": "Minimum-Pairs Protocol", "text": "The minimum-pairs (or MP) is an active measurement protocol to estimate in real-time the smaller of the forward and reverse one-way network delays (OWDs). It is designed to work in hostile environments, where a set of three network nodes can estimate an upper-bound OWD between themselves and a fourth untrusted node. All four nodes must cooperate, though honest cooperation from the fourth node is not required. The objective is to conduct such estimates without involving the untrusted nodes in cl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54660002", "url": "https://en.wikipedia.org/wiki/Star%20Wars%3A%20Force%20Arena", "title": "Star Wars: Force Arena", "text": "Star Wars: Force Arena was a 2017 Star Wars-themed player versus player real-time strategy mobile game from Netmarble Games and Lucasfilm, involving characters and military units that appeared in all major Star Wars film installments released before 2019.\n\nAnnounced in November 2016, the game was released for free download on January 12, 2017 for iOS and Android.\n\nEarly versions of Force Arena were set in the Rebellion era of the Star Wars storyline, until an update on August 14, 2017 added con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54722745", "url": "https://en.wikipedia.org/wiki/Plecto", "title": "Plecto", "text": "Plecto is dashboard software designed to boost performance by displaying real-time performance indicators across business systems in an engaging way. The company was founded in 2012 in Aarhus, Denmark and operates worldwide.\n\nPlecto is aimed at increasing performance by sparking motivation and engagement across teams by visualizing their goals and results with gamification and coaching features.\n\nProduct \nPlecto offers a dashboard platform for organizations to build custom KPI dashboards that vi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54758266", "url": "https://en.wikipedia.org/wiki/SKAM%20Austin", "title": "SKAM Austin", "text": "SKAM Austin is an American teen drama streaming television series, based on the Norwegian television series Skam created by Julie Andem. It premiered with its first full episode on April 27, 2018 on Facebook Watch.\n\nEmploying the same distribution method and overall storylines as the original Norwegian production, SKAM Austin is shown in real-time through short clips on a daily basis on Facebook Watch, supplemented with screenshots of messages between the characters and compiled clips into full ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54792348", "url": "https://en.wikipedia.org/wiki/Urbem%20Media", "title": "Urbem Media", "text": "Urbem Media (\u54c1\u5473\u5168\u57ce) is a Chinese luxury-dining club headquartered in Shanghai, initially released as a WeChat service account in 2015.\n\nHistory\nUrbem Media was founded in Shanghai in early 2015 by University of Oxford graduate Steven Chen. Urbem Media was established in May 2015 and entered the Chinaaccelerator startup programme in September 2015. In January 2016, Urbem released its main function, the patent-pending Ubot, that provides answers to users\u2019 enquiries in real-time and provides recomm", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54830137", "url": "https://en.wikipedia.org/wiki/Total%20War%20Battles%3A%20Shogun", "title": "Total War Battles: Shogun", "text": "Total War Battles: Shogun is a real-time strategy video game spinoff of the Total War series developed by Creative Assembly and published by Sega. It was released on April 19, 2012 for iOS and on August 29, 2012 for Windows.\n\nThe iOS release received positive reception from critics, who called its graphics high-quality and its gameplay deep and engaging, whereas the Windows release received mixed reception from critics and end users, with complaints of slow pacing and little connection to other ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54841738", "url": "https://en.wikipedia.org/wiki/Foxhole%20%28video%20game%29", "title": "Foxhole (video game)", "text": "Foxhole is a cooperative sandbox massively-multiplayer action-strategy video game being developed and published by Canadian video game company Siege Camp, who are based in Toronto, Ontario. The game uses Unreal Engine 4, utilizing an axonometric projection perspective, much like that of a conventional real-time strategy video game with a top-down view. Foxhole's setting is \"inspired by early 20th century warfare\". The game allows the user to join one of two factions as a soldier, having the choi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54905930", "url": "https://en.wikipedia.org/wiki/Titanfall%3A%20Assault", "title": "Titanfall: Assault", "text": "Titanfall: Assault was a real-time strategy video game in the Titanfall series for mobile platforms in the style of Clash Royale. It was developed by Particle City and Respawn Entertainment from Electronic Arts, published by Nexon, and released for iOS and Android in August 2017. More titles are expected from Nexon, EA and Respawn's 2015 mobile game partnership.\n\nAll servers for Titanfall: Assault were shut down on July 30, 2018 and was removed from Google Play one day later on July 31, 2018.\n\nR", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54978326", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20II%3A%20Definitive%20Edition", "title": "Age of Empires II: Definitive Edition", "text": "Age of Empires II: Definitive Edition is a 2019 real-time strategy video game developed by Forgotten Empires and published by Xbox Game Studios. It is a remaster of the 1999 game Age of Empires II: The Age of Kings, celebrating the 20th anniversary of the original. It features significantly improved visuals, supports 4K resolution, and includes all previous expansions from the original and HD Edition. In addition, it includes \"The Last Khans\", an expansion that adds four new civilizations based ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54978328", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20III%3A%20Definitive%20Edition", "title": "Age of Empires III: Definitive Edition", "text": "Age of Empires III: Definitive Edition is a real-time strategy video game developed by Tantalus Media and Forgotten Empires and published by Xbox Game Studios. It is a remaster of the original game Age of Empires III, celebrating the 15th anniversary of the original. It features significantly improved visuals, a remastered soundtrack, two new game modes, and two new civilizations. It includes all previous expansions from the original game. It was released on October 15, 2020.\n\nGameplay \nThe cor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54978345", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%20IV", "title": "Age of Empires IV", "text": "Age of Empires IV is a real-time strategy video game developed by Relic Entertainment in partnership with World's Edge and published by Xbox Game Studios. It is the fourth installment of the Age of Empires series. The game was released October 28, 2021 for Windows.\n\nPlot\nThe game is set during the Early Middle Ages to High Middle Ages.\n\nCampaigns\nThe game had 4 single-player campaigns at launch:\n The Normans: about Norman conquest of England and conflicts of subsequent English kings (1066\u20131217)\n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "54990614", "url": "https://en.wikipedia.org/wiki/Azure%20Stream%20Analytics", "title": "Azure Stream Analytics", "text": "Microsoft Azure Stream Analytics is a serverless scalable complex event processing engine by Microsoft that enables users to develop and run real-time analytics on multiple streams of data from sources such as devices, sensors, web sites, social media, and other applications. Users can set up alerts to detect anomalies, predict trends, trigger necessary workflows when certain conditions are observed, and make data available to other downstream applications and services for presentation, archivin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55025663", "url": "https://en.wikipedia.org/wiki/Pathfinder%3A%20Kingmaker", "title": "Pathfinder: Kingmaker", "text": "Pathfinder: Kingmaker is an isometric role-playing game developed by Russian studio Owlcat Games and published by Deep Silver, based on Paizo Publishing's Pathfinder franchise. Announced through a Kickstarter campaign in 2017, the game was released for Microsoft Windows, macOS, and Linux on 25 September 2018.\n\nGameplay\nThe gameplay is modelled on the Pathfinder role-playing game and inspired by classic computer RPGs such as Baldur's Gate and Neverwinter Nights. It features a real-time-with-pause", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55101164", "url": "https://en.wikipedia.org/wiki/World%20Poverty%20Clock", "title": "World Poverty Clock", "text": "The World Poverty Clock is a tool to monitor progress against poverty globally, and regionally. It provides real-time poverty data across countries. Created by the Vienna-based NGO, World Data Lab, it was launched in Berlin at the re:publica conference in 2017, and is funded by Germany's Federal Ministry for Economic Cooperation and Development.\n\nThe clock seeks to address a gap in development data around social progress indicators, starting with poverty numbers, and tries to align them with e", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55167937", "url": "https://en.wikipedia.org/wiki/Ship%20Shore%20Ship%20Buffer", "title": "Ship Shore Ship Buffer", "text": "The Ship-Shore-Ship Buffer (SSSB) is a real-time data link buffer system supporting data exchange between naval forces, including airborne assets, and their associated air defence ground environment units.\n\nReferences \n\nMilitary technology", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55193898", "url": "https://en.wikipedia.org/wiki/Tooth%20and%20Tail", "title": "Tooth and Tail", "text": "Tooth and Tail is a real-time strategy video game developed and published by indie development team Pocketwatch Games, the company behind Monaco: What's Yours Is Mine. Tooth and Tail was released in September 2017 for Windows, MacOS, Linux and PlayStation 4.\n\nThe game is set in a society of anthropomorphic animals during a time of severe food shortages, resulting in the uprising of political parties with differing ideologies regarding the acquisition of food. The gameplay consists of single-play", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55304184", "url": "https://en.wikipedia.org/wiki/Argaam", "title": "Argaam", "text": "Argaam (Arabic: \u0623\u0631\u0642\u0627\u0645) is a Saudi Arabian financial news portal and considered as the primary source to media and public for financial news as it provides real-time updates on financial markets as well as market data and analysis, interviews, and coverage of stocks listed across the region. Argaam has won UAE App & Web Award and is operated by the Argaam Investment Company, which launched the Arabic version in March 2007 and an English variant in April 2015.\n\nOn October 18, 2017, The Saudi Resea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55396557", "url": "https://en.wikipedia.org/wiki/Time%20Trek", "title": "Time Trek", "text": "Time Trek is a Star Trek computer game published by Personal Software in 1978. Two similar but unrelated games were published under this brand in 1978, one for the Commodore Pet by Brad Templeton and one programmed by Joshua Lavinsky for the TRS-80 4K Level I or Level II microcomputer.\n\nPlot summary\nTime Trek is a real-time Star Trek-style game in which the Enterprise tries to destroy all the Klingons before they can wipe out the starbases.\n\nReception\nJ. Mishcon reviewed Time Trek in The Space ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55461893", "url": "https://en.wikipedia.org/wiki/R.%20J.%20Dwayne%20Miller", "title": "R. J. Dwayne Miller", "text": "R. J. Dwayne Miller, is a Canadian chemist and a professor at the University of Toronto. His focus is in physical chemistry and biophysics. He is most widely known for his work in ultrafast laser science, time-resolved spectroscopy, and the development of new femtosecond electron sources. His research has enabled real-time observation of atomic motions in materials during chemical processes and has shed light on the structure-function correlation that underlies biology.\n\nEarly life and educatio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55534271", "url": "https://en.wikipedia.org/wiki/On-street%20parking%20sensing", "title": "On-street parking sensing", "text": "On-street parking sensing refers to technologies used to obtain and present real-time parking availability information. Approaches to the problem of finding a free parking spot include pure analytics and advanced hardware systems.\n\nThe advent of autonomous cars is creating a second wave of demand for such data.\n\nApproaches\n\nSmartphone data analytics \nAdoption of smartphones by drivers allows tracking vehicle movement through accelerometer and GPS data and thus derive parking session start and en", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55549889", "url": "https://en.wikipedia.org/wiki/Elliott%20152", "title": "Elliott 152", "text": "The Elliot 152 was a vacuum tube fixed-program computer developed for naval gunnery control at the Elliott Brothers laboratory in Borehamwood, England. It was an early example of a digital real-time computer system, and the first computer produced by Elliott Brothers. The first and only unit was made operational in 1950.\n\nThe machine used 16 bit words and two's complement binary arithmetic. Instruction words were 20 bits long. Read/write memory was provided by a bank of 16 Williams tubes, a c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55559669", "url": "https://en.wikipedia.org/wiki/Quanergy", "title": "Quanergy", "text": "Quanergy Systems is a publicly held Silicon Valley-based technology company that develops LiDAR (Light Detection and Ranging) sensors and related technology.\n\nHistory \nQuanergy was co-founded in 2012 by Louay Eldada, Angus Pacala (also co-founder of lidar company Ouster), and Tianyue Yu. Headquartered in Sunnyvale, California; it is a provider of LiDAR sensors and perception software for real-time capture and processing of 3D spatial data and object detection, tracking, identification and class", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55577641", "url": "https://en.wikipedia.org/wiki/Dungeons%203", "title": "Dungeons 3", "text": "Dungeons 3 is a video game developed by Realmforge Studios and published by Kalypso Media. It was released on October 13, 2017, for Microsoft Windows, macOS, Linux, PlayStation 4 and Xbox One. It is the sequel to the 2015 video game Dungeons 2 and the third installment of the Dungeons series.\n\nDungeons 3 combines dungeon building with real-time strategy elements. Players are tasked with creating an underground dungeon for creatures to live in as well as defending their dungeon against invading h", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55579230", "url": "https://en.wikipedia.org/wiki/Paperboy%20%28mobile%20app%29", "title": "Paperboy (mobile app)", "text": "Paperboy.com is India's first newspaper aggregating mobile and web platform launched by 18-year-old Jonna Venkata Karthik Raja in February 2016. The company is headquartered in Bangalore, India. The app features around 450 newspapers and magazines in more than 18 languages, which are uploaded on a real-time basis. It has applications available for iOS and Android, and is accessible from Paperboy's website.\n\nPaperboy has been awarded the \"Best Tech Aggregator\" award by Franchise India and Entrep", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55584230", "url": "https://en.wikipedia.org/wiki/Germany%27s%20Most%20Beautiful%20Railways", "title": "Germany's Most Beautiful Railways", "text": "Die Sch\u00f6nsten Bahnstrecken Deutschlands (Germany's Most Beautiful Railways) was a regular night-time feature on Germany's ARD television channel which ran from 3 September 1995 to 28 October 2013.\n\nThe programme was a real-time, mostly uninterrupted, recording of railway journeys as viewed from the driver's cab. There was no commentary or music, but the sounds of the recording were retained for broadcast. Small interruptions did occur if the train was traversing a tunnel or sat at a station, usu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55805290", "url": "https://en.wikipedia.org/wiki/Sun%20Metro%20Brio", "title": "Sun Metro Brio", "text": "Brio is a bus rapid transit system in El Paso, Texas, United States. It is operated by Sun Metro.\n\nThe first line, the Mesa Corridor, began operating in the fall of 2014. This line is long and uses 22 purpose-built curbside stations with shelters, ticket vending machines for pre-boarding payment, and real-time arrival information. Two more corridors, Dyer (Northeast) and Alameda (Mission Valley) Corridors became operational in October 2018. The Montana Corridor which will serve the Eastside wil", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55831942", "url": "https://en.wikipedia.org/wiki/Mark%20Skaggs", "title": "Mark Skaggs", "text": "Mark Skaggs is an American video game producer and executive. Skaggs is known for leading the team that created the Facebook game FarmVille for Zynga, leading the team that created CityVille. He served as Executive Producer and product lead for the PC real-time strategy games Command & Conquer: Red Alert 2, Command & Conquer: Generals, and The Lord of the Rings: The Battle for Middle-earth.\n\nCareer \nSkaggs founded Tetragon, Inc. in 1993, a small company that developed a console game called Nano", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55886426", "url": "https://en.wikipedia.org/wiki/Invoke%20%28smart%20speaker%29", "title": "Invoke (smart speaker)", "text": "Invoke (stylized as INVOKE) is a smart speaker developed by Harman Kardon and powered by Microsoft's intelligent personal assistant, Cortana. Voice interaction with Cortana provides features such as setting alarms, facts, searches, weather, news, traffic, flights, and other real-time information. Additionally, the speaker's Cortana integration with one's Microsoft Account enables calendars, reminders, commutes, to-do lists, and home automation features, among others.\n\nThe device supports music ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "55914509", "url": "https://en.wikipedia.org/wiki/CollaborateMD", "title": "CollaborateMD", "text": "CollaborateMD is a private company that provides cloud-based medical billing and practice management software services for independent medical practices and hospitals. The company's software uses real-time claim submission and built-in edits and integrates with various electronic health records (EHRs).\n\nThe company's headquarters are based in Orlando, Florida.\n\nHistory \nThe company was founded in 1999, by Douglas Kegler, who previously used to code dental and medical billing programs. \n\nIn April", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56006951", "url": "https://en.wikipedia.org/wiki/ASTAC", "title": "ASTAC", "text": "ASTAC () is a B band to K band (NATO) SIGINT aircraft pod made by Thales Group. It is a reconnaissance system used to intercept and analyse tactical and technical data on Radio frequency emissions radiated by land-based radars and weapon systems. Recording capabilities and datalinks for real-time interfaces with ground stations are available as options. In operation under F-4 Phantom, Mirage 2000-5, Mirage 2000D, Mirage F1. Two of them also equip the two Transall C-160G Gabriel, one at each wi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56086574", "url": "https://en.wikipedia.org/wiki/Plane%20Finder", "title": "Plane Finder", "text": "Plane Finder is a United Kingdom-based real-time flight tracking service launched in 2009, that is able to show flight data globally. The data available includes flight numbers, how fast an aircraft is moving, its elevation and destination of travel. Several variants of the service are available as mobile apps including free, premium 3D and augmented reality versions. The flight tracking map and database can be accessed by web browsers.\n\nPlane Finder allows registered users to share their ADS-B ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56195203", "url": "https://en.wikipedia.org/wiki/MUSA%20%28MUltichannel%20Speaking%20Automaton%29", "title": "MUSA (MUltichannel Speaking Automaton)", "text": "MUSA (MUltichannel Speaking Automaton) was an early prototype of Speech Synthesis machine started in 1975.\n\nDescription \nIt consisted of a stand-alone computer hardware and a specialized software that implemented a diphone-synthesis technology. It was one of the first real-time TTS systems. It was able to read Italian in intellegibile robotic voice and also to sing managing up to 8 synthesis channels in parallel thanks to Linear predictive coding technology. In 1978 it was released, after the bu", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56226684", "url": "https://en.wikipedia.org/wiki/HeRAMS", "title": "HeRAMS", "text": "HeRAMS (Health Resources Availability Mapping System) is an electronic system for monitoring medical resources, a WHO tool for standardizing and assessing the availability of medical services, mostly used for emergency response.\nThis method to date has mostly been implemented as cross-sectional surveys, but should instead be used as a real-time monitoring system. Acute and protracted crises have grave immediate and long-term effects on population health and health systems, which is particularly ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56254441", "url": "https://en.wikipedia.org/wiki/Command%20and%20Destroy", "title": "Command and Destroy", "text": "Command and Destroy is a real-time strategy video game developed by Cypron Studios and published by Destination Software Inc. and Zoo Digital Publishing for the Nintendo DS.\n\nGameplay\nCommand and Destroy follows a number of the genre's conventions established by a more famous real time strategy series, Command and Conquer. The game's plot follows an alien invasion of Earth. The player completes a series of missions to progress through the game's single player mode, and can choose to play as the ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56270929", "url": "https://en.wikipedia.org/wiki/Total%20War%3A%20Three%20Kingdoms", "title": "Total War: Three Kingdoms", "text": "Total War: Three Kingdoms is a turn-based strategy real-time tactics video game developed by Creative Assembly and published by Sega. As the 12th mainline entry (the 13th entry) in the Total War series, the game was released for Microsoft Windows on May 23, 2019. Feral Interactive released a macOS and Linux version of the game on the same day.\n\nGameplay\nLike its predecessors, Total War: Three Kingdoms is a turn-based strategy real-time tactics game. Set in the Three Kingdoms period (220\u2013280), pl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56275199", "url": "https://en.wikipedia.org/wiki/They%20Are%20Billions", "title": "They Are Billions", "text": "They Are Billions is a post-apocalyptic steampunk real-time strategy survival video game developed and published by Numantian Games. Available on Microsoft Windows, it was released onto Steam's Early Access program with a survival mode in December 2017. The game was released with a campaign titled \"New Empire\" on June 18, 2019. PlayStation 4 and Xbox One versions were published by BlitWorks on July 1, 2019.\n\nGameplay\nThey Are Billions pits the player in a randomly generated steampunk themed, zom", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56363317", "url": "https://en.wikipedia.org/wiki/Aquablation%20therapy", "title": "Aquablation therapy", "text": "Aquablation therapy (AquaBeam) is a surgical procedure for men with lower urinary tract symptoms resulting from benign prostatic hyperplasia (BPH). It is in the early stages of study. It is not categorized as minimally invasive as general anesthesia is required. The procedure was developed by PROCEPT BioRobotics and combines real-time visualization through a cystoscope and a bi-plane ultrasound, while using a high-velocity sterile saline heat-free waterjet and autonomous robotics to remove prost", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56392795", "url": "https://en.wikipedia.org/wiki/Verge3D", "title": "Verge3D", "text": "Verge3D is a real-time renderer and a toolkit used for creating interactive 3D experiences running on websites.\n\nOverview\nVerge3D enables users to convert content from 3D modelling tools (Autodesk 3ds Max and Blender are currently supported) to view a web browser. Verge3D was created by the same core group of software engineers that previously created the Blend4Web framework.\n\nFeatures\nVerge3D uses WebGL for rendering. It incorporates components of the Three.js library and exposes its API to app", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56474254", "url": "https://en.wikipedia.org/wiki/Through%20the%20Dark%20%282016%20film%29", "title": "Through the Dark (2016 film)", "text": "Through the Dark is a 4 minute 3D-animated interactive film, which is viewed in a web browser and rendered in real-time. The film is a collaboration between Google Play Music and Australian hip hop group Hilltop Hoods, featuring the band's song of the same title (\"Through the Dark\"). The song was written by band member MC Pressure (Daniel Smith) after his son was diagnosed with leukemia at eight-years-old. Based on this experience, which is told through the song's lyrics, the film tells an emoti", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56485844", "url": "https://en.wikipedia.org/wiki/The%20Dungeon%20%281993%20video%20game%29", "title": "The Dungeon (1993 video game)", "text": "The Dungeon is a single player real-time role-playing video game featuring a 3D first-person perspective with texture mapping. It was published by The Fourth Dimension for the Acorn Archimedes home computer in 1993.\n\nPlot\nYou control a team of four adventurers (Anthea, Helena, Horace and Moroth) as they attempt to escape the multi-level dungeon they have fallen into.\n\nAlong the way they must explore, fight creatures, cast spells, solve puzzles, avoid traps, pick up useful objects such as food an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56533997", "url": "https://en.wikipedia.org/wiki/Advanced%20National%20Seismic%20System", "title": "Advanced National Seismic System", "text": "The Advanced National Seismic System (ANSS) is a collaboration of the U.S. Geological Survey (USGS) and regional, state, and academic partners that collects and analyzes data on significant earthquakes to provide near real-time (generally within 10 to 30 minutes) information to emergency responders and officials, the news media, and the public. Such information is used to anticipate the likely severity and extent of damage, and to guide decisions on the responses needed.\n\nData is collected by el", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56604880", "url": "https://en.wikipedia.org/wiki/LogDNA", "title": "LogDNA", "text": "LogDNA is a technology company located in Silicon Valley, California. Their log management solution enables DevOps teams to aggregate all of their system and application logs into a single platform. Automatic parsing, natural language search and real-time alerts allow teams to develop and debug their applications.\n\nHistory \n\nThe company was founded by Chris Nguyen and Lee Liu in 2016 after participating in Y Combinator\u2019s Winter 2015 batch.\n\nTechnology \n\nLogDNA provides a SaaS-based log managemen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56687142", "url": "https://en.wikipedia.org/wiki/Volumetric%20video", "title": "Volumetric video", "text": "Volumetric video is a technique that captures a three-dimensional space, such as a location or performance. This type of volumography acquires data that can be viewed on flat screens as well as using 3D displays and VR goggles. Consumer-facing formats are numerous and the required motion capture techniques lean on computer graphics, photogrammetry, and other computation-based methods. The viewer generally experiences the result in a real-time engine and has direct input in exploring the generate", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56702524", "url": "https://en.wikipedia.org/wiki/The%20Occupation", "title": "The Occupation", "text": "The Occupation is a single-player video game developed by White Paper Games and released on PlayStation 4, Xbox One, and Microsoft Windows on 5 March 2019. The game takes place in a single government building, in real-time over four hours. The game advances with or without input from the player, but almost all in-game actions can affect the game's story.\n\nThe game is set in late 1987 within the same universe as White Paper Games' first title Ether One.\n\nGameplay\nThe game does not have a health b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56770691", "url": "https://en.wikipedia.org/wiki/Terminator%20Salvation%3A%20The%20Machinima%20Series", "title": "Terminator Salvation: The Machinima Series", "text": "Terminator Salvation: The Machinima Series is an American computer animated science-fiction action web series and is part of the Terminator franchise. The series premiered on Machinima on May 18, 2009 and concluded on June 24, 2009. Taking place between the events of Terminator 3: Rise of the Machines and Terminator Salvation, the series was created using real-time computer animation from the video game and serves as a prequel to the game.\n\nIt was released direct-to-video on November 3, 2009.\n\nP", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56848014", "url": "https://en.wikipedia.org/wiki/Livestorm", "title": "Livestorm", "text": "Livestorm is a browser based online web conferencing software used to share real-time live streams. It can be used to power remote live meetings, product demos, sales webinars, online lessons, onboarding sessions, more.\n\nHistory \n\nLivestorm was founded in Paris, France in 2016.\n\nTechnology \n\nLivestorm's core is focused on leveraging WebRTC and WebSocket for real time, low-latency interactions. The video stream quality and format automatically adapts to each viewers' web browser. The stream serve", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56851568", "url": "https://en.wikipedia.org/wiki/Faceu", "title": "Faceu", "text": "Faceu () is a heat beauty selfie camera app for smartphone. This app uses AR technology to allow users to choose their favorite stickers or add interesting and exaggerated effects in real-time when taking selfies and videos. It was launched in 2016 and had 250 million registered users in 2017. Most of the users of Faceu are females from 15 to 35 years old. In February 2018, Faceu was acquired by Chinese media startup Toutiao, which is worth about $300 million.\n\nOnline marketing \nThere are many s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56860325", "url": "https://en.wikipedia.org/wiki/Empires%20Apart", "title": "Empires Apart", "text": "{{Infobox video game\n| image = EmpiresApartImg.jpg\n| image_size = 250px\n| developer = DESTINYbit\n| publisher = Slitherine\n| platforms = Microsoft Windows\n| released = Windows Microsoft| genre = Real-time strategy\n}}Empires Apart' is a real-time strategy game developed by Italian studio DESTINYbit and published by Slitherine. Empires Apart was released March 29, 2018.\n\n Gameplay Empires Apart'' allows the player to control any of seven medieval civilizations, namely Byzantines (ava", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56887572", "url": "https://en.wikipedia.org/wiki/Polanie%20II", "title": "Polanie II", "text": "Polanie II , also known as KnightShift and Once Upon a Knight, is a real-time strategy and role-playing video game hybrid developed by Reality Pump Studios and released by Topware Interactive for the PC Windows and OS X in 2003. The game is a follow-up to Polanie, published by USER in 1996. KnightShift (Director's Cut Special Edition) was released for Windows later in 2003.\n\nGameplay\n\nPlot\n\nLegacy\nA sequel, Polanie 3 or KnightShift 2: Curse of Souls, was announced in 2004. A playable demo was a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56923310", "url": "https://en.wikipedia.org/wiki/Solebit", "title": "Solebit", "text": "Solebit is a privately held cybersecurity company, with main offices located in the United States and Israel.\n\nSolebit's cloud-based, real-time SaaS platform is focused on zero-day malware and unknown threats. Solebit blocks malicious active content with flow analysis, de-obfuscation and content evaluation.\n\nSolebit\u2019s applications are in use by organizations in such industries as financial services, healthcare, information technology, public sector, and retail and consumer goods.\n\nCompany\nSolebi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "56981810", "url": "https://en.wikipedia.org/wiki/ETrice", "title": "ETrice", "text": "eTrice is a CASE-Tool for the development of real-time software. It is an official Eclipse project.\n\nThe software architecture tooling eTrice is implementing the domain specific language Real-Time Object-Oriented Modeling ROOM. It provides code generators for C, C++ and Java. Each release is accompanied with tutorials and a training is provided.\n\nSince ObjecTime Developer went out of support, eTrice is the only remaining implementation of ROOM.\n\nLiterature \n Bran Selic, Garth Gullekson, Paul T. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57036810", "url": "https://en.wikipedia.org/wiki/Vapor%20%28web%20framework%29", "title": "Vapor (web framework)", "text": "Vapor is an open source web framework written in Swift. It can be used to create RESTful APIs, web apps, and real-time applications using WebSockets. In addition to the core framework, Vapor provides an ORM, a templating language, and packages to facilitate user authentication and authorization.\n\nVapor's source code is hosted on GitHub and licensed under the MIT License. Vapor has been a part of Swift's Server APIs working group since 2016.\n\nHistory\nVapor 0.1.0 was released as a proof of concept", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57204616", "url": "https://en.wikipedia.org/wiki/Prometheus%20%28software%29", "title": "Prometheus (software)", "text": "Prometheus is a free software application used for event monitoring and alerting. It records real-time metrics in a time series database (allowing for high dimensionality) built using a HTTP pull model, with flexible queries and real-time alerting. The project is written in Go and licensed under the Apache 2 License, with source code available on GitHub, and is a graduated project of the Cloud Native Computing Foundation, along with Kubernetes and Envoy.\n\nHistory \n\nPrometheus was developed at So", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57236084", "url": "https://en.wikipedia.org/wiki/MIAMI%20Facilities", "title": "MIAMI Facilities", "text": "The MIAMI facility (acronym for Microscopes and Ion Accelerators for Materials Investigation) is a scientific laboratory located within the Ion Beam Centre at the University of Huddersfield. This facility is dedicated to the study of the interaction of ion beams with matter. The facilities combine ion accelerators in situ with Transmission Electron Microscopes (TEM): a technique that allows real-time monitoring of the effects of radiation damage on the microstructures of a wide variety of materi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57256998", "url": "https://en.wikipedia.org/wiki/Gekko%20%28optimization%20software%29", "title": "Gekko (optimization software)", "text": "The GEKKO Python package solves large-scale mixed-integer and differential algebraic equations with nonlinear programming solvers (IPOPT, APOPT, BPOPT, SNOPT, MINOS). Modes of operation include machine learning, data reconciliation, real-time optimization, dynamic simulation, and nonlinear model predictive control. In addition, the package solves Linear programming (LP), Quadratic programming (QP), Quadratically constrained quadratic program (QCQP), Nonlinear programming (NLP), Mixed integer pro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57266820", "url": "https://en.wikipedia.org/wiki/Autonomous%20peripheral%20operation", "title": "Autonomous peripheral operation", "text": "In computing, autonomous peripheral operation is a hardware feature found in some microcontroller architectures to off-load certain tasks into embedded autonomous peripherals in order to minimize latencies and improve throughput in hard real-time applications as well as to save energy in ultra-low-power designs.\n\nOverview\nForms of autonomous peripherals in microcontrollers were first introduced in the 1990s. Allowing embedded peripherals to work independently of the CPU and even interact with ea", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57304349", "url": "https://en.wikipedia.org/wiki/Actionfigure", "title": "Actionfigure", "text": "Actionfigure, formerly known as TransitScreen, is an American technology company that offers software for digital displays, showing real-time transportation arrival data and other local information. In 2018, they launched a mobile application offering real-time transportation data, and in 2020 launched a product for employers to help employees navigate their commutes. As of 2018, TransitScreen has displays in more than 1,000 buildings in 30 cities, including Washington D.C., Boston, and Pittsbur", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57350592", "url": "https://en.wikipedia.org/wiki/Ridlr", "title": "Ridlr", "text": "Ridlr is an Indian public transport commuting and ticketing app. It was founded in 2012. Ridlr allows commuters to access real-time information about the various modes of transportation. It also books tickets and tokens through the app with digital money.\n\nRidlr covers Mumbai and Delhi in association with BEST, Mumbai Metro and Delhi Metro. It also provides service for cities including Vijayawada, Hyderabad, Bengaluru, Bellary and Chennai.\n\nHistory \nRidlr was introduced in India in 2012 by Bird\u2019", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57480095", "url": "https://en.wikipedia.org/wiki/Nvidia%20RTX", "title": "Nvidia RTX", "text": "Nvidia GeForce RTX (Ray Tracing Texel eXtreme) is a high-end professional visual computing platform created by Nvidia, primarily used for designing complex large-scale models in architecture and product design, scientific visualization, energy exploration, games, and film and video production. Nvidia RTX enables real-time ray tracing. Historically, ray tracing had been reserved to non-real time applications (like CGI in visual effects for movies and in photorealistic renderings), with video game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57505768", "url": "https://en.wikipedia.org/wiki/Tractive", "title": "Tractive", "text": "Tractive is an Austrian company that develops real-time location trackers for pets and other animals using GPS and GSM technology.\n\nOverview \nDeveloped by Michael Hurnaus, their real-time location tracking device, Tractive GPS can be used via a Smartphone application or web interface. It tracks the device's positions using GPS and transfers the data using GSM technology. It has a clip mechanism that can be attached to a collar and weighs approximately 1.4 ounces. The device can be used for anim", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57508516", "url": "https://en.wikipedia.org/wiki/RIPAC%20%28microprocessor%29", "title": "RIPAC (microprocessor)", "text": "RIPAC was a VLSI single-chip microprocessor designed for automatic recognition of the connected speech, one of the first of this use.\n\nThe project of the microprocessor RIPAC started in 1984. RIPAC was aimed to provide efficient real-time speech recognition services to the italian telephone system provided by SIP. The microprocessor was presented in September 1986 at The Hague (Netherlands) at EUSPICO conference. It was composed of 70.000 transistors and structured as Harvard architecture.\n\nThe ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57539508", "url": "https://en.wikipedia.org/wiki/Face%20Swap%20Live", "title": "Face Swap Live", "text": "Face Swap Live is a mobile app created by Laan Labs that enables users to swap faces with another person in real-time using the device\u2019s camera.\n\n It was released on December 14, 2015. In addition to swapping faces with another person, the app enables users to create videos using a set of bundled live filters.\n\nThe app is available on iOS and Android devices. Face Swap Live was named Apple\u2019s #2 best-selling paid app in 2016.\n\nSee also\nReface\nDeepfake\n\nReferences\n\nExternal links \n Official web", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57618072", "url": "https://en.wikipedia.org/wiki/Quasimidi%20Raven", "title": "Quasimidi Raven", "text": "The Quasimidi Raven was a German made synthesizer aimed at the dance music market. It also featured an 8-track sequencer, arpeggiators, real-time control knobs and effects. The Raven can be upgraded with the RavenMAX card. This increases the sample wave memory from 6 to 14 MB\n\nPatches\nThe unit features 512 patches. These include Basses, LeadSynths, SynthPads, Natural Sounds, Organs, FM-Percussion, Effects, Drumsets, Tuned Drums.\n\nReferences\n\nPolyphonic synthesizers\nDigital synthesizers\nProducts", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57626628", "url": "https://en.wikipedia.org/wiki/Hang%20Seng%20Indexes%20Company", "title": "Hang Seng Indexes Company", "text": "Hang Seng Indexes Company Limited (HSI) is a private company in Hong Kong and wholly owned by Hang Seng Bank. HSI was founded in 1984 and is the major provider of stock market indexes on Hong Kong and China stock markets such as in Shanghai and Shenzhen.\n\nProducts\nHSI produces stock market indexes under 5 categories:\n\nMarket Cap-weighted Indexes\nFactor & Strategy Indexes\nSector Indexes\nSustainability Indexes\nFixed Income Indexes\n\nCurrently, the HSI produced indexes comprises over 400 real-time a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57643618", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%3A%20Rivals", "title": "Command & Conquer: Rivals", "text": "Command & Conquer: Rivals is a free-to-play real-time strategy mobile game. The game was released on Android and iOS on December 4, 2018.\n\nGameplay \n\nCommand and Conquer: Rivals is a one-versus-one competitive multiplayer real-time strategy game. The player can play as GDI or Brotherhood of Nod, with each faction offering unique abilities, and units. Players are tasked to control platforms surrounding the missile silo. If the player manages to gain control of more platforms than the enemy for ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57758552", "url": "https://en.wikipedia.org/wiki/Forts%20%28video%20game%29", "title": "Forts (video game)", "text": "Forts is a 2D real-time strategy video game developed and published by Australian studio EarthWork Games. It was released on April 19, 2017. Forts started development in March, 2003, as a game originally based on early bridge building games. Forts had sold 120,000 copies as of October 6, 2017. In Forts, the player builds a base, defends it, and acquires weapons through tech trees in an attempt to destroy the opponent's reactor.\n\nThe game has been reviewed by CG Magazine and Kotaku, the former of", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57764520", "url": "https://en.wikipedia.org/wiki/Anno%201800", "title": "Anno 1800", "text": "Anno 1800 is a city-building real-time strategy video game, developed by Blue Byte and published by Ubisoft, and launched on April 16, 2019. It is the seventh game in the Anno series, and returns to the use of a historical setting following the last two titles, Anno 2070 and Anno 2205, taking place during the Industrial Revolution in the 19th century. Following the previous installment, the game returns to the series' traditional city-building and ocean combat mechanics, but introduces new aspec", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57788103", "url": "https://en.wikipedia.org/wiki/Imperium%20Galactic%20War", "title": "Imperium Galactic War", "text": "Imperium Galactic War (abbreviated IGW) is a massively multiplayer online real-time strategy game by Vavel Games, originally developed and published by Kabam in 2013. The game runs on a freemium model, and is supported through the use of microtransactions.\n\nThe premise of the game is simple; players begin by picking which faction they would like to be a part of. There are three factions. The Tyrannar Empire, The Sovereignty, and The Intergalactic Alliance. Whichever decision the player makes, wi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57832646", "url": "https://en.wikipedia.org/wiki/Mentimeter", "title": "Mentimeter", "text": "Mentimeter (or Menti for short) is a Swedish company based in Stockholm that develops and maintains an eponymous app used to create presentations with real-time feedback.\n\nFoundation and background\nBased in Stockholm, Sweden, the Mentimeter app was started by Swedish entrepreneur Johnny Warstr\u00f6m and Niklas Ingvar as a response to unproductive meetings. The initial start up budget was $500,000 raised by a group of prominent investors, including Per Appelgren in 2014, following the market's tenden", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57878735", "url": "https://en.wikipedia.org/wiki/TD%20Ameritrade%20Network", "title": "TD Ameritrade Network", "text": "TD Ameritrade Network is an over-the-top (OTT) broadcast channel streaming financial news and education content. It was launched on October 24, 2017 as a free service with four hours of live original programming. From the outset, expanded hours beyond 8:30 AM to 12:30 PM were envisioned. By February 2018, the network was airing from 7:00 AM to 4:00 PM from its Chicago headquarters. Investors can tune in for real-time business updates and growth forecasts delivered by CEOs, analysts and investors", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57884008", "url": "https://en.wikipedia.org/wiki/Trek-80", "title": "Trek-80", "text": "Trek-80 is a text-based video game written by Steve Dompier in 1976 and sold by Processor Technology for their Sol-20 computer and suitable S-100 bus machines.\n\nTrek-80 combines features of the seminal Star Trek game by Mike Mayfield with the unrelated Trek73. In contrast to the originals, which were designed to run on teletypes, Trek-80 used the VDM-1 video card to produce a character-based real-time display.\n\nCompatible 3rd party versions of the VDM-1 became the de facto display for most early", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57932064", "url": "https://en.wikipedia.org/wiki/Dynamic%20line%20rating%20for%20electric%20utilities", "title": "Dynamic line rating for electric utilities", "text": "Dynamic line rating (DLR), also known as real-time thermal rating (RTTR), is an electric power transmission operation philosophy aiming at maximizing load, when environmental conditions allow it, without compromising safety. Research, prototyping and pilot projects were initiated in the 1990s, but the emergence of the \"smart grid\" stimulated electric utilities, scientists and vendors to develop comprehensive and sustainable solutions.\n\nPrinciples and applications\nThe current-carrying capacity, o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "57957477", "url": "https://en.wikipedia.org/wiki/Rivoningo%20Mhlari", "title": "Rivoningo Mhlari", "text": "Rivoningo Mhlari (born 28 July 1994) is a South African businessman. He is the co-founder and chief executive officer of Rikatec (Pty) Limited; the creators of an information management system for vehicles that provides real-time predictive maintenance for fleets, monitors driving habits, wear and tear and break detection and diagnosis. Following the success of Rikatec, Rivoningo was listed in the Forbes Africa's 30 Under 30, a list of 30 young entrepreneurs within the technology and digitizatio", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58006076", "url": "https://en.wikipedia.org/wiki/Steel%20Division%202", "title": "Steel Division 2", "text": "Steel Division 2 is a real-time strategy video game developed and published by Eugen Systems. The game was released worldwide on 20 June 2019. Steel Division 2 is the sequel to the 2017 game Steel Division: Normandy 44 and it was set during Operation Bagration.\n\nGameplay\nSet during Operation Bagration, Steel Division 2 is a real-time strategy video game that takes influence from World War II, similarly to its predecessor, Steel Division: Normandy 44. The game is set to include single-player, mul", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58071400", "url": "https://en.wikipedia.org/wiki/Marlin%20%28firmware%29", "title": "Marlin (firmware)", "text": "Marlin is open source firmware primarily designed for RepRap project based FDM (fused deposition modelling) 3D-printers using the Arduino platform.\n\nThe firmware runs G-code formatted coded commands and instruction sets as robot software on the 3D printer's control board which manages all of the machine's real-time activities including sending movement coordinates to stepper motors through the stepper drivers, controlling heater elements, sensors, lights, tracking bed levelling, LC displays and ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58142147", "url": "https://en.wikipedia.org/wiki/Mobile%20ethnography", "title": "Mobile ethnography", "text": "Mobile ethnography is a qualitative research method that takes advantage of technology to document, analyze and derive implications of real-time customer experience. Therefore it\u2019s often applied in the context of service design. Unlike classic ethnography where a researcher has to be present for observations, mobile ethnography uses the participant\u2019s mobile device to gather user-centered information. It allows the participant to become an active researcher him- or herself, report experiences at ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58169018", "url": "https://en.wikipedia.org/wiki/List%20of%20Lionhead%20Studios%20games", "title": "List of Lionhead Studios games", "text": "Lionhead Studios was a British video game developer located in Guildford, England. It was founded in July 1997 by Peter Molyneux, Mark Webley, Tim Rance, and Steve Jackson, following their departure from Bullfrog Productions, which Molyneux had co-founded. In 2001 it released its first title, the real-time strategy game Black & White; over the next year it launched deals with independent studios Big Blue Box Studios and Intrepid Computer Entertainment, who were developing Fable and B.C., to serv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58227990", "url": "https://en.wikipedia.org/wiki/Desperados%20%28video%20game%20series%29", "title": "Desperados (video game series)", "text": "Desperados is a real-time tactics video game series originally developed by Spellbound Entertainment, the series was then acquired by THQ Nordic on 24 June 2013. The series is set in the 1880s Midwest, its main protagonist John Cooper deals with living the life of a cowboy, often coming to blows with other criminals and bandits as he struggles to make a living as an outlaw. The series gameplay revolves around stealth with players having the option to take out enemies one by one or going in guns ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58239632", "url": "https://en.wikipedia.org/wiki/Instant%20payment", "title": "Instant payment", "text": "Instant payment (sometimes referred to as real-time payment or faster payment) is a method of exchanging money and processing payments, allowing for almost immediate transfer of money between bank accounts, instead of the more typical one to three business days.\n\nMany countries have implemented instant payment systems, and many instant payment systems and platforms are currently under development worldwide, due to increased need for faster and reliable transactions.\n\nThe Euro Retail Payments Boa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58311958", "url": "https://en.wikipedia.org/wiki/Saga%3A%20Rage%20of%20the%20Vikings", "title": "Saga: Rage of the Vikings", "text": "Saga: Rage of the Vikings is a French real-time strategy video game developed and published by Cryo Interactive in 1998 on Windows. The game is loosely based on the historical Vikings, with elements taken from Norse mythology. The gameplay sees players gather resources, build buildings and units, and defeat the competitors.\n\nCritical reception \nGameBlitz felt the game was competent, yet non-innovative. Game Over Online thought the game was a disappointment due to not being particularly groundbre", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58381235", "url": "https://en.wikipedia.org/wiki/StarCraft%20II%20in%20esports", "title": "StarCraft II in esports", "text": "Professional StarCraft II competition features professional gamers competing in Blizzard Entertainment's real-time strategy game StarCraft II. Professional play began following the game's initial release in 2010, as the game was the long-awaited sequel to StarCraft, considered one of the first esports and the foundation of South Korea's interest and success in competitive gaming. Between 2016 and 2019, competition was centered around the Global StarCraft II League in Korea and the World Champion", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58503466", "url": "https://en.wikipedia.org/wiki/Bad%20North", "title": "Bad North", "text": "Bad North is a real-time strategy video game developed by Plausible Concept (a game studio in Malm\u00f6, Sweden, founded by Oskar St\u00e5lberg and Richard Meredith) and published by Raw Fury. The game was released on August 20, 2018, for the Nintendo Switch, then for PlayStation 4 and Xbox One on August 28. A Microsoft Windows version was released on October 16, 2018. Versions for the mobile platforms Android and iOS followed on October 16, 2019.\n\nGameplay\nBad North focuses on real-time tactics gameplay", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58505763", "url": "https://en.wikipedia.org/wiki/Faster%20Payment%20System", "title": "Faster Payment System", "text": "Faster Payment System (FPS; , more commonly known as \u8f49\u6578\u5feb) is a real-time gross settlement payment system in Hong Kong that connects traditional banks and electronic payment and digital wallet operators. Users are able to perform instant money transfer or make payment to merchants by using the recipient's phone number, e-mail or QR code that contains the user's numeric identifier. Using the \"traditional way\" of full name and account number to make interbank transfer is also allowed.\n\nThe system w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58530307", "url": "https://en.wikipedia.org/wiki/The%20Trade%20Desk", "title": "The Trade Desk", "text": "The Trade Desk is an American multinational technology company that specializes in real-time programmatic marketing automation technologies, products, and services, designed to personalize digital content delivery to users.\n\nThe Trade Desk is headquartered in Ventura, California. It is the largest independent demand-side platform in the world, competing against DoubleClick by Google, Facebook Ads, and others. Unlike traditional marketing, programmatic marketing is operated by real-time, split-se", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58586751", "url": "https://en.wikipedia.org/wiki/Payment%20rail", "title": "Payment rail", "text": "A payment rail is a payment platform or a payment network that moves money from a payer to a payee. Either party could be a consumer or business, and both parties are able to move funds on the network. Credit card rails are the credit card payment system. Blockchain is considered a newer type of payment rail, as are centralized electronic payment systems such as PayPal, Venmo and Zelle. If the transferred funds are available immediately, a payment rail is referred to as a real-time rail.\n\nRefere", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58667095", "url": "https://en.wikipedia.org/wiki/Supreme%20Ruler%20The%20Great%20War", "title": "Supreme Ruler The Great War", "text": "Supreme Ruler The Great War is a grand strategy video game developed by BattleGoat Studios. It is the sixth installment in the Supreme Ruler series and was released on August 1, 2017. The game is the sequel to Supreme Ruler Ultimate.\n\nGameplay\nSupreme Ruler The Great War generally operates as a real-time strategy game, but the player is able to pause the game and choose the game speed. In the game, the player tries to control a country they have chosen. War is a dominant theme in the game with ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58735847", "url": "https://en.wikipedia.org/wiki/U-Report", "title": "U-Report", "text": "U-Report is a social messaging tool and data collection system developed by UNICEF to improve citizen engagement, inform leaders, and foster positive change. The program sends SMS polls and alerts to its participants, collecting real-time responses, and subsequently publishes gathered data. Issues polled include health, education, water, sanitation and hygiene, youth unemployment, HIV/AIDS, and disease outbreaks. The program currently has three million participants in 76 countries.\n\nHistory\nIn 2", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58767194", "url": "https://en.wikipedia.org/wiki/Electrochemical%20aptamer-based%20biosensors", "title": "Electrochemical aptamer-based biosensors", "text": "An electrochemical aptamer-based (E-AB) biosensor has the ability to generate an electrochemical signal in response to specific target binding in vivo The signal is measured by a change in Faradaic current passed through an electrode. E-AB sensors are advantageous over previously reported aptamer-based sensors, such as fluorescence generating aptamers, due to their ability to detect target binding in vivo with real-time measurements. An E-AB sensor is composed of a three-electrode cell: an inter", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58949106", "url": "https://en.wikipedia.org/wiki/Personetics%20Technologies", "title": "Personetics Technologies", "text": "Personetics Technologies is a FinTech software company headquartered in Tel Aviv, Israel. The company's product uses artificial intelligence to analyze bank's customer transaction data in real-time and use this analysis to deliver financial management information.\n\nHistory\nPersonetics was founded in 2011 by David Sosna and David Govrin.\n\nReferences\n\nCompanies based in Tel Aviv\n2011 establishments in Israel\nFinancial technology companies", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58954671", "url": "https://en.wikipedia.org/wiki/Chris%20Piche", "title": "Chris Piche", "text": "Chris Piche is a Canadian computer scientist and technology entrepreneur who specializes in peer-to-peer networking, streaming, and computer vision technologies.\n\nPiche pioneered the technology behind online multiplayer gaming and formed a joint venture with Stanley Ho and Sociedade de Turismo e Diversoes de Macau (STDM) to create the first Internet-based, real-time casino platform. Piche then built Eyeball Chat \u2013 an early instant messaging, Voice over IP, and video telephony service with over ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "58960240", "url": "https://en.wikipedia.org/wiki/Switching%20noise%20jitter", "title": "Switching noise jitter", "text": "Switching Noise Jitter (SNJ) is the aggregation of variability of noise events in the time-domain on the supply bias of an electronic system, in particular with a voltage regulated supply bias incorporated with closed-loop (feedback) control, for instance, SMPS. SNJ is measurable using real-time spectral histogram analysis and expressed as a rate of occurrence in percentage. The existence of SNJ was firstly demonstrated and termed by TransSiP Inc in 2016 and 2017 at the Applied Power Electronic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59038509", "url": "https://en.wikipedia.org/wiki/NetQoS", "title": "NetQoS", "text": "NetQoS,\nwhich sells network performance management software and services, was co-founded by Joel Trammell in 1999\nand acquired by CA Technologies in 2009.\n\nThe company's name refers to Network Quality of Service.\n\nTheir ReportAnalyzer provides \"real-time visibility into network traffic\" and seeks to improve network performance.\n\nOfferings introduced shortly before the company was acquired by CA Technologies include:\n Performance Center\n Anomaly Detection\n Network latency calculator\n\nEarlier offe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59221764", "url": "https://en.wikipedia.org/wiki/Arton%20Capital", "title": "Arton Capital", "text": "Arton Capital is a global citizenship financial advisory services firm based in Montreal, Canada. Founded in 2006 by Armand Arton, the firm has a number of services dedicated to \u201cGlobal Citizenship\u201d, with a particular focus on investor programs. \n\nThe firm facilitates residence and citizenship programs.\n\nArton Capital brokers investment agreements, and runs several assessment tools, including the Passport Index, a real-time ranking of the world\u2019s passports.\n\nServices\n\nGovernment advisory service", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59227530", "url": "https://en.wikipedia.org/wiki/Cultures%20%28video%20game%29", "title": "Cultures (video game)", "text": "Cultures: Discovery of Vinland () is a 2000 real-time strategy and city-building game developed by Funatics Software and published by Phenomedia. It is the first entry in the Cultures series.\n\nGameplay\nCultures is a real-time strategy and city-building game in which players manage the historical Vinland settlements of the Vikings. This includes constructing roads, handling the settlement's economy and training citizens in jobs such as blacksmithing. The ultimate goal is to gather shards of a cra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59320151", "url": "https://en.wikipedia.org/wiki/King%20Never", "title": "King Never", "text": "King Never is a rock band influenced by ambient, new wave, and progressive rock, based in Loomis, California. Founded by Matt McCabe (vocals, guitar) in 1995, the band has undergone different formations and member changes throughout its history.\n\nHistory \nFounded in 1995, and influenced by 80s new wave and progressive rock such as The Police, King Crimson, and The Fixx, King Never originally began as an outlet for Matt McCabe's explorations on guitar with real-time looping techniques.\n\nKing Nev", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59437024", "url": "https://en.wikipedia.org/wiki/Korea%3A%20Forgotten%20Conflict", "title": "Korea: Forgotten Conflict", "text": "Korea: Forgotten Conflict is a real-time strategy, stealth game that takes place in the Korean War. It was developed by Czech studio Plastic Reality Technologies and published by Cenega Publishing.\n\nThe game has clanky controls and many bugs, failing to capitalize in the stealth surge of the period. Noticeable features were the movement of characters and the beauty of the scenarios, but this was tainted by awful AI, nonsensical controls and far too many bugs. The playable characters were also he", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59519669", "url": "https://en.wikipedia.org/wiki/Ambient%20Guitar%20Noise%3A%20Volume%201", "title": "Ambient Guitar Noise: Volume 1", "text": "Ambient Guitar Noise: Volume 1 is the debut studio album of ambient, experimental guitar loop compositions by Matthew McCabe in a first recording as King Never. Recorded live in the studio over the course of one week, the album was released by Marathon Records on June 1, 2000\n\nBackground \n\nInfluenced by 80s new wave and progressive rock such as The Police, King Crimson, and The Fixx, King Never originally began as an outlet for Matt McCabe's explorations on guitar with real-time audio feedback t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59547264", "url": "https://en.wikipedia.org/wiki/Cultures%202%3A%20The%20Gates%20of%20Asgard", "title": "Cultures 2: The Gates of Asgard", "text": "Cultures 2: The Gates of Asgard () is a real-time strategy and city-building video game for Microsoft Windows, released on 26 August 2002 by Funatics Software, a video game developer based in Oberhausen, Germany. The game was published in Germany and Poland by JoWooD Productions and in Russia by Russobit-M. It is part of the Cultures series, and is the sequel to Cultures: Discovery of Vinland.\n\nGameplay \n\nIn Cultures 2 the player builds and develops Vinland settlements by gathering resources and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59583640", "url": "https://en.wikipedia.org/wiki/Replit", "title": "Replit", "text": "Replit (rep\u00b7lit), formerly Repl.it, is a San Francisco-based start-up and an online IDE (integrated development environment). Its name comes from the acronym REPL, which stands for \"read\u2013evaluate\u2013print loop\". Amjad Masad, Faris Masad, and Haya Odeh co-founded the company in 2016.\n\nFeatures\nReplit allows users to write code and build apps and websites using a browser. The site also has various collaborative features, including capability for real-time, multi-user editing with a live chat feed. It", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59586201", "url": "https://en.wikipedia.org/wiki/The%20Civil%20War%20%28video%20game%29", "title": "The Civil War (video game)", "text": "The Civil War is a 1995 video game by British studio Dagger Interactive Technologies and published by Empire for DOS.\n\nGameplay\nThe Civil War is a real-time strategy game involving training, production and supply.\n\nReception\n\nThe game received a mixed-to-negative review from Computer Game Review. In 1996, Computer Gaming World declared The Civil War the 10th-worst computer game ever released.\n\nReviews\nPC Gamer (1995 May)\nComputer Gaming World (Sep, 1995)\nLeveL (Czech magazine) #8 (09/1995)\n\nRefe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59599638", "url": "https://en.wikipedia.org/wiki/Authorized%20push%20payment%20fraud", "title": "Authorized push payment fraud", "text": "Authorized push payment fraud (APP fraud) is a form of fraud in which victims are manipulated into making real-time payments to fraudsters, typically by social engineering attacks involving impersonation. These authorised frauds can also be related to investment scams where the victim is tricked into sending money for investments that don't exist, and romance scams where the fraudster tricks the victim into thinking they are in a relationship. in the United Kingdom, because the victims of these", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59660658", "url": "https://en.wikipedia.org/wiki/Voyager%20I%20%28video%20game%29", "title": "Voyager I (video game)", "text": "Voyager I: Sabotage of the Robot Ship is a computer game designed and programmed by William D. Volk, and published by the Microcomputer Games division of Avalon Hill. It was originally released for the Apple II in 1981, with later versions for the Atari 8-bit family, TRS-80 Color Computer, TRS-80, and Commodore PET.\n\nGameplay\nVoyager I is a real-time science fiction adventure in which the player's mission is to stop a kamikaze alien ship bent on the destruction of Earth.\n\nReception\nDave Jones re", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59668673", "url": "https://en.wikipedia.org/wiki/Baekhyun%20discography", "title": "Baekhyun discography", "text": "The discography of the South Korean singer Baekhyun consists of four extended plays, seven singles, two promotional singles, and two soundtrack appearances. Baekhyun started his musical career as part of the South Korean boy band Exo in April 2012.\n\nIn January 2016, Baekhyun and Suzy released a duet titled \"Dream\". The song quickly reached the top on online real-time music charts and later debuted at number one on Gaon's weekly digital chart. In May 2016, Baekhyun and South Korean singer K.Will ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59680700", "url": "https://en.wikipedia.org/wiki/Lucid%20Design%20Group%2C%20Inc.", "title": "Lucid Design Group, Inc.", "text": "Lucid Design Group, Inc. (Lucid) is an Oakland, California-based company which offers building analytics. The company was started by Vladi Shunturov in 2004. The company's \"Building Dashboard\" provides real-time, web-based feedback on electric, gas, and water usage within buildings.\n\nIn February 2018, Lucid was acquired by Acuity Brands, Inc.\n\nReferences\n\nAmerican companies established in 2004", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59699424", "url": "https://en.wikipedia.org/wiki/GoAccess", "title": "GoAccess", "text": "GoAccess is an open-source web analytics application for Unix-like operating systems. It has both a text-based and a web application user interface. It can provide real-time analytics by continuously monitoring web server logs.\n\nSee also\n\nList of web analytics software\n\nReferences\n\nExternal links\n\nWeb analytics\nFree web analytics software", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59848189", "url": "https://en.wikipedia.org/wiki/The%20Settlers%20%282022%20video%20game%29", "title": "The Settlers (2022 video game)", "text": "The Settlers is an upcoming real-time strategy city-building game developed by Ubisoft D\u00fcsseldorf (formerly Blue Byte) and published by Ubisoft. It is a reboot of The Settlers series. The game is set to be released in March 2022 for Windows.\n\nGameplay\nThe Settlers is a reboot of the series. The game features three different factions, including the Elari, the Maru, and the Jorn. Like previous games in the series, the player starts with a skeleton crew and the player must grow their settlements by", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59868408", "url": "https://en.wikipedia.org/wiki/Seth%20Stephens-Davidowitz", "title": "Seth Stephens-Davidowitz", "text": "Seth Isaac Stephens-Davidowitz (born September 15, 1982) is an American data scientist, economist, and author. He is a New York Times op-ed contributor and a former data scientist at Google, as well as a former visiting lecturer at the Wharton School of the University of Pennsylvania. He has published research using Google Trends search data, as well as data from Wikipedia and Facebook, to gain real-time insights into people's thoughts and beliefs that they may be unwilling to admit publicly.\n\nH", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59915520", "url": "https://en.wikipedia.org/wiki/Man%20of%20War%20%28video%20game%29", "title": "Man of War (video game)", "text": "Man of War is a 1997 real-time strategic naval combat video game developed by Strategy First and published by Virgin Interactive Entertainment for DOS and Windows. A sequel entitled Man of War II: Chains of Command was released in 1999.\n\nPlot and gameplay \nPlayers complete naval battles through a series of historical scenarios. The games included a character creator, and a scenario editor.\n\nDevelopment \nThe game was developed by the small studio Strategy First (established in 1991), and would b", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59939077", "url": "https://en.wikipedia.org/wiki/Uprising%3A%20Join%20or%20Die", "title": "Uprising: Join or Die", "text": "Uprising: Join or Die, also known as simply Uprising, is an action real-time strategy video game by American developer Cyclone Studios, released in North America on October 22, 1997 and in Japan on July 24, 1998 for Windows. The player controls a powerful combat vehicle known as the Wraith that transports rebel units onto the battlefield, fighting against the military. For the first few months of its development, it had no script written for it and as the release date neared, gameplay videos wer", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59954851", "url": "https://en.wikipedia.org/wiki/VTuber", "title": "VTuber", "text": "A , or , is an online entertainer who uses a virtual avatar generated using computer graphics and real-time motion capture software or technology. A digital trend that originated in Japan in the mid-2010s and, since the early 2020s, has become an international online phenomenon, a majority of VTubers are English and Japanese-speaking YouTubers or live streamers who use avatar designs. By 2020, there were more than 10,000 active VTubers. Although the term alludes to the video platform YouTube, vi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "59999010", "url": "https://en.wikipedia.org/wiki/Age%20of%20Empires%3A%20World%20Domination", "title": "Age of Empires: World Domination", "text": "Age of Empires: World Domination was a free-to-play mobile real-time strategy game developed by KLab Games and Microsoft as part of the Age of Empires series of video games, and released on December 7, 2015, in selected countries for iOS and Android devices. The game had first been announced in 2013 as a new mobile entry in the Age of Empires series. It was shut down in November 2016.\n\nGameplay \nAge of Empires: World Domination featured eight historical civilisations, resource management, a vari", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60027184", "url": "https://en.wikipedia.org/wiki/Simultaneous%20interpretation", "title": "Simultaneous interpretation", "text": "Simultaneous interpretation (SI) is when an interpreter translates the message from the source language to the target language in real-time. Unlike in consecutive interpreting, this way the natural flow of the speaker is not disturbed and allows for a fairly smooth output for the listeners.\n\nHistory \n\nThe Nuremberg trials (1945\u20131946) are considered to be the official birthdate of simultaneous interpretation, however, simultaneous interpretation was invented as early as in 1926. A patent was rece", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60059614", "url": "https://en.wikipedia.org/wiki/Avalon%20%28MPV%29", "title": "Avalon (MPV)", "text": "UniAVALON or simply Avalon is a Sri Lankan 6\u00d76 wheeled MRAP-type heavy armored personnel carrier manufactured by Sri Lanka Electrical and Mechanical Engineers (SLEME).\n\nDesign \nAvalon is a 6x6 Mine-Resistant Ambush Protected/Command vehicle with space for 12 troops and a crew of 2. It is capable of electronic warfare and gathering intelligence with real-time information from any terrain with a variety of cameras, drones and jammers. It is also equipped with newer blast protection seats developed", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60073928", "url": "https://en.wikipedia.org/wiki/Pinwheel%20scheduling", "title": "Pinwheel scheduling", "text": "In mathematics and computer science, the pinwheel scheduling problem is a problem in real-time scheduling with repeating tasks of unit length and hard constraints on the time between repetitions.\n\nDefinition\nThe input to pinwheel scheduling consists of a list of tasks, each of which is assumed to take unit time per instantiation. Each task has an associated positive integer value, its minimum repeat time (the minimum time from the start of one instantiation of the task to the next). Only one ta", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60166062", "url": "https://en.wikipedia.org/wiki/Quo%20Vadis%202", "title": "Quo Vadis 2", "text": "Quo Vadis 2 is a video game developed and published by Glams for the Sega Saturn.\n\nGameplay\nQuo Vadis 2 is a squad-level real-time game featuring customizable mechs.\n\nReception\nNext Generation reviewed the Saturn version of the game, rating it four stars out of five, and stated that \"Glams may not have created the next big game, but Western designers should watch their backs when it turns its attention to Quo Vadis 3.\"\n\nReferences\n\n1997 video games\nJapan-exclusive video games\nReal-time strategy ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60260824", "url": "https://en.wikipedia.org/wiki/Hainan%20Highway%201", "title": "Hainan Highway 1", "text": "Hainan Highway 1 is a dual-lane highway in Hainan, China that was expected to begin construction in May 2019. \n\nHighway 1 is to be built along the coastline, adding of new scenic highway to the island to boost tourism. About 1/5 of the highway will have an ocean view. There will be 46 tourism stations located on it. \n\nHighway 1 will connect 12 cities and counties. It will have 5G technology support, as well as big data and GPS positioning to aid in real-time monitoring and intelligent managemen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60320307", "url": "https://en.wikipedia.org/wiki/Ancestors%20Legacy", "title": "Ancestors Legacy", "text": "Ancestors Legacy is a real-time strategy video game developed by Polish studio Destructive Creations and published by 1C Company. It was released on Microsoft Windows on May 22, 2018, Xbox One and PlayStation 4 on August 13, 2019, and Nintendo Switch on June 11, 2020.\n\nGameplay\nAncestor's Legacy offers two game modes: a single-player campaign scenario or a multiplayer game, in which the player can choose to play one of four civilizations: Vikings, Anglo-Saxons, Teutons, or Slavs (the Saladin's C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60408503", "url": "https://en.wikipedia.org/wiki/Jang%20Beom-june", "title": "Jang Beom-june", "text": "Jang Beom-june (; born May 16, 1989) is a South Korean singer-songwriter. He debuted in 2011 on the music audition television program Superstar K 3 as a member of the indie rock trio Busker Busker. He released his self-titled, first solo album in 2014, which topped real-time music charts and included the No.1 hit single, \"Difficult Woman.\" His second album, released in 2016, was similarly successful and spawned the No.1 hit, \"Fallen In Love (Only With You).\" After being discharged from his manda", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60418768", "url": "https://en.wikipedia.org/wiki/Michael%20Takeo%20Magruder", "title": "Michael Takeo Magruder", "text": "Michael Takeo Magruder (born 1974, USA/UK) is an artist who uses digital technologies to create work that connects with real-time data, virtual worlds and networked mobile devices. His work has appeared at the Courtauld Institute of Art in London, UK; Centre Georges Pompidou, in Paris, France; and what is now called the Tokyo Photographic Art Museum in Japan. Magruder's work is included in the Rose Goldsen Archive of New Media Art at Cornell University. In 2010 Magruder represented the UK at Ma", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60441997", "url": "https://en.wikipedia.org/wiki/Polanie%20%28video%20game%29", "title": "Polanie (video game)", "text": "Polanie is a historical real-time strategy video game developed by MDF and published by USER for DOS and Microsoft Windows in 1996. An enhanced CD version was released next year.\n\nIt was the first Polish RTS game and has been since described as a cult classic in Poland. It was followed by Polanie II in 2003. The planned third game, Polanie 3, eventually turned into an unrelated action RPG Two Worlds. A canceled remake of the original has been in development during the 2010s.\n\nGameplay \nThe game ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60493603", "url": "https://en.wikipedia.org/wiki/Rabb.it", "title": "Rabb.it", "text": "Rabbit, also known as Rabb.it, was a video streaming website and mobile application. Launched in 2014, and based in California, United States, the service enabled multiple people to remotely browse and watch the same content in real-time.\n\nA host could create a room, invite others to it (or, alternatively, set it to public so the room appeared on the site's homepage for anyone to join), and share content using a virtual computer called a \"Rabbitcast,\" or using the Google Chrome extension \"Share ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60525223", "url": "https://en.wikipedia.org/wiki/Antonio%20Mele", "title": "Antonio Mele", "text": "Antonio Mele (born 22 March 1967, Rome, Italy) is an Italian economist.\n\nHe is currently Professor of Finance at USI (Universit\u00e0 della Svizzera Italiana) and at the Swiss Finance Institute after a decade with the London School of Economics and Political Science.\n\nHe is the author of several works on uncertainty and volatility in financial markets, the interlinks between financial markets and business cycles, and financial market microstructure.\n\nSome of his work has led to real-time indicators o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60617374", "url": "https://en.wikipedia.org/wiki/Conqueror%27s%20Blade", "title": "Conqueror's Blade", "text": "Conqueror's Blade is a free-to-play, massively multiplayer online real-time tactics game developed by Chinese studio Booming Games, published by Mail.ru in Russia and My.com in Europe and North America and published by Booming Games in South America, MENA (North Africa and Middle East), Asia and Pacific. It is set in an open world inspired by medieval and feudal civilizations, and centers around siege combat, commanding units in real-time, and seizing territory from other players in online battl", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60634467", "url": "https://en.wikipedia.org/wiki/Gregory%20D.%20Hager", "title": "Gregory D. Hager", "text": "Gregory D. Hager (born May 9, 1961) is the Mandell Bellmore Professor of Computer Science and founding director of the Johns Hopkins Malone Center for Engineering in Healthcare at Johns Hopkins University.\n\nHis principal areas of research are collaborative and vision-based robotics, time-series analysis of image data, and medical applications of image analysis and robotics. Hager develops real-time computer vision algorithms for robotic systems. His work offers novel applications for automated s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60634477", "url": "https://en.wikipedia.org/wiki/Judson%20A.%20Brewer", "title": "Judson A. Brewer", "text": "Judson Alyn Brewer, M.D., Ph.D., is an American psychiatrist, neuroscientist and New York Times best-selling author. He studies the neural mechanisms of mindfulness using standard and real-time fMRI, and has translated research findings into programs to treat addictions. Brewer founded MindSciences, Inc. (now known as DrJud), an app-based digital therapeutic treatment program for anxiety, overeating, and smoking. He is director of research and innovation at Brown University's Mindfulness Center ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60667725", "url": "https://en.wikipedia.org/wiki/Armor%20Command", "title": "Armor Command", "text": "Armor Command is a military science fiction real-time strategy video game developed by American studio Ronin Entertainment and published by Ripcord Games for Windows in 1998. Set in the early 30th century, the game revolves around two factions, the United Terran Federation led by humanity, and the Vrass, a feudal slaver empire led by aliens. Armor Command was designed by Edward Kilham, known as the co-designer of Star Wars: TIE Fighter. Armor Command released to generally positive and lukewarm r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60724218", "url": "https://en.wikipedia.org/wiki/Feedback%20terminal", "title": "Feedback terminal", "text": "A feedback terminal is a physical device that is commonly used to collect large amounts of anonymous real-time feedback from customers, employees, travelers, visitors or students. Typically, feedback terminals feature buttons that users can press to indicate how satisfied they are with the service provided. This information can then used by organisations to analyze where the experience is optimal, and where it can be improved.\n\nApplications \n\nFeedback terminals are utilized to measure and improv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60774275", "url": "https://en.wikipedia.org/wiki/Extreme%20Tactics", "title": "Extreme Tactics", "text": "Extreme Tactics is a real-time strategy video game developed by American studio Media Station and published by Piranha Interactive Publishing for Windows in 1998.\n\nReception\n\nThe game received mixed to unfavorable reviews. Next Generation said, \"Is the game truly unique? Not really. Is it fun to play and strangely addictive? Yes. It may not be all that different, but it will keep you entertained for hours.\"\n\nReferences\n\nExternal links\n \n\n1998 video games\nReal-time strategy video games\nVideo game", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60860362", "url": "https://en.wikipedia.org/wiki/Getting%20a%20Head", "title": "Getting a Head", "text": "Getting a Head is the debut solo album of live improvised music by experimental sound artist Bob Ostertag. It features Ostertag playing a homemade real-time sound sourcing system with Fred Frith on guitar and Charles K. Noyes on percussion. The album was released on LP by Rift Records in 1980. It was later released on CD by ReR Megacorp in 2000, and by Seeland Records in 2001. In a review of Ostertag's 2009 book, Creative Life: Music, Politics, People, and Machines, Chris Gehman described Gettin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "60996879", "url": "https://en.wikipedia.org/wiki/MIQE", "title": "MIQE", "text": "The Minimum Information for Publication of Quantitative Real-Time PCR Experiments (MIQE) guidelines are a set of protocols for conducting and reporting quantitative real-time PCR experiments and data, as devised by Bustin et al. in 2009. They were devised after a paper was published in 2002 that claimed to detect measles virus in children with autism through the use of RT-qPCR, but the results proved to be completely unreproducible by other scientists. The authors themselves also did not try to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61027592", "url": "https://en.wikipedia.org/wiki/Oninaki", "title": "Oninaki", "text": "is a 2019 action role-playing game developed by Tokyo RPG Factory and published worldwide by parent company Square Enix for PlayStation 4, Microsoft Windows and Nintendo Switch. Gameplay has players exploring dungeon areas selected from a world map, fighting enemies in real-time combat with spirit weapons called Daemons while shifting between the world of the living and an afterlife referred to as the \"Beyond\". Oninaki is set in a world where the doctrine of reincarnation is enforced by figures ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61066150", "url": "https://en.wikipedia.org/wiki/Muriel%20Tramis", "title": "Muriel Tramis", "text": "Muriel Tramis (born in 1958) is a French video game designer from Martinique. She is known as the first Black woman video game designer. She has written and directed the adventure games M\u00e9wilo, Freedom, Geisha, Fascination, Lost in Time and Urban Runner at Coktel Vision. She also co-created the Gobliiins series with Pierre Gilhodes. Tramis was involved in the creation of the ADI range for schoolchildren and college students, and since 2003 has managed Avantilles, a specialist in real-time 3D app", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61224605", "url": "https://en.wikipedia.org/wiki/Planespotting%20Live", "title": "Planespotting Live", "text": "Planespotting Live is a live television programme broadcast on BBC Four over three nights between 23 and 25 July 2019. Announced on 5 July 2019, it follows on from similar \"live\" programmes on the BBC such as Trainspotting Live, Airport Live and Volcano Live\n\nProgramme\nThe show is presented by Peter Snow, Zoe Laughlin and Andi Peters. Planespotting Live also featured pre-recorded reports and interviews as well as the real-time broadcast. Live cameras showed airport activity. Peter Snow led the n", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61293055", "url": "https://en.wikipedia.org/wiki/Enscape", "title": "Enscape", "text": "Enscape is a commercial real-time rendering and virtual reality plugin. It is mainly used in the architecture, engineering, and construction fields and is developed and maintained by Enscape GmbH, founded in 2013 and based in Karlsruhe, Germany with an office in New York, USA.\n\nOverview \nThe main focus of Enscape lies in the calculation of realistic visualizations of architecture with low operating complexity. A real-time method is applied to achieve higher iteration speeds at the planning proje", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61309907", "url": "https://en.wikipedia.org/wiki/Construction%20Monitor", "title": "Construction Monitor", "text": "Construction Monitor is a business that makes building permit information available to suppliers, subcontractors, and building industry professionals in the construction industry. Construction Monitor provides records of residential, commercial, swimming pool, and solar building permits in a searchable database. This lead generation service is available in all 50 US states, making Construction Monitor the nation's largest provider of real-time building permit data.\n\nHistory \nThe company was foun", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61395611", "url": "https://en.wikipedia.org/wiki/PGA%20Championship%20Golf%201999%20Edition", "title": "PGA Championship Golf 1999 Edition", "text": "PGA Championship Golf 1999 Edition is a 1999 golf video game developed by Headgate Studios and published by Sierra Sports for Microsoft Windows. The game includes eight golf courses and a golf swing method known as TrueSwing, which uses the movement of the computer mouse to simulate a golf swing in real-time as the player makes the shot. Also included is the ReadyPlay feature, allowing golfers in a multiplayer group to play at their own pace without waiting for others to finish their turn. The g", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61433246", "url": "https://en.wikipedia.org/wiki/QMI%20press%20agency", "title": "QMI press agency", "text": "The QMI Agency, a division of Quebecor Media, is an integrated news agency. Founded in 2008, it offers services to media customers in Quebec.\n\nJournalism \nQMI Agency engages in real-time news coverage for its subsidiaries and business partners.\n\nThe clients include, among others, Le Journal de Montr\u00e9al, Le Journal de Qu\u00e9bec , the 24H Montreal free newspaper and its various websites. QMI Agency has offices in Ottawa, Montreal and Quebec City.\n\nQMI Agency also offered services to various platforms", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61460826", "url": "https://en.wikipedia.org/wiki/Druck%20%28TV%20series%29", "title": "Druck (TV series)", "text": "Druck (English: pressure) is a German teen drama streaming television series, based on the Norwegian TV series Skam, created by Julie Andem. It premiered with its first full episode on March 23, 2018 on Funk and YouTube.\n\nEmploying the same distribution method and overall storylines as the original Norwegian production, Druck is shown in real-time through short clips on a nearly daily basis on YouTube, supplemented with screenshots of messages between the characters over WhatsApp or Telegram and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61488993", "url": "https://en.wikipedia.org/wiki/Operational%20analytical%20processing", "title": "Operational analytical processing", "text": "Operational analytical processing, or more popularly known as operational analytics, is a subset of data analytics that focuses on improving the operational nature of a business or entity.\n\nThe main characteristic that distinguishes operational analytics from other types of analytics is that it is analytics on the fly, which means that signals emanating from various parts of a business are processed in real-time to feed back into instant decision-making for the business. Some people refer to thi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61512666", "url": "https://en.wikipedia.org/wiki/Flash%20Core%20Module", "title": "Flash Core Module", "text": "IBM FlashCore Modules (FCM) are solid state technology computer data storage modules using PCI Express attachment and the NVMe command set. The raw storage capacities are 4.8 TB, 9.6 TB, 19.2 TB and 38.4 TB. The FlashCore modules support hardware self-encryption and real-time inline hardware data compression without performance impact. They are used in selected arrays from the IBM FlashSystem family.\n\nHistory \nOn September 17, 2007, Texas Memory Systems (TMS) announced the RamSan-500, the world'", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61526828", "url": "https://en.wikipedia.org/wiki/Malvinas%202032", "title": "Malvinas 2032", "text": "Malvinas 2032 is a video game developed and published by Sabarasa Entertainment.\n\nPlot and gameplay \nThe player takes control of Argentinian forces and tries to take back the Falkland Islands from Britain. It takes place in 2032, on the 50th anniversary of the Falklands War.\n\nDevelopment \nJavier Otaegui serves as the project lead. In 1996 he read in the local newspaper that Conde Entertainment Software had just won an international prize for real-time strategy Regnum, the first Argentinian CD r", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61585090", "url": "https://en.wikipedia.org/wiki/Desperados%20III", "title": "Desperados III", "text": "Desperados III is a real-time tactics video game developed by Mimimi Games and published by THQ Nordic. The first installment in the Desperados series since the 2007 spin-off title Helldorado, it was released for Microsoft Windows, PlayStation 4, Xbox One, MacOS, Linux.\n\nGameplay\nDesperados III is a real-time tactics stealth video game. The game features five playable characters, with each having access to unique weapons and abilities. Players can play the game as a stealth game, in which they c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61613630", "url": "https://en.wikipedia.org/wiki/Deterministic%20Networking", "title": "Deterministic Networking", "text": "Deterministic Networking (DetNet) is an effort by the IETF DetNet Working Group to study implementation of deterministic data paths for real-time applications with extremely low data loss rates, packet delay variation (jitter), and bounded latency, such as audio and video streaming, industrial automation, and vehicle control. \n\nDetNet operates at the IP Layer 3 routed segments using a Software-Defined Networking layer to provide IntServ and DiffServ integration, and delivers service over lower L", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61672130", "url": "https://en.wikipedia.org/wiki/Gears%20Pop%21", "title": "Gears Pop!", "text": "Gears Pop! was a mobile real-time strategy video game in which two players battle using Funko Pop!-stylized characters from the Gears fictional universe. Its gameplay was modeled on that of Clash Royale. The game released in August 2019 on Android, iOS, and Windows platforms, about a month in advance of the next major entry in the series, Gears 5. The game was developed by UK-based developer Mediatonic alongside with The Coalition.\n\nGameplay \n\nIn Gears Pop, two players battle by playing tokens o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61678506", "url": "https://en.wikipedia.org/wiki/Counter%20Action", "title": "Counter Action", "text": "Counter Action is a real-time tactics video game set in World War II. The game was developed by Russian studio Nashi Igry and published by Doka for MS-DOS in 1996. In the UK and Europe outside of Russia it was published by Mindscape in 1997.\n\nGameplay \nCounter Action is a real-time tactics game played from a top-down perspective. The game takes place during World War II and features two campaigns: one for the Soviet Union and one for the Third Reich. Each campaign consists of 14 missions. Counte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61746829", "url": "https://en.wikipedia.org/wiki/Peter%20Donebauer", "title": "Peter Donebauer", "text": "Peter Donebauer (born 1947) is an English video artist known for designing and building the Videokalos video synthesizer.\n\nLife and work \n\nPeter Donebauer studied at Manchester University and the Royal College of Art, London.\n\nHe is best known for his video artwork 'Entering', part of his seven-part 'Creation Cycle'. This was the first video piece to be commissioned and nationally broadcast by the BBC on 'Second House'. It was created in real-time at the Royal College of Art television studio an", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61805026", "url": "https://en.wikipedia.org/wiki/One%20Piece%20Bounty%20Rush", "title": "One Piece Bounty Rush", "text": "One Piece Bounty Rush is a free-to-play mobile game based on the One Piece franchise, developed and published by Bandai Namco Entertainment. The game is played in real-time with four player teams in battle mode, in which the team that has the most treasure at the end wins. Every battle takes place within a location from the One Piece series.\n\nProduction and gameplay\nThe mobile game is a collaboration between Bandai Namco Entertainment, One Piece author Eiichiro Oda, anime production studio Toei ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61909134", "url": "https://en.wikipedia.org/wiki/Ninth%20generation%20of%20video%20game%20consoles", "title": "Ninth generation of video game consoles", "text": "The ninth generation of video game consoles began in November 2020 with the releases of Microsoft's Xbox Series X and Series S console family and Sony's PlayStation 5.\n\nThe consoles represent significant performance upgrades from the prior Xbox One and PlayStation 4, adding faster computation and graphics processors, support for real-time ray tracing graphics, output for 4K resolution, and in some cases, 8K resolution, with rendering speeds targeting 60 frames per second (fps) or higher. Interna", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61959752", "url": "https://en.wikipedia.org/wiki/Netdata", "title": "Netdata", "text": "Netdata is an open source tool designed to collect real-time metrics, such as CPU usage, disk activity, bandwidth usage, website visits, etc., and then display them in live, easy-to-interpret charts.\n\nThe tool is designed to visualize activity in the greatest possible detail, allowing the user to obtain an overview of what is happening and what has just happened in their system or application.\n\nOverview\nNetdata consists of a daemon that, when executed, is responsible for collecting and displayin", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61972306", "url": "https://en.wikipedia.org/wiki/Indian%20Data%20Relay%20Satellite%20System", "title": "Indian Data Relay Satellite System", "text": "Indian Data Relay Satellite System or IDRSS is a planned Indian constellation of Inter-satellite communications satellites. Planned to initially comprise two satellites, CMS-04 (formerly IDRSS-1) & IDRSS-2 in GEO. It will facilitate relay of information between various Indian spacecraft, in-flight launch vehicle monitoring and assist Indian Human Spaceflight Programme.\n\nObjectives \nA Data Relay Satellite System (DRSS) facilitates continuous real-time communication between Low Earth orbit bound s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "61980052", "url": "https://en.wikipedia.org/wiki/Semi-global%20matching", "title": "Semi-global matching", "text": "Semi-global matching (SGM) is a computer vision algorithm for the estimation of a dense disparity map from a rectified stereo image pair, introduced in 2005 by Heiko Hirschm\u00fcller while working at the German Aerospace Center. Given its predictable run time, its favourable trade-off between quality of the results and computing time, and its suitability for fast parallel implementation in ASIC or FPGA, it has encountered wide adoption in real-time stereo vision applications such as robotics and adv", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62114826", "url": "https://en.wikipedia.org/wiki/Vladimir%20Sukhomlin", "title": "Vladimir Sukhomlin", "text": "Vladimir Sukhomlin () is a Russian computer scientist, Dr.Sc., Professor, a professor at the Faculty of Computer Science at the Moscow State University.\n\nBiography \nBorn in the family of a documentary filmmaker Yuri Ozerov. He graduated from the Moscow Power Engineering Institute (1969).\n\nHe defended the thesis \u00abAn integrated approach to the creation of technological software for the automation of scientific research in the field of real-time radio-electronic systems and their functional softwar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62206643", "url": "https://en.wikipedia.org/wiki/Saul%20Greenberg", "title": "Saul Greenberg", "text": "Saul Greenberg is a computer scientist, a Faculty Professor and Professor Emeritus at the University of Calgary. He specializes in human-computer interaction and ubiquitous computing. He is an ACM Fellow.\n\nSelected publications\nGutwin, Carl, and Saul Greenberg. \"A descriptive framework of workspace awareness for real-time groupware.\" Computer Supported Cooperative Work (CSCW) 11.3-4 (2002): 411-446.\nTauscher, Linda, and Saul Greenberg. \"How people revisit web pages: empirical findings and implic", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62262952", "url": "https://en.wikipedia.org/wiki/Warcraft%20III%3A%20Reforged", "title": "Warcraft III: Reforged", "text": "WarCraft III: Reforged is a remastered edition of the 2002 real-time strategy video game Warcraft III: Reign of Chaos and its expansion The Frozen Throne. Released on January 28, 2020, it adds revamped graphics, new campaign gameplay settings as well as modern online Battle.net features. The game received mixed reviews from critics and an overwhelmingly negative reception from players for its changes from the original, the lack of many announced features, and technical issues.\n\nGameplay\n\nReforge", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62375013", "url": "https://en.wikipedia.org/wiki/Secure%20access%20service%20edge", "title": "Secure access service edge", "text": "A secure access service edge (SASE) is a technology used to deliver wide area network (WAN) and security controls as a cloud computing service directly to the source of connection (user, device, branch office, Internet of things (IoT) device, or edge computing location) rather than a data center. Security is based on digital identity, real-time context, and company and regulatory compliance policies. A digital identity may be attached to anything from a person to a device, branch office, cloud s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62417265", "url": "https://en.wikipedia.org/wiki/Rosedale%20Transit%20Center", "title": "Rosedale Transit Center", "text": "Rosedale Transit Center is a transit center in the Saint Paul suburb of Roseville, Minnesota. The transit center is named after the adjacent shopping mall, Rosedale Center. Rosedale Transit Center is the northern terminus for the METRO A Line, a bus rapid transit line serving Saint Paul and south Minneapolis. The site is leased to Metro Transit by the mall, and includes an indoor waiting area, real-time information, and ticket vending machines. The transit center also provides timed transfers to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62429814", "url": "https://en.wikipedia.org/wiki/Tarik%20Barri", "title": "Tarik Barri", "text": "Tarik Barri (born Arnhem, 1979) is a Dutch audiovisual composer based in Berlin. He programmed his own audio-visual software Versum. In this 3D real-time virtual world, the artist creates audio-visual compositions. Barri has collaborated with Radiohead, Atoms for Peace, Sote, Nicolas Jaar, Monolake and others. Since 2015, he has toured as part of a trio with Thom Yorke and Nigel Godrich in a series of concerts featuring Yorke's Tomorrow\u2019s Modern Boxes project.\n\nBiography \nBarri was born in Arnhe", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62534769", "url": "https://en.wikipedia.org/wiki/Commelec", "title": "Commelec", "text": "Commelec is a framework that provides distributed and real-time control of electrical grids by using explicit setpoints for active/reactive power absorptions/injections. It is based on the joint-operation of communication and electricity systems. Commelec has been developed by scientists at \u00c9cole Polytechnique F\u00e9d\u00e9rale de Lausanne, a research institute and university in Lausanne, Switzerland. The Commelec project is part of the SNSF\u2019s National Research Programme \u201cEnergy Turnaround\u201d (NRP 70).\n\nMo", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62595721", "url": "https://en.wikipedia.org/wiki/Papercast%20Limited", "title": "Papercast Limited", "text": "Papercast Limited is a real-time passenger information technology for bus stops that uses solar powered e-paper displays. It displays real-time bus arrival information, bus timetables and other public transportation information.\n\nHistory \nPapercast was founded in 2016. Papercast wirelessly delivers passenger information at bus stops to solar powered e-paper displays. To improve the accuracy of bus arrival predictions, the displays are controlled by a cloud-based management system with instant GT", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62824376", "url": "https://en.wikipedia.org/wiki/Persistent%20Chat", "title": "Persistent Chat", "text": "Persistent Chat is a messaging concept for group chat software that consist of standing, topic-based chatrooms with an emphasis on real-time messaging, that preserve conversation history over time which is visible to both current and future participants. This form of messaging was adopted by many organisations in regulated industries, to ensure compliance and was popular with the major financial centres around the world.\n\nHistory \nThe Persistent Chat feature was first introduced in Microsoft Lyn", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "62844726", "url": "https://en.wikipedia.org/wiki/Bomber%20Crew", "title": "Bomber Crew", "text": "Bomber Crew is a real-time strategy video game developed by Runner Duck and published by Curve Digital. It was released on Microsoft Windows, OS X and Linux on 19 October 2017. It was released for PlayStation 4, Xbox One and Nintendo Switch on July 10, 2018. A sequel, Space Crew, was released in 2020.\n\nGameplay\nThe player gives commands to their crew to take them through a campaign of bombing missions set in World War II. New upgrades and equipment become unlocked, and crew members can gain new ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63022233", "url": "https://en.wikipedia.org/wiki/War%20Dragons", "title": "War Dragons", "text": "War Dragons is a real-time strategy mobile game, developed and published by Pocket Gems.\n\nGameplay\nWar Dragons is a real-time strategy game. The player can collect hundreds of dragons and build a dragon army to destroy enemy fortress while protecting his/her fortress with towers such as ballista, cannons, flak turrets, and archers.\n\nDevelopment\nWar Dragons was developed and published by San Francisco-based company Pocket Gems. It was in developed for two years, based on their proprietary game en", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63071252", "url": "https://en.wikipedia.org/wiki/Reverie%20%28video%20game%29", "title": "Reverie (video game)", "text": "Reverie is an action-adventure video game developed by New Zealand-based indie studio Rainbite, first released on 5 April 2018.\n\nGameplay \nReverie features open world exploration, real-time combat, dungeons and boss fights inspired by New Zealand's history, culture and environment, showing influences from classic SNES games including EarthBound and The Legend of Zelda: A Link to the Past.\n\nDevelopment \n\nIn February 2019, Reverie: Sweet As Edition released on Nintendo Switch with added features. ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63157003", "url": "https://en.wikipedia.org/wiki/Primerdesign", "title": "Primerdesign", "text": "Primerdesign is a UK-based biotechnology company that designs and sells products for quantitative real-time polymerase chain reaction (qPCR).\n\nHistory \nPrimerdesign was founded in 2005 by Dr Jim Wicks, Dr Rob Powell and Professor Tom Brown within the University of Southampton to focus on PCR and DNA chemistry. The company has grown since then and its products have been used in over 100 countries. The company has a portfolio of over 400 qPCR detection kits and over 9000 research targets.\n\nSwine f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63208674", "url": "https://en.wikipedia.org/wiki/Giant%20Bear", "title": "Giant Bear", "text": "Giant Bear (, Nanurluk) is a 2019 Canadian animated short film, directed by Daniel Paige, Neil Christopher and Daniel Gies. The film depicts an Inuk hunter confronting a polar bear.\n\nAlthough made by non-Inuit filmmakers, the film was carefully reviewed by a committee of Inuit historians and cultural figures to ensure that it depicted the story accurately and respectfully. The film was created with a mixture of traditional two-dimensional and three-dimensional animation techniques with real-time", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63276352", "url": "https://en.wikipedia.org/wiki/The%20Longing%20%28video%20game%29", "title": "The Longing (video game)", "text": "The Longing is an indie point-and-click adventure idle video game, developed by Studio Seufz. Initially released for Microsoft Windows, macOS, and Linux on March 5, 2020, and later for Nintendo Switch on April 14, 2021, the game follows a creature called a Shade, who waits 400 days to awaken a sleeping king. During this wait, the Shade must find ways to pass the time. The game is notable in that the in-game four hundred days pass in real-time, regardless of whether or not the player opens the ga", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63354368", "url": "https://en.wikipedia.org/wiki/Command%20%26%20Conquer%20Remastered%20Collection", "title": "Command & Conquer Remastered Collection", "text": "Command & Conquer: Remastered Collection is a remaster of the first two titles in the real-time strategy video game series Command & Conquer with rebuilt graphics and sound improvements, and bonus materials. It was developed by Petroglyph Games with Lemon Sky Studios, and published by Electronic Arts. It was released on June 5, 2020, for Origin and Steam. A physical edition intended for collectors was released by Limited Run Games.\n\nThe compilation includes remasters of the first two Command & C", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63416009", "url": "https://en.wikipedia.org/wiki/Worldometer", "title": "Worldometer", "text": "Worldometer, formerly Worldometers, is a reference website that provides counters and real-time statistics for diverse topics. It is owned and operated by a data company Dadax which generates revenue through online advertising. It is available in 31 languages and covers subjects such as government, world population, economics, society, media, environment, food and water, energy, and health.\n\nIn 2020, the website attained greater popularity due to hosting statistics relating to the COVID-19 pande", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63426347", "url": "https://en.wikipedia.org/wiki/Let%27s%20Love%20%28Suho%20song%29", "title": "Let's Love (Suho song)", "text": "\"Let's Love\" is a song recorded by South Korean singer Suho. It was released on March 30, 2020 by SM Entertainment as the lead single of his debut extended play, Self-Portrait (2020).\n\nComposition \n\"Let's Love\" was described as a modern rock song with a warm atmosphere. The lyrics convey a message about mustering the courage to express love, even if you feel clumsy or inadequate.\n\nCommercial performance \nUpon release, \"Let's Love\" topped the real-time charts of various major Korean music platfor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63521950", "url": "https://en.wikipedia.org/wiki/Homeworld%203", "title": "Homeworld 3", "text": "Homeworld 3 is an upcoming real-time strategy video game being developed by Blackbird Interactive and published by Gearbox Software. The game is scheduled to be released in 4th Quarter 2022.\n\nDevelopment \nThe initial launch of the Homeworld series dates back to 1999. Following THQ's purchase of intellectual property rights to the franchise, further developments were halted after the release of Homeworld 2 in 2003. The franchise was dormant until 2013 when its rights were bought from THQ by Gearb", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63569253", "url": "https://en.wikipedia.org/wiki/15.ai", "title": "15.ai", "text": "15.ai is a non-commercial freeware artificial intelligence web application that generates natural emotive high-fidelity text-to-speech voices from an assortment of fictional characters from a variety of media sources. Developed by an anonymous MIT researcher under the eponymous pseudonym 15, the project uses a combination of audio synthesis algorithms, speech synthesis deep neural networks, and sentiment analysis models to generate and serve emotive character voices faster than real-time, even t", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63572796", "url": "https://en.wikipedia.org/wiki/Deep%20learning%20super%20sampling", "title": "Deep learning super sampling", "text": "Deep learning super sampling (DLSS) is a family of real-time deep learning image enhancement and upscaling technologies developed by Nvidia that are exclusive to its RTX line of graphics processors, and available in select video games. The goal of these technologies is to allow the majority of the graphics pipeline to run at a lower resolution for increased performance, and then infer a higher resolution image from this that contains the same level of detail as if the image had been rendered at ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63602985", "url": "https://en.wikipedia.org/wiki/Funco", "title": "Funco", "text": "Funco, Funko, or Funkos may refer to:\n\n Funco, the parent company of American video game retailer FuncoLand\n Funco (architecture), a style of house found in Cape Verde\n Funko, an American toy company\n FunkOS, a real-time operating system", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63630418", "url": "https://en.wikipedia.org/wiki/Apollo%20in%20Real%20Time", "title": "Apollo in Real Time", "text": "Apollo in Real Time is an interactive, multimedia website that presents the Apollo 11, Apollo 13, and Apollo 17 missions as they happened at the time by compiling and synchronizing thousands of hours of audio and video recordings, transcripts, and photographs. Apollo historian Ben Feist created the Apollo 11 and Apollo 17 real-time sites, and was a NASA contractor by the time he created the Apollo 13 real-time site. Air & Space magazine describes the Apollo 13 site as \"one of the most ambitious ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63694803", "url": "https://en.wikipedia.org/wiki/Master%20mix%20%28PCR%29", "title": "Master mix (PCR)", "text": "A master mix is a mixture containing precursors and enzymes used as an ingredient in RT-PCR techniques in molecular biology. Such mixtures contain a mixture dNTPs (required as a substrate for the building of new DNA strands), MgCl2, Taq polymerase (an enzyme required to building new DNA strands), a pH buffer and come mixed in nuclease-free water.\n\nMaster mixes for real-time PCR include a fluorescent compound (frequently SYBR green), and the choice of mix also influence test sensitivity and consi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63699885", "url": "https://en.wikipedia.org/wiki/Characters%20in%20the%20Animal%20Crossing%20series", "title": "Characters in the Animal Crossing series", "text": "The life simulation video game series Animal Crossing, created by Katsuya Eguchi and first released in 2001 by Nintendo, features an assortment of recurring characters. Titles in the series follow the player character as they live in a village populated by anthropomorphic animals, with gameplay that proceeds in a nonlinear fashion and in-game events that occur in real-time. As of Animal Crossing: New Horizons, the most recent release in the series, there are over 400 animal characters that can p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63734774", "url": "https://en.wikipedia.org/wiki/Wikipedia%20coverage%20of%20the%20COVID-19%20pandemic", "title": "Wikipedia coverage of the COVID-19 pandemic", "text": "The COVID-19 pandemic is covered in Wikipedia extensively, in real-time, and across many languages. This coverage extends to many detailed articles about various aspects of the topic itself, as well as many existing articles being amended to take account of the pandemic's effect on them. Wikipedia and other Wikimedia projects' coverage of the pandemic \u2013 and how the volunteer editing community achieved that coverage \u2013 received widespread media attention for its comprehensiveness, reliability, and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63816009", "url": "https://en.wikipedia.org/wiki/Beyond%20Live", "title": "Beyond Live", "text": "Beyond Live (commonly stylized as Beyond LIVE) is an online live concert streaming service and concert series first established in April 2020 by South Korean entertainment company SM Entertainment in partnership with Naver. It is the first paid concert streaming service in the world that delivers full-scaled live online concert aided by technology such as augmented reality and with real-time interactions between artists and live audience enabled. On its establishment, the platform has been regar", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63873250", "url": "https://en.wikipedia.org/wiki/Over%20ground%20worker", "title": "Over ground worker", "text": "Over ground workers (OGWs) are people who help militants, or terrorists, with logistical support, cash, shelter, and other infrastructure with which armed groups and insurgency movements such as Hizbul Mujaheddin and Jaish-e-Muhammad in Jammu and Kashmir can operate. OGWs play a vital role in militant attacks, providing real-time information and support to the tactical elements. Over ground workers have diversified into other roles such as stone-pelting, mob-rioting, ideological support, radical", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "63963949", "url": "https://en.wikipedia.org/wiki/Disintegration%20%28video%20game%29", "title": "Disintegration (video game)", "text": "Disintegration is a first-person shooter developed by V1 Interactive and published by Private Division. The game also features elements from the real-time strategy genre. It was released in June 2020 for Microsoft Windows, PlayStation 4 and Xbox One. It was also the only game released by V1 Interactive before their shutdown in March 2021.\n\nGameplay\nThe game was played from a first-person perspective. The player assumes control of Romer Shoal, a Gravcycle pilot. The Gravcycle could hover above th", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64010348", "url": "https://en.wikipedia.org/wiki/Fluid%20Framework", "title": "Fluid Framework", "text": "Fluid is a free and open source computer platform for real-time collaboration across applications. Microsoft first demonstrated the software at its Build conference in May 2019 as a framework that would allow for real-time collaboration between users of its Office on the web online office suite. It replaces the concept of a \"document\" with a cloud address for real-time collaboration and sharing of content forms including text and tables. Microsoft expects to implement it in its Teams chat softw", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64107267", "url": "https://en.wikipedia.org/wiki/Revox%20B215", "title": "Revox B215", "text": "The Revox B215 is a cassette deck manufactured by Studer from 1985 until around 1990. A professional version with different control layout and audio path electronics was manufactured concurrently as the Studer A721. A later improved version was marketed as the Revox B215S. Because it was expensive compared to other consumer models and had exceptionally good mechanical performance and durability, the B215 was used primarily by professional customers\u2014radio stations, recording studios and real-time", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64142309", "url": "https://en.wikipedia.org/wiki/Figma%20%28software%29", "title": "Figma (software)", "text": "Figma is a vector graphics editor and prototyping tool which is primarily web-based, with additional offline features enabled by desktop applications for macOS and Windows. The Figma mobile app for Android and iOS allow viewing and interacting with Figma prototypes in real-time on mobile devices. The feature set of Figma focuses on use in user interface and user experience design, with an emphasis on real-time collaboration.\n\nHistory \nDylan Field and Evan Wallace began working on Figma in 2012 w", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64189137", "url": "https://en.wikipedia.org/wiki/Klaus-Dieter%20Liss", "title": "Klaus-Dieter Liss", "text": "Klaus-Dieter Liss, , (born 10 June 1962) is a German-Australian physicist working in the field of experimental X-ray and neutron scattering and their applications. Liss research is on in-situ and real-time experiments with synchrotron and neutron radiation for the characterization of thermo-mechanical processes in metals; the investigation of phase transformations; the evolution of microstructures; and the kinetics of defects. His experimental achievements are the development of the Materials os", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64209940", "url": "https://en.wikipedia.org/wiki/The%20Waylanders", "title": "The Waylanders", "text": "The Waylanders is a role-playing video game developed by Spanish team Gato Studio. It was released in early access for Microsoft Windows on June 16, 2020, with the full version of the game released on February 2, 2022. The game is played from a third-person perspective that can be shifted to a top-down perspective.\n\nGameplay\nThe Waylanders is a role-playing video game played from a third-person perspective and isometric camera view. It is a real-time combat game with tactical pause option. The ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64306783", "url": "https://en.wikipedia.org/wiki/Perry%20O.%20Crawford%20Jr.", "title": "Perry O. Crawford Jr.", "text": "Perry Orson Crawford, Jr. (August 9, 1917 \u2013 December 13, 2006) was an American computer pioneer credited as being the first to fully realize and promote the value of digital, as opposed to analog, computers for real-time applications. This was in 1945 while advising Jay Forrester in developing flight simulators and anti-aircraft fire control devices during World War II, before practical digital computers had been produced. His similar foresight on related issues led to his heading twelve years", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64331310", "url": "https://en.wikipedia.org/wiki/Coralogix", "title": "Coralogix", "text": "Coralogix is a SaaS platform that analyzes log, metric, and security data in real-time and uses machine learning to streamline delivery and maintenance processes for software providers. It was founded in 2014 by Guy Kroupp, Ariel Assaraf, and Lior Redlus and has its headquarters in California, United States.\n\nHistory \nCoralogix was founded in 2014 by Ariel Assaraf, Guy Kroupp, and Lior Redlus in Tel Aviv, Israel. Later, Kroupp exited the company and Yoni Farin joined as a co-founder in 2017. Mat", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64376520", "url": "https://en.wikipedia.org/wiki/1453%E2%80%931821%3A%20The%20Coming%20of%20Liberation", "title": "1453\u20131821: The Coming of Liberation", "text": "1453\u20131821: The Coming of Liberation () is a real-time strategy video game developed by Greek game developer S.D.S. Game Studios and published by Centric Multimedia. Released in 2008 for Microsoft Windows, it is the first Greek real-time strategy video game to receive a physical retail release.\n\nThe game is set during the Greek War of Independence waged by Greek revolutionaries against the Ottoman Empire between 1821 and 1830. Players assume command over the Greek forces aiming to liberate 20 Ott", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64377372", "url": "https://en.wikipedia.org/wiki/Operation%20Zenith", "title": "Operation Zenith", "text": "Operation Zenith was a demonstration of UAV (commonly known as drones) and ATM integration held at Manchester Airport on November 21, 2018. The event aimed to illustrate that \"drones can be flown safely alongside manned aircraft in controlled airspace\". A total of eight scenarios were demonstrated in real-time, including On Airfield Delivery, Beyond Visual Line-Of-Sight (BVLOS) Infrastructure Inspection, and Commercial VLOS Operations.\n\nThe event was coordinated by Air Navigation Service Provide", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64435256", "url": "https://en.wikipedia.org/wiki/Collabora%20Online", "title": "Collabora Online", "text": "Collabora Online is an open source online office suite that can be integrated into any web application, it is developed by Collabora Productivity, a division of Collabora. Collabora Online has LibreOffice at its core, it allows collaborative real-time editing of word processing documents, spreadsheets, presentations and vector graphics.\n\nCollabora are a commercial partner with LibreOffice's parent organisation The Document Foundation (TDF), the TDF state that a majority of the LibreOffice softwa", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64435396", "url": "https://en.wikipedia.org/wiki/Worms%20Rumble", "title": "Worms Rumble", "text": "Worms Rumble is a 2020 action game developed and published by Team17. As a spin-off of the long-running Worms series, the game was released for Microsoft Windows, PlayStation 4 and PlayStation 5 in December 2020 and for the Nintendo Switch, Xbox One and Xbox Series X/S in June 2021.\n\nGameplay\nUnlike its predecessors, Worms Rumble is a 2.5D real-time action game. In Rumble, players assume control of an anthropomorphic worm and compete against other players in modes including Death Match, Last Wor", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64471362", "url": "https://en.wikipedia.org/wiki/Threat%20intelligence", "title": "Threat intelligence", "text": "Threat intelligence is the \"cyclical practice\" of planning, collecting, processing, analyzing and disseminating information that poses a threat to applications and systems. Threat intelligence collects information in real-time to showcase the threat landscape for identifying threats to a computer, application or network. This information is gathered from a number of resources and compiled into a single database enabling visibility into vulnerabilities and exploits actively being used on the inte", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64589556", "url": "https://en.wikipedia.org/wiki/Iron%20Harvest", "title": "Iron Harvest", "text": "Iron Harvest is a dieselpunk mecha real-time strategy video game developed by King Art Games and published by Deep Silver. The game was released for Windows on September 1, 2020. PlayStation 5 and Xbox Series X/S on October 26, 2021.\n\nGameplay \nThe player can control mecha, infantry and hero units. The game is planned to feature over twenty missions and separate single-player storylines for each of the main three factions. The game will have multiplayer and skirmish modes.\n\nSetting \nThe game is ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64668653", "url": "https://en.wikipedia.org/wiki/OpenCell", "title": "OpenCell", "text": "OpenCell is a laboratory in London.\n\nLaboratories\nOpenCell is primarily used for work related to biochemical and biomolecular activities such as DNA sequencing. It opened to the public in June 2018. The space uses shipping containers to house biotechnology laboratories. The laboratories contain biotechnology equipment including real-time PCR instruments, Plate reader, Opentrons liquid handling robots, flow hoods, non-ducted fume cupboards, -80, -20 and 4C storage, incubators (static/shaking), c", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64772926", "url": "https://en.wikipedia.org/wiki/DRE-i%20with%20enhanced%20privacy", "title": "DRE-i with enhanced privacy", "text": "Direct Recording Electronic with Integrity and Enforced Privacy (DRE-ip) is an End-to-End (E2E) verifiable e-voting system without involving any tallying authorities, proposed by Siamak Shahandashti and Feng Hao in 2016. It improves a previous DRE-i system by using a real-time computation strategy and providng enhanced privacy. A touch-screen based prototype of the system was trialed in the Gateshead Civic Centre polling station on 2 May 2019 during the 2019 United Kingdom local elections with p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "64916891", "url": "https://en.wikipedia.org/wiki/Total%20War%20Saga%3A%20Troy", "title": "Total War Saga: Troy", "text": "Total War Saga: Troy is a 2020 turn-based strategy video game developed by Creative Assembly Sofia and published by Sega. The game was released for Windows on 13 August 2020 as the second installment in the Total War Saga subseries, succeeding Thrones of Britannia (2018). The game received generally positive reviews upon release.\n\nGameplay\nLike its predecessors, Total War Saga: Troy is a turn-based strategy game with real-time tactics elements. The game is set in the Bronze Age, during the Troja", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65030364", "url": "https://en.wikipedia.org/wiki/Starborne%3A%20Sovereign%20Space", "title": "Starborne: Sovereign Space", "text": "Starborne: Sovereign Space is a massively multiplayer, online real-time strategy game developed by Icelandic software company Solid Clouds. In 2013 Solid Clouds began pre production of Starborne with full production starting in 2016 and the first external Alpha that same year. It is currently in Beta. The game is set in a futuristic science fiction setting and the writing fits the genre of a space opera.\n\nStarborne received favorable coverage by video game press for its sixth and seventh alpha ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65288265", "url": "https://en.wikipedia.org/wiki/Smart%20mobility", "title": "Smart mobility", "text": "Smart mobility refers to many modes of transport.\n\nSome smart mobility services include:\n public transport (with real-time timetabling and route optimization, seamless travel and digital ticketing)\n car sharing schemes\n Mobility as a service (MaaS)\n Mobility on Demand (MOD)\n autonomous transport systems\n smart mobility services in freight and logistics\n drones and low-altitude aerial mobility\n\nOverview\n\nMobility-as-a-Service\nMobility-as-a-Service enables multimodal mobility by providing user-cen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65315061", "url": "https://en.wikipedia.org/wiki/Esther%20Rodriguez-Villegas", "title": "Esther Rodriguez-Villegas", "text": "Esther Rodriguez-Villegas (born in Sanl\u00facar de Barrameda, C\u00e1diz) is a Spanish engineer, inventor and Professor of Low Power Electronics at Imperial College London. Rodriguez-Villegas develops lightweight, low-power electronic devices for real-time monitoring of physiological signals. She was awarded the 2020 Royal Academy of Engineering Silver Medal for her work on wearable medical devices. In 2020 she was elected Fellow of the Royal Academy of Engineering.\n\nEarly life and education \nRodriguez-", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65344411", "url": "https://en.wikipedia.org/wiki/Interactive%20Application%20System", "title": "Interactive Application System", "text": "Interactive Application System (IAS) was a DEC operating system for the PDP-11. It was a fork from RSX-11D.\n\nThe last major release, Version 3.0, began distribution late 1979; the final version, 3.4, came out May 1990.\n\nOverview\nDEC's RSX-11A and C were paper tape based, B had limited disk support, \"D\" was for disk, and the \"M\" designation was for \"small Memory \nrequirement\" /later \"Multi-user\" (with RSX-11M Plus being a followup). IAS was designed to a mix of \"concurrent timesharing, real-time ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65375485", "url": "https://en.wikipedia.org/wiki/Across%20the%20Rhine", "title": "Across the Rhine", "text": "Across the Rhine is a 1995 computer wargame developed by MPS Labs and published by MicroProse.\n\nGameplay\nAcross the Rhine is a computer wargame with real-time gameplay. It simulates the clash between American and Nazi German forces during World War II.\n\nReception\n\nIn Computer Games Strategy Plus, Mike Robel found Across the Rhine a flawed but interest title, with a \"very steep learning curve\". Writing for Computer Game Review, Frank Snyder called the game' \"an impressive tank simulator that will", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65406345", "url": "https://en.wikipedia.org/wiki/Deadline%20%281996%20video%20game%29", "title": "Deadline (1996 video game)", "text": "Deadline is a 1996 strategy video game developed by Millennium Interactive and published by Vic Tokai.\n\nGameplay \nDeadline is a real-time tactics game, in which the player navigates a squad of soldiers through discrete missions. The game combines real-time gameplay with pre-planning stages. Its gameplay style has been compared to that of Jagged Alliance and X-COM: UFO Defense.\n\nReception \n\nWilliam R. Trotter of PC Gamer US was unimpressed with Deadline. He concluded, \"Despite its interesting con", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65418025", "url": "https://en.wikipedia.org/wiki/The%20History%20Channel%3A%20Great%20Battles%20of%20Rome", "title": "The History Channel: Great Battles of Rome", "text": "The History Channel: Great Battles of Rome is a historical real-time tactics video game developed by Slitherine, released on 8 June 2007 by Black Bean Games and the History Channel for Microsoft Windows, PlayStation 2, and PSP. The game garnered mostly mixed reviews.\n\nOverview \nGreat Battles of Rome sees the player take control of the army of the Roman Empire in the first half of the game. The player engages in a number of set battles against a range of enemies from Etruscans, Greeks, Gauls, and", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65452364", "url": "https://en.wikipedia.org/wiki/Operation%20Keystone%20%28video%20game%29", "title": "Operation Keystone (video game)", "text": "Operation Keystone is a 1986 video game published by Overt Strategic Simulations, in which players command the Gato class submarine USS Tang against the Japanese Navy.\n\nReviewing the game for Computer Gaming World, Mark Bausman said: \"This reviewer found Operation Keystone to be an excellent game that maintains a good feel of real-time combat activity.\"\n\nReferences\n\n1986 video games", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65514314", "url": "https://en.wikipedia.org/wiki/Thoth%20%28operating%20system%29", "title": "Thoth (operating system)", "text": "Thoth is a real-time, message passing operating system (OS) developed at the University of Waterloo in Waterloo, Ontario Canada.\n\nHistory\nThoth was developed at the University of Waterloo in Waterloo, Ontario, Canada. The curriculum at Waterloo includes a Real Time Operating Systems course and an associated \"Train lab\", where students must develop a real-time operating system (RTOS) to control a model track with multiple trains.\n\nIn 1972, the B programming language, a derivative of BCPL, was bro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65517469", "url": "https://en.wikipedia.org/wiki/Tables%20%28Google%29", "title": "Tables (Google)", "text": "Tables is a collaborative database program developed out of Google's Area 120 incubator. Tables is available as a web application. The app allows users to collaborate in real-time to track work more efficiently using automation.\n\nHistory \nTables originated as an experiment within Google's Area 120 product incubator, and launched to a public beta in the United States on September 22, 2020. It was first released as a test for a limited number of early testers on March 5, 2020, and then expanded to", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65530861", "url": "https://en.wikipedia.org/wiki/Yaybahar", "title": "Yaybahar", "text": "Yaybahar is an acoustic musical instrument invented by a Turkish musician Gorkem Sen (Turkish: G\u00f6rkem \u015een), who describes it as a \"real-time acoustic string synthesizer.\" In its online review Classic FM called yaybahar a \"genius monstrosity\" that makes \"thoroughly bizarre, terrifying and delightful noises.\" Journal of Music describes the sound of yaybahar as \"completely enthralling.\"\n\nEtymology \nThe name yaybahar (pronounced /jajba'har/) has Turkish origin. It is a composite of two words: yay me", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65655938", "url": "https://en.wikipedia.org/wiki/Close%20Combat%3A%20Invasion%3A%20Normandy", "title": "Close Combat: Invasion: Normandy", "text": "Close Combat: Invasion: Normandy is a 2000 computer wargame developed by Atomic Games and published by Mattel Interactive. It is the fifth game in the Close Combat series.\n\nGameplay\nClose Combat: Invasion: Normandy is a computer wargame with real-time gameplay, which focuses on military conflict in World War II.\n\nDevelopment\nAtomic Games began working on Close Combat: Invasion: Normandy in early 2000, following the release of the fourth Close Combat title, Close Combat: Battle of the Bulge. The ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65698041", "url": "https://en.wikipedia.org/wiki/Downdetector", "title": "Downdetector", "text": "Downdetector is an online platform that provides users with real-time information about the status of various websites and services.\n\nThe information that is provided by the site is based upon user outage reports, which are collected from various sources, including the comment section of each website's page on Downdetector and Twitter. A map is also shown with the locations of the outage reports, and a list of cities with the corresponding number of reports is shown above the map. Downdetector i", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65720600", "url": "https://en.wikipedia.org/wiki/STM%20Kargu", "title": "STM Kargu", "text": "STM Kargu is a small portable rotary wing kamikaze drone produced in Turkey by STM\n(Savunma Teknolojileri M\u00fchendislik ve Ticaret A.\u015e.) that has been designed for asymmetric warfare or counter-insurgency. It can be carried by a single personnel in both autonomous and manual modes. KARGU can be effectively used against static or moving targets through its real-time image processing capabilities and machine learning algorithms embedded on the platform. The system consists of the rotary wing attack", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65753751", "url": "https://en.wikipedia.org/wiki/Padlet", "title": "Padlet", "text": "Padlet (formerly Wallwisher) is an educational technology startup company based in San Francisco, California and Singapore. Padlet provides a cloud-based software-as-a-service, hosting a real-time collaborative web platform in which users can upload, organize, and share content to virtual bulletin boards called \"padlets\".\n\nHistory\n\nOriginally named Wallwisher, the company was started in 2008 by Nitesh Goel and Pranav Piyush, two friends from India, and was incorporated in 2012 with funding from ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65808450", "url": "https://en.wikipedia.org/wiki/Darkhorn%3A%20Realm%20of%20the%20Warlords", "title": "Darkhorn: Realm of the Warlords", "text": "Darkhorn: Realm of the Warlords is a 1985 video game published by The Avalon Hill Game Company.\n\nGameplay\nDarkhorn: Realm of the Warlords is a game in which a battle between four major races is played out in a real-time, multi-player fantasy wargame.\n\nReception\nJohnny L. Wilson reviewed the game for Computer Gaming World, and stated that \"Darkhorn is a fast-paced strategy game which is ideal for getting the gang (or the family) together for an evening's entertainment. Challenge, depth, and inter", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65825530", "url": "https://en.wikipedia.org/wiki/The%20Nite%20Nite%20Show%20with%20Alvin%20Anthons", "title": "The Nite Nite Show with Alvin Anthons", "text": "The Nite Nite Show with Alvin Anthons is a Malaysian late-night talk show, which premiered in June 2020 during the COVID-19 pandemic. Hosted by Alvin Anthons, the show is broadcast live on Instagram amidst a studio set and a live DJ, featuring special guests that come on live via Instagram remotely and talk about the trending issues and participate in unique game segments, tailor-made for each guest, in real-time.\n\nSince its premier, The Nite Nite Show with Alvin Anthons, proved itself different", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "65978658", "url": "https://en.wikipedia.org/wiki/Masters%20of%20Anima", "title": "Masters of Anima", "text": "Masters of Anima is a real-time strategy video game developed by French studio Passtech Games.\n\nPlot \nThe plot follows Otto, a newly inducted member of a guild of magicians known as \"shapers\". The shapers' guild is attacked by the nefarious Zahr, who uses forbidden magics to kidnap the prime shaper, Ana. Otto must use the magic of the shapers to rescue Ana so that she can restore the world to its proper order.\n\nGameplay \nDuring gameplay, the player must control Otto and use his shaping magic to ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66125804", "url": "https://en.wikipedia.org/wiki/Dieter%20Hillert", "title": "Dieter Hillert", "text": "Dieter Gilberto Hillert () is a German-American biolinguist and cognitive scientist. His research focuses on the human language faculty as a cognitive and neurological system. He is known for work on the neurobiology of language, real-time sentence processing, and language evolution. He advocates comparative evolutionary studies of cognition, argues against tabula rasa models, and favors computational theories of mind.\n\nHillert was born in Wiesbaden-Sonnenberg (West Germany) in 1956, as second s", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66160326", "url": "https://en.wikipedia.org/wiki/Sahm%20Rule", "title": "Sahm Rule", "text": "In macroeconomics, the Sahm Rule, or Sahm Rule Recession Indicator, is a heuristic for determining when an economy has entered a recession. It is useful in real-time evaluation of the business cycle and relies on monthly unemployment data from the BLS. It is named eponymously after former Federal Reserve and Council of Economic Advisors economist Claudia Sahm.\n\nOrigination \nThe Sahm Rule originates from a chapter in The Brooking Institute's report on the use of fiscal policy to stabilize the eco", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66225357", "url": "https://en.wikipedia.org/wiki/PS-2000", "title": "PS-2000", "text": "The PS-2000 (\u041f\u0421-2000, , reconfigurable system) was a soviet supercomputer built in the 1980s.\n\nHistory\nIn the middle of the 1970s, it appeared, in the USSR, that the computing power available to process geophysics data, real-time space probes data, mineral prospecting, weather forecast, etc. was far to be sufficient, and that a new class of supercomputers, hundreds of times more powerful than the existing installed systems, was needed.\n\nThe development of \u041f\u0421-2000 began in 1978, as a joint projec", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66229619", "url": "https://en.wikipedia.org/wiki/Phantom%20Brigade", "title": "Phantom Brigade", "text": "Phantom Brigade is a turn-based tactics video game originally developed by Tetragon Works, but currently being developed by Brace Yourself Games after they acquired the indie studio. It released in early access on Epic Games Store on November 16, 2020, and is planned to release on Steam for its 1.0 release. The premise of the game is that the player commands a squad of mechs who obtained a secret prototype weapon that lets them see briefly into the future. The game plays out in a semi-real-time ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66229881", "url": "https://en.wikipedia.org/wiki/Applications%20of%20cybernetics%20in%20economics", "title": "Applications of cybernetics in economics", "text": "Economics is one domain in which cybernetics has had application and influence.\n\nIn the Soviet Union\n\nThe Great Soviet Encyclopaedia defines Economic cybernetics as a scientific field wherein cybernetic approaches are applied to economics. It facilitates a dialogue between microsystems and macrosystems.\n\nThe design of self-regulating control systems for a real-time planned economy was explored by economist Oskar Lange, cyberneticist Viktor Glushkov, and other Soviet cyberneticists during the 196", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66251789", "url": "https://en.wikipedia.org/wiki/Microsoft%20Holoportation", "title": "Microsoft Holoportation", "text": "Microsoft Holoportation is a project from Microsoft Research that demonstrates real-time holographic communications with the Microsoft Hololens. Holoportation is described as \"a new type of 3D capture technology that allows high-quality 3D models of people to be reconstructed, compressed and transmitted anywhere in the world in real time. This allows users wearing virtual or augmented reality displays to see, hear and interact with remote participants in 3D, almost as if they were present in the", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66274398", "url": "https://en.wikipedia.org/wiki/List%20of%20Inkigayo%20Chart%20winners%20%282021%29", "title": "List of Inkigayo Chart winners (2021)", "text": "The Inkigayo Chart is a music program record chart on Seoul Broadcasting System (SBS) that gives an award to the best-performing single of the week in South Korea. The chart measures digital performance in domestic online music services (55%), social media via YouTube views (30%), album sales (10%), network on-air time (10%), and advanced viewer votes (5%) in its ranking methodology. Beginning on January 24, Inkigayo implemented real-time voting via the Starpass mobile app accounting for an addi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66295925", "url": "https://en.wikipedia.org/wiki/JamKazam", "title": "JamKazam", "text": "JamKazam is proprietary networked music performance software that enables real-time rehearsing, jamming and performing with musicians at remote locations, overcoming latency - the time lapse that occurs while (compressed) audio streams travel to and from each musician.\n\nJamKazam is available in free and premium versions; the free version is peer-to-peer only, while the paid version offers the client-server model too, choosing whichever route is faster. It also allows streaming to social media, a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66303751", "url": "https://en.wikipedia.org/wiki/LoLa%20%28software%29", "title": "LoLa (software)", "text": "LoLa (low latency audio visual streaming system) is proprietary networked music performance software, first conceived in 2005, that enables real-time rehearsing and performing with musicians at remote locations, overcoming latency - the time lapse that occurs while (compressed) audio streams travel to and from each musician.\n\nUnlike similar systems, LoLa offers ultra-low latency video as well as audio streaming, and for this reason has extremely stringent hardware requirements (estimated cost ov", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66487943", "url": "https://en.wikipedia.org/wiki/Khin%20Khin%20Gyi", "title": "Khin Khin Gyi", "text": "Khin Khin Gyi () is a Burmese physician and government official who is currently serving as the director of Myanmar's Central Epidemiology Unit and Eradication Department. She is also a Ex-senior spokeswoman for the Ministry of Health and Sports.\n\nDuring the COVID-19 pandemic in Myanmar, Khin Khin Gyi collected and managed real-time information in order to keep the public informed about the Health Ministry's response to COVID-19. Residents of Myanmar were allowed to ask questions and state thei", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66591669", "url": "https://en.wikipedia.org/wiki/Hegemony%20%28video%20game%20series%29", "title": "Hegemony (video game series)", "text": "Hegemony is a series of computer strategy games developed by Canadian studio Longbow Games. The games combine historical grand strategy with real-time battles on a seamless map. The title references the concept of hegemony, i.e. the political, economic, or military predominance or control of one state over others.\n\nGameplay \nThe games revolve around empire management, conquests and resource management with a focus on the planning of military campaigns. The player can zoom in and out at any time ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66615148", "url": "https://en.wikipedia.org/wiki/Total%20War%3A%20Warhammer%20III", "title": "Total War: Warhammer III", "text": "Total War: Warhammer III is a turn-based strategy and real-time tactics video game developed by Creative Assembly and published by Sega. It is part of the Total War series, and the third to be set in Games Workshop's Warhammer Fantasy fictional universe (following 2016's Total War: Warhammer and 2017's Total War: Warhammer II). The game was announced on February 3, 2021 and was released on February 17, 2022.\n\nGameplay\nLike its predecessors, Total War: Warhammer III features turn-based strategy a", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66617586", "url": "https://en.wikipedia.org/wiki/National%20Avian%20Influenza%20Reference%20Laboratory", "title": "National Avian Influenza Reference Laboratory", "text": "The National Avian Influenza Reference Laboratory (NAIRL) is a BSL3 facility in Harbin, China.\n\nLeadership\n Hualan Chen\n\nHistory\nIn October 2019, scientists at the NAIRL reported on the development of a real-time RT-PCR test for the H5N6 virus.\n\nOn 2 February 2021, the NAIRL reported an outbreak in Yuanmingyuan Ruins Park, Haidian District, Beijing of a highly pathogenic H5N8 variant, which had a mortality rate of 1 in 5 Cygnus atratus (Anatidae) animals.\n\nReferences\n\nAvian influenza\nBiosafety l", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66687615", "url": "https://en.wikipedia.org/wiki/Evil%20Genius%202%3A%20World%20Domination", "title": "Evil Genius 2: World Domination", "text": "Evil Genius 2: World Domination is a real-time strategy and simulation video game developed and published by Rebellion Developments. As the sequel to Evil Genius (2004), which was developed by the now-defunct Elixir Studios, the game was released for Microsoft Windows on 30 March 2021, and PlayStation 4, PlayStation 5, Xbox One, and Xbox Series X/S on 30 November 2021.\n\nGameplay\nIn Evil Genius 2, the player is tasked to construct a criminal lair on a tropical island in order to build a doomsday ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66849722", "url": "https://en.wikipedia.org/wiki/List%20of%20COVID-19%20simulation%20models", "title": "List of COVID-19 simulation models", "text": "COVID-19 simulation models are mathematical infectious disease models for the spread of COVID-19. The list should not be confused with COVID-19 apps used mainly for digital contact tracing.\n\nNote that some of the applications listed are website-only models or simulators, and some of those rely on (or use) real-time data from other sources.\n\nModels with the most scientific backing \n\nThe sub-list contains simulators that are based on theoretical models. Due to the high number of pre-print research", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66854806", "url": "https://en.wikipedia.org/wiki/SATEC", "title": "SATEC", "text": "SATEC is a developer and manufacturer of specialty solutions for power measurement and power quality monitoring. The company's range of products includes traditional 3-phase power meters for real-time power measurement and data-logging, revenue meters (electricity meters), power quality analyzers and a software suite for energy management and billing.\n\nWith headquarters in Jerusalem, Israel and subsidiaries in Union, New Jersey and in PRC, SATEC is a privately owned company.\n\nHistory\nSATEC was f", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "66902580", "url": "https://en.wikipedia.org/wiki/Jane%20Liu", "title": "Jane Liu", "text": "Jane Win-Shih Liu is a Chinese-American computer scientist known for her work on real-time computing. She is a professor emerita at the University of Illinois at Urbana\u2013Champaign, Shun Hing Honorary Chair Professor of Computer Science at National Tsing Hua University, a distinguished visiting fellow of the Academia Sinica, and the former editor-in-chief of IEEE Transactions on Computers.\n\nEducation and career\nLiu majored in electrical engineering at Cleveland State University, and completed a do", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67006093", "url": "https://en.wikipedia.org/wiki/Flash%20%28Perfume%20song%29", "title": "Flash (Perfume song)", "text": "\"Flash\" (stylized as \"FLASH\") is a single by Perfume, released on March 16, 2016. It is the fifth single from their fifth studio album Cosmic Explorer. The single reached first place in the real-time ranking of iTunes with 200,000+ downloads. It is also the band's highest selling single since \"Love the World\".\n\nThe single was used as the theme song for the live action adapted film Chihayafuru.\n\nBackground \nThe single was sold digitally on iTunes, Recochoku, A! MUSIC and other music streaming sit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67045724", "url": "https://en.wikipedia.org/wiki/Karen%20Moxon", "title": "Karen Moxon", "text": "Karen Anne Moxon is a Professor of Bioengineering at University of California, Davis and a specialist in brain-machine-interfaces. She is best known for her neural engineering work, and is responsible for the first demonstration of a closed-loop, real-time brain machine interface system in rodent subjects, which was later translated to both non-human primates and humans with neurological disorders. She currently runs the Moxon Neurorobotics Laboratory at the University of California, Davis.\n\nBi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67087190", "url": "https://en.wikipedia.org/wiki/Hegemony%20III%3A%20Clash%20of%20the%20Ancients", "title": "Hegemony III: Clash of the Ancients", "text": "Hegemony III: Clash of the Ancients is the third installment in the Hegemony strategy video game series, which was developed by the Canadian studio Longbow Games and released for Windows on August 25, 2015.\n\nOverview\nHegemony III combines aspects of historical grand strategy games on a freely zoomable map with real-time tactical battles. In contrast to other strategy games, the player can zoom in and out at any time between a 2D strategy map and a 3D tactic map, while the game progresses complet", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67092375", "url": "https://en.wikipedia.org/wiki/Star%20Wars%3A%20Hunters", "title": "Star Wars: Hunters", "text": "Star Wars: Hunters is an upcoming competitive arena combat game being developed by Zynga for Nintendo Switch, iOS and Android, set to be released in 2022. The game is set after the fall of the Galactic Empire featuring a new set of characters including bounty hunters, rebellion heroes and imperial stormtroopers.\n\nGameplay\nThe game will connect players, in real-time, to fight in settings inspired by Star Wars locations. It will be team-based, fast-paced and visually stunning according to the offi", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67195844", "url": "https://en.wikipedia.org/wiki/Action%20Quest", "title": "Action Quest", "text": "Action Quest is a video game written by Jack Verson for the Atari 8-bit family. It was published in 1982 by his company, JV Software. Action Quest combines real-time action with puzzle solving as the player explores 30 rooms in an attempt to collect 20 treasures. Reviewers found the combination to be different from how puzzles in games\u2014such as graphic adventures\u2014worked at the time.\n\nGameplay\n\nThe player takes the role of a gun-carrying ghost exploring a world divided into 5 levels with 6 rooms o", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67304539", "url": "https://en.wikipedia.org/wiki/Tribal%20Rage", "title": "Tribal Rage", "text": "Tribal Rage is a real-time strategy game developed by Disintegrator for Microsoft Windows, released in 1998. It was published by TalonSoft in the USA and by Empire Interactive in Europe. The game was met with low to mediocre reviews.\n\nPlot\nThe game is set in California, Earth in the year 2030. War, famine and plague have forced the populace into six different tribes, each fighting for control of the post-apocalyptic wastelands that remain.\n\nGameplay\nThe game features six playable tribes:\n Bikers", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67390167", "url": "https://en.wikipedia.org/wiki/Hegemony%20Rome%3A%20The%20Rise%20of%20Caesar", "title": "Hegemony Rome: The Rise of Caesar", "text": "Hegemony Rome: The Rise of Caesar is a 2014 historical real-time strategy video game developed by Longbow Digital Arts and published by Kasedo Games for Microsoft Windows. Like its 2010 prequel Hegemony Gold: Wars of Ancient Greece, it combines tactical real-time battles and strategic empire management while focusing on logistics and planning of military campaigns. Hegemony Rome is set in the period of the Gallic Wars during the campaigns of Julius Caesar, proconsul of Gaul and Illyria.\n\nGamepla", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67499398", "url": "https://en.wikipedia.org/wiki/Health%20Code", "title": "Health Code", "text": "Health Code (Chinese name: \u5065\u5eb7\u7801) is an application used during COVID-19 in mainland China. It is used as an e-passport that reports the real-time health condition. An applicant provides information such as travel history, residence, and medical records. The application will then generate a QR code that identifies the individual's risk level as red, yellow, or green. As of April 2020, over 200 cities and 20 provinces employed health code supported by Alipay.\n\nHistory \nOn February 7, 2020, the COVI", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67586936", "url": "https://en.wikipedia.org/wiki/Porton%20Man", "title": "Porton Man", "text": "Porton Man is an animatronic, humanoid robot, commissioned by the Defence Science and Technology Laboratory (DSTL) and designed and built by i-bodi Technology, primarily to test the capability of protective clothing used by the UK armed forces.\n\nThe animatronic contains over 100 sensors throughout the \u2018body\u2019, enabling scientists to conduct research on the effectiveness of chemical, biological and radiological protective suits used by the UK armed forces in real time. Such real-time test have var", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67599140", "url": "https://en.wikipedia.org/wiki/Jose%20L.%20Jimenez%20%28chemist%29", "title": "Jose L. Jimenez (chemist)", "text": "Jos\u00e9 Luis Jim\u00e9nez-Palacios is a Spanish\u2013American chemist. As a professor of Chemistry at the University of Colorado Boulder, Jimenez contributed to the establishment of the Aerodyne Aerosol Mass Spectrometer, an instrument for real-time analysis of aerosol size and composition.\n\nDuring the COVID-19 pandemic, Jimenez was one of over 200 experts in multiple scientific fields who signed an open letter to the Centers for Disease Control and Prevention (CDC) and World Health Organization urging them ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67646766", "url": "https://en.wikipedia.org/wiki/Evercast", "title": "Evercast", "text": "Evercast is a privately held software as a service company that makes collaborative software primarily for the film, television, and other creative industry sectors. Its platform allows remotely located creative teams to collaborate in real-time on video production tasks, such as reviewing dailies, editing footage, sound mixing, animation, visual effects, and other components simultaneously. Its primary users are directors, editors, VFX artists, animators, and sound teams in the film, television", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67651346", "url": "https://en.wikipedia.org/wiki/Perfect%20All-Kill", "title": "Perfect All-Kill", "text": "Perfect All-Kill () or PAK is a music chart achievement in South Korea where a song simultaneously reaches number one on the real-time, daily, and weekly components of iChart, a music chart ranking aggregator operated by Instiz. The term \"perfect all-kill\" was first used when the song \"Nagging\" by IU featuring Seulong shot up to rank number 1 on all Korean music charts in June 2010. Although Instiz iChart was launched in March 2010, it does not list 2010 records. Aside from \"Nagging\", \"Good Day\"", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67717718", "url": "https://en.wikipedia.org/wiki/Project%20Starline", "title": "Project Starline", "text": "Project Starline is an experimental video communication method currently in development by Google that allows the user to see a 3D model of the person they are communicating with. Google announced the product at its 2021 I/O developer conference, saying that it will allow users to \"talk naturally, gesture and make eye contact\" by utilizing machine learning, spatial audio, computer vision and real-time compression to create the 3D effect without the user wearing typical virtual reality goggles. T", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67944520", "url": "https://en.wikipedia.org/wiki/Asynchronous%20multi-body%20framework", "title": "Asynchronous multi-body framework", "text": "Asynchronous multi-body framework (AMBF) is an open-source 3D versatile simulator for robots developed in April 2019. This multi-body framework provides a real-time dynamic simulation of multi-bodies such as robots, free bodies, and multi-link puzzles, paired with real-time haptic interaction with various input devices. The framework integrates a real surgeon master console, haptic or not, to control simulated robots in real-time. This feature results in the simulator being used in real-time tra", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "67975779", "url": "https://en.wikipedia.org/wiki/Red%20Solstice%202%3A%20Survivors", "title": "Red Solstice 2: Survivors", "text": "Red Solstice 2: Survivors is a real-time tactical video game developed by Ironward Games and published by 505 Games. It was released on 17 June 2021 for the PC platform. It is a direct sequel to the 2015 game The Red Solstice.\n\nGameplay\nThe game is described as a tactical shooter from an isometric perspective in cramped corridors. It features 15 main missions and over 20 side missions.\n\nReception\nRed Solstice 2: Survivors got mixed reviews upon release and currently scores 64% on Metacritic, bas", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68001234", "url": "https://en.wikipedia.org/wiki/Cossacks%20%28video%20games%20series%29", "title": "Cossacks (video games series)", "text": "Cossacks is a series of real-time strategy video games developed by Ukrainian video game developer GSC Game World for Microsoft Windows.\n\nGames\n\nCossacks: European Wars (2001)\n\nCossacks II: Napoleonic Wars (2005)\n\nCossacks 3 (2016)\n\nReception\n\nReferences\n\nExternal links\n\n Cossacks Official website\n\nReal-time strategy video games\nVideo game franchises introduced in 2001\nVideo games developed in Ukraine\nWindows games", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68018269", "url": "https://en.wikipedia.org/wiki/Wejo", "title": "Wejo", "text": "Wejo is British connected vehicle data start-up founded by entrepreneur Richard Barlow and is headquartered in Greater Manchester, England. Wejo collects in near-real-time 14.6 billion data points and analyzes 66 million journeys across a network of 10.7 million live vehicles from a supply base of over 50 million connected vehicles. The Company offers a trading platform for connected car data and analytics. Wejo serves customers worldwide and was founded in 2013.\n\nThe company, which is backed by", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68084959", "url": "https://en.wikipedia.org/wiki/Apache%20Pinot", "title": "Apache Pinot", "text": "Apache Pinot is a column-oriented, open-source, distributed data store written in Java. Pinot is designed to execute OLAP queries with low latency. It is suited in contexts where fast analytics, such as aggregations, are needed on immutable data, possibly, with real-time data ingestion. The name Pinot comes from the Pinot grape vines that are pressed into liquid that is used to produce a variety of different wines. The founders of the database chose the name as a metaphor for analyzing vast quan", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68101123", "url": "https://en.wikipedia.org/wiki/Velocity%20based%20training", "title": "Velocity based training", "text": "Velocity based training (VBT) is a modern approach to strength training and power training which utilises velocity tracking technology to provide rich objective data as a means to motivate and support real-time adjustments in an athlete's training plan. Typical strength and power programming and periodisation plans rely on the manipulation of reps, sets and loads as a means to calibrate training stressors in the pursuit of specific adaptations. Since the late 1990s, innovations in bar speed moni", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68212784", "url": "https://en.wikipedia.org/wiki/Michelle%20Hampson", "title": "Michelle Hampson", "text": "Michelle Hampson is an American neuroscientist who is an Associate Professor of Radiology and Biomedical Imaging at Yale University. She serves as director of real-time functional magnetic resonance imaging.\n\nEarly life and education \n\nHampson studied computer science at the University of Alberta. She moved to Boston University for her doctoral research, working on the computational modelling of neural networks. Hampson joined Yale University as a postdoctoral researcher. Her postdoctoral resear", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68350219", "url": "https://en.wikipedia.org/wiki/Raid%20Gaza%21", "title": "Raid Gaza!", "text": "Raid Gaza! is a short real-time strategy Flash game by Marcus Richert which satirizes the Israel\u2013Palestine conflict from a pro-Palestinian perspective. The game was uploaded to Newgrounds on December 30, 2009, three days into Israel's Operation Cast Lead, and was also released for Android phones through Google Play. It has been referred to as a newsgame and an \"editorial game\" by Ian Bogost, and as a \"journalistic game\" by Piotr Kubinski.\n\nGameplay\nThe game puts the player in the shoes of the Is", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68448895", "url": "https://en.wikipedia.org/wiki/Company%20of%20Heroes%203", "title": "Company of Heroes 3", "text": "Company of Heroes 3 is an upcoming real-time strategy game developed by Relic Entertainment and published by Sega for Microsoft Windows. The game is set in the Italian and North African theaters of World War II, and features new mechanics and modes. As the sequel to Company of Heroes 2, the game is set to be released in late 2022.\n\nGameplay \nIn Company of Heroes 3, the players take the role of Allied Forces during their invasion of North Africa and Italy.\n\nThe game has features new to the series", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68459230", "url": "https://en.wikipedia.org/wiki/Company%20of%20Heroes", "title": "Company of Heroes", "text": "Company of Heroes is a real-time strategy video game series developed by Relic Entertainment. The series is set during World War II.\n\nGames\n\nCompany of Heroes \n\nThe first game in the series was released on September 12, 2006 in North America, and September 29, 2006 in Europe. It was ported to iOS and released for iPad on February 13, 2020.\n\nCompany of Heroes: Opposing Fronts\n\nThe first stand-alone expansion pack to Company of Heroes, it was released September 25, 2007 in the US and September 28 ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68648159", "url": "https://en.wikipedia.org/wiki/Dark%20Planet%3A%20Battle%20for%20Natrolis", "title": "Dark Planet: Battle for Natrolis", "text": "Dark Planet: Battle for Natrolis is a real-time strategy video game developed by Creative Edge Software and published by Ubisoft for Microsoft Windows in 2002.\n\nReception\n\nThe game received \"mixed\" reviews according to the review aggregation website Metacritic.\n\nReferences\n\nExternal links\n \n\n2002 video games\nCreative Edge Software games\nReal-time strategy video games\nUbisoft games\nVideo games developed in the United Kingdom\nWindows games\nWindows-only games", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68749377", "url": "https://en.wikipedia.org/wiki/Stronghold%3A%20Warlords", "title": "Stronghold: Warlords", "text": "Stronghold: Warlords is a real-time strategy game released in March 9, 2021, developed and published by Firefly Studios. Unlike the previous entries of the Stronghold series, which were focused on the Middle Ages, Stronghold: Warlords is set in East Asia, with campaigns based on historical events of China, Vietnam, and Japan.\n\nGameplay \nOne of the key differences in gameplay compared to the previous games is the introduction of warlords, 8 neutral AI-controlled lords who each have different bene", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "68752152", "url": "https://en.wikipedia.org/wiki/Countdown%3A%20Inspiration4%20Mission%20to%20Space", "title": "Countdown: Inspiration4 Mission to Space", "text": "Countdown: Inspiration4 Mission to Space is a 2021 American five-part docuseries jointly produced by Netflix and Time Studios to chronicle, in near real-time, the successful SpaceX Inspiration4 orbital mission which occurred in September 2021.\n\nConception and announcement\nNetflix confirmed the production of the documentary series about the first all-civilian orbital mission on its Twitter account on 3 August 2021. Inspiration4's Twitter account added its own commentary to the Netflix announcemen", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69090434", "url": "https://en.wikipedia.org/wiki/Brigade%20Commander%20%28video%20game%29", "title": "Brigade Commander (video game)", "text": "Brigade Commander is a 1991 video game published by TTR Development.\n\nGameplay\nBrigade Commander is a real time tactical wargame in which the modern units are platoons represented on a hex map.\n\nReception\nLeah Wesolowski reviewed the game for Computer Gaming World, and stated that \"With much of the work taken out of wargaming, along with its real-time movement and its built-in editor, this game is truly a die-hard wargamer's dream. It is, in this reviewer's opinion, destined to become a classic ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69177714", "url": "https://en.wikipedia.org/wiki/Hilary%20R.%20Bollan", "title": "Hilary R. Bollan", "text": "Hilary Roberta Bollan CSci CChem FRSC MBE is a retired chemist who was a senior scientific officer at the British Ministry of Defence. Her work focused on safety on submarines.\n\nEarly life and education \nHilary Bollan (n\u00e9e Bell) was born in Bridgwater, Somerset. She obtained her PhD from Sheffield Hallam University under the direction of Professor Michael Cooke. For her thesis project, she investigated real-time monitoring method of ammonia, hydrazines, and nitrogen dioxide below exposure limit,", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69196954", "url": "https://en.wikipedia.org/wiki/System%2011", "title": "System 11", "text": "System 11 may refer to:\n\nComputing\n Namco System 11, the arcade system board\n X Window System (or X11), a windowing system\n\nOperating systems\n Android 11, the Google operating system\nPDP-11 operating systems\nRT-11, real-time operating system\nRSX-11\nDSM-11\nBATCH-11/DOS-11\nUltrix-11\n Linux operating system distributive versions:\n Debian 11, the Debian Project distributive \n Fedora 11, the RedHat-based distributive \n Mandriva 11, the Mandriva distributive \n Mint 11, the Ubuntu-based distributive \n ", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69387571", "url": "https://en.wikipedia.org/wiki/Blue%20Archive", "title": "Blue Archive", "text": "Blue Archive (Korean: \ube14\ub8e8 \uc544\uce74\uc774\ube0c /Japanese: \u30d6\u30eb\u30fc\u30a2\u30fc\u30ab\u30a4\u30d6) is a role-playing game developed by NAT Games, a subsidiary of South Korean game company Nexon. The game is free-to-play with gacha mechanics. It was first released for Android and IOS by Shanghai Yostar (CN/JP) in February 2021 and worldwide in November that year by Nexon. The combat system of Blue Archive features a 3D real-time environment with chibi characters.\n\nBlue Archive takes place in the academy city of Kivotos. The player takes the ro", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69496472", "url": "https://en.wikipedia.org/wiki/Occupant-centric%20building%20controls", "title": "Occupant-centric building controls", "text": "Occupant-centric building controls or Occupant-centric controls (OCC) is a control strategy for the indoor environment, that specifically focuses on meeting the current needs of building occupants while decreasing building energy consumption. OCC can be used to control lighting and appliances, but is most commonly used to control heating, ventilation, and air conditioning (HVAC). OCC use real-time data collected on indoor environmental conditions, occupant presence and occupant preferences as in", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69511660", "url": "https://en.wikipedia.org/wiki/Voompla", "title": "Voompla", "text": "Voompla is a Bollywood news brand launched in 2015. It covers real-time Bollywood and entertainment news.\n\nHistory \nVoompla was founded by Kaushambi Bakshi and Palash Bakshi. Voompla covers events and celebrities in Bollywood including red carpets, fashion shows, movie premiers, interviews and celebrity spottings. The news brand mainly caters to millennials and Gen Z audiences. It serves over \"500 million+ impressions\" across Facebook, Instagram, TikTok and Twitter. In 2021, Voompla had more tha", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69622076", "url": "https://en.wikipedia.org/wiki/List%20of%20Inkigayo%20Chart%20winners%20%282022%29", "title": "List of Inkigayo Chart winners (2022)", "text": "The Inkigayo Chart is a music program record chart on Seoul Broadcasting System (SBS) that gives an award to the best-performing single of the week in South Korea. The chart measures digital performance in domestic online music services (55%), social media via YouTube views (30%), album sales (10%), network on-air time (10%), advanced viewer votes (5%), and real-time voting via the Starpass mobile app (5%) in its ranking methodology.\n\nIn 2022, 3 singles ranked number one on the chart and 3 music", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69632821", "url": "https://en.wikipedia.org/wiki/YugabyteDB", "title": "YugabyteDB", "text": "YugabyteDB is a high-performance transactional distributed SQL database for cloud-native applications, developed by Yugabyte.\n\nHistory\nYugabyte was founded by ex-Facebook engineers Kannan Muthukkaruppan, Karthik Ranganathan, and Mikhail Bautin. At Facebook, they were part of the team that built and operated Cassandra and HBase. The team scaled the data platform for massive real-time workloads such as Facebook Messenger and Facebook's Operational Data Store from millions to billions of users in j", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69807046", "url": "https://en.wikipedia.org/wiki/Tianlian", "title": "Tianlian", "text": "Tianlian (Simplified Chinese: \u5929\u94fe, Traditional Chinese: \u5929\u93c8, English: Sky Chain) also known as CTDRS, is a Chinese data relay communication satellite constellation. The constellation serves to relay data from ground stations to spacecraft and rockets, most significantly China's crewed spaceflight program. The system currently consists of seven satellites in two generations, with the first satellite being launched in 2008.\n\nMission \nTianlian is used to provide real-time communications between orbit", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69983948", "url": "https://en.wikipedia.org/wiki/Unicob", "title": "Unicob", "text": "UniCOB simply written as Unicob is a Sri Lankan 4x4 Mine-Resistant Ambush Protected (MRAP) vehicle produced by the Sri Lanka Electrical and Mechanical Engineers.\n\nDesign\nThe Unicob is a 4x4 vehicle with a capacity for 9 including driver, gunner and commander designed to withstand mines and small arms fire. Units are equipped with an all direction surveillance system and field to command real-time communication and monitoring capability as well as a fully air conditioned crew cabin. As it is des", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "69994882", "url": "https://en.wikipedia.org/wiki/Stronghold%20%28series%29", "title": "Stronghold (series)", "text": "Stronghold is a series of real-time strategy video games developed by Firefly Studios and set in medieval times.\n\nGames\n\nStronghold\n\nStronghold: Crusader \n\nThe second installment, Stronghold: Crusader, was released in September 2002. The gameplay is similar to the first game, but with enhanced RTS elements and with all maps and missions set entirely in the Middle Ages in the Middle East. The focus was radically influenced by fortification and siege technologies developed during the Crusades. The", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "70035658", "url": "https://en.wikipedia.org/wiki/David%20G.%20Drubin", "title": "David G. Drubin", "text": "David G. Drubin is an American biologist, academic, and researcher. He is a Distinguished Professor of Cell and Developmental Biology at the University of California, Berkeley where he holds the Ernette Comby Chair in Microbiology.\n\nDrubin has published over 220 papers. His research spans the areas of cell biology, genetics, and biochemistry. The approaches employed for these studies include real-time imaging of live cells, genome editing, mathematical modeling, genetics, and biochemistry. His l", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "70069081", "url": "https://en.wikipedia.org/wiki/Robo%20Defense", "title": "Robo Defense", "text": "Robo Defense is a 2009 real-time strategy tower defense video game developed by Lupis Labs. The game was released on 16 September 2009 for Android. The game involves player player placing down turret towers to prevent enemies who come from one end of the map to reach the other end.\n\nGameplay \nRobo Defense is a real-time strategy tower defense game with five different maps. The game could be started by pressing the new game. The player would then be sent to the \"select difficulty\" screen, where p", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "70178011", "url": "https://en.wikipedia.org/wiki/Shahram%20Izadi", "title": "Shahram Izadi", "text": "Shahram Izadi is a computer scientist known for his work on Augmented Reality, Computer Vision, Artificial Intelligence and Human-Computer Interaction. He is currently at Google as a senior director of engineering where he is reported to be working on an augmented reality headset while also managing Google's ARCore software toolkit. \n\nAt Microsoft, Izadi was a director of an R&D team and worked on Microsoft Holoportation, a real-time holographic communication system. He appears in a YouTube vide", "_source_time": "2024-01-01T00:00:00Z"} -{"id": "70197311", "url": "https://en.wikipedia.org/wiki/SpyWarrior", "title": "SpyWarrior", "text": "SpyWarrior is an anti-virus program developed by Lithuanian cybersecurity company Kibernetinio Saugumo Sistemos. It's designed to protect computers from malware threats such as adware, browser hijackers, spyware, trojans, viruses, and ransomware. It's primarily designed for computers running Microsoft Windows.\n\nProduct \nSpyWarrior features include real-time protection, detection/removal of malicious threats (adware, browser hijackers, spyware, trojans, viruses, keyloggers, and other malware), as", "_source_time": "2024-01-01T00:00:00Z"} diff --git a/clickstream-ai-recommendation/content-file/content.schema.yml b/clickstream-ai-recommendation/content-file/content.schema.yml deleted file mode 100644 index d66e6495..00000000 --- a/clickstream-ai-recommendation/content-file/content.schema.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: "content" -schema_version: "1" -partial_schema: false -columns: -- name: "url" - type: "STRING" - tests: - - "not_null" -- name: "id" - type: "STRING" - tests: - - "not_null" -- name: "title" - type: "STRING" - tests: - - "not_null" -- name: "text" - type: "STRING" - tests: - - "not_null" -- name: "_source_time" - type: "TIMESTAMP" - tests: - - "not_null" diff --git a/clickstream-ai-recommendation/content-file/content.table.json b/clickstream-ai-recommendation/content-file/content.table.json deleted file mode 100644 index 66e37707..00000000 --- a/clickstream-ai-recommendation/content-file/content.table.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "flink" : { - "connector" : "filesystem", - "path" : "${DATA_PATH}/content.jsonl", - "format" : "flexible-json" - }, - "table" : { - "type" : "source", - "primary-key" : ["id"], - "timestamp" : "_source_time", - "watermark-millis" : "1" - } -} \ No newline at end of file diff --git a/clickstream-ai-recommendation/content-kafka/content.schema.yml b/clickstream-ai-recommendation/content-kafka/content.schema.yml deleted file mode 100644 index d66e6495..00000000 --- a/clickstream-ai-recommendation/content-kafka/content.schema.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: "content" -schema_version: "1" -partial_schema: false -columns: -- name: "url" - type: "STRING" - tests: - - "not_null" -- name: "id" - type: "STRING" - tests: - - "not_null" -- name: "title" - type: "STRING" - tests: - - "not_null" -- name: "text" - type: "STRING" - tests: - - "not_null" -- name: "_source_time" - type: "TIMESTAMP" - tests: - - "not_null" diff --git a/clickstream-ai-recommendation/content-kafka/content.table.json b/clickstream-ai-recommendation/content-kafka/content.table.json deleted file mode 100644 index 15f51606..00000000 --- a/clickstream-ai-recommendation/content-kafka/content.table.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": 1, - "flink" : { - "connector" : "kafka", - "topic": "content", - "properties.bootstrap.servers": "kafka:9092", - "properties.group.id": "content-group", - "scan.startup.mode": "earliest-offset", - "format" : "flexible-json" - }, - "table" : { - "type" : "source", - "primary-key" : ["id"], - "timestamp" : "_source_time", - "watermark-millis" : "1" - } -} \ No newline at end of file diff --git a/clickstream-ai-recommendation/content-kafka/content.table.sql b/clickstream-ai-recommendation/content-kafka/content.table.sql new file mode 100644 index 00000000..acc0184b --- /dev/null +++ b/clickstream-ai-recommendation/content-kafka/content.table.sql @@ -0,0 +1,16 @@ +CREATE TABLE Content ( + url STRING NOT NULL, + title STRING NOT NULL, + text STRING NOT NULL, + update_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp' + WATERMARK FOR update_time AS update_time - INTERVAL '0.001' SECOND +) WITH ( + 'connector' = 'kafka', + 'topic' = 'content', + 'properties.bootstrap.servers' = '${PROPERTIES_BOOTSTRAP_SERVERS}', + 'properties.group.id' = 'clickstream-group', + 'scan.startup.mode' = 'group-offsets', + 'properties.auto.offset.reset' = 'earliest', + 'format' = 'flexible-json', + + ); \ No newline at end of file diff --git a/clickstream-ai-recommendation/embedding/model_quantized.onnx b/clickstream-ai-recommendation/embedding/model_quantized.onnx deleted file mode 100644 index caba4d74e2eedc54f085f4cd58ca0f62306b5a18..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 22887653 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
=7Ua^=mCq2leB~ek)K1 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

5F!N8e_n-*d|%7IcGvSir7`0hO56Fwi!+_m`L= zJo-y8p)cw+YRV_wuCeG2)PWie`%BC+9=3@=<7}H~$2k_=fjTs{iHXX?HZf?NZ4>P{ z+vX0`foww)7y957v54vrqUTUW3lo=52@WI&%|<>7i|+7I*bAsbr*JgQ*fR#<--ySa zF>s!y@U1l2s0Hwmb-ZDDzEQtEHgPqD!eTn`2?oLC6AWHJ9msHqUNOdf6c$`Q3VQ){ zAcaN$iouRb!5Fy2h_iF?HQWT$f!Y#WQrxP=oG7k1-hh3w4I1(T>OhSOXGSC2?i9fz z%=1`)M38$hi9oaOqQEPWLH1o#$UxWbA%HpzPLyo(n5Tqs9v+dZCs_~sctDEcN%qAb z+$j3kIUe1CI*=>ziGb5aJ3esi3tCijM)a3`LE}842oeF*fhLeD+&3bK-1|oGxc7}2r~_FPIZlLueen~8x+Ddy+Y5=y0v|yD zb!hdDI^0KVVXJ+~7Fs6&>dM-ahBGJdAf-9LvC4O&@O1#NDDhU|p^cfFPX3yZ! zXpA7B4hJ5|n`+?*7w*uP)>}&vT#>HQ^A7t3B*E_HM*^tBV3nAm!mDNk)M4P2x;XTS zTA>8-LXBa3VTnG-b7c)*mk~f6NPuvtWOG3i5~#z#FWD{ltuG?U_Qlw;-}wpwk^({i zs+NH)0Ppi~ggybadG0j6PI34DpEtA{unAo=|H47ut&;v|Q&VjPen# z%>+;f(p=yB2&e<`5?1pS4ZRIV+^A&{1E?|#VkVjv>v2(BU?t(vX{n6KLdKm>C zbxkIKI`k5>S|Ff~1TtdlvI^9ZR32WL380Ro!lSj>I*ssdEObHq#isQroHIw>x6eGB zC2S8El@o)FJEQ4b%}>SlEaaP7xc|r|65o*w?7LD0Nz7ttsmd9 zbgm@=>aa;FaH_cl0n}lWqtyrjbtIM)%QIAbvF*#-gB(YPj{t57X>o76%F#WN4J za+6I&)HlXMQ!32Dwt-#ALNHK={P9f4BiATRs(xdjAszwP_Typ>abX2ylgQj z6HTQUyn<*@xFc2!N-bq$aa0#TMM)uZn`XSimrpnZ zP=|Aq2&luz881v_`alaszEq-$0O~NeDi^CVotTr2^3e0^m)O;pSHJL5Rs>Lo(N4KZ z6{v$)+IbvD<*iKF5^{}PiOO#(;U%vKpbn#ba+4}hhtWO~sKeM)!>AG?5&?DCdBYtE z0n}k<6#-`|(SkZ8uChpbj86}2Qo>|d1#j@ML4HHI)=tdVVm>oFgYfGI()1v?P`)t zR*%uk&}u?dk4YdUmK@`ul2js2jLAA7NyWotMeJhr62qjlFxaBvDfrU?J$uv-#37rW zDQpv1l|-1TA|XqXli(zZ68B%Sco(1!a7aEuTzPAq3k$v z>^7(&0*81P>?R@H&JaKyj-C)IprZfY5~PhXuIlGz4j&2dqHA|_7vL*Lx=9+_Xkp`= zw$21lhrciB4fH7R3qC*&rx5ermjLP*s>hX(&e{29~Zkj*B@K`jrwsm66dTAfqD62pnp1Krd;Vm)& z)R9CmI359Y(6YiUYHVAq0(H=gk*A3Y$CP8kc7RFQ3S*#-p$9S zeK_9`KpliRvUuX-A0$40AEE+v5DiGTAOuhc#US5(;A;r8MlM4%md-nbH&5RQpbkQR zS-c9=!IvgJVMI3>4v`>dR4$Rg6F35>gV0+RuL5-tdXqpMgxH1v6A@3mMMfQ3;0R-w z0P3(dL3|uUH^C=Tu^~o49oE($QNXYIZEcE;Gx0><#yrk7LBg*jY@+Fes1oc{-^>kb zEKrA^fG|NKfI1xeNd@W{7J*u*5ABdzQmI|M>qXmGANJ5D0;nUYO+#J#Dpq@!u*&Kb zqkzyZ0xZF9S3wstd94&Cc1xov>@%0!GLsb2cTF36!-oE^d^c3~oi+AigHG=~ zwS+eEUQ7<@KLWG?NpTwq2(%%goY+B%dT7}gnfO43xN1cWxP&pfYE2|1X1IFQnp`3_ z+ojKAk)w@3d!M_>iJ5Nga}Sx=cmjR_`PMDqWu?*cIC?)ANL>Cw^jq3<=_s2I@evrAUr^ zj-FVMOfeJG;)FVm&;W;?DD)}~)PZEjB7hs=xXXx{p#pVinhJPALkKVh#1h7d+>G77 z;U~=EdtG!kfm#6$1IhzpNv@dqp3_w^6Ho_ItRW<0{!&k%5JzZz)b;2DivE4%tHl_o z12G_#)aTZSBUH(7yrkoZ)N+ZfF!E!*a#Tz_U2yF}6Ho`TCAnhKm$BAKCG@cgr~@em z<0MLmF;EBM;D_S|pbo?YU$RRhSOrJWve2~w2;c`KA+${lPE>dpad6uVKplt)Y!mIE zFSNBRv~2`X2a*ul7L9Q9Z8rKnw=7~oHwcIY?1~sriD?Z3ZIgR{i7CRPzXTKdqF$q> zeA4Y2i|#-jsL`;$#4O`sn;10CwuyF}W6>R`Lt~qms61>FgT~o5(T=li?m!*LHZ*ae z4^9z_s16}|4pp=;aru%9*eBbdAwQrF)TnS~G_vhZ5j?^?j|E5sxd)R7 zH2W?Jyb>8?-$jKCbnPAjsKeky$u^I9N*L$i5vh8T^{|fzq$r+bU;M$1qK}>9(H*D* zxe}iUIBm4!1INCgMdf-#f7ur_&LfH-5kMWtA~kPEKplufiC_C!O{5u*cx&1U9KsR; zr~~PRGiv9)5kchMH-g8#Z_Gd)$fC$`A`I+{pD5HNDQMkZNL&{92m+`>t9R7lK3WS~ z?Mt@MIss6JR%_umdoTzMB3tdjzB29HK#1Oat8@JQZN z3rDzchrYDlT8iL`bd{cW*e@Unb~ir~Kph6F#0(W)H6x%71FzJ@p-d;9jaHucT2%rufzg7bT)Zr~bep!HO&LxwE--i%D9mzyT_x;HSjy*?I zdL03E=rk{Ma&&c57~e*q4xN~&ukFb;Pu)yF9jF=knLPr;pnk0d>Y#oc*>45vK+N(z zpZBLn0C<2EoNME21q@miTeIKZDNNcqEcHP<Okz=alE_W4_trrb(>yBfk$1F37`(W1g#bbs3U=l z*t)C&btILCS7rjJBdPFcZMIG$yc-K$5Pz|0JqqW{k@xL04`&J614d zxFSw+eGXR=0Cga>#i$cHI4pxUpbpedc&ly#>Od@wQB53JJFL)Fpbn%OSR*zx)>C`2 zACvrS4QRMz6KD4Jv-F6Ce%wI-b!dze9`xC4imNsIMFD6k8ge$y9jF5t7rBRboqd>! zdn>6QtS7e;S5sUJ3orR7EV%6Ricr`Kr~`Re$PwpWu2vzMz-_hlS;ISWla~^TC<8p$?*~Dm4fjW>MFprd-SWgfM z?!sDKY&}6FIK}qTeu7A_k8{dV2%ruZpM+V80@N`q`eIluPc2Ifw=mXXN~R+=7ZG7T zLI8Ehx_AS11Qr%HVue%0#`UTCHEJMQba=4})FEq4nGYL72cQm{q=J2FZb1Nb*yLz6 zLO>mfCB^a#6{w?eQgOCH0ChC3i74l2{9r)^Ra_M_9-2~NX39b^P>1~SOejsRQL5Hi zb5+{7!H6jxJC-x;h*Yldc#Z(-(CR2Rg@8J&A8(@yCPX`O3&!s-z!-kYNC0(M#2as8 zK|C*JLKb;49pf1UI27z5fI2MJ7%y84%7{&aY1u~tV#T1;QZ|ID!jZfz)R#rZ^FL#g z#)B-x$v3FszYstjMvY@dqr7b8<)a9o4(BEjP=}FIt_;Qd76ElQi*Sh5;B#_^$z22h zsi9x^@(vaEo(K@aXku)d@#<1O;SfL_&P^hq4kKs0FqP>8Efo1ui7Eo9!`!M|tjcto zM>fhs&#zx%S6^QJ!b@2ZKpjRqm7_!>A@Nc|`zq*cf?d zs6ZV?`$(V;V^a;IN{mPZ)M4ihcO(Q*hn#m?UP{3}HAyC`$LM8fH6g0UB#;tIj`2`Q zDiJ5fWSx+t;$gBPcCmVih0cgy#o~4~Hp<%NT1woQd+;f&8=-60d;ut$2Q6;P)8D3c#BK`btDlCjz>Tpw5)K8S{OnRew_-`K{H04 zCMq0LVG*_iOv+Xm19c2@0O~NSg@8JgpUX=#0_woO4Nq1Gpbq@gDDW{*hezIwfI4_P zF~wD&4*6H1$^=k{{3EU`QArZIk)PO+cQ`6g2NzDUIh=+QKpkA9Y&ybK;J>087G~mF zX2{Ig-HeI?Ks3W|WL6cWJjD~Ayd!n^<{1VL2I?Smiru+5*uZaE2%rv&c;a3e*+AY| z5Koznj1JL50Cf=BliIih6z>XYFX+(Ya@-P^vdHM*_u=3rfI0|sWbwquKS+H1K12oT zAR3TvK?tA@ib1~nz}FCFjfiV*#1Kp89m1QZ?*vc>p}#C%1?u2S6Q5_In+%6YkTWWm zNZ<(^0n|b0EsIxyItaZ{Q>(4R0(^ho68j4JUv)9Q#QH>KGn@ zTBr~0kXllyUA*f>+gKm=&?W+?BdJXzT>C0kdzY}v>J+1Z&@KWj!ERSU7czMrBE~B5 zF_ta1#h63M>JT|uRgYCrcars^qxpnukAOPNateHE@=5@8G{%1>unD_dga2Y+6Y6al zvRfKWVV}9&mYJlGzH8#x8}Yx2y%Aoq7aMeX@2MrUk@sS9NdFO_4M>XHNI;+s3FX8N zQq)7s#>m76D#TSQYQQCo(N$|ADKW#g|nLK-43sV3CGdTvsLk#x->OkE=jyCiK zn1)S0+dyA{>3PD`6F;#)h6M3R19c$TQY1${M^7wBrkDw8aY7wOXn;dc6nd2g>Oit% z5x|Xb+-1bfP=Pu$O$9umAq1ELVhQ6!ZpQB4@Dpb7y)HVNK&=3W0p$U)Bv(v)&*`d| z38(`p))100f2k)>h$FN<>UwknMgKnX)nW|Pff$fV>T_$v5vpW3Uea+yYPrN#82K?@ zIVvWeF1U7~38(|vl3X$A%UJ8A68hK#)PWR(aS|oO7^nkr@WXKfPzPdyFWIFLtb!wG zS?JmT1n>ir5ZWdNC%T0}9NaboPzPcH+eAC)3vDe6Z5sj9fh2^sMI#)2n~i?YEsI#t z4FX~TyCMcuVp_vM+vMI~Vv6wSFTsSqsMn||pLDy%qB~FrYBcOGG0S+^CI*eOZK56L zSab*K(AXv>Di7PlpmDZMwBu}>J5UF*4NY9=gHyyJszZpLLlrGdTs|c@kQ_7{`6w*9 z!$)B+pbnkF(KKVv7=(W#9(%^Xd78qv(qyBS(m~eohUNK2{rcF%)f5Vg>A)u#1eZ@R zcmZ`F!y$Ub823?FaQP_g1=N8Q7X2#*J1PZZ;1VOw&c)Yo6Ho_gOK?eXs}^&jxZ-#N z_Q^JA$PcIkH7cALjcmJ91dlM!V*wID?!hDi&Ay8QuS5pfcTph&UAu<>>M%G_vdv?j z62^IWM5>--J?!HFDT*iA7k_Z0=ws)2bO-7{uEZw-P8;p`z_BlAQMn$`U-ku!^N1oy z1W*UENX^?3PzT~r;@5sw6KTdH-kP=ohp>bI>OgwojM}+xL=d_6jo@+b8#7P`vM6$# z2m|}#Ckk~*3R<@p5|;%&f&l8!>K%2skJiFg`;slRP5{)Q)mr$?9t=W*$X0tWa2|`N z37`(7GnXZ8CeimsPF&)C9KFGE<1gGgq0%sJyy9(w{oac*IXO^=K|c|RJ{}cZ$vi6Y zdwW#kP3BQaz&NK@YDAemgGZw=f`B?4cqDJCg(F=%#(yPF>g zpbmpoVulK@nh{WkfmiC{&?jnz62uGN?c)ne1k~Zm8on+gfI5%>;ZVuuf+i$Thk;+R zTku<7M3U``v1PyW6#^s$gaGtaB(ea!&%+V^z->T49XbgG4)ui^0o0-6*J^-(I=m&w zFAGr3xn$Dt`w#-CBbn&vzCZcEvFC_NuOpxio#us3j;?MB<6G1nSXpG>+biwblWm^5 znSeTww(>K31c*WXS_{-c{W!AU3e+;f(p=yB2&e<`5?1pS4ZRIV+^A&{1E?|#VkVjv> zv2(BU?m{cF^)UvQL9WRJP)7nS5Ku<~8L@R)1?osD53kGwP)AbX(c0XY!DByq?43WkXxwP%=sQfsA@m@jxHwzkNxPI^N5=rmlH(J zCPtGA)Pekfd8F*bdV)xBhr4p?2_nHMwwLx3M1tKdMi0F%9wLG;f zG2HuDiz%6o*jz+}`3M2jA?xA|)Dc)H@{Pvzsrof)AX;=d0_u>prp%9alu@K}Ez_o@ zpORGIRL}beppL{EA)t=Ll45y=3e?d!sW{spfI1r21auXu+)S=Z;ZVCZ) zSU<8x6-^ zd@!o0Pc$gp5i16zma?&NmbVDlQv^_ljgc#BJjg=U@(pVEF9cABvEf+JC@))i`6vRY z!?{TW)M4Z#i#Q>m4rdV#u^N0%?ywUQp+jou7rwkh#l5Fr_{OFguP)^i4gu6*^s3w> z0_rew#tT!KKF~suFO{ewfI7^r%EhWoC+1|Me5CsIOYG{)t6z92D*~v)Xs6ty3e-U? z?L3a7@>Zs73AskDM1_DljB4_dR|HUpjgfbT3e;h=j|A#4Hq{W~VniaK4m)qSBO!n~ z?5x~I1k~ZdE7Bh0(*xA4al_%VP6co9(L>}&2<H%s8hDydXJNfjWE|p_62N`Keg_ zWnZ9<;jx0==KMNLjtQU+AM1FEnNol{M#u$+nx?N&vTP|mr1xYPp>Cyz^is$qnXDe8 zm!Z{!s2-C*N-R0X)nk%M#ECIkCnTwOn5>9htX?9K5aUk=^z2bT5Ql7frm#(5RT5#U zii9jlPJ)vtO5A_R;$46`$jO3l;0T}&9Rpun5KxE0A!`_+9q`R+)CI(YS(z_3!$m^m zT?)c@a8QD8j|iX+H+JrWB<38d?M&3 zA>7UoKpl>rkYZN_>hP8zZIp3ENjG!&fQ0Sx?h3YszfRJod2FMFjdR*M6F?pQdea-| zVc-`WF5x<2-un_j9m5+3)ZuSeVfR4QIvp`g#18`M@NY--JK8`GlW&_;pbpw0(JCFq zC$|CtbWxE1W*Uft!*6vb$If}Hp(hcM-o|hi%bA@BoPdbM?f94tb)7a_e3gC z2hA9Hny7HBA7H?wY=tpU$8ZOr4zpSas6+X=yfh=A4*c8jWQ73gz(0)w9|LuGfj<}(-E!$|CLc+;tmZw zCfH(kGb#!I(ToYGgZ{Y)5uDi}b@=8P1`h`6AR39?xj5LsZ(0bT4vTo=UK!ay-dP}^ z4x%BM(II*Wpbm>r(G_@qjm+R(A?*e6du+re$1QOwOZ`5aZwR0c!W>yV@$nB5AHNS# zfjWo=q+1XIsDomV?>_J~gjpk(AsS2P9m1QZ?*vc>p}#C%1?u2S6Q3}mn+%6YkTWWm zNZ<+FRTu+^&|4O-0(B627j7svpE7aA%n8R%o)o0K6K2euIJ1U$Y>axWA?7LyL0a5q z=CtWY9XsK;$us-kzDet|T5MLdeM!v;N7hW5Gd3Ah)Rmn( zs|Oo;P6?Z}whMdkv+k@*=MvUyZb#Pa`krj3k2|q@Hgshp$M+w}NyY$>ntk-Vc*$)en)Usxl-<9+3mb7t zAGUO(Qud$s%GmYCcVXFI%31!gE^OkTX;$}TIos}>H2dYVE!h(%wqc!sqZ%20U;xg8Hj}mtGsxEB$=e^mOz=oZ#FJ*^(*^RaB zJAe(JU(R};(~GTpwHrJ8&TeeO*WFmvv@|=mV=3!5tOq;$_a3ar)UK@UiQU=ve|KZk z=9RHtXZK*YRcy(&+h+^5pigIZWbbZl{uce%$Q$aj-}danI%U(0eb9~d>X>FHJXg+! zm-JvI-O}uf=B4cN`90YYt-G>2Ht)_lb?L%3%@ z$}Zlsls(z4J3F#lFV=ZMXSQx=4|ddJ{n$^Bg=I;_2m}AE&qM#;%*wo4vYynr#!vyzsW}Z1u_ASouRe*va3Q zvwz;&i{15E5B74~ZtUf!`m!y4Dre`6E@Ph^wk3P5eGhi&vJULdR%PtXnPqH15YwAJ z+k^eyt&|-wqdPlueJQ*4@9u2Fh!VC#wku=jZNm<}t1DacYHyZ$vo|aGrG(A>R}kBQ zPctu;u?zc^vI(#CV7K-yVfUwcv%glCv6Ji4?6H@+u*v=UvCqc@zPqP{E$Ls%&UmUj zJM5+&?4m&b-uZI2!&ZTxo0YNkAE((Bp9C?oq?B#(NSghN@K_)A*=?QJonMu(Irnv8HyqxBz4v(u+pl$BR=jmD zHtUQ|?4@iO`=Lh{_Wr*&Wf%OX9~(ZX8!JAx2kW`61AAqUZmij@o!LoycV~;cZN#>p z*`Ez5?#xO``>~yuc4eRJ+MVt7d_T6dQ#bbG@jcnapLb&OZzyHAw<%-4l=Wa^DuTWp z+?6fuRmL{-FJsRJ`mP$^gH?YM=&)BmcKw=;*(tmCVr?!cW!V)y*}zB3S>IjD*{(y= z?Ab%NWM^hd*^R+C|L1|d+0ddiyX4_MY`-3D+3>B)*ma|Nviu)C*jYFAWRFZuvnf~i zU?;Wg&MxiVhyA{~3%mBXuI$o{db3}@?8WxqAyk9ND^*{nRm-pXxSY z$82{H+pAp(+hV6u_QAN`Y^NZGu6=t;cH5Y8cGxQ=?B*?ke%hrU+w;Mm?1DGSS+Z`Iu}+K+#mmWr|z2d7uM%L z+`hWy&biE&O9y8zz5n~_oohQ~cDw(AOvTEg`cbKybH^R`uiRscZ_Mm-@wwHHZWvU( z*$>ZV4w&?J=7`e=X7BiG>+0GMx6Ew*;pFOdH}%YYHoZ7^>Beoc7oIsXH~Qu-`9tbv z=V$IVA~X5FXJuO4Ixw?w`Q|G(?@*E-@lkcI(?-YUYInH0{>p87Wghzc$;>8G@2!6G z=y!8Fe(_muX8)0?{-xKpxyn0M<_=tPZ|;|}2Qv3pe^ov3+G8`LMz+je zlAo9RW%lIUtouJ2J#4Rh^{uO)%1yoMw(1U*2WMU$JUi2(%d5FVHXM}OZuNEbBTny| z{iD^@nQz{BHFIhA->Mg_nvy&H`F`1RUpXnaVDry1JDs|$y3a#*W!6vXn>lNC@7yDU zTht#uzI|r9?n5f?Zhb=Lv|o=|@#9CWvnQ7i&Zlo^li6+20lBxI|FJqVbxh`gop#Aw z^Vz>M{jM6FdF-|AMj!I*Th+(E@=g8zUq3r~)0L&wAKWr0w_wOinHiVfQQv&VZ<+nd zM^t~Zrd#&8sascfKkWEXwa*+~zsJcH+5JA;Dm$(9ExG%qcFOb`x>e@N?&EX2wOv%* zeZVQX)D}g#rGM|9+yBKEs?&cDuV%OXuwvDcg}Hz1^n3Lg2TU8aqR%;*Q{JAPd+9&z ztNT^1%{|xSkNRuASWvxR`PrE>@4YwoYlr9RSN#0vXf~!@uEU2%WuCn9i>i4;hvfgh zuVZ${^`B;*ee{1;oDl6zrn+st-7r)ED% zUzK}o(aII~{C9cvem~acvc12^Y`E<8>W!cKGdE_)DKk*&h1pc;nn>!U)?w-({XJk^XP%=s(M%TW8bY_ zwaeVvoris%8~?(x`iGx7qIy`beY5QbKAYL+!JV@+UahI$uU)6?9yNlCO)!F(%d)Ci5UAUU&dqOicJ-3%3!~??{JQ$L^S-NZ+v1h#u|++r-@f$F+zmhPSv~IKN%@`6 zej$JA=eyTG(64)@whg-n_E_YROazJis}#UcW?ctXTMSZ?L%#{ zOS-Jj9n$^d%vI`^+@G8E&ZNKG zk-fj$#N6xW?~|E#@t3227=Ll*oI6M5-ZZ5*bmTTAS{QUSIF3&8RbyEFlkMEV) zjis_zcPOe~J9%XGu)h0N_gUE~GiLhe>d_thWEOWmDZlN2M{~2EI3WA!cJF0wU%$F~ za;{fy(xGdrZyVO4`rr#L%dPnAlMs`(c}9uRimzT#r7R6~49*hRVhMxUFT`tRoXA?NO2-TvL{GOs_sbo5nw4$I7KzGC#5`I|Cd&w4lW`hndt zhpo9UbHt|m<|oW}DmVS(cdHkiIU-xuuB!gx36G8b>x)c&=G|@ce|0`5cT&flGmD?= zotynYCe!?}9=VE9sm$78hvt^-)Hk~-e|Y^Jd$-JN{pxr17q;Cde@^{txnP}m1lEbI zYNj4FZBotjfm0@)68!&QJ#s{_ZXC6)BHv~7Cb=KqSeIEiZA^B+dmE~sU2}PEP5&eE zpMTaq%a)#(-SOuYxdZoDlpQ($<@(|q`sc^K*Qfsdjql8D+IwjB$cZCYem~``T>6R* z*_C%4oc+(qYqJ-%ygPqmtChL`w7nvG*nc|IKiqai?(_HiXSOXa%a5G%Q|5x@r{*rb z?)F?dze)b@KL5@i_rko)w&&iJ?YQpAO!J+)WhZ>|N_O2{x8*;Yvv02Y=X^dpa$R=K zrcY$9Ty{kMhS$E&ocR2}eE;XWXU|yiuYA|*+JeXh?PHh;VP1=qiwJOAkq zGJ~5{=U0xZ%Jw?xuKb9b-^jGv=EqF0V;;$$Gkk~4A*UUZfBxug^6ffx%l--+Sd&75VJ&zGtpnecC^>?S>9xH|+Ow?&xPPW#unz!p3}bZ2o~}z1h~EY|7T} zd|m#bGY`pJb^Q*kS^vw})_YyMa>`kEuUz}~i}}CSZ_f^W;rr~W!&m1Q_i45AnKAuV zp7QVoD|dXV4_kX+eRl5Chve5Ec2IuGj2Ud<)r(fX^m&W?eWjb_zifVa=7B|ZnUBX` zmO1SCmoo#3uFt-3(*BuC7q`s5cWCGQUw^d8_sJZTZ~5@;*-@8_%^uzL@l4rEd*rX4 z@ZSZGXWX6r zaoqToML}LSzSGP3IYZavmla)=zih!T`O|NDEPu&IyR5u$^cDF@YZheoTY7!=p-zuw z*Dl?Vo&4_E`9EiVlWRMB$NaJF%h{>@H)T)Fy|Dg(PJLLfH4o)4ncOYEbolexPdbgv zUifG?w)w{2=k7RoZuW(9ud81-@QTcXoj1w7x%%nc>iXUC&u{c&_K3+Fv0c|q&i}FB zO}X38o|64(_VDak*F0Qx*MK$okpl*14{!cS{f6Vt$X;@AW#-9iKhGSo^!)sd|LC3n z`MqrRmDa2C%?F&Hy}sL;%qMM@WPj+nB3u0P>-p1vy0m)I)<@(=?Uc%QELoJDUwlNq z&8Ht^$Mm~7yX!{_vQsMV$iMpEvolK`U7c<9dTDmbMjK@xJFG)})tJSZ_3h^8+gyH7 zb=OT><=1Z0IeXXP7iX9Ju}OZ~m)~VC+HhL_z`C!qdpt0re%-YLvm4L8IQM3-0b0~* zPW=a+J7mAPdVapcKYqwwbKB+lx4!MQa?6#Mj2`{-=MPKap*J z-1XVVemil+RWHo1uRL&khHZaU=G?c^*-u*^mhby)hwSWePi6P~>VWKk5AMiZxYI7| zAD8`@y?5jL^4&6P^V>i8Sf;pg`#ig)cmB)io!Q)bZp)9muzmLA{X4MH+di0^HTm7l zY4;4s4B!6a>>Wb|x@Adj-TFgU ze4ai(d+VE9<$qXvXZFvN&#J$(a&q?X-HY;1&%ZOX@d5W|_quK0{9aFV%d*8+W>;Qt zc5c!^7uN^t#zU}f^tG%TL4nc&%1y9p+`ph>ZN=)BDtpzGEx)$+!pgt?SYG?uibb_s zU9h(DzC(M}wL7+`?yY`p>+ZdwZ{2?X9a?wd=Czf}-q^P4mSfVRj&1Wz?fhOBRIcA@ zdF``5zcy;=u_Nm4d7!?wN6Q|SlMZ~awq((Pb#1m=wfx(f7e`*$w_nvJA74>>>GOA0 zcIq>0*_=;asm-}#X^=w^H-IRlVtUP(2 zc9rMcG`n)-BMX*wnB1%Gq{TOk98~g4<(%yKwb#sfyRzRu|E!$a`rPH6jybLJ+grxg zp8V~1%RgQ+v})Y?s^w!|JEbyx{n*MSn@*@b@XRYmoiw*!-6M;yuKm}EFD%=2^V>s0UOvC_wk3OxI%L!0s{5+$tJ`qxj&+~z z_D1E)1NN+KciB}{b9ddW@|H8tt?T>sD^>Tc%|Ehfm#V6zeHYZ8H+09U_V4{x_0;3b zt3EvIkIJ83IKFnD^Uke$^Vz+s4*cN!+WlVms&2QBkFR~>!7E3-)NEQ+_TzNbiI=@r zdC>P~)~zjFJZj^*k4D`%{-(Oo7c8v(rf=KjYyR4_cIGW_Rvz5GZ{UVci}4+)o#@M#oG19?@=}5sSb4q z?Q}!k`aQ3#ZGZIgx~m>vPJ*3pQ89oC1+##PN>EIg03}EiR1j2*L@^@JwF?wXs3@YSm=hufP=bOW)8EW{ z*W8)!-Zg9f@9xv*oT|NR@8`E4wzs-W)wO1^_(q;mogMG%W>ytiuUn(ja;sYAV{vu+ z;v|pfr@GzYwU2v){Vd-5{aZX_0){mphIq2y=bw-=V;rQTc zi3gLb6K-Zzy%G=OslA?DWAEc!eb~{R_b}~9jjyJwhjq}28r7?lc&Xp#d3f%eR`X%c zQFkXFshYexf1a~PpZneLB{idX*}VSEO&+h_&F1}dkFK%pv#AN)f7OFKs>Q1_uJ(wT zoKPd8T+YjTzrj&|BNj6Stl{CIJ(o_Q}Ly{oa2V-+577j3vjCfMxO7q?M>NV9-o+7+O!kTspy1`~OjG{GVpf|08dR?9>43SL(2G z-6;6mwFo|)zktN#`}ohl1Dz$6fft<%!Fh*w;%{La1+)3%@zr%^Sm&`k_E3vQ#AP{M z!GdEU=;s_A!JC2= z^wg;;D3&aS!kv!zru01=a%ndbBspN`o>c6Y7KiUYH^Mz`-c%z@3u03OQKF+QRsH1% zrE5#^dM8cp{0l4Cy)F&LWygbUp#^r_;e?m&?*@mQBM`@xAlHNUaJ*zW-oE1t&N(bi zJ3UmP@$pRbX>2;~Uy;m(tySQ=-P5Ecs0goH@Pmtpw%Jjz&>F;=XSht;`S z9Oqt-E<|?Ei|9MeO6-&! z0_O3dNH+c_&xKRPGqfMo@V?lgN`W@Mn5~N6oKB=NvwG3il%xCviG6re*(G|WLYg^O zqzaPt60vScKf2dZg_k8YP~Tf!bctIQ4cqOETO!QR3U&|qrzk^~={LS}+a3BsF9~n; zN`+d{{a~&e$yKkaLA|sI*M2>T-B}&pIc!Ynkw}=DzZs2|JAqbS5v4EoU%+8OFJYkU zIQXjefTL#+H~K~jGA1>!T4O0b`#A_1oj(hlZvrI6?sU)Ia0QQSet<$&{uH3=YLIJv z0k@B}W2tqw1)DTy(J9*x!+q=LIBvQsyPb21DqVGBWBqQ!k_bNL8Bc)nX(sI3hu^e2 z|0>(PwFvoGNV1yx0rdV(9v(e&Ia_Y6!PzYcV;&K+@rQ)(*fH=WPOsTa8^ZNCNnRPg z6P1PUeG!2Sl?rro{bx8Cy^$Ms#Jy2I1A4Kh_*Uf#-1=!AZYa4- zO-jYsv0_QEvbaotoOj~K*zZQH33YztXi| zMfv|m#^LX!G0;QxxxWKbYsBLPkUh}Kci%3F1^lrv9QO@R6`c>q1#xh2hc?m^3&ZK} z9PpPu8{kroLB)Z?xTV^Qe=OIWZIK*9`=d``wDAj$1Vko6MQ8{9y`dc9Z~R1Q4-P@*p(t>feHi`A{mO5s z62bSsG(%NXE?GpqeT&BcyHxQeAjsbdPpVV-uhmF{his6#WN7(psh4; zVgVhzxsPhdPsL5eQoJ$Q%{A@k&%thKeJnyF@QJ{?*w@ntOB$U7XXQJ{vFi=Zo~Dnz z?`t96NQg480SC{JQf2s}J|9!Rbe<|qy(@=-7;<%yb0gqR;gXQ|a z=o=ouuk)q3l`@v#dnOk?+%N%+k^=(i+Z}NBl^Q2ia-9ZUzm7&9_J^sdLs+|h1#D0K z2*bB_(L+B{X@~A{K91AmqD6!{!y-jCKIAeAc-ID}UG%7_k31S(rp}HE^$h#jv+$aI zst~X_8_hDF#rX_W}=;ouhGDpJ_$y zH|(JF71#J2!MDq6@xD`+tIs|Y;K$$X@u{{vY;#kTtN)Woi&pQ%yE?7mR%kV@9adxA zK~G`sd@p$QT?IB3tDrgG+`zYP2z!=W@s<58k+vE zj^_Z>^Kr(E`{2AF4t|EGL&Sm#+#>CW_dbjf1e%V;FNDXSH7*me@^V{fO}~T-?j54h z9gZ+l=Lz<`A;MnYjH45aMnJ*gGyhP=1~j(dWOeTbS+H-+p@Y{`a9MB+KJ;6bmAMpP zi9lWEcRLRowPe9Bt;^JYo*tyF`+?6YM}tGQDICiW!!IW$*Z8kmi}EMQ;?#;80+;=* zH1!1!dv7Ykza6cyNz4rVR_rjUjI!pQ$w_f;o(T}HqroNL-${ECjXuD<|_6^dL!q&D>0?WGz^WvOal3=Q&*r9(b)EcJ#g1n4`0 zXHF56#zaD~DF^F5eGmi)BYn$FPyBDgBIq9T3SnxGEhfgGweis?W5k_pxs{D~FSo+E ziB~}~Q-j-4lnF!MeA$GX-PCYzB|LvWAKu!3g2q#-H6^nFPwG3240lLFcYq&mYmEo( zJD*W!^#i=8^emDbv4e%dM`&O{HS(*FrQ;+-QA(Qu966du1p}k8QVoJ+i-({+Rt835 z=b*G%Es*xP97{<$;<^Kv%?P=TgCxeYgt05pCBqC%F4W=iqrLFb_D^8g(+G*+z^#_o z#ipZvp%u?of(myLJxEpKVsn0C=Q*}GWquMm`DF_(+o8a^=tG(`^Z?PMy-*$G2mxm* za72;`o+aLfgI`=1b|jU!+U87%J~bO(UDkpX>k9cz%}4R%mk;nmzgPIKq!`z82w+X@ zIc&dw2YNhrE{jrD;=fD3jK^;cgNULTf{b6<@Z*Xv?ded#C1%q=D{Bl^*RG&rwv?c5 zVYD(!C#WZAEsf+4!?-bL(2d8}X!SAy@(*PYI4T^sMjSy0diqeu#P|5@)kJ~X(*`gL zT?27zoVi;IGtpF?^ZdO7T6l+79=tpOsP5ep+T64Pg<0sK(;^-$C`ywZUM$WQSjFL= zKlw2J=Rq2g{1M*Fml1U7)Ctmm*CC~SA93G)cg|wbW&A+10BM@;qFYk>@eY||kp1i# zr1Qi%g%?9OqNf&3Gr`pR-~z$F&#%Ey$_Kx`JsF?XoCMe*73Xjb;Fo-kRs^)coV!*0 zX@>@}!K+SisNBld$Q7Yu3k`7d*>`wt@=+-1O2#$a-{6(fQHZra3p9%W>9k$1r?ijFtoOdmir5k z=GljM_OEOjryznS?QBFpZWN-$Cy(+I9S@=r>3Rs_HA80ZX!fdk5*NGd2y7Eugt|*r zI0van!THLuxM;>%T+%Aa8uIR8#TBP<+aw)yIx8M;ZmEY`O}T=s<9Wz1_&yf5J_b&T z?*vEPvT==(0zEng;fo5pP;go@7PX6pGusiK+BJ$3?N&xN0|P)*ArXb{x8Sl~?!#Z+ zTS8U2EVDhnfUe@tg=u2vu`qMMe=^6I|If_vzu>4=?vN)lCA7(J=T5F_!cVSJ-Gq#~ zEiL4Jgq+8q9Qk!ugk&iH;iM)=l9LvOzOo;cf(Z(qd7v6Yf!!b?p;dVh1TOclv*PkHiYg9b_7IKUMwk|fX4 zO-O@xA7}L5fcTtWOn$eU634YNWR}!-?yJ}+@=i&gOqCx+Y;Mbt)bo;L&pSEtXOARt zeLT!n_K$GX;vd&fq{ydAIWkYkd}WE)6R#KJNsr4Qw_a6?gyt#|o8dp)WbyjU%B+2fJE<$ccjVvA-=0x?JiAApi*%^A198H%X9%H1* z@Jb7!xJt;MZTY}Ggdg0|e0gGDYDhK}_Hns=(nMv>0M{BPLEOYV$fVP9<47Y%z$o=ze%4I>sXP|Oo7DpiVz27Eh6tJPUd^7lc7j`G9gx#SS|g`E#D|b;Jg}% znIcJiQeDWRV~XU_*b(m6IcYK@bcA!N7bgK`V@N=h3h{bwO>ClsY|T^?QYYl0KEG2Y z%Ws&GtP@V;&==wVbAHL~l9VQsBaMX&(J<%dA$;z!;>0jnmYk54A%6|TiOn}5-}ZMZ zxoOhQ^_6sSYJ22K<6Lp_OH+iXj2=%uJyj)V3{;4Q#$V3cypOw=t3-O&N{|N|ge=dA zKb()MkWYJ~K?EZsT*3-5^0!5YOcRI@o~R6YsMO1O^w^LhMOjj{MUhP8b#Z6ri4e=H z3S_f{Jh>D7hf~v)Aj{@Ckd<{#q$0wcERixJs(cNSI3!M0wTmO^_m$sZwOp8B;Q3Jc`Jd zDUsrJz1;G>LI$Qmj{Ni*;*y+iqObOQ|LiIiydd+eWx;u_h#_ z*M_|6lOe~=L`m`yeNwbYiLBr|kuE!HlD18USYFm5`_s+H8X+T9Ja!EExnGm48?Yo9 zoAt=-6d6)jEJlvYNswv#ClGT_Z!)dfmW(o1A@{m! zN4^SC{Ov+)XAN;rXNr+~hb_r?ZwqofL7$YTh>#R%U7~kGf=JAkBdt%RNZyQEvUsut zdGDb~{H8jROC7r8^$T0#+1kVT3t7A;8|BCjz8VozwI(Wk;v}ipia1z!kqNr$r1hFM z*GVvdgCtIWRNa12dQu4@_ zq;#qgKcOz=&lB#I*RmwFQ=0hBQYOhI2Bc3~j0mLPaF@^Zat2GqNvO{#vi_wQnLR~# zZ+kRI%^?#qBIGk!_aN8UV?ovkD3I_~l4QpILCz{>4ynB-L%hA^N&PETq8>P&tTA^bt$LC~wq1*i zQqUlk@zUh+Ej6MQCP#+{@mY!51Llb(rz;JnTV~PwBz1YtcSUVAH zs!P5YxDwO6asS0p3I3Bm{>L21|3V-CPv!A{=a2u;RqNt6(apyaaQI^hZkD|lbSL=G z&p#;I5bzU6%qhcHT|@D?rMj@169LJ!!LW916)s7py5h-8 zf1}R97WDT4!{+t!s2-K$wqtfUa>*3@{NH*UT>6tn&N`375~8uOB#&#lvDKRVgt^XMQ=pBXQCY;ARV>IyK z>m+Nu@6r&4`cFmchK1>r_pEAgGk}UIPBzm4PV?XhW}D8oc;2vKy}Ad9KJsf zX{U+fyW3spx_Tdc&h0LINZ5r_D^pRa(qWuAHH&TX`HCX#ZMc^+EwRS^B77(*4R4g$ zix;+pf?U&7!G#79yvSiaI?u_oqXWT}pE;?Ei=g?8E%)n8ITrkip)n6UhSgC|9$=GMZR8xDBXi@m@_R-yM(J@6&tKe)sDBz{<& zA=ozM8kvx}0yR#10CmyN5lDz|MdA<8?PkjPSCrxv^&a?_bU)f_d|xp4^&a7RGQdYS zT40fgjP4E3pe4b{blogXJOTr# z|8W7QA5@3Gvf1$6Ll!5T{to(`iG1fx3{O(nL+^#P;n7J&9@0ANAmy1HztT}y(Ksq$ z@%%G*z-%<_nZ1{PW1KgBmu!bF=Ozo#DHq!0wgtORy30HE>N$>9*h)1|ePVtuKH*K% z<_ZoTli?y+X*wuShkWgfNA5@R##rwHHABCLOYA*{OOK%3_H;VCEg;3*C&+z0J`EZbv` zWR7_XOjaBu#pQO~+Jg_U>Um{0rfNF=*N*U^R6G7e@pt&dx>LAP_ZCVoF9(mASFqr2 z6lh;qLOR6LK<1|h9?W>A-5G(sS5@JoU4BTz zD62*~aUIr<_QIq4C>{y9#-2>q!2N6Y39`n?aw}_&vL=mHc${Vdt1}6Jz3!i|iS;b{ zDmV_0xN`JgGQz{(7eH#@8M+nOsb(w zKjToUwkHek4oJcQ&PlbaZ;ZmJb4vKRAxH5tk*)ar_Z!&UbdsQRX)um+x4?=$>7-ab z3-53j;Plzr@YPrxksB3)*?NHxvtJ1pIIH78MN@p>!$g>5uMFQijo6^G0q1dl5UqOj z8-HH!2A$L1z^tA7@VZcje;!J}chB}C-#=owIhtVR9qpb!W-ErGGt{GH7p+uShd&DS z199I_2+Ej`zIs$(l~-waO}jt#?SDkoH)Jwl_PFFEvr9oZukqhh^8a}R{r}Oka%#JF z2Hq=caPKk~u*-Y4U{2bFb@%wNoP#2)b?#_*aw8wil;mK?LBeL$9$^oBPqAa(uIST@ z%QR@YCH`?q6zX$Uvcugg_;EuMm{(jYeDvXi`z9S$!e!Cj*BoIaGZ?~}Y6LF*4(!*P zG}iKWi2vZv2k^fB5E56U!;!6Va3gycsEBTYJN=Q+)Nug}4)mh6SMs?9&$L*dO$MaA zkYnb1UI=?@%fZj331>EJVZ)KDpyI+b5L+h7rW^KAz2-%*^zv@V*zr)+tR4wTxSKGP zT?G%59niv41?+0VLv){Jf(LfMYowMyZYF@F$YMy}FAF(t-ssI5KHg%H3or6;?S$B9 zyz!4Oi@rEd;NtxOCY73it_TB#`#^UHOxf@NV#*)NS@M*6{xA7QP*j))&t4^BXCEFr z9DEMVo;MRh6^p6g2^m(|SOu>>%LDqYC)hr9B8^$yfle>k%N8n}rK?k)8piLl8 z>)NmL*N%AwIxSZ{CK#T9852CA#H9@4f-q~{xq=mz1;IhF9KnRJZ+OSoaIjZn?7K-n z9gaH$>`xJVZY>1*P>z2pp$YFv_yw|$PcS>~I7(NV0dGAnV*k~l(D81N-*|Q`dy5bA zx7qGvk&nZ%-=p<-D04n^8d|ZCa9yPL+7<2(mNDL=@nEvJ0(x`o*>SH7cHcstEz!IH zW-iBQSzkGv{;`0!eXJKT z&s+DPlpot5vGOqDPF!Hg;7ZSTO2X8=24Ga|jZ5k!1*E=&CY5H>s&EnbR`wH3S1qEc zF+q&iJBsUC{{-CBUeh|>RjRvs9h=fM20dsS4{J2<;Aie<>CcV=yj?$(T~>_;6{Y*| z=fc#d&~D9^ ztC!V?&Ckc~n=sg}$%4v*IbfB;uW8-AiT<8-99+juq|3)2f{5PJf{V^FaP+r0mY@Cv z8o5SF?83o)Lk!kyC`Rt_s#tW9Zf(QQOh}$S9ydh>z=;`Mp!GJF@Bb^GncjO%?Jh*K z1AEVb)1~LgH>eRBoR84anX>HC1v#$cKs(RyQw6%u-^aT1)1W3X4wV>%;PaRAsjd5I zs&aN7iyD5z#DsgNL6T1=T{edc3nqZ-^=kr=tV+n*;3fEL_KEJfI}^IsyaT1SX1ZEt z3W#;OL2F}XjbKEBeckBDiZpGwiibgPX>=HiSSajOipNs@x|N`&QUMzuE`bj5N%X}* zS>|972Ig;fpoXV4RAY<$H8s;9ToSC1%qm?2y)lATe+q?wD?8 zJ>zz9#gm;NU_m1Haq&w$KQfTr@O(^pScRS3whPia6{)RE6}=|rjPBO$VcGMmS=Q=B ztSY&mO3JOn=!7@i|K-5EOsr{~|0DX>b2~aWPZIZ!8G@(V53uP^!=dC;99uAEKj#y% z6*XsEftE*waAn3-czazN6yKjO57H!!?gEy~$?+ZSmm7A;}N__|<236Q#l?*0YrZBDbI}@2#0t46gv%`H$ zS@~6Mh+MOW!3_^Vfa5DvE-``WZ;yaY6K}!m8gW?C(MI2whl8r`RM@#)1*UlvK%2pC zl)lmotRxh1inavDLrPd|?lp*7?iw%Hm{Q1=Cm6v6&$-m<;69kq ze+Q&<kP$ z6k`vrYqF56GzgB}O?z)yL+bpe%p~av1l=uS^F6wO36{b47$?wjP-bioAFd3JhB^4Y8S$Lq%R5jj*39|B*flCOri6mE`pxMLUfbo2L*dCurm26g2O{U zxvd?#+?Usqg2WsC5E)d*YEP=+nSn_l|9cTP%~^}(>$&hg?r5Xi7T#m${Aa+9@D#{= ziCA{+bhb+H1vN!3V&h*nq4Q_;S)of9*w!b~3uXE6qG13kA33w}#Y^F>y8?Fk*AHgn zkHbs#H0*ad9(IoV2(4d&(NO3Rtnoa7rpKH{@kVh-0fN};Su2+N8R~FZ- z^1R4y&DzTr|I1*L>Si;g3E7}_{W#3+p2FhW^O(+VcdVpLA#T+Yh#2FFxj&od>%kR^3xlAT6> z$UpdKn8~_26`-?V5qxm-WZDaV!Hwp}to7(Ow(Y(&cdt&h_U^xfsHplms6V;Q8(de2 z+0ZcT7DdkewkB{1Gef(!Vx45jQo%(NO$2&Nyb!h?x2Oy*J=J@Dxi zxK=NK=FvrTN8NFTKjc#{Qo;&OOvO{~Uxuq!rbBI}D;U|f(5vpZ=`T|~=GtQlf_DZG zv2_yl^G~FCM{=O8d=~pKKNU`oibcUK2{6ZaFUousLdSM%GN0e+tn!Wy&HYyZ)ejcK z^L5&sO}zo%%%=xbDhQHn+68Oh#e)%?fb{JvL276+WZ!lJpMRR*SG5X{B$pjGwLptI55VOo<5;nI2Lyg?1J$#6tow)}=kvK0ZXMKP!PBK!s?8ac zA7RHV9=yOX)3DYjS)}%?pFWM%RltX*4^sR37I;B5A>Q^eY(1ulBZf`^+PDFgZkWN6 zOn(Um4Jz1~D*~9{p$#G@GnroUVTe7u98{tl+1y7w{HolZ4nJOqHI~`3=*Dmuw?PKN zmZ#Fam2P13WgL3s=L!4aAd=}`1j=^{Xw~lw>T>2AUKW0oO@A_pd$M~03n>_)OUJEa zFW+89KV%%LC(0fIa^e!RrPIN;&k_PoXR;x~WE}o~62a3GPH&6vjO930u*qD#P!vxTVc17H(p0mkkbtVWXKc*nMbdB{{Y{>FK5^ZiPP z<_)1m&6W_iH;--fdjs-0Be2_1l<6g?u|AKVs8X00?#`~p7q=$By1^1?T78#ZnS#M; z%`|X$vV?W2`$O60UxLDC>+!#-si1qX7}f>!poA;W(6r%LX3}NArXNmV<5yjV%HtUV zkKRkn?(S-w`6Q2Bd?&%0O-?`+F$Cvrr`V*f9w=D18(!ZNfv`1;A;4xDTNitf%{QIF zdRNrr^wwZ79GC<3lc(WhWADPWE@wFFV+B*Eq~JsIBpEE-!z8ao(T>X_aIW|lYD*1b zSO0XvmmL#f?`;v*@wbxMMy>$I*n{xiw}hS1`u24LQ?jUZ;e3oiJXaR=n(*<7z; zHk>D38`z1=;$BW=W*LSdK+5}I(VOX5~S#Ys#Hj=EFjPG65 zWFy)hc#L~LEZFjuZnHkb#@sQXCz3FeFV=uGEk#)M<~>|}C7df2t)RJf1;End_|h{n zsKm1p_N1T!Tpny;uls(`JGaNN^^;b!f9t#HrnLq&4)bc+)-`?TL%<#?ska^4?_7hJ z1*&YbEn;zTCtymG4(^U{fyF)bg2K`(f^s2e5HNZ_6*6!jz2X!9=I0aa_fK)|+He_a z4tHgW{#)3^HPwO%vZCmZ#(ogHXu|ZYOIU2{G8lJiFO=TYLNx;igf($6n|=NRyS-Tl zq_68?L8A>rildpx!dB3T@@8kZ{ShdMU!+^-cEWYtmoRUm3>OyX#H{uiu%^mG%%D<) zbp}^}nRF2A=rzZ^=jY;8HA~r%o&t71o6oOvdI7T@*1}Cc;XK*Yb8O@HlZ=0^9*U46 z;Kt|h==yhN`tmj!JD84=79yPY@hAP@djKW*3+EW0>;|!qmTby+D>n7_EvlQMfESM{ zfS$nFutRGR{Z|kM1*7!Xjdne}XVVvYjqZnAlQ*(=#Z9=(bv14Eu7GamG8S6?9VXiO z(P!Oyu=Sh@n=@t>-kXt%mU%8=x)b*chR!!IZnhKi$&Z1S?p&yBJc-Fe`iZ7AJnnL18zon3w5ov_dHmMqL$SkCo%G{(@8Nc>Za)o0W>5&7}}>bO}%Y z>psXb)}UA0=fj<76(Zrci+w9Qi*|+Ihxs}FpqjG`h2NP6K~cBRm)p@$I(i9v@MwS@ zNcO=w>Bpc+VLfEjKLLM(+W*RRa8TttcGTcVZ!a2+uNj{P^UVh!-svcq zeYK%sZzQ?tVb`IsF@=t8Ie=D;wcwvxHjzEd+RHe>csyan63|V{U@<2Yn9RCFR#q&* z?c3Fe&YN9F$pQc1RGJL48>wSr*A{{C!C!QXXfl((U4}MJ>K3FrR>0*zU>?pN!St;I zw1+f9$Di{^BJeXStv7-LZC7D(g9+1(5~SpA%99TAD{mC2HK8? zvaZig;AXp*uGs7adIBl6I~!|MKR2&7@?&fX0u&dW02*; zYp@{aJeyG%$)>G&hEF=$*T%JdgM69j63U~`%c+_as*b*#>(4Oy2sJ@HH6uq~MF z3ET|h=N7TmMsu*NAIrUnQ?A7Zc%IR^Lc@4;|1pGhyc$eZ;fg=$RG0Qo0%Fz?+CpcS4tvTYL7R;{K6 zO4-Qq<03>gzVm9U(*>-<2X7x20d)uE*#6GLu<)T#U_c6D(gnck1t?l zXUk4XzM-*OC7H!mBYJh$QOK>*s9nBPg-!R$Wxm^G*o58|us);B%(GUpExWJNb%&mz zV2GI(?Xb|f$gT=?jLgClF z=xnVF_Uo?#ZlXzT)Rjw&hza{Z8N>9HmK-D-6vK~(u{9;DZs3&K^K`xDH|SE`%U+*+ zOY;=u+4?3PHu;iF^}0_or*95;%!9X}m$?^AD$H;fXU2Yg(!kF1mcVYAFWkvmU7Yg9 zo&A0*4<8m*(%Jp0SmU%3Xsc;ry)Bd2yCuiai!)-lrJxZSWi&yq#|DR*8RBanl^EF) z0|gzbbnEzXP%U~5mv(Q5xg*!mtR?%{mCdP8yn7p5k8Q>?B^=q~IpXYSun#<+RfxXG zI)cNsWwh=43U1@iO7?MmB>r<|Bh9eJ%xF#&w>3jZG3H9*&Gl2^-4{35{?LwX{iDy) z>#ow$W>wH{KFuZ#d`D6lrtl~^nN^&w<15LPfaqWfi=8(OoU``RrM-G=*P}dvdINQr)c#sk{{PmYFB z_BK$yI|cr%`3A3prV7Sr3upGO->1%LGhor%E66pJy)$UwPkiUU79up(a z9vm-ZKWPov4!wrmMjG(8zY_~y3v-u*Je;iE#bigE+2E#jB)Pr-8VWzcZTr!HmNmlQ zN-f6a&R{WrDv;WbYw&HWE0?1_fzA5lfbSF^fsa3<+0F^e!8!EjbE?AIm=-yn1XTJ7@(ELC+YCoG*n3!|H zT8^~}`I%_6@mzdwk4J5`*IagI@n`tZ6^MI-Wmw#77xrd;0{V8o2nF8{XK#-s(eB7@ zP~`Q(IEhYy--icy>$i)Dx9Y7R34{c!S}IID8^(eg4B?yoKWKZ^2A$K-pZ5?jjC%{qrR?J;0JuU4>Ct^zQblL+mv5RC95V17gpJ6l)?{x(}^ zcc@yeP&Fw3kLEn;|IIA@uNc?m1|Nafslh(Qi^3@JpVLheL9CEycWXWc z>77b2Ra})*d1}mkT_p~Bzvo~Z)nSzEFTn~f-oa8|@=&EW!qau_L9uNgn653rHyVDx zS5a#mCZ0xTOc23N2N&Y88Ud_PZ7sT#qKB6H_`vUW9UR6TrYO@E&V;BSL5LG--qc2a zkTXCA#aPFqt8n0nu(Q3O0q(T**7SJKVk@`BqXIWAJn5LQ$8Pi$rubHaSJrKsz0?+W zMiSh6IteE~eM5t!lBtbrI?j&T!taxg1y#)-f>gdJGLNlA*H;UBSx;;@k2znVVumE1 z86d*#T#|&EOm(4n--w`PAO=_L$;7WeJK>i39$0+#UK|x)2tf)qI7>_(pMHE6w~qb} z4ROn8Bu^LsA#J!Q|ldz@gwI9=w#orC$dt3XDr6u+Ib99}*(L`I9;AS?9+ z?g~DQy%*$R>ziI!vPqp2SCkaipjxn@{|z=5NkxWnd-1Z(SJBgeLHF9*h^zYJHu==e!#9U0kJdb#IaeS4a)$0b1UZoF;8%_$(`~(8kMFq=RQftb@ zvrvJOD;_u=LB%{@@}Ac30{1cz{B7AEh|!h=oAz>$6x)HfO?m`!Ap;=tqX=4Kq_L>5 z7wr39f?m1MiVsJ6GoEQEE?)8*4{O}Vb3C3y#NRvg!@uRYH~Agfzv~FHE65f&pMC&v zD;~Dplj3$hS%!~%JqOY2efj1>wmGEL5dx)l!Ao%!ydhv0v=yC4Lu(|s`dJJ3Ye(&- zf!UvtafdCp?z|b_^^zo9DdoYYzt;Tv?FMYh*f2Pqn+QK0_t5eDzi{@SI!-g#gw6`< z(56sRIO#DJvzex}dPts2c;k-c-rd3Z(><`CQV$Apdqd6Ra?u|3n^;OK3HOxjgK$S4 zgl_YMAHyn;IyDWi%-jL9wS4fl>An2l4vlE*yd;q9-HGQ4)zNg>29&$(Cg>V9p`w5# zc#l>l?Z363CaPw`V(V1&ar1FX`y;@si@=FBxA0q?An4tcij4=)fbB>zt`PfN9nz72 zj{cRv?o~5T;^-pWtkz1OMvVdU?G?a&twIG4?@}+{k5ux2Br~6RhnKe`24{s|hD1pR z{-?2l+&muOj^C^BIk63pyyE~)we&<0_d>XC;kxn-d4|oNEQR6iX?Wfb%o&Ph;_45g z+^5Gn+*c8($GyGspzFOIZ4bT$nYAnN>wA9$f4^NpH~#h@!zexu8=r)#f6SnTI(BH= z_lB^`6-k(^l#V370W8(LgdZRcEN^ukBq#FlgKy>Fy^y2I zigqaDdLjC1oPlyQ&DiH>YVg}Wl%?bgNfk*q>_7V^tZmr_1#6wKs@gu@y}x{XAyR^V zNYAI%n^QpCHyOu_rnKbiCw|kmUr?yO3K!Ei^ni9K|4kYXyw9NpaM}AP#>J)fAwW-dtn!VSFH91N2lX!;|&09Cyx}e#wr+ z{az2ztuOo0=3r4+$aL_d@xn7>w*YM_yNoxpYQZMK7ajU&JFM6~l{Iw3vUNBusu4ZYv%~H$G}#fcRMf)u!|gx!(0{4S z|H&8sO=bRXWKzt^u#nJb;beqrOiIRnz(WIzN7W@I>4m#kM9L(ZSGB!PeI$�*MCqk2 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

8&K_ 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

&!7o7sod5 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

NP9AB2FgL*WYL^BkK<5y8! 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

DZU(DlTwqYZ&<9ms9Z} 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