#Covert Data URI to Blob
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
| void drawTriangle(CGContextRef context, CGPoint startPoint, CGPoint secondPoint, CGPoint lastPoint) | |
| { | |
| CGContextSaveGState(context); | |
| CGContextMoveToPoint(context, startPoint.x, startPoint.y); | |
| CGContextAddLineToPoint(context, secondPoint.x, secondPoint.y); | |
| CGContextAddLineToPoint(context, lastPoint.x, lastPoint.y); | |
| CGContextClosePath(context); | |
| CGContextFillPath(context); | |
| CGContextRestoreGState(context); |
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
| ARC: -fobjc-arc | |
| NO-ARC: -fno-objc-arc |
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
| for i in `ls`; do mv -f $i `echo $i | sed 's/{match_reg}/{replace_reg}/'`; done |
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
| window.navigator.standalone |
OlderNewer