Skip to content

Instantly share code, notes, and snippets.

View rameshdahiya's full-sized avatar

Ramesh Kumar rameshdahiya

View GitHub Profile
@rameshdahiya
rameshdahiya / docker-compose.yml
Created January 26, 2021 14:01
Docker compose file for spining a MySQL 5.7 database with disabled sql mode
version: '3'
services:
mysqldb:
image: mysql:5.7
restart: always
tmpfs: /var/lib/mysql
command: --sql_mode=""
environment:
MYSQL_ROOT_PASSWORD: some-secret
ports:
@rameshdahiya
rameshdahiya / merry-christmas.ws
Last active January 26, 2021 14:49
Merry Christmas in whitespace programming. To run the code, open gist in raw mode and then copy paste the whole code inside whitespace playground https://vii5ard.github.io/whitespace/ . Add an enter in last as the line ending character strip out when open the gist in raw view
Ramesh