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
[General] | |
IniMode=true | |
[version] | |
written_by_TXS_version=2.8.8 | |
written_by_TXS_hg_revision=: | |
created_by_TXS_version=2.8.8 | |
created_by_TXS_hg_revision=: | |
[texmaker] |
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
.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 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
#!/bin/bash | |
set -o errexit | |
echo "Removing exited docker containers..." | |
docker ps -a -f status=exited | grep ^data | awk '{print $1}' | xargs -r docker rm -v | |
#docker ps -a -f status=exited -q | xargs -r docker rm -v | |
echo "Removing dangling images..." | |
docker images --no-trunc -q -f dangling=true | xargs -r docker rmi |
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
SIZE=500 | |
EMAIL="[email protected]" | |
curl "http://www.gravatar.com/avatar/$(echo -n ${EMAIL} | md5sum | awk '{print $1}')?s=${SIZE}" > gravatar.png |
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
#!/bin/bash | |
COMMAND=$(profitelo --version) | |
if [ "$COMMAND" == "v1.0.4" ] | |
then | |
sed -i "s/GIT_PROJECT_FOLDER_PATH/GIT_PROJECT_FOLDER_DIR/" ~/.profiteloconfig | |
echo "Update .profiteloconfig successfully :)" | |
fi |
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
#!/bin/bash | |
# General colors | |
black='\x1B[0;30m' | |
red='\x1B[0;31m' | |
green='\x1B[0;32m' # '\x1B[1;32m' is too bright for white bg. | |
blue='\x1B[1;34m' | |
yellow='\x1B[0;33m' | |
purple='\x1B[1;35m' | |
cyan='\x1B[0;36m' |
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
sudo apt-get install libffi-dev libssl-dev # for python | |
sudo pip install requests[security] | |
sudo apt-get install libgtkspell-dev libgtkspell0 | |
sudo apt-get install libdb6.0-* # berkley db | |
sudo apt-get install libboost-all-dev # boost lib c++ | |
# lucane plus plus lib | |
git clone https://github.com/luceneplusplus/LucenePlusPlus.git | |
mkdir LucenePlusPlus/build; cd LucenePlusPlus.build |
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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
class Colors: | |
HEADER = '\033[95m' | |
OKBLUE = '\033[94m' | |
OKGREEN = '\033[92m' | |
WARNING = '\033[93m' | |
FAIL = '\033[91m' | |
ENDC = '\033[0m' |
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
#!/bin/sh | |
while true; | |
do | |
clear | |
echo "Git livelog: $(pwd)" | |
git log \ | |
--graph \ | |
--all \ | |
--abbrev-commit \ | |
--date=relative \ |
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
# bash/zsh git prompt support | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# This script allows you to see repository status in your prompt. | |
# | |
# To enable: | |
# | |
# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). |