No creeran que esto se grabo en una convencion de comics y juegos de mesa
Otro más:
Otro más:
Que tal gente que todavia pasa por aqui esperando algo mas que… las chingaderas pocas que hemos posteado.
La mayoria nos visitó alguna vez por el podcast de “Aliviana la Concha” cosa que ya no hacemos y ni siquiera nos despedimos.
Bueno a modo de cerrar un ciclo, estaremos grabando este miercoles 16 de noviemebre por ahi de las 9pm (mexico con horario de invierno UTC-06:00 Guadalajara/MexicoCity/Monterrey). Habrá chisme, comentarios, albures, groserias, alcohol y claro todo eso acompañado de un poco de tecnologia, web y así.
Vienen un par de cambios, no creemos y no queremos que Aliviana desaparezca, pero bueno depende en gran parte de este podcast y de la vida personal de su servidor (@el_allende) y del buen @last_user lo que va a pasar, por lo pronto hay podcast mañana.
Saludos.
Cosas que me han aparecido:
Me aparecio esto y lueog me dice que espere 15 minutos para accesar por que no termino bien mi sesion (ni siquiera me pude loguear):
Server Error
Access Manager WebSEAL could not complete your request due to an unexpected error.
Diagnostic Information
Method: GET
URL: /mexiconet23/mexiconet23/LogonOperacionServlet?proceso=sign_on_pr&operacion=sign_on_op&accion=inicio&pcol=IF02&tarjeta=159154156151156152157153152157158159161158156158AB65AB753153&servicio=n&nvoportal=true®ion=t6VyGrlLlO%2BdTRX5SNgldA%3D%3DVXmoZWMoWfGVcZ&garbage=0.23630498917360954&Portal=true
Error Code: 0x38cf04d3
Error Text: DPWWA1235E Could not read the response status line sent by a third-party server. Possible causes: non-spec HTTP headers, connection timeout, no data returned. This is not a problem with the WebSEAL server.
Solution
Provide your System Administrator with the above information to assist in troubleshooting the problem.[BACK BUTTON]
Tambien me entere que BBVA usa jQuery en alguna parte del form de login:
/*******************************************************************************
* dPassword v0.1 – jQuery delayed password masking (iPhone style)
*
* licensed under MIT License
*
* Copyright (c) 2009 DECAF°, Stefan Ullrich (http://decaf.de)
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the “Software”),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
* Known Issues: – delete marked text will not work
* – deleting a single chars will not work if char is
* not the last char
* – view will not follow cursor if textfield is too small
* – if id based styles are assigned, these styles will
* not be taken over
*
*******************************************************************************/(function($){
$.fn.dPassword = function(options) {var defaults = {
interval: 200,
duration: 1100,
replacement: '%u25CF',
prefix: 'password_',
debug: false
}var opts = $.extend(defaults, options);
var checker = new Array();
var timer = new Array();$(this).each(function() {
if (opts.debug) console.log('init [' + $(this).attr('id') + ']');// get original password tag values
var name = $(this).attr('name');
var id = $(this).attr('id');
var cssclass = $(this).attr('class');
var style = $(this).attr('style');
var size = $(this).attr('size');
var maxlength = $(this).attr('maxlength');
var disabled = $(this).attr('disabled');
var tabindex = $(this).attr('tabindex');
var accesskey = $(this).attr('accesskey');
var value = $(this).attr('value');// set timers
checker.push(id);
timer.push(id);// hide field
$(this).hide();// add debug span
if (opts.debug) {
$(this).after('');
}
// add new text field
$(this).after('
');// change label
$('label[for='+id+']').attr('for', opts.prefix + id);
// disable tabindex
$(this).attr('tabindex', '');
// disable accesskey
$(this).attr('accesskey', '');// bind event
$('#' + opts.prefix + id).bind('focus', function(event) {
if (opts.debug) console.log('event: focus [' + getId($(this).attr('id')) + ']');
clearTimeout(checker[getId($(this).attr('id'))]);
checker[getId($(this).attr('id'))] = setTimeout("check('" + getId($(this).attr('id')) + "', '')", opts.interval);
});
$('#' + opts.prefix + id).bind('blur', function(event) {
if (opts.debug) console.log('event: blur [' + getId($(this).attr('id')) + ']');
clearTimeout(checker[getId($(this).attr('id'))]);
});setTimeout("check('" + id + "', '', true);", opts.interval);
});getId = function(id) {
var pattern = opts.prefix+'(.*)';
var regex = new RegExp(pattern);
regex.exec(id);
id = RegExp.$1;return id;
}setPassword = function(id, str) {
if (opts.debug) console.log('setPassword: [' + id + ']');var tmp = '';
for (i=0; i < str.length; i++) { if (str.charAt(i) == unescape(opts.replacement)) { tmp = tmp + $('#' + id).val().charAt(i); } else { tmp = tmp + str.charAt(i); } } $('#' + id).val(tmp); } check = function(id, oldValue, initialCall) { var tam = document.getElementById(id).getAttribute("maxlength"); if (opts.debug) console.log('check: [' + id + ']'); var bullets = $('#' + opts.prefix + id).val(); if (oldValue != bullets) { setPassword(id, bullets); if (bullets.length > 1 && bullets.length < tam-4) {
var tmp = '';
for (i=0; i < bullets.length-1; i++) { tmp = tmp + unescape(opts.replacement); } tmp = tmp + bullets.charAt(bullets.length-1); $('#' + opts.prefix + id).val(tmp); } else if (bullets.length >= tam-4){
convertLastChar(id);
}
else {
clearTimeout(timer[id]);
timer[id] = setTimeout("convertLastChar('" + id + "')", opts.duration);
}}
if (opts.debug) {
$('#debug_' + opts.prefix + id).text($('#' + id).val());
}
if (!initialCall) {
checker[id] = setTimeout("check('" + id + "', '" + $('#' + opts.prefix + id).val() + "', false)", opts.interval);
}
}convertLastChar = function(id) {
var tam = document.getElementById(id).getAttribute("maxlength");
if ($('#' + opts.prefix + id).val() != '') {var tmp = '';
for (i=0; i < $('#' + opts.prefix + id).val().length; i++) {
if(i < tam-4)
tmp = tmp + unescape(opts.replacement);
else
tmp = tmp + $('#' + opts.prefix + id).val().substring(i,i+1);
}$('#' + opts.prefix + id).val(tmp);
}
}
};
}) (jQuery);
Descanse en paz Steven Paul Jobs, 24 febrero 1955 – 5 octubre 2011
Stay hungry, stay foolish.
[ad#contenidouno]
Pues así un post de rápido luego de leer un tweet de @migueldeicaza enterandome de que el SDK de Sony, tendrá soporte para el lenguaje de C# (se planea salga una beta para noviembre de este 2011).
Esto es grandioso por el lado de que aquellos developers preocupados por el futuro de .NET en Windows 8 ahora tendrán una alternativa similar en mercado y proyectos a lo que hay en Androi/iOS, es decir juegos, con una plataforma consolidada con usuarios a la cual podrán entrar sin el esfuerzo que implica cambiar de lenguaje, y lo mas genial (supongo es el sueño de muchos programadores) entrar al desarrollo de videojuegos para moviles (xperia play de sony y cualquier dispositivo que tenga la certificacion de sony), en resumen lo que nos dicen en el post original y lo mas importante es que se podrá hacer el deploy de aplicaciones a dichos dispositivos programando en C# .
Fuentes:
http://www.engadget.com
@migueldeicaza
[ad#contenidouno]
Los que se perdieron la serie de conferencias el pasado sabado, aqui podrán verlas de nuevo grabadas, son mas de 3 horas de material que en su mayoria vale la pena, les recomiendo la conferencia de @neojp y las de los frameworks django y Ruby on Rails.
Les dejo el link: http://mejorando.la/videos/mejorando-la-conferencia-muchas-gracias/
[ad#contenidouno]
Me encuentro con este mensaje de yahoo maps web service.
“We are shutting down this service on September 13, 2011. We suggest using maps from our partner Nokia. Please visit the Ovi Maps API for more information.”
No estoy seguro si solo sea la api de yahoo maps la que cierra o todo el servicio de maps de yahoo.
Visto en: http://developer.yahoo.com/maps/
[ad#contenidouno]
Image source: http://creattica.com/vector/the-programmer/39902