Skip to content

Instantly share code, notes, and snippets.

View fizzvr's full-sized avatar
πŸ‡ͺπŸ‡¨
Programando I'm Happy

Vladimir RodrΓ­guez fizzvr

πŸ‡ͺπŸ‡¨
Programando I'm Happy
View GitHub Profile
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
@fizzvr
fizzvr / index.html.eco
Created August 6, 2015 17:43
bs3.panel
<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>
@fizzvr
fizzvr / .log
Created July 26, 2015 21:58
log
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.
@fizzvr
fizzvr / query
Last active August 29, 2015 14:25
Steam Search
/////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
<!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 &lt;area&gt; 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 &#39;aria-&#39; 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>
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;
@fizzvr
fizzvr / Operaciones-Git
Last active September 4, 2015 21:33 — forked from jelcaf/Operaciones-Git
#############################################
# 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

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@fizzvr
fizzvr / gist:1935670888dd5223a997
Created May 8, 2015 14:18
The Core Concepts of Angular 2
http://victorsavkin.com/post/118372404541/the-core-concepts-of-angular-2
@fizzvr
fizzvr / 0_reuse_code.js
Last active August 29, 2015 14:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console