Skip to content

Instantly share code, notes, and snippets.

View jesusOmar's full-sized avatar

Jesus Fernandez jesusOmar

View GitHub Profile
@jesusOmar
jesusOmar / CategoryRepository.php
Created July 17, 2018 13:48
Doctrine Caching Results?
<?php
namespace Stanford\BerriesBundle\Entity\Berry;
use Doctrine\ORM\EntityRepository;
/**
* CategoryRepository.
*
* This class was generated by the Doctrine ORM. Add your own custom
{
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.wordWrap": "on",
"editor.lineHeight": 35,
"workbench.iconTheme": "material-icon-theme",
"php.validate.executablePath": "/usr/local/opt/php71/bin/php",
"php.suggest.basic": false,
"workbench.activityBar.visible": false,
<?php
$header = <<<'EOF'
This file is part of PHP CS Fixer.
(c) Fabien Potencier <fabien@symfony.com>
Dariusz Rumiński <dariusz.ruminski@gmail.com>
This source file is subject to the MIT license that is bundled
with this source code in the file LICENSE.

Keybase proof

I hereby claim:

  • I am jesusomar on github.
  • I am jesusomar (https://keybase.io/jesusomar) on keybase.
  • I have a public key ASC8PlY0AXMOGoMRJ85Zi-gwydWBw-x8mfMNQ7Za2UTrugo

To claim this, I am signing this object:

---
ip: "192.168.10.10"
memory: 4096
cpus: 2
provider: vmware_fusion
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
<?php namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
/**
* Appointment
*
* @ORM\Table(name="appointments")
* @ORM\Entity(repositoryClass="AppBundle\Entity\AppointmentRepository")
@jesusOmar
jesusOmar / doctrine.php
Created February 8, 2015 17:23
Doctrine Query Help
<?php
$qb2 = $this->createQueryBuilder('a2')
->select('a2')
->innerJoin('a2.registrations', 'appointment_registrations')
->where('a2.id = a1.id') // This does not work :(
;
$qb = $this->createQueryBuilder('a1');
$qb->where($qb->expr()->not($qb->expr()->exists($qb2->getDql())));
{% extends "::layout.html.twig" %}
{% block content %}
{% block activity_title %}
<h1>{{ activity.name | title }}</h1>
{% endblock activity_title %}
{% if isNotIncentiviseActivity %}
<div id="myModal" class="modal fade">
<div class="modal-dialog">
@jesusOmar
jesusOmar / development_update.sh
Created June 26, 2013 22:56
My development server automatic update script.
#!/bin/bash
DOCUMENT_ROOT=/var/www/html/vhosts/dev.domain.com;
ENV=dev;
SVN_SERVER=https://subversion.assembla.com/svn/repo/trunk;
SVN_USERNAME=username;
SVN_PASSWORD=password;
echo "Changing directories to $DOCUMENT_ROOT...";
cd $DOCUMENT_ROOT;
@jesusOmar
jesusOmar / dump.php
Last active September 28, 2015 07:08
Symfony 2 Array dump
<?php
\Doctrine\Common\Util\Debug::dump($value);