Skip to content

Instantly share code, notes, and snippets.

View TimothySoftwareEngineer's full-sized avatar

Timothy Nguyen TimothySoftwareEngineer

View GitHub Profile
@sfrechette
sfrechette / DimDate.sql
Created June 13, 2014 00:03
Create and populate DimDate Table...
create table dbo.DimDate
(
DateKey int not null,
FullDate date not null,
DayNumberOfWeek tinyint not null,
DayNameOfWeek nvarchar(10) not null,
WeekDayType nvarchar(7) not null,
DayNumberOfMonth tinyint not null,
DayNumberOfYear smallint not null,
WeekNumberOfYear tinyint not null,
@zmts
zmts / docker.md
Last active March 27, 2026 06:36
Docker, TypeScript, Node.js

Docker, TypeScript, Node.js

Preconditions:

  • TS application listening port: 7777
|-- dist
|-- src
|-- .dockerignore
|-- Dockerfile