HN user

akane

701 karma

https://github.com/ankane

Posts48
Comments71
View on HN
github.com 5y ago

Show HN: A key-value store built with homomorphic encryption

akane
22pts9
github.com 6y ago

Free Legal Documents for Companies

akane
2pts0
ankane.org 7y ago

Show HN: pdscan – Scan Your Data Stores for Unencrypted Personal Data

akane
4pts0
emilebosch.com 7y ago

Why access and API tokens are the new passwords but worse

akane
20pts9
ankane.org 7y ago

Rails, Meet Data Science

akane
1pts0
ankane.org 7y ago

Show HN: Rails console history for Heroku, Docker, and more

akane
2pts0
github.com 8y ago

Show HN: Dbx – Fast, Easy-To-Use Database Library for R

akane
3pts0
github.com 8y ago

Show HN: JavaScript has Yarn, Ruby has Bundler, and now R has Jetpack

akane
7pts1
trendapi.org 8y ago

Show HN: Trend – Anomaly Detection and Forecasting API

akane
1pts0
shorts.dokkuapp.com 8y ago

Securing User Emails in Rails

akane
1pts0
www.chartkick.com 8y ago

Show HN: Create interactive maps with one line of JavaScript

akane
10pts3
www.chartkick.com 8y ago

Show HN: Create beautiful charts with one line of Vue.js

akane
2pts0
github.com 8y ago

Show HN: Create beautiful charts with one line of React

akane
44pts9
github.com 8y ago

Show HN: Track Devise Login Activity

akane
2pts0
www.citusdata.com 8y ago

What it means to be a Postgres extension

akane
144pts33
github.com 8y ago

Show HN: Multiverse – A Gem to Manage Multiple Databases with Rails

akane
3pts0
github.com 8y ago

Secure your S3 buckets

akane
3pts0
github.com 8y ago

Show HN: S3tk – A Security Toolkit for Amazon S3

akane
4pts0
medium.com 8y ago

PgHero 2.0 has arrived

akane
2pts0
medium.com 9y ago

Show HN: Dexter, the Automatic Indexer for Postgres

akane
4pts0
github.com 9y ago

Show HN: A/B Testing for Rails

akane
7pts2
github.com 12y ago

Show HN: Database insights made easy

akane
1pts1
github.com 12y ago

Show HN: Email analytics for Rails

akane
1pts0
ankane.github.io 12y ago

Show HN: Visit tracking for Rails

akane
51pts16
ankane.github.io 12y ago

Show HN: Searchjoy, search analytics made easy

akane
3pts0
www.datakick.org 12y ago

Show HN: Set Product Data Free

akane
2pts0
ankane.github.io 12y ago

Show HN: Search Made Easy

akane
5pts0
ankane.github.io 13y ago

Show HN: Better SQL group by date

akane
60pts44
www.streamflip.com 13y ago

SFO Plane Crash In Tweets

akane
31pts7
www.streamflip.com 13y ago

Show HN: Track your projects on Twitter

akane
1pts0

The post doesn't say you should give out your login. It says you should encrypt your access tokens and explains some security implications of current implementations that use them, like how they often give too broad permissions. When you change your password, you often need to reauth all of your devices, but you don't need to reauth your access tokens.

We currently use Amazon RDS, which doesn't support custom extensions, so pg_partman wasn’t an option for us. I haven't used pg_partman myself, but it looks to have different features.

I think an external tool is a bit friendlier for people who aren't super comfortable with installing Postgres extensions. Also, it doesn't require a restart.

I'm optimistic that Postgres will make all of this trivial at some point.

Edit: changed "more features" to "different features". One of the main goals is the ability to partition existing production tables without downtime, which seems different than pg_partman.

We've been using the tool for around 5 months, but the same approach/triggers for over a year. I wasn't aware the IF/ELSIF trigger approach had potential advantages over EXECUTE, but will definitely look into it.