duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| input.form-submit.button-small { | |
| padding: 4px 8px; | |
| font-weight: bold; | |
| } | |
| .container-inline input.form-submit.button-small + .ajax-progress.ajax-progress-throbber .throbber { | |
| position: absolute; | |
| left: 19px; | |
| margin-top: 7px; | |
| } |
| git rebase --interactive HEAD~2 | |
| # we are going to squash c into b | |
| pick b76d157 b | |
| pick a931ac7 c | |
| # squash c into b | |
| pick b76d157 b | |
| s a931ac7 c |
| # Install PEAR (PHP Extension and Application Repository) | |
| $ sudo php /usr/lib/php/install-pear-nozlib.phar | |
| $ sudo pear upgrade-all | |
| $ sudo pear install --alldeps PHP_CodeSniffer | |
| # Add PEAR to `php.ini` Include Path | |
| $ nano /etc/php.ini | |
| ;include_path = ".:/php/includes" | |
| include_path = ".:/php/includes:/usr/lib/php/pear" |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.nio.file.*; | |
| import java.nio.file.attribute.BasicFileAttributes; | |
| import static java.nio.file.Files.*; | |
| /** | |
| * Extracts files and directories of a standard zip file to a destination directory. Requires at least Java 7. | |
| */ |
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
This is only a summary. For a full list of changes see the NEWS file.
| Feature | RFC / announcement | Author |
|---|---|---|
| Bundled ZendOptimizer+ as OPcache | https://wiki.php.net/rfc/optimizerplus | zeev |
| <?php | |
| $app['security.firewalls'] = array( | |
| 'user_firewall' => array( | |
| 'pattern' => new \Application\UserRequestMatcher($app['request']), | |
| 'form' => array('login_path' => '/login', 'check_path' => '/authenticate'), | |
| 'logout' => array('logout_path' => '/logout'), | |
| 'users' => $app->share(function () use ($app) | |
| { | |
| return new \Application\UserProvider($app); | |
| }), |
| <?php | |
| // Machine name for our custom node | |
| define('NODE_NAME', 'the_node_machine_name'); | |
| // Machine name for our custom taxonomy | |
| define('TAXONOMY_NAME', 'the_taxonomy_machine_name'); | |
| function module_install() { | |
| _create_taxonomy(); | |
| _create_content_type(); | |
| } |
##Given Apache 2 and MySQL are already installed.
#Update MacPorts sudo port selfupdate;sudo port -u upgrade outdated
#Install PHP 5.4.* sudo port install php54 php54-apache2handler ##Activate Apache Module cd /opt/local/apache2/modules