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
// ==UserScript== | |
// @name Archive.org File Size Formatter | |
// @namespace https://github.com/eze404/ | |
// @version 0.4 | |
// @description Muestra los tamaños de los archivos en KB si son menores a 1MB y en MB si son mayores a 1MB en archive.org, solo si no tienen unidad indicada. | |
// @author Franco Ezequiel Albornoz | |
// @match https://*.archive.org/* | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name Copiar URL limpia en MercadoLibre | |
// @namespace http://github.com/eze404/ | |
// @version 0.5 | |
// @description Agregar un botón para copiar la URL sin parámetros de consulta en MercadoLibre. | |
// @author eze404 | |
// @match https://www.mercadolibre.com.ar/* | |
// @grant GM_setClipboard | |
// ==/UserScript== |
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
### Java ### | |
# Compiled class file | |
*.class | |
# Log file | |
*.log | |
# BlueJ files | |
*.ctxt |
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
// POST: Usuarios/Edit/5 | |
[HttpPost] | |
[ValidateAntiForgeryToken] | |
[Authorize] | |
public ActionResult Edit(int id, Usuario u) | |
{ | |
var returnUrl = Request.Headers["referer"].FirstOrDefault(); | |
bool editAvatar = false; | |
bool editRol = false; |
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
const p_aviso = document.getElementById("aviso"); | |
const text_dni = document.getElementById("DniInquilino"); | |
const btn_search = document.getElementById("searchBtn"); | |
const select_contratos = document.getElementById("selectContratos"); | |
let option_default = document.getElementById("default"); | |
let flag = false; | |
async function searchInquilinoContratos() { |