As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/usr/bin/env bash | |
| # this will overwrite all the settings it touches | |
| # the name of the user to run these commands as | |
| TARGET_USER=jane | |
| # to start the desktop session remotely | |
| echo -e "[daemon]\nAutomaticLogin=${TARGET_USER}\nAutomaticLoginEnable=true\n" | sudo tee /run/gdm/custom.conf | |
| sudo systemctl restart gdm |
| # This is a GitLab CI configuration to build the project as a docker image | |
| # The file is generic enough to be dropped in a project containing a working Dockerfile | |
| # Author: Florent CHAUVEAU <[email protected]> | |
| # Mentioned here: https://blog.callr.tech/building-docker-images-with-gitlab-ci-best-practices/ | |
| # do not use "latest" here, if you want this to work in the future | |
| image: docker:18 | |
| stages: | |
| - build |
| --- PSQL queries which also duplicated from https://github.com/anvk/AwesomePSQLList/blob/master/README.md | |
| --- some of them taken from https://www.slideshare.net/alexeylesovsky/deep-dive-into-postgresql-statistics-54594192 | |
| -- I'm not an expert in PSQL. Just a developer who is trying to accumulate useful stat queries which could potentially explain problems in your Postgres DB. | |
| ------------ | |
| -- Basics -- | |
| ------------ | |
| -- Get indexes of tables |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| #!/bin/bash | |
| sudo apt-add-repository -y ppa:webupd8team/java | |
| sudo apt-get update | |
| echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections | |
| echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections | |
| sudo apt-get -y install oracle-java8-installer | |
| sudo apt-get -y install libjna-java -y | |
| echo "deb http://www.apache.org/dist/cassandra/debian 30x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list | |
| echo "deb-src http://www.apache.org/dist/cassandra/debian 30x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list | |
| gpg --keyserver pgp.mit.edu --recv-keys F758CE318D77295D |
| <#@ template debug="true" hostspecific="true" language="C#" #> | |
| <#@ output encoding="utf-8" extension=".cs"#> | |
| <#@ assembly name="EnvDTE" #> | |
| <#@ assembly name="EnvDTE80" #> | |
| <#@ assembly name="System.Core" #> | |
| <#@ assembly name="System.Configuration" #> | |
| <#@ import namespace="System.Collections.Generic" #> | |
| <#@ import namespace="System.Configuration" #> | |
| <#@ import namespace="System.Text.RegularExpressions" #> | |
| <#@ import namespace="EnvDTE" #> |