Hacker Newsnew | past | comments | ask | show | jobs | submit | nimbleal's commentslogin

GPT 2 is almost always better (80+% of the time?) than Nano Banana 2, albeit slower

Same pass.


I work in this industry and I don’t think this is true. Look at these tests, using a camera that’s now two generations out of date:

https://youtu.be/suZtYPIADHM?si=KMgFb1gEhA7z7QVm

I think what makes film great is more the process. It forces slower more deliberate filmmaking and somehow that seems to show up in the product. Only celebrated/respected filmmakers have the influence to force production to allow them to shoot film so there’s a selection bias at play too.


That is not what Yedlin's tests show or made an effort to test! His famous first set of comparison tests are about resolution, specifically his opinions about the unimportance of 4K.

I deeply disagree with his conclusion, because he is downgrading a digital image to show it can match the resolution and some of the visual aspects of a 16 print. Which is like putting a filter over a high resolution monitor and then comparing it to SD TV.

But in either case, his work wasn't about whether digital could match the look of any film (it can't).

He has also never released his nuke workflow, although he's more recently productised it to some extent.

Here's his discussion of the footage you linked - https://www.yedlin.net/DisplayPrepDemo/DispPrepDemoFollowup


I tried with my phone vertical and couldn’t see anything. In horizontal ie bigger image it was clear as day. I think a lot of the variance is probably screens.


The Christmas/ Saturnalia link is a myth.



Yes, it is.

Look at your source — hardly authoritative! And the so-called evidence... Thin, entirely circumstantial, and in places actually wrong.

For example, Saturnalia went — at its longest - until the 23rd, not the 25th. Moreover, Christians likely got the 25th date based on religious calculation[1], not with reference to the one of the ancient festivals Victorian "historians" liked to speculate about.

The article attempts to link gifting verses to writing Christmas cards — a Christmas tradition not popularised until the 19th C and no older than the 17th.

Feasting and exchanging of gifts, much less the greeting "lo saturnalia" — literally the only other "evidence" presented here — need hardly be addressed, given how ubiquitous such things are with regard to festival, and how thin the apparent connection.

There is no positive evidence for this link, hence it not being taken seriously by any modern historian. It is no more than outdated speculation.

[1] https://poj.peeters-leuven.be/content.php?id=3007366&url=art...


> Look at your source — hardly authoritative!

Still better than the source you originally gave, which was non-existent, or the one you've given now, which is Catholic propaganda.

It might be true that Christmas was not a direct rip-off of Saturnalia per se (though we will probably never know for sure because the Church surely did not go out of its way to record this) but there can be no doubt that both Christmas and Saturnalia are solstice festivals, so at the very least they share a common motivational root. The exact provenance of the details doesn't really matter. What matters is that Jesus was almost certainly not born on December 25, and so whatever the motivation for that date was, Jesus's birth wasn't it.


I see — a blog written by an unknown librarian is a better source than an Oxford fellow writing for a journal with a hundred year pedigree. No further engagement necessary, I think.


The Daily Mail has a 130 year pedigree.

  Untruthful! My nephew Algernon! Impossible! He is an Oxonian!


When the journal in question is called "Studies in Liturgy", yeah, a blog post is better. At least the blog post isn't manifestly biased.


Not sure how multiple exposures helps?

Smaller sensor, tighter aperture. So yes, more light or a more sensitive sensor.


They must mean by creating a composite image with multiple in focus areas? Otherwise I agree, I can't see anyway that multiple exposures would help, at least from some light reading on Wikipedia - https://en.wikipedia.org/wiki/Multiple_exposure



Hmmmm. Which direction are you driving in where you can hardly understand them? I don’t think there’s a regional accent in the whole of the UK that’s “hardly understandable” spoken by anyone under 80 years old, let alone an hour from London. Especially where the conversation isn’t “in group”


I don’t think that’s an argument from authority. “Experts have been discussing X without reaching a conclusion for a long time” is a premise from which a reasonable argument can be made for the unlikelihood that an off-hand comment on HN has solved X. Argument from authority doesn't take that form though the two do have invoking authorities in common.


Zeiss cinema lenses (in particular master primes) have the least distortion I’ve come across


I was talking to my parents the other day and surprised myself getting pretty chocked up remembering how my dad had shown me how to program an ascii animation on his 386, and how the wonder I felt at that in many ways led me to where I am today, so many years later. These things matter.


Do you still have the animation?


It was basically (no pun intended) this, though obviously not in bash:

  #!/bin/bash

  legs_out=(
  "                     "
  "        .'''.        "
  "       -     -       " 
  "       |  C  ^       "
  "        \    7       "
  "          | |        "
  "        /     \\     "
  "        |  \\ \\     "
  "        |   \\ \\    " 
  "      / |    \\ \\   "
  "     /  |     \\ \\  "
  "    /   |      \\ \\ "
  "   /    |      |\\  \\     "
  "        \\    \\          "
  "               \\         "
  "       /        \\        "
  "      /          \\       "
  "     /    / \\    \\      "
  "    /    /   \\    \\     "
  "   /    /     \\    \\    "
  "  /    \       \\    \\   "
  "   \\   \\       \\    \\...  "
  "     ____]         [    ]"
  )

  legs_cross=(
  "        .'''.        "
  "       -     -       "
  "       |  C  ^       "
  "        \    7       "
  "          | |        "
  "        /     \\     "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |       "
  "      ( |  |  |       "
  "        |  |   )    "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |  |      "
  "        |  |   )      "
  "        |  |  |       "
  "        |  |  |       "
  "        |  |  |       "
  "        /  |          "
  "       /   |  |       "
  "      \\..]  /    /    " 
  )

  print_man() {
    local spaces=$1
    local man=("${!2}")
    for line in "${man[@]}"; do
      printf "%*s%s\n" $spaces "" "$line"
    done
  }

  spaces=0
  state=0

  while true; do
    clear
  
    if (( state % 4 < 2 )); then
      print_man $spaces legs_out[@]
    else
      print_man $spaces legs_cross[@]
    fi
  
    ((spaces++))
    ((state++))
  
    if (( spaces > $(tput cols) )); then
      spaces=0
    fi
   
    sleep 0.1
  done


This is really fun, thanks for sharing. May try to do similar with my niece.


I’m afraid not. It was incredibly simple, but I just remember being amazed that such a thing was even possible.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: