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
| # Change the terminal title automatically based on current process / working-directory | |
| # | |
| # The main improvement over the default 'fish_title' behavior | |
| # is that I use the name of the current git repo, if any, as | |
| # opposed to the raw working-directory | |
| function fish_title | |
| set -l command (echo $_) | |
| if test $command = "fish" | |
| # we are sitting at the fish prompt |
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
| function mk_prompt | |
| { | |
| # script to visually list terminal color codes: | |
| # http://tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html | |
| local GRAY="\[\033[0;37m\]" | |
| local BOLD_GRAY="\[\033[1;37m\]" | |
| local GREEN="\[\033[0;32m\]" | |
| local BOLD_GREEN="\[\033[1;32m\]" | |
| local CYAN="\[\033[0;36m\]" | |
| local BOLD_CYAN="\[\033[1;36m\]" |
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
| _guid = [[NSUUID UUID] UUIDString]; |
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
| // | |
| // TwoColumnTextArea.h | |
| // TastingRoom | |
| // | |
| // Created by Keith Lazuka on 4/26/13. | |
| // Copyright (c) 2013 Keith Lazuka. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> |
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
| static CIImage* ApplyFiltersToImage(NSArray *filters, CIImage *inputImage) | |
| { | |
| CIImage *img = inputImage; | |
| for (CIFilter *filter in filters) | |
| { | |
| [filter setValue:img forKey:kCIInputImageKey]; | |
| img = filter.outputImage; | |
| } | |
| return img; | |
| } |
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
| : RGB>RGB ( bitmap -- bitmap' ) ; | |
| : RGB>BGR ( bitmap -- bitmap' ) BGR>RGB ; inline | |
| : RGB>RGBA ( bitmap -- bitmap' ) add-dummy-alpha ; inline | |
| : RGB>BGRA ( bitmap -- bitmap' ) | |
| 3 <sliced-groups> [ <reversed> add-dummy-alpha ] map concat ; inline | |
| : RGB>ARGB ( bitmap -- bitmap' ) |
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
| diff --git a/basis/fonts/fonts.factor b/basis/fonts/fonts.factor | |
| index fb89bdb..5806bec 100644 | |
| --- a/basis/fonts/fonts.factor | |
| +++ b/basis/fonts/fonts.factor | |
| @@ -9,7 +9,8 @@ size | |
| bold? | |
| italic? | |
| { foreground initial: COLOR: black } | |
| -{ background initial: COLOR: white } ; | |
| +{ background initial: COLOR: white } |
NewerOlder