Si tenés un sitio web con Google Analytics configurado y querés poder ir viendo las visitas sin tener que ir al sitio de Analytics (excepto cuando necesites informes más avanzados), entonces esta herramienta es para vos…

Knowledge is inside
Con esta herramienta online, podés hacerle fácilmente escape y unescape a tus strings (entre otras cosas muy útiles explicadas abajo)…
Si querés agregar esta herramienta a tus favoritos, quizás prefieras esta dirección más corta: http://www.neoegm.com/software/intelligent-escaper-unescaper/. [Apretale botón derecho y utilizá la opción que te ofrezca tu navegador para agregarla a tus favoritos.]
Todo el mundo conoce el juego de Pinball que apareció con el Windows 95 Plus!… Todavía está en las versiones actuales de Windows…
A pesar de que pueda parecer increíble, todavía hay unos cuántos fanáticos de este juego…
Hice este programa en 1999 (hace un tiempito 8-)) para poder modificar los puntajes máximos guardados y lograr así que esos fanáticos crean que les ganamos…
(Es recomendable ser un poco más sutil que yo)
Debido a que estuve bastantes visitas en mi versión wxWidgets del conversor de Celsius a Fahrenheit, decidí preparar una versión online que permita realizar fácilmente la conversión.
| Celsius: | ||
| Fahrenheit: |
Convert Celsius to Fahrenheit Online está liberado bajo la licencia GNU GPL v3…
Acá está el código fuente completo:
<script type="text/javascript">
// *****************************************************************************
// Description: Convertir de Celsius a Fahrenheit Online by NeoEGM
// Author: Ezequiel Miravalles
// Last modification: 16/08/2009
// URL: http://www.neoegm.com/es/tech/online-tools/convert-celsius-to-fahrenheit-online/
// *****************************************************************************
/*******************************************************************************
Copyright (C) 2009 Ezequiel Gastón Miravalles
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*******************************************************************************/
function isNumber(x)
{
return ( (typeof x === typeof 1) && (null !== x) && isFinite(x) ); //From http://snippets.dzone.com/posts/show/6937
}
function Round(number, digits)
{
return Math.round(number * Math.pow(10,digits)) / Math.pow(10, digits);
}
function CelsiusToFahrenheit(celsius, fahrenheit)
{
var num = celsius.value;
if (num == "" || !isNumber(Number(num)))
alert("Por favor ingresar un número");
else
fahrenheit.value=Round((9/5)*num+32, 2);
}
function FahrenheitToCelsius(fahrenheit, celsius)
{
var num = fahrenheit.value;
if (num == "" || !isNumber(Number(num)))
alert("Por favor ingresar un número");
else
celsius.value=Round((5/9)*(num-32), 2);
}
</script>
<table>
<tr>
<td>Celsius:</td>
<td><input type="text" name="celsius_field" id="celsius_field" style="width:100px" /></td>
<td><input type="button" value="A Fahrenheit" onclick="CelsiusToFahrenheit($('celsius_field'), $('fahrenheit_field'))" /></td>
</tr>
<tr>
<td>Fahrenheit:</td>
<td><input type="text" name="fahrenheit_field" id="fahrenheit_field" style="width:100px" /></td>
<td><input type="button" value="A Celsius" onclick="FahrenheitToCelsius($('fahrenheit_field'), $('celsius_field'))" /></td>
</tr>
</table>
¿Alguna vez te preguntaste cómo podrías prender una computadora remotamente?
Bueno, con este programa podés hacerlo!
C:\>wol Wake-On-Lan (WOL) Tool v1.0 by NeoEGM http://www.neoegm.com/software/wake-on-lan/ ------------------------------------------- Usage: wolWakes the computer with the specified MAC address. Accepted MAC address formats: 01-4B-8E-00-52-A1 01-4b-8e-00-52-a1 01:4B:8E:00:52:A1 01:4b:8e:00:52:a1 014B.8E00.52A1 014b.8e00.52a1 014b8e0052a1 014B8E0052A1
Con esta pequeña herramienta, podés saber cuánto tiempo hace que está prendida la computadora…

UpTime is licensed under the GNU GPL v3 (attached)…
Como siempre, acá están los links…
Para los que quieran leer fácilmente el código relevante:
DWORD dwMilliseconds = GetTickCount(); int nSeconds = (dwMilliseconds/1000)%60; int nMinutes = (dwMilliseconds/1000/60)%60; int nHours = (dwMilliseconds/1000/60/60)%24; int nDays = dwMilliseconds/1000/60/60/24; char pszStr[256]; sprintf_s(pszStr, 256, "%d days, %d hours, %d minutes and %d seconds", nDays, nHours, nMinutes, nSeconds); MessageBox(NULL, pszStr, "UpTime 1.0 by NeoEGM <http://www.neoegm.com/software/uptime/>", MB_ICONINFORMATION);
Guitar Trainer es un programa que hice para facilitar el aprendizaje de la posición de las diferentes notas en el diapasón de la guitarra. Hay montones de funcionalidades pendientes (incluyendo sonido, diferentes escalas, un juego de adivinación en base a la posición y al sonido, etc.), pero es bastante útil con las funcionalidades actuales.
Comentarios recientes