Waffle.io
11–20 of 66 posts
Re: Waffle.io
#12I'll short out most, if not all, of your responses here.
I'm on mobile. I don't care if you designed for the desktop web or not, most visitors will be mobile web. Just test it. And for Cthulu's sake rotate your phone 90 degrees to make sure it works.
Re: Waffle.io
#13 $(function() {
var price = localStorage.getItem('price');
if(!price) {
price = Math.ceil(Math.random() * 3);
localStorage.setItem('price', price);
}
$('#price').html(price);
});Re: Waffle.io
#14Re: Waffle.io
#15the benefit of open sourcing my code is that other people can use it or contribute to it. why would i ever want to open source my task queue? if this is a valid use case, how does this really differ from something like Github issues or a public Trello board? comparing https://waffle.io/waffleio/waffle.io to https://trello.com/b/nC8QJJoZ/trello-development i'm having trouble differentiating.
As a recent comment suggests it's a "kanban board".
Re: Waffle.io
#16I tried to view on mobile and the page is unreadable. OP, if you are the creator of the site, please consider having some sort of mobile optimized page! (Even if it is just an info page)
Re: Waffle.io
#17Come on people. I'm so tired of most of my comments being reminders to check your UX! http://imgur.com/82DqYXl I'll short out most, if not all, of your responses here. I'm on mobile. I don't care if you designed for the desktop web or not, most visitors will be mobile web. Just test it. And for Cthulu's sake rotate your phone 90 degrees to make sure it works.
In their defense users who actually want to contribute will likely be on desktop but I get your point. You're reading HN on mobile and want to be able to see the site.
Re: Waffle.io
#18I like how they set the price: $(function() { var price = localStorage.getItem('price'); if(!price) { price = Math.ceil(Math.random() * 3); localStorage.setItem('price', price); } $('#price').html(price); });
Re: Waffle.io
#19I like how they set the price: $(function() { var price = localStorage.getItem('price'); if(!price) { price = Math.ceil(Math.random() * 3); localStorage.setItem('price', price); } $('#price').html(price); });