Warning
This tutorial is outdated! I do not recommend using this method anymore, as there are better tools now.
For better alternatives, try out:
Using GitHub with SAML SSO integration often adds some hurdles to command-line authentication.
Warning
This tutorial is outdated! I do not recommend using this method anymore, as there are better tools now.
For better alternatives, try out:
Using GitHub with SAML SSO integration often adds some hurdles to command-line authentication.
#!/usr/bin/env bash | |
# | |
# Author: Markus (MawKKe) [email protected] | |
# Date: 2018-03-19 | |
# | |
# | |
# What? | |
# | |
# Linux dm-crypt + dm-integrity + dm-raid (RAID1) | |
# |
#!/usr/bin/env bash | |
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
git fetch --all | |
git pull --all |
Merged from https://github.com/joelparkerhenderson/git_commit_message and https://chris.beams.io/posts/git-commit/
# This script may use ~8 MiB Memory, it is fast and safe | |
def find_IP(dns_ser, domain, timeout = 2): | |
import dns.resolver, sys | |
try: | |
T = dns.resolver.Resolver(); T.nameservers = [dns_ser, ]; T.timeout = T.lifetime = timeout | |
answers = T.query(domain, raise_on_no_answer=False) | |
return [rdata for rdata in answers] | |
except Exception as e: | |
if e.__class__.__base__ == dns.exception.DNSException: |
.caf Core Audio File 4.5 stars | |
.abm Music Album 4.5 stars | |
.oga Ogg Vorbis Audio File | |
.omf Open Media Framework File | |
.pla Sansa Playlist File | |
.asd Ableton Live Sample Analysis File | |
.bnk Adlib Instrument Bank | |
.bun Cakewalk Bundle File | |
.csh Cubase Waveform File | |
.hsb HALion Sound Bank File |
This configuration is not maintained anymore. You should think twice before using it, Breaking change and security issue will likely eventually happens as any abandonned project.
alternatively use: http://geoff.greer.fm/lscolors/
The value of this variable describes what color to use for which attribute when colors are enabled with CLICOLOR. This string is a concatenation of pairs of the format fb, where f is the foreground color and b is the background color.
The color designators are as follows:
a black
#!/bin/sh -e | |
#git-cache-meta -- simple file meta data caching and applying. | |
#Simpler than etckeeper, metastore, setgitperms, etc. | |
#from http://www.kerneltrap.org/mailarchive/git/2009/1/9/4654694 | |
#modified by n1k | |
# - save all files metadata not only from other users | |
# - save numeric uid and gid | |
# 2012-03-05 - added filetime, andris9 |