A Pen by Luke Mackenzie on CodePen.
A Pen by Luke Mackenzie on CodePen.
This file contains 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
No entry for terminal type "unknown"; | |
using dumb terminal settings. | |
Populating jobs from BR | |
Populating jobs from CA | |
Populating jobs from US | |
Populating jobs from NL | |
Populating jobs from NO | |
Populating jobs from ZA | |
Populating jobs from ES | |
Populating jobs from SE |
This file contains 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
<?php | |
/*IRON_WORKER_HEADER*/ | |
function getArgs(){ | |
global $argv; | |
$args = array('task_id' => null, 'dir' => null, 'payload' => array()); | |
foreach($argv as $k => $v){ | |
if (empty($argv[$k+1])) continue; | |
if ($v == '-id') $args['task_id'] = $argv[$k+1]; | |
if ($v == '-d') $args['dir'] = $argv[$k+1]; | |
if ($v == '-payload' && file_exists($argv[$k+1])){ |
This file contains 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
<%@ Page Title="" Language="C#" MasterPageFile="~/Content.master" AutoEventWireup="true" CodeFile="search.aspx.cs" Inherits="footer_search" %> | |
<asp:Content ID="Content8" ContentPlaceHolderID="searchScript" Runat="Server"> | |
<script src="http://www.google.com/jsapi" type="text/javascript"></script> | |
<script type="text/javascript"> | |
$(function () { |
This file contains 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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="home.aspx.cs" Inherits="home" Title="-removed- 15th Anniversary Website -Home Page" %> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> | |
<head id="Head1" runat="server"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<script type="text/javascript" src="/library/js/jquery.js"></script> | |
<script type="text/javascript" src="/library/js/hoverIntent.js"></script> | |
<script type="text/javascript" src="/library/js/superfish.js"></script> |
This file contains 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
public function indexAction() | |
{ | |
$user = $user = $this->get('security.context')->getToken()->getUser(); | |
$challenge = $this->getDoctrine() | |
->getRepository('GymloopCoreBundle:Challenge') | |
->find(1); | |
if(!$challenge) { | |
throw $this->createNotFoundException('No challenge found'); |
This file contains 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
<div id="change_password_wrapper"> | |
<h2>Change your password</h2> | |
<form action="{{ path('fos_user_change_password') }}" {{ form_enctype(form) }} method="POST" class="fos_user_change_password"> | |
{%if form_errors(form)%} | |
<div class="ui-state-error ui-corner-all"> | |
<p> | |
<span class="ui-icon ui-icon-alert" style="float: left; margin-right: .3em;"></span> | |
<strong>Error:</strong> | |
{{ form_errors(form) }} | |
</p> |
This file contains 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
<?php | |
/* | |
* This file is part of the FOSUserBundle package. | |
* | |
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |
This file contains 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
<?php | |
namespace Gymloop\ChallengeBundle\Controller; | |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
use Gymloop\CoreBundle\Entity\Challenge; | |
use Gymloop\CoreBundle\Entity\ChallengeCoordinates; | |
class DefaultController extends Controller |
NewerOlder