Skip to content

Instantly share code, notes, and snippets.

View turneps403's full-sized avatar
💭
Wubba Lubba Dub Dub

Ivan turneps403

💭
Wubba Lubba Dub Dub
View GitHub Profile
@turneps403
turneps403 / txt
Last active October 3, 2024 07:51
Docker. Поднимаем PostgreSQL, ClickHouse и Superset | karpov.courses
# MYSQL ===
docker run --rm -d \
--name mysql_1 \
-p 3306:3306 \
-e MYSQL_ROOT_PASSWORD=change-me \
-e MYSQL_DATABASE=test_db \
mysql:8
# attach
docker exec -it mysql_1 bash
@turneps403
turneps403 / main.go
Created April 13, 2022 21:30
golang connector to tarantool database
package main
import (
"fmt"
"log"
"github.com/tarantool/go-tarantool"
)
type usersRow struct {
@turneps403
turneps403 / app.lua
Created April 13, 2022 21:15
tarantool simple space config through the lua code
#!/usr/bin/env tarantool
local log = require('log')
local function init_space()
local users_space = box.schema.space.create('users')
users_space:format({
{name = 'id', type = 'unsigned', is_nullable = false},
{name = 'name', type = 'string'},