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
| syslog -k Sender kernel -k Message CSeq 'n Cause: -' | tail | awk '/:/{$4=""; print}' | pbcopy |
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
| // | |
| // FLAnimatedImageView+YYCache.m | |
| // Gif-Example | |
| // | |
| // Created by skyline on 15/11/21. | |
| // Copyright © 2015年 skyline. All rights reserved. | |
| // | |
| #import "FLAnimatedImageView+YYCache.h" | |
| #import "SDWebImageDownloader.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
| def my_range(start, stop=None, step=None): | |
| result = [] | |
| begin = 0 | |
| end = 0 | |
| _step = 1 | |
| if stop is None: | |
| end = start | |
| else: | |
| begin = start | |
| end = stop |
NewerOlder