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

I was told that some people in Busan, the Korean city nearest to Japan, felt the earthquake and even felt dizzy.


I'm in Busan, though I didn't feel anything. (I was on the beach at the time though.)


Oh wow, yes I remember now, I used to type `Alt+F` and then `S` immediately because Notepad didn't support `Ctrl+S` back then. Thanks for giving me nostalgia!


I've still got the very fast muscle memory of "Alt-F S", I used to do it habitually in Word and Excel. Still do it occasionally, then having to then undo whatever it does now (luckily it's usually nothing), but sometimes it leaves the Alt press 'open' so the next letter I press does something unpredictable.


The menu should be closeable with escape according to IBM CUA IIRC


I always did ALT-F4 Y (but I think it is S now) because I like to live dangerously.


> Some time ago, I noted that the Windows 95 CD contained a variety of multimedia extras

That "some time ago" is 20 years ago. It is crazy that Raymond has been able to consistently write historical yet fun blog posts for decades. What a dedication.


Even longer, 1995 is over 30 years ago now. I remember playing this clip over and over at the time (there wasn't a heck of a lot of digital video clips to play in 95!).


The OP is referring to the original article [1] that Raymond Chen published on his blog, which was posted on January 3rd, 2006 (20 years ago).

[1] https://devblogs.microsoft.com/oldnewthing/20060103-52/?p=32...


I tested the demo at https://moq.dev/publish/ and it's buttery as hell. Very impressive. Thanks for the great technology!

Watching the Big Buck Bunny demo at https://moq.dev/watch/?name=bbb on my mobile phone leaves a lot of horizontal black lines. (Strangely, it is OK on my PC despite using the same Wi-Fi network.) Is it due to buffer size? Can I increase it client-side, or should it be done server-side?

Also, thanks for not missing South Kora in your "global" CDN map!


Is it Chrome only? On Android Firefox it just says no browser support :(


Same here


Same on safari


Safari is still working to add full support for WebTransport.


You can enable webtransport in safari, in privacy settings experimental tag, but its just black on the page


Yes, Safari's WebTransport implementation is still a work in progress.


Horizontal black lines? Dunno what that could be about, we render to a <canvas> element which is resized to match the source video and then resized again to match the window with CSS.


What’s that like for performance and power usage? I understand normal videos can generally be entirely hardware-accelerated so that the video doesn’t even touch the CPU, and are passed straight through to the compositor. I’m guessing with this you’re stuck with only accelerating individual frames, and there’ll be more back and forth so that resource usage will probably be a fair bit higher?

An interesting and unpleasant side-effect of rendering to canvas: it bypasses video autoplay blocking.


It's all hardware accelerated, assuming the VideoDecoder has hardware support for the codec. VideoFrame is available in WebGL and WebGPU as a texture or gpu-buffer. We're only rendering after a`requestAnimationFrame` callback so decoded frames may get automatically skipped based on the display frame rate.

I don't think the performance would be any worse than the <video> tag. The only exception would be browser bugs. It definitely sounds like the black bars are a browser rendering bug given it's fine when recorded.


Unfortunately canvas (rgb'ish) can't overlay as efficiently as <video> (yuv'ish), so there is some power cost relative to the lowest power video overlays.

It really only matters in long form content where nothing else on the page is changing though.


> It really only matters in long form content where nothing else on the page is changing though.

Did you not just describe at least 99% of all web video?


If only that were true, battery usage would be much better :) Just consider the prominence of content like tiktoks/shorts/reels/etc alone.


Oh and the autoplay restrictions for <video> don't apply when muted.


Depends on your configuration. Firefox has a “block audio and video” option. Which this bypasses.


Doesn't show up on screen capture, but there's random rolling quickly flickering lines on my phone, kinda like from analog distortion on old tvs


I have got same issue with the black lines


The page mentions a lot of Rust code and WASM. Maybe your phone's CPU cannot run WASM fast enough?

My Samsung S20 shows no black lines.


My Samsung S24 Ultra shows black lines too, on Chrome and Samsung Internet.


Chrome on my oneplus ten, I get flickering black lines routinely. The fact they're going from somewhere along the top, down towards the right makes me wonder if it's a refresh artifact maybe? It's sort of like the rolling shutter effect


On a mac book air m4 with a 600mbps connection, it's instantaneous and amazing.


with this pc spec and internet speed, I expect its "normal"


You’d be amazed. A very significant number of websites are anything but instant on my i9 14900k and 1000mbps connection. Our work identity provider/vpn app for 80 people takes about 15 seconds to start up on said machine. Apparently that’s “normal”


You'd be surprised i have 1g/1g and youtube still is not buttery smooth lol on my m3 mac pro, theirs always a noticeable gap between clicking play and it actually starting to stream


Let's create a metric, call it "click to streaming time" (CTST).

This site was instantaneous. Youtube was not.

(Even if it's an M4)


I have the same experience on a Macbook Air M1 (I don't think that matters at all) and 100 MBit/s DSL.


I don't get the black lines on Android/Chrome but it doesn't respect my aspect ratio when I go full screen. Instead of adding black bars to the sides, it excludes the top and bottom of the video completely.


I am bad at CSS.


Managing aspect ratios in conjunction with managing a responsive page layout is one of the darker parts of CSS in my experience. You’re not alone.



I wish it was true but there’s so many times aspect-ratio still doesn’t work. It’s a pretty weak property so things like flexbox parents will quickly cause it to be ignored.


Holy shit that starts streaming fast! like WTF


Actually the default value of `APT::Install-Recommends` had been false, and it was changed to true in Debian 6.0 Squeeze (2011-02-06). I didn't like the change at the time because my Debian and Ubuntu systems suddenly installed more packages by default. However, now that I think of, the distinction of recommended packages and suggested packages was blurry before the change, because both were opt-in. Auto-installing recommended packages, while allowing the user to opt out is a better default I guess. But I still turn off auto-installation of recommended packages in the systems I manage.


fish doesn't use SQLite, but its own plaintext format. They've been trying to migrate to other formats.[1] Currently fish stores timestamps and directories in its history.

[1] https://github.com/fish-shell/fish-shell/issues/3341


There still seem to be some remaining issues. My Cloudflare Pages site is still giving me 500 errors. I looked up the response headers and realized that when requests are served by a certain data center, they fail, but if processed by another data center, they succeed. I suspected there to be some stale cache data, so I looked around the Cloudflare console but found no way to invalidate the cache in the Pages menu (the one in the domains menu didn't work). I also sent a ticket to their help center, only to be greeted by an AI. Probably waiting more will solve this problem automatically.


Off topic, but it is good to see an article about the LIEF library on Hacker News. I recently had a need to modify the header of an ELF file and LIEF was a lifesaver. Thanks to all the authors and contributors!


History classes are always fun! I didn't know dash had the command history feature. It is just disabled by default.


Shell vi mode is part of the POSIX standard, but emacs is not.

Dash has an option to be built with libedit that supports set -o vi. It should very much be built this way.

"[set -o] vi: Allow shell command line editing using the built-in vi editor. Enabling vi mode shall disable any other command line editing mode provided as an implementation extension. This option shall be supported if the system supports the User Portability Utilities option.

"It need not be possible to set vi mode on for certain block-mode terminals."

https://pubs.opengroup.org/onlinepubs/9799919799/utilities/ [V3_chap02.html]


Yes. The current state of things makes much more sense when one is aware of the background.


Yeah, I also used Docker (actually, Podman) as an alternative Python package manager and it worked well enough. Most of all, it felt somewhat cleaner and more reproducible than using plain virtualenv.

Of course, I migrated from it after I learned uv.


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

Search: