Git Product home page Git Product logo

cheat-sheet's Introduction

cheat sheet

useful search function for using whole cheat sheet

function cheat-grep(){
    if [[ $1 == "" ]]; then
        echo "nothing to search"
        return;
    fi

    search_line=""
    for each_input_arg in "$@"; do
        if [[ $search_line == "" ]]; then
            search_line=$each_input_arg
        else
            search_line=$search_line".*"$each_input_arg
        fi
    done

    grep -r $search_line -i -A 2 $HOME_PROJECTS/cheat-sheet/*.md $HOME_PROJECTS/bash-example/*
}

other cheat-tools

Other cheat sheets:

useful tools:

collaboration whiteboard drawing

diagram drawing

markdown

regular expressions

stream editor

online coding

code analyser

code changer

database GUI client

database cli clients, sql cli tools, db connect from command line

https://java-source.net/open-source/sql-clients

  • https://hsqldb.org doc download

  • sqlshell download

  • henplus

  • sqlline sqlline doc installation from source

    git clone https://github.com/julianhyde/sqlline.git
    cd sqlline
    git tag
    git checkout sqlline-1.12.0
    mvn package  

    download from maven

    ver=1.12.0
    wget https://repo1.maven.org/maven2/sqlline/sqlline/$ver/sqlline-$ver-jar-with-dependencies.jar

    usage

    java -cp "*" sqlline.SqlLine \
    -n myusername 
    -p supersecretpassword \
    -u "jdbc:oracle:thin:@my.host.name:1521:my-sid"

    usage with db2

    JDBC_SERVER_NAME=cat.zur
    JDBC_DATABASE=TOM_CAT
    JDBC_PORT=8355
    JDBC_USER=jerry
    JDBC_PASSWORD_PLAIN=mousejerry
    JDBC_DRIVER='com.ibm.db2.jcc.DB2Driver'
    java -cp "*" sqlline.SqlLine -n ${JDBC_USER} -p ${JDBC_PASSWORD_PLAIN} -u "jdbc:db2://${JDBC_SERVER_NAME}:${JDBC_PORT}/${JDBC_DATABASE}" -d $JDBC_DRIVER

password storage

text/password exchange

REST api test frameworks

cheat-sheet's People

Contributors

cherkavi avatar donrichards avatar avidcoder101 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.