This file contains hidden or 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
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix |
This file contains hidden or 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 | |
#=============================================================================== | |
# Filename: build_gmp.sh | |
# Created by Volodymyr Boichentsov on 18/09/2015. | |
# Copyright © 2015 3D4Medical. All rights reserved. | |
# Property of 3D4Medical. | |
#=============================================================================== | |
#-emit-obj -fembed-bitcode -disable-llvm-optzns -O3 |
This file contains hidden or 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
DisplayMetrics displayMetrics = mContext.getResources().getDisplayMetrics(); | |
float density = displayMetrics.density; | |
float scaledDensity = displayMetrics.scaledDenstiy; |