zsh - Умный bash
mosh - Умный, мобильный и быстрый ssh
tmux - Сессии для ssh, мультиплексор терминалов
#!/bin/sh | |
. "$(dirname "$0")/_/husky.sh" | |
# Purpose: | |
# Reference sha1 of original repo if GitHub format. | |
# Repo is hardcoded atm | |
# Requires https://typicode.github.io/husky/ | |
# Path to the commit message file | |
COMMIT_MSG_FILE="$1" |
name: Reference backported commits | |
on: | |
push: | |
branches: | |
- backport-* | |
pull_request: | |
jobs: | |
rewrite-messages: |
import java.io.BufferedInputStream; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.net.URL; | |
public class TLS12Test { | |
public TLS12Test() { | |
} |
#!/usr/bin/env sh | |
# nsupdate.info DDNS update script for asuswrt-merlin | |
# See | |
# https://github.com/RMerl/asuswrt-merlin/wiki/Custom-DDNS | |
# http://nsupdateinfo.readthedocs.io/en/ | |
# Location: /jffs/scripts/ddns-start | |
DOMAIN="domain.nsupdate.info" | |
TOKEN="token" |
#/etc/default/syncthing-relay | |
KEYS=/etc/relaysrv | |
GLOBAL_RATE=10485760 | |
PER_SESSION_RATE=212992 | |
PROVIDED_BY='https://keybase.io/ushkinaz' |
# Repos | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo add-apt-repository ppa:git-core/ppa | |
# Basic tools | |
sudo apt install mc htop lnav git zsh etckeeper tmux httpie pv most | |
sudo apt install oracle-java8-installer | |
# gui |
-- Generates a table with dates, | |
-- "duration" - number of days | |
-- "days_ago" - start day | |
WITH params AS (SELECT | |
40 AS days_ago, | |
10 AS duration | |
FROM dual) | |
SELECT | |
LEVEL, | |
to_date(to_char(SYSDATE - LEVEL - params.days_ago, 'DD-MM-YYYY'), 'DD-MM-YYYY') |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
# Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
# The author disclaims copyright to this source code. | |
# Modified for simplified checking by Yonathan Klijnsma | |
import sys | |
import struct | |
import socket |