A list of amazingly awesome PHP libraries, resources and shiny things.
- Composer/Packagist - A package and dependency manager.
- Composer Installers - A multi framework Composer library installer.
| //// General Declarations | |
| CGContextRef context = UIGraphicsGetCurrentContext(); | |
| //// Color Declarations | |
| UIColor* f65A52 = [UIColor colorWithRed: 1 green: 0 blue: 0 alpha: 1]; | |
| //// Bezier 2 Drawing | |
| UIBezierPath* bezier2Path = UIBezierPath.bezierPath; | |
| [bezier2Path moveToPoint: CGPointMake(45.9, 48.28)]; | |
| [bezier2Path addCurveToPoint: CGPointMake(45.9, 131.72) controlPoint1: CGPointMake(12.7, 71.32) controlPoint2: CGPointMake(12.7, 108.68)]; |
| //// Color Declarations | |
| UIColor* f65A52 = [UIColor colorWithRed: 1 green: 0 blue: 0 alpha: 1]; | |
| //// Bezier 2 Drawing | |
| UIBezierPath* bezier2Path = UIBezierPath.bezierPath; | |
| [bezier2Path moveToPoint: CGPointMake(166.1, 48.28)]; | |
| [bezier2Path addCurveToPoint: CGPointMake(166.1, 131.72) controlPoint1: CGPointMake(199.3, 71.32) controlPoint2: CGPointMake(199.3, 108.68)]; | |
| [bezier2Path addCurveToPoint: CGPointMake(89.68, 147.91) controlPoint1: CGPointMake(145.34, 146.13) controlPoint2: CGPointMake(116.5, 151.53)]; | |
| [bezier2Path addCurveToPoint: CGPointMake(43.5, 169.5) controlPoint1: CGPointMake(71.56, 159.66) controlPoint2: CGPointMake(43.5, 169.5)]; | |
| [bezier2Path addCurveToPoint: CGPointMake(58.33, 138.86) controlPoint1: CGPointMake(43.5, 169.5) controlPoint2: CGPointMake(53.16, 153.11)]; |
| <?php | |
| $A = array( | |
| 72, 79, 84, 46, 14, 4, 62, 88, 58, 21, 16, 27, 13, 52, 96, 70, 28, 75, | |
| 76, 45, 5, 71, 43, 87, 64, 95, 72, 22, 43, 15, 25, 70, 64, 93, 56, 90, | |
| 84, 31, 49, 71, 29, 46, 6, 17, 81, 21, 75, 44, 2, 45, 67, 57, 93, 72, | |
| 39, 74, 43, 53, 40, 45, 87, 23, 44, 52, 1, 56, 32, 26, 32, 67, 41 | |
| ); | |
| $B = array(); |
A list of amazingly awesome PHP libraries, resources and shiny things.
| diff --git a/Gemfile b/Gemfile | |
| index 3f5a183..48e9f48 100644 | |
| --- a/Gemfile | |
| +++ b/Gemfile | |
| @@ -36,6 +36,8 @@ gem 'bootstrap-sass', "2.0.2" | |
| gem "colored" | |
| gem 'yaml_db', :git => "https://github.com/gitlabhq/yaml_db.git" | |
| gem 'modularity' | |
| +gem 'gollum' | |
| +gem 'awesome_nested_set' |
| from pyactiveresource.activeresource import ActiveResource | |
| from biscuit.api import APIHandler | |
| ip_translations = {'aaa.bbb.ccc.ddd': 'xxx.yyy.zzz.qqq', | |
| 'eee.fff.ggg.hhh': 'ppp.qqq.rrr.sss'} | |
| slice_api_key = 'xxxxx_YOUR_SLICEHOST_API_KEY_HERE_xxxxx' | |
| slice_api_url = 'https://%[email protected]/' % slice_api_key |