// jQuery
$(document).ready(function() {
// code
})
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 mapa() { | |
//Google Map Skin - Get more at http://snazzymaps.com/ | |
var misOpciones = { | |
zoom: 6, | |
center: new google.maps.LatLng(-1.939524,-79.079289), | |
mapTypeId: google.maps.MapTypeId.ROADMAP, | |
disableDefaultUI: true, | |
styles:[{"stylers":[{"saturation":-100},{"gamma":1}]},{"elementType":"labels.text.stroke","stylers":[{"visibility":"off"}]},{"featureType":"poi.business","elementType":"labels.text","stylers":[{"visibility":"off"}]},{"featureType":"poi.business","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"poi.place_of_worship","elementType":"labels.text","stylers":[{"visibility":"off"}]},{"featureType":"poi.place_of_worship","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"road","elementType":"geometry","stylers":[{"visibility":"simplified"}]},{"featureType":"water","stylers":[{"visibility":"on"},{"saturation":50},{"gamma":0},{"hue":"#50a5d1"}]},{"featureType":"administrative.neighborhood","elementT |
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
<div class="panel panel-default"> | |
<div class="table-responsive"> | |
<table class="table table-bordered table-striped table-condensed"> | |
<thead> | |
<tr> | |
<th>Hex</th> | |
<th class="tex-center">Curso</th> | |
<!-- <th>Tags</th> --> | |
</tr> | |
</thead> |
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
2015-07-26 16:05:21 - SecureRest: INFO: You're using the new more secure REST permission model which can lead to compatibility problems with existing REST services. If compatibility problems occur, you can switch back to the unsecure permission model by changing the config setting "RestUseNewPermissionModel" to false, which is not recommended. | |
2015-07-26 16:05:21 - TextLog: INFO: TShock 4.3.7.0 (Yoraiz0r R0cks) now running. | |
2015-07-26 16:05:21 - TShock: INFO: AutoSave Enabled | |
2015-07-26 16:05:21 - TShock: INFO: Backups Disabled | |
2015-07-26 16:05:21 - TShock: INFO: Bienvenido a TShock for Terraria. Initialization complete. | |
2015-07-26 16:08:52 - GetDataHandlers: ERROR: System.NullReferenceException: Referencia a objeto no establecida como instancia de un objeto. | |
en TShockAPI.GetDataHandlers.HandleGetSection(GetDataHandlerArgs args) | |
en TShockAPI.GetDataHandlers.HandlerGetData(PacketTypes type, TSPlayer player, MemoryStream data) | |
2015-07-26 16:10:52 - TextLog: INFO: FizzVR disconnected. |
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
/////pAg # cinco mil ascendentemente | |
http://steamcommunity.com/market/search?q=#p5000_price_asc | |
///cs.go & pag # doscientos ascendentemente | |
http://steamcommunity.com/market/search?appid=730&q=#p200_price_asc |
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>aXe Rule Descriptions</title></head> | |
<body> | |
<table> | |
<thead><tr><th scope="col">Rule ID</th><th scope="col">Description</th><th scope="col">Tags</th></tr></thead> | |
<tbody><tr><td>accesskeys</td><td>Ensures that each element on the page with an accesskey attribute has a unique value</td><td>wcag2a, wcag211</td></tr> | |
<tr><td>area-alt</td><td>Checks the <area> elements of image maps to ensure that they have an alternative text</td><td>wcag2a, wcag111, section508, section508a</td></tr> | |
<tr><td>aria-allowed-attr</td><td>Checks all attributes that start with 'aria-' to ensure that they are all official WAI-ARIA attributes</td><td>wcag2a, wcag411</td></tr> | |
<tr><td>aria-required-attr</td><td>Checks all elements that contain WAI-ARIA roles to ensure that all required aria- attributes are present</td><td>wcag2a, wcag411</td></tr> |
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 orders.customerid, | |
orders.transactiondate, | |
orders.transactionamount, | |
cohorts.cohortdate | |
FROM orders | |
JOIN (SELECT customerid, | |
Min(transactiondate) AS cohortDate | |
FROM orders | |
GROUP BY customerid) AS cohorts | |
ON orders.customerid = cohorts.customerid; |
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
############################################# | |
# Push de la rama actual | |
git push origin $rama_actual | |
############################################# | |
# Volver a un commit anterior, descartando los cambios | |
git reset --HARD $SHA1 | |
############################################# | |
# Ver y descargar Ramas remotas |
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
http://victorsavkin.com/post/118372404541/the-core-concepts-of-angular-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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |