Skip to content

Author: Silveira

Ruby super

class A
   def foo 
      [1, 2, 3]
   end 
end

class B < A 
   def foo 
      super.map{ |n| n * 2 } 
   end 
end

puts A.new.foo.to_s
puts B.new.foo.to_s

Output

[1, 2, 3]
[2, 4, 6]

memento mori polaroid

Uma coisa legal de tirar foto com câmera instantânea é que a foto já sai com aquele jeitão lo-fi. A paleta de cores lavada, as sombras do flash, a pose errada de olho fechado ou tudo borrado e que não dá pra corrigir.

Foto numa Polaroid Now+ (filme i-type) de uma Fujifilm Instax Mini 90.
Foto numa Polaroid Now+ (filme i-type) de uma Fujifilm Instax Mini 90.

Você olha pra foto e ela já parece antiga mas ela é do presente. Ela parece antiga porque essa é a minha lembrança de foto antiga que pra mim é mapeado com as fotos dos anos 80/90.

Imediatamente você lembra da relação intransponível entre passado, presente e futuro. Aquela foto parece antiga mas também ela já é antiga porque um dia ela vai ser antiga. Ela só pulou uma etapa que é parecer uma foto atual pra então se tornar uma foto antiga.

1) everything that’s already in the world when you’re born is just normal;

2) anything that gets invented between then and before you turn thirty is incredibly exciting and creative and with any luck you can make a career out of it;

3) anything that gets invented after you’re thirty is against the natural order of things and the beginning of the end of civilisation as we know it until it’s been around for about ten years when it gradually turns out to be alright really.

Apply this list to movies, rock music, word processors and mobile phones to work out how old you are.

by Douglas Adams in “How to Stop Worrying and Learn to Love the Internet”, August 29th 1999.