Live data from Hacker News

Viewing profile — phpdave11

phpdave11

HN member
Joined
Tue, May 14, 2019, 1:01 PM UTC
HN karma
58
Public activity
19 items

About phpdave11

No profile information was provided.

Recent public activity

  1. comment
    Comment #48417581

    https://www.dayswithoutgithubincident.com/

  2. comment
    Comment #48359813

    This is a good point. Another problem with streaming services, specifically for music streaming services, is that they can change the track of a previously released album with no u…

  3. comment
    Comment #48358172

    As long as you embed it with an SRI integrity hash, you're safe, even if the remote server is compromised.

  4. comment
    Comment #47917346

    I’ve been using Notepad Next on Mac: https://github.com/dail8859/NotepadNext

  5. comment
    Comment #47606150

    "Before NASA sends astronauts to actually land on the Moon in 2028, they need to be absolutely certain that the Orion spacecraft, the Space Launch System rocket, and all the life-s…

  6. comment
    Comment #47372798

    This looked interesting but the workaround might have been patched by Apple in newer iOS versions: https://www.reddit.com/r/iphone/comments/1p3e2bf/my_hacked_i...

  7. comment
    Comment #47368143

    The original iPhone ran OS X: https://youtu.be/x7qPAY9JqE4?t=522

  8. comment
    Comment #46136870

    If you just need a simple local s3 server (e.g. for developing and testing), I recommend rclone. rclone serve s3 path/to/buckets --addr :9000 --auth-key ,

  9. comment
    Comment #45721139

    It compiles the Go code to WASM, so it can be used browser side.

  10. comment
    Comment #34433277

    It shouldn't be too difficult to add support for this. I authored a Go library which adds support for importing PDFs into a new PDF generator (either gofpdf or gopdf). It is around…

  11. comment
    Comment #32917771

    I am using an alternative which doesn't require any additional browser extensions, but it does require that each client installs a custom root certificate. I have a split-DNS setup…

  12. comment
    Comment #26997910

    This was really educational! I love the design of the webpage, and I especially like how you can rotate the 3d diagrams and see each component from every angle.

  13. comment
    Comment #25282962

    I wish I could still compile XMMS from ports on FreeBSD. It seems to have been removed because glib12 is obsolete. Thanks for letting me know about QMMP. Looks like it can be built…

  14. comment
    Comment #24560611

    Reading them is also easy. I wrote a library that reads PDFs and imports page(s) from an existing PDF into a new PDF as a Form XObject. https://github.com/phpdave11/gofpdi

  15. comment
    Comment #24558951

    It's really not that difficult if you read and understand the PDF specification. As a learning exercise, I created a simple PDF generator library that creates ASCII PDF documents (…

  16. comment
    Comment #24293612

    I like how the title of the article has a hidden scroll bar (reading on iPhone).

  17. comment
    Comment #20675741

    Here's the bash script I use to do the code validation. It's called from within my Dockerfile. https://gist.github.com/phpdave11/412893f8366cab0afa85e81a7a...

  18. comment
    Comment #20675058

    PHPStan is a great tool. In addition to PHPStan, I also use phpnsc (name space checker) to check for missing use statements, php-cs-fixer (code style fixer) to ensure the code adhe…

  19. comment
    Comment #19909066

    You can use Mercurial with GitHub by using the hg-git plugin, which lets you push to and pull from a Git server repository from Mercurial. It’s a really nice tool that I’ve been us…