Skip to content

Instantly share code, notes, and snippets.

View mperezy's full-sized avatar
Coding

Manuel Pérez mperezy

Coding
View GitHub Profile
@dasdo
dasdo / GIT.md
Last active May 9, 2025 03:48
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email [email protected]
@tekniklr
tekniklr / gist:2661694
Created May 11, 2012 18:56
Example of using modal confirmation dialog in jQuery
<div id="modal-submit-once" title="Are you sure?" style="display:none">
<p>This form can only be submitted once. Are you sure you want to submit it now?</p>
</div>
<input type="button" id="submit_form" value="Submit" />
<script type="text/javascript">
$("div[id^='modal-submit-once']").dialog({
modal: true,
autoOpen: false,