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
| " Pathogen | |
| filetype off " Pathogen needs to run before plugin indent on | |
| call pathogen#runtime_append_all_bundles() | |
| call pathogen#helptags() " generate helptags for everything in 'runtimepath' | |
| filetype plugin indent on | |
| filetype plugin on | |
| set autoindent | |
| set cmdheight=1 "command bar is 2 high | |
| set backspace=indent,eol,start "set backspace function |
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 | |
| function user_agents(){ | |
| $devices = array('iphone', 'android', 'ipad', 'iphone', 'blackberry'); | |
| foreach ($devices as $ua) { | |
| $tsuac[] = (strpos(strtolower($_SERVER['HTTP_USER_AGENT']), strtolower($ua))) ? 1 : 0; | |
| } | |
| return (in_array(1, $tsuac)) ? '.sftouchscreen()' : ''; | |
| } | |
| ?> | |
| <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
| jQuery(window).load(function () { | |
| // console.log(jQuery.cookie("scrollTop")); | |
| setTimeout(function () { | |
| jQuery('body').trigger('resize'); | |
| }, 200); | |
| if ('referrer' in document && typeof document.referrer != undefined) { | |
| var url_parts = document.referrer.split("/"); | |
| var url = url_parts[0] + "//" + url_parts[2]; |
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
| REcopilacion de consultas SQL para drupal. | |
| <?php | |
| // Retorna un simple valor, retorna el nomnbre de la taxonomia | |
| function termName($tid){ | |
| $name = db_query("select name from {taxonomy_term_data} where tid=:tid", | |
| array(':tid' => $tid))->fetchField(); | |
| return $name; | |
| } |
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
| // Manages changes in responsive layout | |
| var layout = (function() { | |
| var callbacks = []; | |
| // Container for checking changes in layout width | |
| var $container = $('#header .container'); | |
| // Container width: screen width | |
| var steps = { | |
| 960: 960, |
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
| Container seleccionBlock(double rotacion, double margin, int contador) { | |
| return Container( | |
| margin: EdgeInsets.only(top: margin), | |
| child: Transform.rotate( | |
| angle: rotacion, | |
| child: Container( | |
| width: 110.0, | |
| height: 196.0, | |
| // padding: const EdgeInsets.all(4.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
| import 'package:firebase_admob/firebase_admob.dart'; | |
| import '../services/globals.dart'; | |
| class Ads { | |
| InterstitialAd myInterstitial; | |
| MobileAdTargetingInfo targetingInfo = new MobileAdTargetingInfo( | |
| testDevices: TEST_DEVICES, | |
| /* keywords: <String>[ | |
| "tarot", |
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
| body: new Stack( | |
| children: <Widget>[ | |
| new Container( | |
| decoration: _recursos.backgroundImageComun(), | |
| ), | |
| new Column( | |
| children: <Widget>[ | |
| new Container( | |
| height: 196.0, | |
| child: new Stack( |
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 'package:firebase_admob/firebase_admob.dart'; | |
| import '../services/globals.dart'; | |
| class Ads { | |
| InterstitialAd myInterstitial; | |
| MobileAdTargetingInfo targetingInfo = new MobileAdTargetingInfo( | |
| testDevices: TEST_DEVICES, | |
| ); |
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 <Arduino.h> | |
| #include <Wire.h> | |
| // Prueba Multitarea(Hilos)RTOS en Diferente Nucleo ESP32 by: elprofegarcia.com | |
| TaskHandle_t Tarea0; // Tarea0 parpadeo LED 0,3 segundos | |
| TaskHandle_t Tarea1; // Tarea1 parpadeo LED 1 Segundo | |
| // Declaraciones previas | |
| void loop0(void *parameter); | |
| void loop1(void *parameter); |