This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##-------------------------- | |
## Terraform: Functions ## | |
##-------------------------- | |
## Open terraform console | |
terraform console | |
####################### | |
## Numeric Functions ## | |
####################### |
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.type('text/plain');
res.send('Hell , its about time!!');
});
SELECT OBJECT_NAME(referencing_id) AS referencing_entity_name,
o.type_desc AS referencing_desciption,
COALESCE(COL_NAME(referencing_id, referencing_minor_id), '(n/a)') AS referencing_minor_id,
referencing_class_desc,
referenced_server_name, referenced_database_name, referenced_schema_name,
referenced_entity_name,
COALESCE(COL_NAME(referenced_id, referenced_minor_id), '(n/a)') AS referenced_column_name,
is_caller_dependent, is_ambiguous
FROM sys.sql_expression_dependencies AS sed
The ideal vertical video dimension is made in portrait with a 9:16 aspect ratio and the ideal dimensions being 1080×1920 pixels. Understanding the ideal dimension for vertical videos is crucial to capturing your audience's attention in this ever-evolving social media landscape.
https://clipchamp.com/en/blog/best-practices-creating-vertical-videos-smartphone/
16:9 resolutions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const fs = require('fs') | |
const path = require('path') | |
const app = express() | |
const server = require('http').Server(app) | |
const io = require('socket.io')(server,{maxHttpBufferSize: 1e7}) | |
io.on('connection', function (socket) { | |
console.log("headers at connection:") | |
console.log(socket.handshake.headers) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EventHubConsumerClient consumerClient = new EventHubConsumerClient(consumerGroup, connectionString, eventHubName); | |
string firstPartition = (await consumerClient.GetPartitionIdsAsync()).First(); | |
PartitionProperties properties = await consumerClient.GetPartitionPropertiesAsync(firstPartition); | |
logger.LogInformation(""+properties.LastEnqueuedTime); | |
EventPosition startingPosition = EventPosition.FromSequenceNumber(properties.LastEnqueuedSequenceNumber); | |
logger.LogInformation($"startingPosition: {startingPosition}"); | |
await foreach (PartitionEvent partitionEvent in consumerClient.ReadEventsFromPartitionAsync(firstPartition, startingPosition)) | |
{ | |
string text = Encoding.UTF8.GetString(partitionEvent.Data.Body.ToArray()); |