Archive for the ‘snippets’ Category

wma2mp3 batch process

Jueves, Diciembre 11th, 2008 Posted in snippets | No Comments »

Ayer necesité convertir "demasiados" archivos wma a mp3. Buscando en google encontré este script, pero es para linux. Así que ni corto ni perezoso me puse y los pase a windows. Tenéis que descargar mplayer y lame en sus versiones para ...

Obtener ip

Martes, Marzo 25th, 2008 Posted in snippets | No Comments »

[csharp] namespace NKUtilities { using System; using System.Net; public class DNSUtility { public static int Main(string[] args) ...

Comprobar conexión sitio web

Lunes, Marzo 24th, 2008 Posted in snippets | No Comments »

[csharp] try { HttpWebRequest reqFP = (HttpWebRequest)HttpWebRequest.Create(this.Url); HttpWebResponse rspFP = (HttpWebResponse)reqFP.GetResponse(); if (HttpStatusCode.OK == rspFP.StatusCode) { // HTTP = 200 - Internet connection available, server online rspFP.Close(); return true; } else { // Other status - Server or connection not available rspFP.Close(); return false; } } catch (WebException) { // Exception - connection not available return false; } [/csharp]