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
# | |
# Sample configuration file for the Samba suite for Debian GNU/Linux. | |
# | |
# | |
# This is the main Samba configuration file. You should read the | |
# smb.conf(5) manual page in order to understand the options listed | |
# here. Samba has a huge number of configurable options most of which | |
# are not shown in this example | |
# | |
# Some options that are often worth tuning have been included as |
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
ssh-agent bash | |
ssh-add |
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
apt-get install build-essential module-assistant | |
m-a prepare | |
# Install Guest Additions from VBox menu | |
mount /media/cdrom | |
sh /media/cdrom/VBoxLinuxAdditions.run |
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
private function updateLastUpdateDate(LifecycleEventArgs $eventArgs) | |
{ | |
$changeSet = $eventArgs->getEntityManager()->getUnitOfWork()->getEntityChangeSet($this); | |
if (!array_key_exists('status', $changeSet)) { | |
return; | |
} | |
// $statusBefore = $changeSet['status'][0]; | |
// $statusAfter = $changeSet['status'][1]; | |
} |
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
$sitemap = new \DOMDocument(); | |
$sitemap->loadXml($feedGenerator->generate()); | |
$xpath = new \DOMXPath($sitemap); | |
$xpath->registerNamespace('image', 'http://www.google.com/schemas/sitemap-image/1.1'); | |
$image = $xpath->evaluate('//image:image'); |
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
// Remove an element at desired index | |
a.splice(desiredIndex, 1); | |
// Add an element at given index | |
a.splice(desiredIndex, 0, "My new element"); |
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
mysqldump --opt --where="1 limit 1000000" database table > dump.sql |
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
#!/usr/bin/env bash | |
# Install common environment | |
apt-get update | |
apt-get install -y curl | |
# Install Git and configure it (useful when working on Windows) | |
apt-get install -y git-core | |
git config --global color.ui auto | |
git config --global core.filemode false |
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
find src/ -type f -name *Test.php -exec grep -H -c "@group" {} \; | grep :0\$ | awk -F':' '{ print $1 }' |
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
sed '$!N;s/\n/ /' infile |