A Pen by Ken Wheeler on CodePen.
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
| <!-- | |
| TODO The TPL description | |
| --> | |
| <section id="cover" class="cover fold"> | |
| <div class="container v-align"> | |
| <div class="row"> | |
| <!-- CLASS --> | |
| <div class="col-4"> | |
| <h1 class="mast-header"> {{ meta.title }} </h1> | |
| <p class="fixie default-text"></p> |
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 | |
| //Custom meta values -- customise the meta values | |
| $config['custom_meta_values'] = array( | |
| //page slug keep lower case | |
| 'slug' => 'Slug', | |
| //page category | |
| 'category' => 'Category', | |
| //page status | |
| 'status' => 'Status', |
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
| { | |
| "installed_packages": | |
| [ | |
| "auto-save", | |
| "Autoprefixer", | |
| "Bootstrap 3 Snippets", | |
| "CakePHP (Native)", | |
| "ColorPicker", | |
| "Emmet", | |
| "EsFormatter", |
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 | |
| $string = "hrlle worls fff test i all rightt ..." ; | |
| $pattern = '/ /'; | |
| $string1 = preg_replace($pattern, ' ', $string); | |
| //var_dump($string1); | |
| //var_dump (preg_replace($pattern, $string1)) ; | |
| $string_1 = '%FLBROOKSVILLS$SHERRY$ANNE^16047 TAMPA ST^ ?;6360101362078164784=1908196499040=?#! 346048458 E 2509 ECCECC00000?'; | |
| $string_2 = '%FLWEEKI^PIERSON$WILLIAM$HOWARD^11195 MARSH WREN AVE^ ?;6360101662592871391=1810197199310=?#! 346143034 E B 1602 ECCECC00000?'; |
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 | |
| $string = "hrlle worls fff test i all rightt ..." ; | |
| $pattern = '/ /'; | |
| $string1 = preg_replace($pattern, ' ', $string); | |
| //var_dump($string1); | |
| //var_dump (preg_replace($pattern, $string1)) ; | |
| $string_1 = '%FLSPRING HILL^SANDY$SHAWN$JASON^342 GLENN IVY TER^ ?;6360101953079071446=2012197199060=?#! 34608 E B 1507 ECCECC00000?'; | |
| $string_2 = '%FLWEEKI^PIERSON$WILLIAM$HOWARD^11195 MARSH WREN AVE^ ?;6360101662592871391=1810197199310=?#! 346143034 E B 1602 ECCECC00000?'; |
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 | |
| function _uploadLogo($imageName) { | |
| $path = 'img/employer/logos/'; | |
| if (!empty($this->data['VirtualJobFairExhibitor'])) { | |
| if(!move_uploaded_file($this->data['VirtualJobFairExhibitor']['logo']['tmp_name'], $path . $imageName)) { | |
| return false; | |
| } |
A quick ToDo app using React JS - basically playing with the fact that it works on CodePen.
A Pen by Adam Moore on CodePen.
A Pen by Warren Mira on CodePen.
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
| /** | |
| * Created by studio-mac on 2/16/15. | |
| */ | |
| var gulp = require('gulp'); | |
| var source = require('vinyl-source-stream'); // Used to stream bundle for further handling | |
| var browserify = require('browserify'); | |
| var watchify = require('watchify'); | |
| var reactify = require('reactify'); | |
| var gulpif = require('gulp-if'); |