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
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="password_style.css"> | |
<script type="text/javascript" src="js/jquery.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
$("#pass").keyup(function(){ | |
check_pass(); | |
}); |
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 | |
$this->load->helper('date'); | |
$datestring = "Year: %Y Month: %m Day: %d - %h:%i %a"; | |
$time = time(); | |
echo mdate($datestring, $time); | |
?> |
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
git ls-files --deleted -z | xargs -0 git rm |
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 namespace blog; | |
use Illuminate\Database\Eloquent\Model; | |
//EloquentSluggable library | |
use Cviebrock\EloquentSluggable\SluggableInterface; | |
use Cviebrock\EloquentSluggable\SluggableTrait; | |
class Articulo extends Model implements SluggableInterface{ |
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 name="options[talla]"> | |
<option value="" selected="selected">SELECCIONE</option> | |
<option value="40">40</option> | |
<option value="41">41</option> | |
<option value="42">42</option> | |
<option value="43">43</option> | |
<option value="44">44</option> | |
<option value="45">45</option> | |
</select> | |
<select name="options[color]"> |
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
$.ajax({ | |
url:route()+"archivo/", | |
type:"POST", | |
data:{"pais":pais,"ciudad":city,"hotel":hotel,"subCat":subCat}, | |
success:function(e){ | |
if (e!=0) { | |
$('#activity').html(e); | |
}else{ |
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> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<p> | |
Página con toda la documentación: Google Maps Javascript API V3 Reference | |
<br/><a href="https://developers.google.com/maps/documentation/javascript/reference?hl=es">https://developers.google.com/maps/documentation/javascript/reference?hl=es</a> |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace bucleForDesc | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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 javainit; | |
import java.util.Scanner; | |
/** | |
* | |
* @author oriol | |
*/ | |
public class menormayormedio { | |
public static void main(String[] args) { |
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
//validate dynamic | |
for (var i = 0; i < valchild; i++) { | |
if ($(".childselect").val()==valchild) { | |
if ($("#childselectages"+i).val()==0) { | |
$("#childselectages"+i).focus(); | |
$(".validateSelect").css("border","1px solid red"); | |
return false; | |
} | |
} |