Tutorialzine's comments

Tutorialzine | 14 years ago | on: Show HN: Smozzy (for Android/T-Mobile) - browse the web without a data plan

Unless it reformatted the page, returning only the textual content. With the maximum size of an MMS being around 100kb (depends on the operator), this is a lot of text.

You could fetch a number of pages at once and read the response even on a feature phone. This can also be combined with a web interface to bundle pages or feeds together and associate them with a shortcode.

Tutorialzine | 14 years ago | on: Adobe Muse - HTML websites without writing code

And yet we are discussing this on a site that uses tables for layout and <font> for styling. I also enjoy beautiful markup, but outside the web development community nobody cares. What is important is that it looks good. After all, people are still impressed by flashy animations.

Sometimes I wonder if aligning our values with those of ordinary people wouldn't yield better results than thinking up uses for the <aside> tag.

Tutorialzine | 14 years ago | on: What everyone should know about the human eye

This reminds me of a book I read a few years ago - Mind Hacks [1]. It discussed all kinds of interesting mechanisms that our brains use to fool us into thinking that we are always aware of our environment.

In the eye chapter, there was an interesting side-effect of the saccade movement - the "broken watch". This is when your brain fools you into thinking that the picture you see after a saccade has been the same during the movement itself. When you look at your watch and your timing is just right, you will be left with the impression that the seconds arm stays fixed for longer than it should.

I highly recommend the book - it really demonstrates our inner-machinery.

[1] http://mindhacks.com/

Tutorialzine | 15 years ago | on: Aerial footage of uncontacted Amazon tribe

You can't imagine how right you are. Tribes like this do not exist officially. Loggers would not hesitate to wipe them off - problems solved, no questions asked.

What is more troublesome, is that nobody knows how often this has happened in the past.

Tutorialzine | 15 years ago | on: World's Richest Man: 'Charity Doesn't Solve Anything'

I agree with you, but here is something to keep in mind:

It could be that the fact they donate all their profits to teaching children, might be sole reason why this cafe is profitable in the first place.

If this was run as a regular business, people would not have such an incentive go there. The same goes for a non-profit which has a goal that is not plainly visible.

Tutorialzine | 16 years ago | on: A Colorful Clock With CSS and jQuery

Hello Nathan, and thank you for the comment.

Actually the “off by one” bug is by design – it looks empty when the value of the dial is zero and the colorful ring around it is completely gone (and given it is midnight it would stay like this for an hour).

However you are free to change it – you’ll just need to change the line above from:

    var angle = (360/total)*(current+1); 
To something like this:

    var angle = (360/(total-1))*current;
page 1