Skip to content

Instantly share code, notes, and snippets.

View SantiagoHuh's full-sized avatar
💻
Working

Santiago Ayran Huh Can SantiagoHuh

💻
Working
  • Playa del Carmen, Quintana Roo, México
  • 09:01 (UTC -06:00)
  • X @HuhSantiago
View GitHub Profile
@odan
odan / xampp_php7_xdebug.md
Last active April 9, 2025 13:07
Installing Xdebug for XAMPP
@PurpleBooth
PurpleBooth / README-Template.md
Last active April 18, 2025 02:49
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@Javlopez
Javlopez / filter.html
Created April 27, 2011 17:46
Solo numeros con 1 punto y maximo dos decimales
<script type="text/javascript">
<!--
function filterFloat(evt,input){
// Backspace = 8, Enter = 13, ‘0′ = 48, ‘9′ = 57, ‘.’ = 46, ‘-’ = 43
var key = window.Event ? evt.which : evt.keyCode;
var chark = String.fromCharCode(key);
var tempValue = input.value+chark;
if(key >= 48 && key <= 57){
if(filter(tempValue)=== false){
return false;