Skip to content
View samyakrt's full-sized avatar

Block or report samyakrt

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. hotel-booking hotel-booking Public

    TypeScript

  2. ticketing ticketing Public

    Simple demo for micro-service practice

    TypeScript

  3. generate time series between specifi... generate time series between specified months
    1
    WITH RECURSIVE dates_without_gaps(month) AS (
    2
    SELECT
    3
    	DATE_SUB('2022-10-15', INTERVAL 1 YEAR) as month
    4
    UNION ALL
    5
    SELECT