Source: https://www.youtube.com/watch?v=qw--VYLpxG4
\l
// This file adds coloring to the announcements to make it easier to read and understand what's going on | |
import { | |
DragCancelEvent, | |
DragEndEvent, | |
DragMoveEvent, | |
DragOverEvent, | |
DragStartEvent, | |
useDndMonitor, | |
} from "@dnd-kit/core"; |
Source: https://www.youtube.com/watch?v=qw--VYLpxG4
\l
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:GetObjectAcl", | |
"s3:GetObject", | |
"s3:DeleteObject", |
name: Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest |
-- CQLSH
-- creating keyspace
CREATE KEYSPACE dev_db WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '1'} AND durable_writes = 'true';
-- consistency
CONSISTENCY; -- Current consistency level is LOCAL_QUORUM.
CONSISTENCY ONE; -- OK for one node
CONSISTENCY QUORUM; -- Best for multiple nodes at high replication factor of ~3
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Video Camera</title> | |
<!-- Load TensorFlow.js. This is required to use coco-ssd model. --> | |
<script defer src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"> </script> | |
<!-- Load the coco-ssd model. --> |