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
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>infinite scroll</title> | |
</head> | |
<body> | |
{% block body %} | |
<!-- aqui pones el la plantilla que pinta los resultados de knppaginator --> |
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
is_processing = false; | |
last_page = false; | |
function addMoreElements() { | |
is_processing = true; | |
$.ajax({ | |
type: "GET", | |
//FOS Routing | |
url: Routing.generate('route_name', {page: page}), | |
success: function(data) { | |
if (data.html.length > 0) { |
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
<?php | |
/** | |
* ICS.php | |
* ======= | |
* Use this class to create an .ics file. | |
* | |
* Usage | |
* ----- | |
* Basic usage - generate ics file contents (see below for available properties): |
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
<?php | |
/** | |
* Created by PhpStorm. | |
* User: bhaktaraz | |
* Date: 8/24/15 | |
* Time: 9:51 AM | |
*/ | |
namespace BRB\Bundle\PostBundle\Controller; |
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
SELECT `e`.entity_id, `at_category_id`.`category_id` | |
FROM `catalog_product_entity` AS `e` | |
LEFT JOIN `catalog_category_product` AS `at_category_id` | |
ON (at_category_id.`product_id`=e.entity_id) |
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
import json, boto | |
# Connect to IAM with boto | |
iam = boto.connect_iam(ACCESS_KEY, SECRET_KEY) | |
# Create user | |
user_response = iam.create_user('aws-user') | |
# Create Policy | |
policy = { 'Version' : '2012-10-17'} |
Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
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
function fb_change_search_url_rewrite() { | |
if ( is_search() && ! empty( $_GET['s'] ) ) { | |
$keywords = get_query_var( 's' ); | |
list($first_word) = explode(' ', trim($keywords)); | |
wp_redirect( home_url( $first_word ) . urlencode( $keywords ) ); | |
exit(); | |
} | |
} | |
add_action( 'template_redirect', 'fb_change_search_url_rewrite' ); |