Skip to content
View cloverink's full-sized avatar
🍀
Error Driven Development
🍀
Error Driven Development
Block or Report

Block or report cloverink

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
cloverink/README.md

Aran Cloverink Chananar

🙃 EDD = Error Driven Development

My Stack

Pinned

  1. docker-django docker-django Public

    Docker Image with Django and Pandas

    Dockerfile 1 1

  2. prevent-mouse-doubleclick prevent-mouse-doubleclick Public

    When a mouse have problem double click from fail case then use this to converse them to only 1 click by conditions

    AutoHotkey 1

  3. How to Duplicate a Table in PostgreSQL How to Duplicate a Table in PostgreSQL
    1
    create table m_data_1 as (select * from m_data);
    2
    create table m_data_2 as (select * from m_data) with no data;
  4. remove all local branch remove all local branch
    1
    git branch | grep -v "master" | xargs git branch -D
    2
    
                  
    3
    git branch | grep -v "development" | xargs git branch -D
  5. list all table from schema list all table from schema
    1
    SELECT * FROM information_schema.tables
    2
    WHERE table_schema = '[schema_name]'
  6. docker redis docker redis
    1
    docker run -d \
    2
      --name redis-local \
    3
      -p 6379:6379 redis:alpine redis-server \
    4
      --appendonly yes \
    5
      --requirepass xxxxx