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

To explain why the content seemingly evades the law: the article is consistently referring to drawn / computer generated content.

The legality of which can be gleaned from here: https://en.wikipedia.org/wiki/Legal_status_of_fictional_porn...

I find that the seemingly intentional foot-noting of the class of content they are talking about, to be really dishonest.


I wasn't trying to be dishonest, possession of the material you are referring to is a serious federal crime in the United States. Furthermore, I find it sickening that some of you do not agree with me, or the law, on this subject and think it's ok.

Lolicon is child sexual abuse material.


Samba?


I'm guessing its a poll item


Indeed. I didn't think about this.

I wonder how it managed to be N°2 in this Weekly Top 10 list for last week:

https://github.com/headllines/hackernews-weekly/issues/137


And the original benchmarks of bun vs deno had bun using a native-code http server against a deno using a js-code http server, afaik.

And the bun-specific-fork-of-react vs deno + normal react, was suspect too.


When you import “react-dom/server” in Node, it actually loads “react-dom/server.node.js”

When you import “react-dom/server” in browsers or Deno, it loads “react-dom/server.browser.js”

When you import “react-dom/server” in Bun, it will load “react-dom/server.bun.js”.

https://twitter.com/sebmarkbage/status/1560609478227030016


But what does an upstream target do for a Vue developer? a Svelte developer? a Preact developer? etc etc.

Its not so much of a useful thing to just focus so much on what you use to benchmark.

Reminds of:

https://www.theregister.com/2021/01/28/nvidia_tpc_benchmark/

https://www.zdnet.com/article/futuremark-reverses-nvidia-did...

Like, you wouldn't be impressed if it was react bun vs preact deno, right?


Sounds more of a case of not realizing that spacex was supposed to negotiate with internet providers instead of taking the first value they offered.

Reminds me of ISPs harassing netflix to pay extra in addition to the prices they charged their consumers

https://www.theverge.com/2014/3/24/5541916/netflix-deal-with...

Assumably something similar is happening to SpaceX's offering


setting showrooms aside as they feel useless,

you start off in the impulse buy areas, and leave through the bleak self-service areas. This doesn't jibe with the "ikea intentionally makes you tired to make you impulse buy" narrative


In the IKEAs I frequent, there is a separate section of bargain-buy product bins between the self-service racks and the check-out registers, perfectly positioned to trigger impulse buys as you wait in line.


The author explains how this strategy still ends up working:

> Furthermore, because the layout is so confusing and oriented for one way flow, shoppers know they won’t easily be able to go back and get an item later. So they pop it into their large trolley and continue shopping.


IMO this is good. Blocking users from RCS, [while obviously no where near as good as signal, is still far better than SMS] has been a flaw in how signal has handled things


Amazon is making suicide trendy? or, Parents looking for a scapegoat for their way-too-late emotions?

> She placed the order within weeks of experiencing suicidal thoughts.

weeks doesn't seem long, unless you consider the mindset of the suicidal person: every day, hour, minute, filled with overwhelming mental burden.

I still remember the few weeks at my lowest as probably the longest memories, longer than all my school memories stuck together.


From that screenshot, I would hope that you'd be blocked, no part of the privacy policy says "we'll disclose private user information to breck"

https://www.ycombinator.com/legal/


The account in question is perhaps part of an illegal entrapment attempt. He could have said "no".


I always felt weird about the fact that Scratch et al exist, and that typing things manually exists, but you can't type code and get a visual result that is scratch-like

- - -

To clarify, I don't mean generating a visual version, but to instead highlight structure (e.g. background color for a for-loop and its indent), not keywords


This is a kind of thing people built to realize they’re not that useful looking at the results (still think they can have value, it just feels too limited to be widely adopted)

Take SQL for instance: we already have tools that will take table definitions and built an UML tree from that. I used that kind of tools 3 times in my life, and threw away the result to draw something manually to really understand what was happening. The main issues were excessive visual complexity, noise from all the meaningless bindings, random component placement making is hard to mentally group components.

I’d expect these issues to be 100x worse with any code that expands beyond a single function, as the cyclomatic complexity would in average be a lot higher and we’d have a lot more noise from guard conditions and boilerplate.

Looking at it the other way works too: coding what we write everyday in ruby or typescript, but in Scratch, would be a crazy visual mess that would push anyone into depression.


Absolutely! UML gets a lot of discussion, but a more reflective model of a written program is something I long for. I love the feedback that I get from, say, writing a Tupfile and running `tup graph` to see an actual graph of all my recipes, complete with their commands, inputs, outputs, and interdependencies as understood by the build system. I haven't used Unity, but it looks like it has blender-like node-based programming that gives me the same feel, where each box ia just code but the connections between them are illustrated. Lastly, Emacs allows you to instrument function definitions with edebug, and stepping through the code or even just letting it run in a loop and observing the movement of the point-of-execution has given me a lot insight into packages that I've worked on. None of this is really "the thing", but each example gives me the same vibes, of showing how existing code or control flows are structured.


There was something like this a month ago on Show HN: PickCode – An educational coding environment for students after Scratch

https://news.ycombinator.com/item?id=32230329


The weirdest thing is that several languages have formatters and linters that constantly convert text into tokens and then back into text. Just do it one time and convert what text the user enters into a token then process that token like you say into a visual block that guides the developer better than plain text with completions.


The closest to this I have seen is something like Mathematica, where the frontend can map back and forth between visual widgets and code pretty seamlessly. I always wished they would actually take it a bit further, but some of the things you can do are cool.


I don’t know, in my opinion an advanced IDE is sort of that - I don’t think of IntelliJ’s text as notepad’s - it is more an AST in textual form as per the language’s grammar.

My human brain is very fast at parsing that to a tree based on visual cues, while the program does the same constantly - syntax highlighting is important exactly for this reason, if it is colorful, it parsed correctly, that’s the feedback between machine and human.

Even manipulations are AST-level, I expand the selection based on that, etc. It just has a very fast, “invisible” node-edit mode where you can just type a few characters to change the function node’s name.


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

Search: