{{ path('article_show', { 'slug': article.slug }) }}
This file contains hidden or 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
#include "tolua++.h" | |
#include "Scene.h" | |
char* Scene::getData() { | |
printf("Something %s",data); | |
return data; | |
} | |
void Scene::setData(const char* pData){ | |
sprintf(data, "%s",pData); |
This file contains hidden or 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
require "hello2" | |
cocos2d.CCLuaLog("result is " .. myadd(3, 5)) | |
-- create scene & layer | |
layerFarm = cocos2d.CCLayer:node() | |
layerFarm:setIsTouchEnabled(true) | |
layerMenu = cocos2d.CCLayer:node() |
This file contains hidden or 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
/* ============================================================= | |
* bootstrap-scrollspy.js v2.0.1 | |
* http://twitter.github.com/bootstrap/javascript.html#scrollspy | |
* ============================================================= | |
* Copyright 2012 Twitter, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* |
This file contains hidden or 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
//... | |
if(!$this->get('security.context')->isGranted('IS_AUTHENTICATED_FULLY')){ | |
throw new AccessDeniedException(); | |
} | |
//... | |
$user = $this->get('security.context')->getToken()->getUser(); |
This file contains hidden or 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
set :application, "Music Tube" | |
set :domain, "server.yourserver.com" | |
set :deploy_to, "~/www/serverfolder.yourserver.com" | |
set :app_path, "app" | |
set :repository, "git://github.com/yourname/yourrepo.git" | |
set :scm, :git | |
set :scm_verbose, true | |
# Or: `accurev`, `bzr`, `cvs`, `darcs`, `subversion`, `mercurial`, `perforce`, or `none` |
This file contains hidden or 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
#/bin/bash | |
# run bash <(curl -sS https://gist.github.com/marcoleong/5573628/raw) | |
# author: Marco Leong (marcoleong at Github) | |
cd /tmp | |
echo "Downlaoding http://apt.puppetlabs.com/puppetlabs-release-precise.deb..." | |
wget http://apt.puppetlabs.com/puppetlabs-release-precise.deb | |
echo "Installing puppetlabs-release-precise.deb" |
This file contains hidden or 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
#!/usr/bin/env bash | |
# | |
# This bootstraps Puppet on Ubuntu 12.04 LTS. | |
# | |
set -e | |
# Load up the release information | |
. /etc/lsb-release | |
REPO_DEB_URL="http://apt.puppetlabs.com/puppetlabs-release-${DISTRIB_CODENAME}.deb" |
This file contains hidden or 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
/** Sample for use of templates | |
* This sample uses the file TextTemplateWithUserFields.odt from the Samples | |
* folder. The file contains a number of User text fields (Variables - User) | |
* and a bookmark which we use to fill in various values | |
*/ | |
protected void templateExample() throws java.lang.Exception { | |
// create a small hashtable that simulates a rowset | |
Hashtable recipient = new Hashtable(); | |
recipient.put("Company", "Manatee Books"); | |
recipient.put("Contact", "Rod Martin"); |
This file contains hidden or 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
package ums.security; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.security.authentication.AuthenticationManager; | |
import org.springframework.security.oauth2.config.annotation.configurers.ClientDetailsServiceConfigurer; | |
import org.springframework.security.oauth2.config.annotation.web.configuration.AuthorizationServerConfigurerAdapter; | |
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer; | |
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer; |
OlderNewer