View all commands:
$ docker
Search for images
"workbench.colorCustomizations": { | |
// Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast. | |
"contrastActiveBorder": "", | |
"contrastBorder": "", | |
// Base Colors | |
"focusBorder": "", | |
"foreground": "", | |
"widget.shadow": "", | |
"selection.background": "", | |
"descriptionForeground": "", |
<?php | |
// order. | |
$order_wrapper = entity_metadata_wrapper('commerce_order', $order); | |
// Order id. | |
$order_id = order_wrapper->order_id->value(); | |
// User detils. |
Windows.10.and.Office.2016.gVLK | |
##################################################################### | |
# technet.microsoft.com/en-us/library/jj612867.aspx?lc=1033 # | |
##################################################################### | |
Windows 10 Professional W269N-WFGWX-YVC9B-4J6C9-T83GX | |
Windows 10 Professional N MH37W-N47XK-V7XM9-C7227-GCQG9 | |
Windows 10 Education NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 | |
Windows 10 Education N 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ |
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
{ | |
"name": "symfony/framework-standard-edition", | |
"license": "MIT", | |
"type": "project", | |
"description": "The \"Symfony Standard Edition\" distribution", | |
"autoload": { | |
"psr-0": { "": "src/", "SymfonyStandard": "app/" } | |
}, | |
"require": { | |
"php": ">=5.3.3", |
andriana_tchoupi: | |
resource: "@AndrianaTchoupiBundle/Controller/" | |
type: annotation | |
prefix: / | |
app: | |
resource: @AppBundle/Controller/ | |
type: annotation |
{% extends '::base.html.twig' %} | |
{% block body -%} | |
<h1>Toys</h1> | |
<table class="record_properties"> | |
<tbody> | |
<tr> | |
<th>Id</th> | |
<td>{{ entity.id }}</td> |
<?php | |
namespace Andriana\TchoupiBundle\Entity; | |
use Doctrine\ORM\Mapping as ORM; | |
/** | |
* Toys | |
* | |
* @ORM\Table("tchoupi") |
<?php | |
namespace Andriana\TchoupiBundle\Controller; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; | |
use Andriana\TchoupiBundle\Entity\Toys; |