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
/* You'll need the following packages: stylelint, stylelint-config-standard, stylelint-order */ | |
{ | |
"extends": "stylelint-config-standard", | |
"plugins": [ | |
"stylelint-order" | |
], | |
"rules": { | |
"length-zero-no-unit": [true, {"ignore": ["custom-properties"]}], | |
"property-no-vendor-prefix": null, |
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
@interface UIPreviewForceInteractionProgress : NSObject | |
- (void)endInteraction:(BOOL)arg1; | |
@end | |
@interface UIPreviewInteractionController : NSObject | |
@property (nonatomic, readonly) UIPreviewForceInteractionProgress *interactionProgressForPresentation; |
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
<input type="hidden" name="show_pictures" value="0" /> | |
<input type="checkbox" id="show_pictures_field" name="show_pictures" value="1" /> | |
<label for="show_pictures_field">Show Pictures</label> |
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
ashes://addOpenURL?title=Share%20with%20Pinbook&url=pinbook%3A%2F%2Fx-callback-url%2Fadd%3Furl%3D%5B%5B%5Burl%5D%5D%5D%26title%3D%5B%5B%5Btitle%5D%5D%5D%26x-source%3DAshes%26x-success%3D%5B%5B%5Bcallback%5D%5D%5D%26x-cancel%3D%5B%5B%5Bcallback%5D%5D%5D |
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
ashes://addOpenURL?title=Save%20to%20Kippster&url=kippster%3A%2F%2Fx-callback-url%2Fadd%3Furl%3D%5B%5B%5Burl%5D%5D%5D%26x-success%3D%5B%5B%5Bcallback%5D%5D%5D%26x-cancel%3D%5B%5B%5Bcalback%5D%5D%5D |
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
// Creating Variables | |
$green: #76c044; | |
// Using Variables | |
h1 { | |
color: $green; | |
} | |
// Math | |
h1 { |
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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="eng" lang="eng"> | |
<head> | |
<title>YouVersion</title> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<meta name = "viewport" content = "user-scalable = no"> | |
<style type="text/css"> | |
body { font-family: 'Helvetica Neue',Helvetica,Verdana,sans-serif; font-size: 17pt; } | |
.note { |
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
require_once('application/libraries/Admin_Controller.php'); | |
class Projects extends Admin_Controller { | |
//controller | |
public $controller_path = 'admin/projects'; | |
//module and model |
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
$gray: #ccc; | |
$grey: $gray; |
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
<?php | |
$template = array(); | |
$template['routes'] = array( | |
'(?P<slug>[a-z0-9\-])' => 'view', | |
'(?P<slug>[a-z0-9\-])/comment' => 'create_comment', | |
'default_action' => 'index' | |
); |
NewerOlder