Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: gogs | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Git repository manager Gogs | |
| # Description: Starts and stops the self-hosted git repository manager Gogs | |
| ### END INIT INFO |
rsync must be available on both machines (deployment host and target host)| <?php | |
| namespace My\Package\Validation; | |
| use TYPO3\Flow\Persistence\RepositoryInterface; | |
| class ExistsValidator extends \TYPO3\Flow\Validation\Validator\AbstractValidator { | |
| /** | |
| * @var array | |
| */ |
| <?php | |
| namespace Your\Package\ViewHelpers\Link; | |
| use TYPO3\Flow\Annotations as Flow; | |
| use TYPO3\Flow\Aop\JoinPoint; | |
| use TYPO3\Flow\Mvc\ActionRequest; | |
| use TYPO3\Flow\Security\Authorization\Privilege\Method\MethodPrivilegeInterface; | |
| use TYPO3\Flow\Security\Authorization\Privilege\Method\MethodPrivilegeSubject; | |
| use TYPO3\Flow\Security\Authorization\PrivilegeManagerInterface; | |
| use TYPO3\Fluid\ViewHelpers\Link\ActionViewHelper; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Bootstrap 3 responsive columns of same height</title> | |
| <meta name="description" content="Bootstrap 3 responsive columns of same height"> | |
| <!-- include bootstrap --> | |
| <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css"> | |
| <style id="jsbin-css"> | |
| /* USAGE |
| #! /usr/bin/env bash | |
| # Variables | |
| APPENV=local | |
| DBHOST=localhost | |
| DBNAME=dbname | |
| DBUSER=dbuser | |
| DBPASSWD=test123 | |
| echo -e "\n--- Mkay, installing now... ---\n" |
| @media print { | |
| .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { | |
| float: left; | |
| } | |
| .col-sm-12 { | |
| width: 100%; | |
| } | |
| .col-sm-11 { | |
| width: 91.66666667%; | |
| } |
| <?php | |
| namespace NameOfVendor\NameOfExtension\ViewHelpers; | |
| /*************************************************************** | |
| * Copyright notice | |
| * | |
| * (c) 2010 Franz Koch <typo3@elements-net.de>, Koch & Koch GbR | |
| * | |
| * All rights reserved |