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
| { | |
| "name": "symfony/framework-standard-edition", | |
| "license": "MIT", | |
| "type": "project", | |
| "description": "The \"Symfony Standard Edition\" distribution", | |
| "autoload": { | |
| "psr-0": { "": "src/" } | |
| }, | |
| "require": { | |
| "php": ">=5.3.3", |
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 | |
| namespace Mailbroker\MailDetailsBundle\Worker; | |
| use Mmoreram\GearmanBundle\Driver\Gearman; | |
| use Doctrine\ORM\EntityManager; | |
| use GearmanJob; | |
| use Mmoreram\GearmanBundle\Service\GearmanClient; | |
| use Mailbroker\MailDetailsBundle\Importer\ImporterInterface; |
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 | |
| namespace Mailbroker\MailDetailsBundle\EventListener; | |
| use Symfony\Component\HttpKernel\Log\LoggerInterface; | |
| use Mmoreram\GearmanBundle\Event\GearmanClientCallbackStatusEvent; | |
| use Mmoreram\GearmanBundle\Event\GearmanClientCallbackCreatedEvent; | |
| use Mmoreram\GearmanBundle\Event\GearmanClientCallbackCompleteEvent; | |
| use GearmanJob; |
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
| mailbroker_mail_details.event_listener.converter: | |
| class: Mailbroker\MailDetailsBundle\EventListener\ConverterEventListener | |
| lazy: true | |
| arguments: [@logger] | |
| tags: | |
| - { name: kernel.event_listener, event: gearman.client.callback.complete, method: onComplete } | |
| - { name: kernel.event_listener, event: gearman.client.callback.status, method: onStatus } | |
| - { name: kernel.event_listener, event: gearman.client.callback.created, method: onCreated } |
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
| // ---- | |
| // Sass (v3.4.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| .col-xs-6 { | |
| width: 666px; | |
| } | |
| .random-class { |
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
| // ---- | |
| // Sass (v3.4.4) | |
| // Compass (v1.0.1) | |
| // ---- | |
| .extendable { | |
| width: 666px; | |
| .handicapped & { | |
| font-size: 20rem; |
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
| @charset "UTF-8"; | |
| /*! normalize.css v3.0.1 | MIT License | git.io/normalize */ | |
| /* line 9, /var/www/medportal_laravel/app/assets/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_normalize.scss */ | |
| html { | |
| font-family: sans-serif; | |
| -ms-text-size-adjust: 100%; | |
| -webkit-text-size-adjust: 100%; | |
| } | |
| /* line 19, /var/www/medportal_laravel/app/assets/bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap/_normalize.scss */ |
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
Show hidden characters
| { | |
| "cmd": ["${project_path:${folder}}\\pawno\\pawncc.exe", "${project_base_name}.pwn", "-;+", "-v2", "-d3", "-\\)+"], | |
| "working_dir": "${project_path:${folder}}\\gamemodes", | |
| "file_regex": "^([^\\.]+\\.pwn)\\((\\d+)\\)() : (.*)$", | |
| "variants": [ | |
| { | |
| "cmd": ["${project_path:${folder}}\\pawno\\pawncc.exe", "${project_base_name}.pwn", "-;+", "-v2", "-d3", "-\\)+", "-l"], | |
| "working_dir": "${project_path:${folder}}\\gamemodes", | |
| "name": "List file" | |
| }, |
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
| #include <a_samp> | |
| #include <YSI\y_iterate> | |
| //#include <YSI\y_commands> | |
| main(){} | |
| #define xsize 25 | |
| #define ysize 25 | |
| enum info { bool:in, bool:up, bool:left, prevx, prevy, platform } |
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
| gulp.src('src/dev.html') | |
| .pipe(inlinesource({ | |
| rootpath: '.', | |
| handlers: [ | |
| function vertex(source, context, next) { | |
| if (source.type === 'x-shader/x-vertex') { | |
| source.type = 'js'; | |
| source.attributes.type = 'x-shader/x-vertex'; | |
| } |
OlderNewer