Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Human brain is two separate organs, Stanford Medicine-led research finds(stanford.edu ↗)
    57comments
  2. If math is more than proof, we need to better celebrate the rest of it(terrytao.wordpress.com ↗)
    30comments
  3. GPT-6 Astra Solves a WWI German Radio Cipher(prinzai.com ↗)
    40comments
  4. San Francisco Onion Futures Company(onionfutures.com ↗)
    61comments
  5. Android 17 is the first since 3.x to add new APIs without releasing to the AOSP(grapheneos.social ↗)
    397comments
  6. Typesafe-computer-use drives a Mac toward a goal for 1/50th of a cent per step(github.com/awlevin ↗)
    39comments
  7. Science Is Open Software(jepedersen.dk ↗)
    33comments
  8. SDCC – Small Device C Compiler(sourceforge.net ↗)
    16comments
  9. Cloudflare Quick Tunnels(cloudflare.com ↗)
    277comments
  10. You can run Git on object storage if you re-make packfiles(tigrisdata.com ↗)
    10comments
  11. Apple M6 Pro Achieves the Highest Single-Core CPU Score in Geekbench 7(geekbench.com ↗)
    7comments
  12. Saving another 100TB of RAM(cloudflare.com ↗)
    68comments
  13. How to Write with an LLM(sockpuppet.org ↗)
    322comments
  14. Why building a Rust LSP is hard(rust-glancer.github.io ↗)
    30comments
  15. NASA-IBM Lunar Foundation open-Source Geospatial AI Model(usra.edu ↗)
    2comments
  16. How OpenAI Used Its Own LLMs to Design Its Jalapeño Chip(ieee.org ↗)
    83comments
  17. Ctenophores: Wonders of Biology(quantamagazine.org ↗)
    5comments
  18. The first new cat species discovered in 100 years(nationalgeographic.com ↗)
    103comments
  19. Goroutine Leak Profiles(go.dev ↗)
    2comments
  20. OpenJev(openjev.com ↗)
    260comments
  21. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    88comments
  22. Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug(ledger.com ↗)
    67comments
  23. Veronese's Dogs(publicdomainreview.org ↗)
    discuss
  24. Suppress vulnerabilities applying Kubernetes context to scans(github.com/alegrey91 ↗)
    1comments
  25. Cache-to-Cache: Direct Semantic Communication Between LLMs (2025)(arxiv.org ↗)
    12comments
  26. Minimal Phone 2(minimalcompany.com ↗)
    220comments
  27. Warez: The Infrastructure and Aesthetics of Piracy (2021)(archive.org ↗)
    57comments
  28. Stepfun Step 5 Preview (LLM): On AA Pareto frontier(artificialanalysis.ai ↗)
    2comments
  29. Cyclomatic Complexity in C#(ndepend.com ↗)
    19comments
  30. Inside ZCode: Silently uploading your Git history to the cloud(ferstar.org ↗)
    97comments

Console for Mobile Browsers

141 pointsby 6y agogithub.com
21 comments
6y agoHN ↗

ngl that logo is unexpected (unnecessary?) to say the least...

6y agoHN ↗

Its because the guys who made this are actually a visual novel engine development group

6y agoHN ↗

What is happening here is that the girl is drawn in a confusing way: with childlike and also with adult traits. Also, the big eyes form a supernormal stimulus [1]. As such it is "hacking" into the brain of the viewer. Some people are more sensitive to this than others. In any case it distracts from the actual subject (the console software). As for work, I wouldn't consider it appropriate.

[1] https://en.wikipedia.org/wiki/Supernormal_stimulus

6y agoHN ↗

In any case it distracts from the actual subject

Sounds like this fits with any kind of shape, color or combination of those (read as: logo) in any README.md that has one ... I wouldn't interpret too much into it.

6y agoHN ↗

Also, the big eyes form a supernormal stimulus [1]. As such it is "hacking" into the brain of the viewer.

Oh, come on, that’s just the typical anime/manga style. You criticism applies equally to any software which has an attractive person as its icon as that would supernormally “hack” your brain as well. I see nothing about that drawing that is confusing.

6y agoHN ↗

This is just anime. Well it seems like you just don't understand us asians.

6y agoHN ↗

It's just silly, irrelevant, distracting and adolescent IMHO

6y agoHN ↗

Sure, its not for everyone. To each their own.

6y agoHN ↗

This is pretty neat but what's the use case? I'm struggling to see it

Edit: nevermind, I guess it's to make it easier to develop for mobile, no need to connect the phone using USB anymore

6y agoHN ↗

Hey, this is pretty neat! Certainly seems like something that'll make it easier to test webpages on mobile or what not.

However, the fact it's a script you have to install on the source page definitely limits its usefulness. Most of the time when I need a console for a mobile browser, it's to debug an error that's occuring on a client or customer's website. They're probably not going to be too thrilled with the prospect of another 100KB of code being downloaded by anyone viewing the site, even if it is behind a URL parameter or flag.

The way that old mobile version of Firebug was available as a bookmarklet just made it significantly more practical to use here.

6y agoHN ↗

The alternative would be to something like a browser extension. I don’t know if Safari on iOS supports extensions but I think Firefox does. Just create a wrapper extension that injects this code into the current page you are on.

6y agoHN ↗

It's easy to miss in the readme, but there is a bookmarklet! I've just confirmed it works in Safari on iOS. You need to edit an existing bookmark with the javascript snippet rather than just pasting it into the address bar, but it does work.

6y agoHN ↗

Oh yeah, I'm not sure how I missed that. Bookmarked that now.

6y agoHN ↗

How does this work on iOS? Safari tells me that I cannot execute javascript via URL.

6y agoHN ↗

to use on iOS you need to embed it in the source of your page, because iOS doesn't let you execute JS from the address bar. On Android you can use it to view pages without embedding it into the source of your page.

6y agoHN ↗

This is impressive!

I wrote a much less impressive bookmarklet editor[0] (years ago) that can also be appended[1] to a mobile page for debugging purposes (note, it doesn't work on, eg, HN, because scripts are blocked by CSP).

[0] https://gabrielsroka.github.io/webpages/bookmarklets.htm

[1]

  javascript:(function () {
      var u = "https://gabrielsroka.github.io/webpages/scripts/";
      var s = document.body.appendChild(document.createElement("script"));
      s.src = u + "js.js";
      s.onload = function () {
          loadScript(u + "bookmarklets.js", function () {
              editor();
              onload();
          });
      };
  }
  )();

To be a little meta: https://gabrielsroka.github.io/webpages/bookmarklets.htm?scr...