Short explanation about the series
Introdution, explaining which is the gloal of the post and what are the motivation to face this problem, is basically a very short resume or explanation about what the user is going to read.
| sed -i '' -e $'1i\\\n Here is my new top line' file |
| class MongoExportHelper { | |
| private $path = './'; | |
| private $database = 'default'; | |
| public function setPath($path) { | |
| $this->path = $path; | |
| } | |
| public function setDatabase($database) { | |
| $this->database = $database; |
| is:open is:issue no:milestone -label:s:in-pull-request |
| db.space.find({"createdBy": DBRef("user", ObjectId("54379c3bb0e6df50048b458a"))}).pretty() |
| sudo env PATH=$PATH:/usr/bin pm2 startup ubuntu -u ghost |
| {{ Form::open(['route' => ['session.destroy'], 'method' => 'delete']) }} | |
| <button type="submit">Logout</button> | |
| {{ Form::close() }} |
| <?php | |
| // credential to access github, you should choose between username/password authentication or token (for two step verification accounts) | |
| $githubUser = 'YOURGITHUBUSER'; | |
| $githubPasswd = 'YOURGITHUBPASSWD'; | |
| // or | |
| //$githubToken = 'YOURGITHUBTOKEN'; | |
| $githubOrganization = 'YOURGITHUBORGANIZATION'; |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <phpdox xmlns="http://phpdox.net/config"> | |
| <project name="MyProjectName" source="MyBaseDir" workdir="phpdox"> | |
| <collector publiconly="false"> | |
| <include mask="*/source1/**/*.php" /> | |
| <include mask="*/source2/**/*.php" /> | |
| <exclude mask="*autoload.php" /> | |
| </collector> | |
| <generator output="."> |
| # | |
| # Jenkins build cleaner | |
| # Cleans out all builds for projects that exist in the directory | |
| # Resets the build number to 1 | |
| # Backup all projects before running this | |
| function cleanbuild { | |
| echo "cleaning $1" | |
| cd $1 |