Skip to content

Instantly share code, notes, and snippets.

public class RoundedShadowView: UIView {
public var cornerRadius: CGFloat = 2.0 {
didSet {
setNeedsLayout()
}
}
public var fillColor: UIColor = .white {
didSet {
@pddkhanh
pddkhanh / khanh.plugin.zsh
Last active September 10, 2018 07:32
My oh-my-zsh plugin
alias xcdd='rm -rf ~/Library/Developer/Xcode/DerivedData/*'
alias xctp='xcbuild_time_profiling'
function xcbuild_time_profiling {
local fileToOpen='';
local is_workspace=true;
local scheme=$1;
if [ -n "$scheme" ]
then