HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kanobi

no profile record

comments

kanobi
·2 anni fa·discuss
I doubt that. Sands of Time trilogy was very well received. Jordan Mechner was also involved in production in those, I'm just not sure in what capacity.
kanobi
·2 anni fa·discuss
Yup, that's even better. I think it didn't work for me because I was using Redshift, which didn't support FILTER at that time.
kanobi
·2 anni fa·discuss
Whenever I needed to do a pivot in postgres, I used this approach that is described in this stackoverflow anwser:

https://stackoverflow.com/questions/20618323/create-a-pivot-...

So for example when you have a table like described (column_name, meta_key, value), you would create a query like this:

  SELECT
    column_name,
    MAX(CASE WHEN meta_key='total_rows' THEN value ELSE NULL END) AS total_rows,
    MAX(CASE WHEN meta_key='not_null_count' THEN value ELSE NULL END) AS not_null_count,
    -- for all other metrics....
  FROM tall_table
  GROUP BY 1
(edit: formatting)
kanobi
·2 anni fa·discuss
But the problem is how can consumers really know if the company is selling this data and to who, without some kind of legislation? Being a premium product is just an indicator, but it's not definitive.

I think even CCPA in California should be able to prevent abuses like that. At least you should know what data is being sold and you should be able to opt-out. If that's really the case, only time will tell.
kanobi
·2 anni fa·discuss
I mean the point of the article still stands, it was just an observation of how funny it seems.

I have ublock installed, so this can be at least prevented with news websites. Which can't be said for unseen tracking in chat-bots. Collecting and storing this data without consent obviously sidesteps GDPR, so I'm not even sure about legality of these practices in EU.
kanobi
·2 anni fa·discuss
It's always ironic to find these kinds of articles on sites that have hundreds of background trackers. Even though I "rejected all" unnecessary cookies I still see around 16 of them coming through. Like adsafeprotected, adlightning, google-analytics.
kanobi
·3 anni fa·discuss
There is a real life example, unfortunately. In 1978 Soviet scientist Anatoli Bugorski was hit by a 76 GeV particle. https://en.wikipedia.org/wiki/Anatoli_Bugorski

Looks like he survived the incident and even completed his PhD in following years. He did lose hearing on one ear and was partially paralyzed though.

Now the particle mentioned in the article was million time more energetic so...
kanobi
·3 anni fa·discuss
I think in practice, what ends up happening, is that small businesses don't really bother to comply while they fly under the radar. Or they just end up buying an e-commerce plugin that handles the minimum. We had one for GDPR and then they just added support for CCPA when that was a thing.