Skip to content

Instantly share code, notes, and snippets.

View cyberhck's full-sized avatar

Nishchal Gautam cyberhck

View GitHub Profile
@cyberhck
cyberhck / docker-compose-full.yml
Last active October 14, 2020 09:42
docker-compose feature.manager.ui
version: '3.0'
services:
api:
image: cyberhck/test.feature.manager
ports:
- 5001:5001
environment:
- DatabaseConfig__Host=api_db
- DatabaseConfig__Port=5432
- DatabaseConfig__User=api
@cyberhck
cyberhck / main.go
Last active February 2, 2021 11:55
test
package main
import (
"github.com/cyberhck/local/tonic"
)
type User struct {
Name string `json:"name"`
Email string `json:"email"`
Authorization string `in:"header" name:"Authorization"`
@cyberhck
cyberhck / Tile.tsx
Created January 23, 2024 13:55 — forked from paibamboo/Tile.tsx
Tile layout using display grid
import * as React from "react";
import {classes, style as typestyle} from "typestyle";
import {buildBreakpoints} from "../../../helpers/buildBreakpoints";
import {ITileBreakpoint} from "./interfaces";
export interface IProps {
spanColumn?: number;
spanRow?: number;
/**
* Internal usage