Live data from Hacker News

Viewing profile — daamien

daamien

HN member
Joined
Mon, Sep 26, 2011, 4:16 PM UTC
HN karma
133
Public activity
33 items

About daamien

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #43015329

    OP is one of 7 PostgreSQL core team members. That's kind of his job to massively overthink this :)

  3. comment
    Comment #42744770

    Hi ! I'm the main developer of this extension. Happy to answer any question you have about this project and anonymization in general!

  4. comment
    Comment #42744762

    Pseudonymizing functions are just one way to mask the data. There are many other masking functions that will actually anonymize the data. And the extension does not force you to re…

  5. comment
    Comment #42744745

    PostgreSQL Anonymizer developer here : this was possible with version 0.8 which is now completely unmaintained. This extension is currently not available on RDS but it is available…

  6. comment
    Comment #42744737

    Both approach are possible * Static Masking will destroy the authentic data once for all * Dynamic Masking will only alter the data the "masked users". Regular users will continue …

  7. comment
    Comment #42744726

    This is called "Privacy By Default" https://postgresql-anonymizer.readthedocs.io/en/stable/priva...

  8. comment
    Comment #42744713

    Of course there's no perfect solution for anonymizing a dataset... The extension offers a large panel of masking functions : some are pseudonymizing functions but others are more d…

  9. comment
    Comment #42744675

    Version 2.0 was released a few days ago. It's a complete rewrite in Rust. Performance should be better than with v1.x

  10. comment
    Comment #42744669

    This called "Masking Data Wrappers" https://postgresql-anonymizer.readthedocs.io/en/stable/maski...

  11. comment
    Comment #42744657

    PostgreSQL Anonymizer developer here : this was possible with version 0.8 which is now completely unmaintained. This extension is currently not available on RDS but it is available…

  12. comment
    Comment #42744586

    PostgreSQL Anonymizer developer here : the problem you are describing here only affects version 1.x Version 2.0 was released a few days ago with a branch new masking system that do…

  13. comment
    Comment #38248939

    Actually the GDPR "just" requires to protect the data against "reasonably likely" attacks. « To determine whether a natural person is identifiable, account should be taken of all t…

  14. story
  15. story
  16. comment
    Comment #21376895

    See PEV2 : https://github.com/dalibo/pev2

  17. comment
    Comment #18855837

    This is still an issue : https://postgresql.verite.pro/blog/2018/08/27/glibc-upgrade....

  18. comment
    Comment #16781662

    ... and with dozens of other data sources: https://wiki.postgresql.org/wiki/Foreign_data_wrappers

  19. comment
    Comment #16781623

    PostgreSQL does this out of the box with : CREATE EXTENSION file_fdw; CREATE SERVER import FOREIGN DATA WRAPPER file_fdw; CREATE FOREIGN TABLE foo ( col1 text, col2 text, ... ) SER…

  20. story
  21. story
  22. comment
    Comment #11317907

    direct link to the PDF : http://www.postgresql.org/message-id/attachment/43080/Postgr...

  23. story
  24. story
  25. comment
    Comment #9774810

    Temporary index and Hypothetical index are two different things. Temporary index is a real index that's usually dynamically created by the optimizer to speed up a query. But it's k…