This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lsof -Pi | grep LISTEN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/id_rsa | |
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/github_rsa | |
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/mozilla_rsa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Clone a single branch | |
git clone --single-branch --branch <branch-name> <git-repo-name> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Pull and image from a repository. | |
docker pull <repository-image-url>:<tag> | |
// Run an image with a bash shell. | |
docker run -it <image-name or image url>:<tag> /bin/bash | |
// Mount a volume to an image and run it | |
docker run -v <host-volume>:<docker-volume> <image-name or image url>:<tag> | |
// Connect to a running container |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Create new user to the DB | |
CREATE USER {{username}} WITH ENCRYPTED PASSWORD {{password}}; | |
-- Give access connection to the wanted DB | |
GRANT CONNECT ON DATABASE {{dbname}} TO {{username}}; | |
-- Give access to the wanted schema | |
GRANT USAGE ON SCHEMA {{schemaname}} TO {{userName}}; | |
-- Give select access to the sequences for the wanted schema |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- To be able to use these in full detail, you must have the necesarry role authentication | |
-- Find activity list on DB | |
select * from pg_stat_activity | |
-- Find pid, user name, query, backend start date, transaction start date, query start date and the longest running sql times that are active and idle in transaction | |
SELECT pid, usename, query, backend_start, xact_start, query_start, (now() - query_start) AS run_time FROM pg_stat_activity WHERE state IN ('active', 'idle in transaction') ORDER BY query_start | |
-- Terminate the sql with the given pid | |
SELECT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1) Download Mac Version to install from App Store | |
# 2) Put a USB stick at least 8 GB | |
# 3) Open Terminal and enter the following command: | |
sudo /Applications/Install\ macOS\ High\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ...; | |
import org.apache.commons.collections4.CollectionUtils; | |
import org.apache.commons.lang3.StringUtils; | |
import javax.persistence.EntityManager; | |
import javax.persistence.TypedQuery; | |
import javax.persistence.criteria.*; | |
import java.util.*; | |
import java.util.stream.Collectors; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE EXTENSION pgcrypto; | |
-- Examples | |
SELECT ENCODE(DIGEST('password', 'md5'), 'hex'); | |
SELECT ENCODE(DIGEST('password', 'sha1'), 'hex'); | |
SELECT ENCODE(DIGEST('password', 'sha224'), 'hex'); | |
SELECT ENCODE(DIGEST('password', 'sha256'), 'hex'); | |
SELECT ENCODE(DIGEST('password', 'sha384'), 'hex'); | |
SELECT ENCODE(DIGEST('password', 'sha512'), 'base64'); |
NewerOlder