Entradas

Universal Basic Income

  TOPIC 1 Universal Basic Income The Universal Basic Income is defined as a basic income for all people in age to work without care if are working or not. Although is a good idea, exist some people that approve and another than disagree. The people who agree think it is a good idea that will help people cover her basic needs. The income could yield more free time to spend wherever they want, such as in study, sport, or even another job; those thoughts or ideas could bring dynamism to the economy by providing some money to all the population that they will spend on things or services. In other matters, the people against the Universal Basic Income think that this income could weaken the economy. If the people had a basic income and did nothing, they would be doing things that the markets don't want or that society doesn't need at this moment. This can contract the economy and reduce productivity since the things that need to be produced won't be produced, increasing the pric

Starting blog

This is an experiment to start practicing English by writing a blog about some things that have happened to me in the past and some things to do in the future. Please feel free to make any spelling or grammatical corrections. 

Guia de Estilo AngularJS

Version original:  https://github.com/johnpapa/angularjs-styleguide Responsabilidad Única: Regla de 1 Definir un componente por archivo. Los siguientes ejemplos definen el modulo "app" y sus dependencias, define el controlador y un "factory", todo en el mismo archivo: /* Evitar */ angular .module('app', ['ngRoute']) .controller('SomeController', SomeController) .factory('someFactory', someFactory); function SomeController() { } function someFactory() { } El mismo componente, ahora separado en archivos Archivo: app.module.js /* recommended */ // app.module.js angular .module('app', ['ngRoute']); Archivo: controlador1.js /* recommended */ angular .module('app') .controller('SomeController', SomeController); function SomeController() { } Archivo factory1.js // factory1.js angular .module('app') .factory('someFactory', someFactory

Outlook no encuentra correos

Hola, este es un caso típico de las locura de Outlook. Estuve durante varios meses buscando la forma de que Outlook me busque correos, incluso teniendo las opciones de indexación de los PST los OST activas, nunca me encontraba correos, ni recién recibidos ni los mas antiguos. El problema se presenta con mayor incidencia con las cuentas relacionadas con Exchange, y todos los tutoriales o soluciones dicen que debe tener activa la opcion de "Intercambio de Cache" pero en mi caso esto no funcionó, fue todo lo contrario. Cuando desactivé la función "Intercambio de cache" empezó a buscar algunos correos, y cuando le quite la indexacion con el windows search, ahí empezó a buscar todos los correos. Se demoraba mas pero los encontraba, cosa que no pasaba con la indexacion normal. Mi plataforma es windows 7 con Office 2010. PD: Probé con office 2013 y tiene el mismo inconveniente. No he probado si la solución también aplica, pero debería. 

Leer cantidad paginas - imagenes TIFF en C#

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.Collections; using System.ComponentModel; using System.Data; namespace ContadorPaginasTIFF { class Program { static void Main(string[] args) { string ruta1 = "F:\\archivosTIFF\\"; string[] archivos1 = Directory.GetFiles(ruta1); long cantidad_imagenes = 0; Image tiffImage; Guid objGuid; FrameDimension dimension; Console.WriteLine("cantidad archivos: " + archivos1.Length); foreach (string archivo in archivos1) { Console.WriteLine("Imagenes: " + cantidad_imagenes); tiffImage = Image.FromFile(archivo); objGuid = tiffImage.FrameDimensionsList[0];

Crisis

Tomado del diario chileno "El Definido"  http://www.eldefinido.cl/actualidad/plazapublica/1863/Por_que_Venezuela_no_tiene_papel_higienico/ Hace un tiempo, recién asumido el Sr. Maduro como reemplazante del malogrado Hugo Chávez a la cabeza de Venezuela, el país tropical hizo noticia por un hecho bastante poco glamoroso: sus habitantes hacían largas filas para conseguir un bien que no solemos considerar un lujo: el papel higiénico. Hace unos días, Venezuela volvió a las noticias producto de las manifestaciones de algunos  estudiantes hastiados de la inseguridad, que ha escalado a un movimiento nacional, que ahora reclama además por la alta inflación (56%) y la escasez de productos básicos, entre otros problemas. No sé ustedes, pero al escuchar esas noticias, no pude evitar preguntarme:  ¿Cómo llega uno de los mayores productores de petróleo del mundo, a quedarse sin un insumo tan básico como el papel higiénico? Una historia que se repite La verdad es que no

Conectar Nodejs y Django u otro backend

Hola, Encontré la forma de conectar un servidor hecho en Node.js con algún backend que nos devuelva cualquier tipo de datos. Para mi proyecto necesitaba que Django me devolviera Json a Node.js para poder realizar tiempo real con Socket.io y el cliente; asi que despues de mucho buscar (pasando incluso por jsonp callback) encontré una libreria de mikeal que esta especializada en eso: traer datos de otro servidor por medio de la url: var request = require('request'); request('http://IP:PUERTO/ecg/pacientes', function (error, response, body) { if (!error && response.statusCode == 200) { hacerLoQueSeaConLaRespuesta( body ); } }); La libreria esta en  https://github.com/mikeal/request  se llama request y se instala en node con npm install request Saludos