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
| {% extends "layout.html.twig" %} | |
| {% block base %} | |
| <div id="header"> | |
| {% block header %} My WebPage {% endblock %} | |
| </div> | |
| <div id="content"> | |
| {% block content %}{% endblock %} | |
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> | |
| <head> | |
| <title>My Webpage</title> | |
| </head> | |
| <body> | |
| {% block base %}{% endblock%} | |
| </body> | |
| </html> |
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($){ | |
| $.randomages = { | |
| defaults: { | |
| path: 'images/', | |
| images: ['image1.jpg','image2.jpg'] | |
| } | |
| } | |
| $.fn.extend({ |
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 | |
| acpi -b |\ | |
| grep Battery |\ | |
| awk '{ | |
| if ( int($4) >= 98 ) { | |
| system("/usr/local/bin/nma Battery Charged \"Desconecta el pinche cargador\" 0 > /dev/null") | |
| } | |
| if ( int($4) < 10 ) { | |
| system("/usr/local/bin/nma Battery Charged \"Conecta el pinche cargador\" 0 > /dev/null") |
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 | |
| # | |
| # Using PHP Web Scraper Goutte in a Console Task in a Silex project | |
| # | |
| # http://www.testically.org/2011/09/30/using-php-web-scraper-goutte-in-a-console-task-in-a-silex-project/ | |
| # | |
| namespace Caefer; |
NewerOlder