HackerTrans
トップ新着トレンドコメント過去質問紹介求人

pgo

no profile record

投稿

Ladybird browser update (February 2024) [video]

youtube.com
5 ポイント·投稿者 pgo·2 年前·0 コメント

[untitled]

1 ポイント·投稿者 pgo·2 年前·0 コメント

HLS: Timed Metadata and How Do They Work

dyte.io
1 ポイント·投稿者 pgo·3 年前·0 コメント

Show HN: Live-Streaming an Egg

10 ポイント·投稿者 pgo·3 年前·0 コメント

Playing with the New Document Picture-in-Picture API in Video Calls

dyte.io
2 ポイント·投稿者 pgo·3 年前·0 コメント

Tell HN: Google ships a hidden extension in all Chromium builds for Google Meet

9 ポイント·投稿者 pgo·3 年前·4 コメント

We use Machine Learning at Dyte to scale flawlessly

dyte.io
1 ポイント·投稿者 pgo·4 年前·0 コメント

Dyte raises $11.6M to help developers build better video calls

techcrunch.com
1 ポイント·投稿者 pgo·4 年前·0 コメント

[untitled]

9 ポイント·投稿者 pgo·4 年前·0 コメント

Launching our new documentation portal – Dyte (YC W21)

blog.dyte.io
3 ポイント·投稿者 pgo·5 年前·0 コメント

How MoleculerJS powers Dyte

blog.dyte.io
3 ポイント·投稿者 pgo·5 年前·0 コメント

Live video calling – the Dyte way (YC W21)

blog.dyte.io
2 ポイント·投稿者 pgo·5 年前·0 コメント

コメント

pgo
·3 年前·議論
This is expected right, HTTP is not only used for human consumable web applications but for API servers as well

The bulk of these would just be embedded devices running multiple API services, like port 7547 highlighted in the article is your typical TR-069 service running on most consumer internet routers

I would argue most non-API/non embedded devices web applications would still be running on 80 and 443
pgo
·4 年前·議論
Agreed, If you have retries then you also need circuit breakers
pgo
·4 年前·議論
Yes, palash [at] dyte.io Thanks for the invite
pgo
·4 年前·議論
Would you happen to have an invite for zed.dev ? I typically have 10-15 VSCode windows open and have been looking for an performant but modern IDE
pgo
·5 年前·議論
It's a one time authorization
pgo
·5 年前·議論
No, this is about alerts from cross origin content, like from an iframe that loads from a different origin than the parent page
pgo
·5 年前·議論
Try our free demo (uncapped for the near future) with collaborative plugins at demo.dyte.io (YC W21)
pgo
·5 年前·議論
Yeah there is, the video chat is not P2P, everyone uses the SFU model where all your media goes through daily's server, so they have to pay for the instances and the bandwidth
pgo
·5 年前·議論
So under the hood it's chromium headless and you are streaming screenshots back using an extension

Curious why not run normal chromium and vnc the whole screen back using a web client such as novnc, would have solved most of your "Normal Browser UI things not yet implemented"
pgo
·5 年前·議論
There are no typos here, the root issue is package manager preferring public packages of the same name over private ones
pgo
·5 年前·議論
Didn't we get support for it last month
pgo
·6 年前·議論
https://twitter.com/vinodsparrow/status/1338431183588188160?...
pgo
·6 年前·議論
Cool diagram. Putting the shellcode in headers is very innovative. I didn't have too much assembly knowledge to trim it further during the competition.
pgo
·6 年前·議論
I once wrote an ELF by hand for a CTF challenge. The challenge was to have an shared library such that when it is passed to LD_PRELOAD it spawns a shell by execve

LD_PRELOAD=<ELF> /bin/true

The constraint being the ELF needed to be less than 196 bytes so obviously it could not be created by gcc. In the end I could not believe it ran, considering the amount of hacks that I had to do to trim it to 193 bytes.

https://github.com/TeamGreyFang/CTF-Writeups/tree/master/Pla...