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
| Base: | |
| {% block javascript %} | |
| <script src="{{ asset('js/script.js') }}" type="text/javascript" /> | |
| {% endblock %} | |
| Page's Template extending base: | |
| {% block javascript %} |
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
| This application requires an update to Adobe AIR that is not available for your system. Please view the system requirements for Adobe AIR and update your system accordingly. |
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 | |
| $w = stream_get_wrappers(); | |
| echo 'openssl: ', extension_loaded ('openssl') ? 'yes':'no', "\n"; | |
| echo 'http wrapper: ', in_array('http', $w) ? 'yes':'no', "\n"; | |
| echo 'https wrapper: ', in_array('https', $w) ? 'yes':'no', "\n"; | |
| echo 'wrappers: ', var_dump($w); |
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 app/console cache:clear | |
| php app/console cache:warmup |
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
| echo "Git Status:" | |
| git status -sb | |
| echo "" | |
| echo "composer.phar Update:" | |
| php composer.phar self-update | |
| # Comment this line if no phar in path | |
| composer self-update | |
| echo "" | |
| echo "Deps update:" | |
| # If no composer in your path then comment this line and uncomment Ln 12 |
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
| <ocramius> \o/ https://github.com/symfony/symfony/pull/7527 | |
| <jrobeson> well good freakin job ocramius | |
| <jrobeson> ocramius: if i had the choice.. i'd be opposed to symfony having a non MIT licensed dependency | |
| <jrobeson> as it makes it incompatible with any gpl 2 version | |
| <jrobeson> err any gpl2 software it is integrated with | |
| <jrobeson> so it'd a no go for drupal i think.. | |
| <igorw> is apache2 problematic? it's annoying that it's different but I don't know the actual details of how it interops | |
| <jrobeson> oh sorry they are 2.0 and higher | |
| <igorw> and drupal is gpl which is problematic | |
| <jrobeson> apache 2.0 is only compatible with gpl 3.0 .. not 2 |
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> | |
| <head> | |
| <title> Introduction to Object-Oriented Programming </title> | |
| <link type='text/css' rel='stylesheet' href='style.css'/> | |
| </head> | |
| <body> | |
| <p> | |
| <?php | |
| // The code below creates the 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
| <MichaelC> can you vote if you join in the middle of a voting period? You can I think? | |
| <Crell> I don't know that we have an existing rule on that front. I'd think the membership as of when the vote is called is what matters. | |
| <Crell> Although Typo3 changed reps mid-vote, not changed its membership, so Karsten should be able to vote on open votes right now. | |
| <MichaelC> yeah | |
| <MichaelC> if Abbas gets through can he vote on Beau though. ;) | |
| <Crell> No, Beau's vote started before Abbas was a member. | |
| <Crell> Or am I confused about who you mean... That's the OWASP guy, right? | |
| <MichaelC> but Abbas' vote will finish before Beaus' | |
| <Crell> But OWASP won't be a member as of when Beau's vote began. | |
| <MichaelC> oh |
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
| {% extends layout %} | |
| {% block body %} | |
| <div id="main"> | |
| <h2>Contact me</h2> | |
| <p>For queries about anything on this website, or for job quotations, please contact me using the contact form below or via <a href="mailto:email@email.com">email</a>.</p> | |
| <form action="#" method="post"> | |
| {{ form_start(form) }} | |
| {{ form_errors(form) }} |
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
| Michael@MICHAEL-MAIN /c/wamp/ (master) | |
| $ php -r "var_dump(version_compare('3.1.0-dev', '3.1-a1', '<'));" | |
| bool(false) | |
| Michael@MICHAEL-MAIN /c/wamp/ (master) | |
| $ php -r "var_dump(version_compare('3.1.0-dev', '3.1.0-a1', '<'));" | |
| bool(true) | |
| Michael@MICHAEL-MAIN /c/wamp/ (master) | |
| $ php -r "var_dump(version_compare('3.1.0', '3.1.0-a1', '<'));" |