Skip to content

Instantly share code, notes, and snippets.

View mvmjacobs's full-sized avatar

Marcos Vinicius Jacobs mvmjacobs

  • Earth 🌎
View GitHub Profile
@mvmjacobs
mvmjacobs / index.html
Last active June 4, 2021 18:29
Get stock value from Google
<!DOCTYPE html>
<html>
<head>
<title>Get stock value from Google</title>
<meta charset="utf-8" />
</head>
<body>
<input id="marketCode" type="text" placeholder="Mercado, ex.: BVMF" value="BVMF" />
@mvmjacobs
mvmjacobs / temporal-table.sql
Last active March 2, 2020 03:15
SQL Server Temporal Table
-----------------------------------------------------------
-- ADD TO A NEW TABLE
-----------------------------------------------------------
CREATE TABLE [SCHEMA].TABLE_NAME
(
id INT IDENTITY(1,1) NOT NULL PRIMARY KEY
,name VARCHAR(100) NOT NULL
,removed BIT NOT NULL DEFAULT(0)