Skip to content

Instantly share code, notes, and snippets.

View millman82's full-sized avatar

Tim Miller millman82

  • Charlotte, NC
View GitHub Profile
@devonc
devonc / UIImage+ImageEffects.swift
Last active November 7, 2019 20:07
Image Effect Category in Swift
import Accelerate
import UIKit
public extension UIImage {
public func applyLightEffect() -> UIImage? {
return applyBlur(radius: 30, tintColor: UIColor(white: 1, alpha: 0.3))
}
public func applyExtraLightEffect() -> UIImage? {
return applyBlur(radius: 20, tintColor: UIColor(white: 0.97, alpha: 0.82))
@tsubik
tsubik / FindProjectMissingFilesReferences.ps1
Created August 8, 2012 16:25
Looking for missing references to files in project config file
#Author: Tomasz Subik http://tsubik.com
#Date: 8/04/2012 7:35:55 PM
#Script: FindProjectMissingFiles
#Description: Looking for missing references to files in project config file
Param(
[parameter(Mandatory=$false)]
[alias("d")]
$Directory,
[parameter(Mandatory=$false)]
[alias("s")]