HTflow
restart browser
##-------------------------- | |
## 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
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) |