HN user

zubairov

183 karma

hacker, founder, product geek. @elasticio

[ my public key: https://keybase.io/zubairov; my proof: https://keybase.io/zubairov/sigs/CeV6Gw2Et9AxDrp3x2Hc_CxTFNwRqW6PrDBZC3c-oms ]

Posts56
Comments45
View on HN
www.revos.ai 21d ago

Show HN: Agentic Data Engineering

zubairov
2pts0
cli.revos.dev 22d ago

Show HN: Scaffold a BigQuery and dbt and Cube project an AI agent can operate

zubairov
8pts3
www.revos.ai 1y ago

Show HN: 2M Customers Analyzed – What we learned in one Spreadsheet

zubairov
1pts0
github.com 1y ago

PowerBI Report Template for HubSpot CRM

zubairov
2pts0
www.revos.ai 1y ago

The Generative AI: Opportunity or Monopoly (POV AI Startup Founder)

zubairov
1pts0
revos.ai 3y ago

Show HN: B2B SaaS Customer Health Score Template v3

zubairov
1pts0
www.revos.ai 4y ago

Customer Health Score

zubairov
1pts0
renat.substack.com 5y ago

Technology Looking for a Problem

zubairov
3pts0
twitter.com 5y ago

Does intercom support every replied to you?

zubairov
1pts0
www.elastic.io 8y ago

Open IntegrationHub: New Standard for Data Sync

zubairov
1pts0
github.com 10y ago

HAProxy auto-configuration and service discovery for Mesos-DNS or SkyDNS

zubairov
4pts4
www.elastic.io 10y ago

Running Docker Registry on AWS ECS

zubairov
1pts0
www.elastic.io 11y ago

Aggregating Docker logs in Mesos cluster

zubairov
1pts0
zubairov.quora.com 11y ago

My 3 takeaways from CeBIT 2015

zubairov
1pts0
bdoblog.com 11y ago

Meet the companies destroying business software suites as we know it

zubairov
1pts0
addons.heroku.com 11y ago

Show HN: All contacts in your app

zubairov
1pts0
addons.heroku.com 11y ago

Show HN: Cloud Integration for Developers

zubairov
1pts1
www.elastic.io 12y ago

PaaS is a commodity now, what's next?

zubairov
1pts0
www.elastic.io 12y ago

Why we chose prismic.io over wordpress/joomla/typo3

zubairov
8pts4
www.elastic.io 12y ago

5 Must-Have Features we need in our new CMS

zubairov
2pts0
jsbin.com 12y ago

Simplest way to integrate with Google, LinkedIn and Xing

zubairov
1pts0
www.elastic.io 12y ago

Show HN: Integrate your app using simple JavaScript Widget

zubairov
2pts2
www.elastic.io 12y ago

Meet us on CeBIT

zubairov
1pts0
siliconallee.com 12y ago

Not only in Berlin...

zubairov
1pts0
www.elastic.io 12y ago

Introducing new CSV Reader

zubairov
1pts0
www.elastic.io 12y ago

Simplest way to integrate with Salesforce API

zubairov
1pts0
elastic.io 12y ago

Show HN: our build and deployment pipeline

zubairov
2pts0
zubairov.quora.com 12y ago

Interesting Math on Founder's shares

zubairov
1pts0
zubairov.quora.com 12y ago

Competitor is copying your product - 3 reasons not to worry

zubairov
1pts0
github.com 13y ago

Responsive email template for MailChimp

zubairov
1pts0

Good point, however as you already noted, it's not a single app or single chat client that can change the situation - it's the acceptance of it among the bigger community. It's not a technical but an educational topic where ecosystem leaders should take the responsibility to educate ordinary people (not just HN readers) on that. I strongly believe this kind of initiatives should have a strong legal/governmental support and/or control.

We count number of records we transfer between two systems. For example in case of contact import one data records === one contact record that is imported into your application. In case of File Exporter one data record will be one single file, but in this case you might guess that 'bandwidth' limits are more critical than 'data records' :)

Problem is not that Zapier or any other system want access to your whole Dropbox. Problem is that Dropbox API is constructed in such a way that no granular access is possible to request from a user. Google Drive in comparison is more fine-graned however more complicated to use (from API side) too.

Absolutely agree on this one with you. We are working on similar product http://elastic.io and it's clear that in this business (IFTTT, Zapier, elastic.io, FoxWeave.com, etc) you need to work on two customers - business customers who pay and developers who are platform multipliers. That's the reason Zapier and IFTTT are trying to open up. Important is however business users (who pay) do not need 'developers' view on things, they don't need the 'flexibility' and complexity that developers needed, so essentially it's two different products. Think AppStore/App - Xcode.

Thanks Tom! As we switched from Java to JavaScript it gave us incredible boost in productivity. And also staying on the shoulders of giants like node.js, twitter bootstrap speed things up allot.

Good points are covered in this blog post, however what if we would push it even further?

Why would people need to download a package? Why would anybody need to learn a programming language you package designed for (or assume you distribute packages for many programming language)?

When using APIs for integration or mashups, especially in business world, person who know how solution should looks like may not have time to code. So we at http://elastic.io think API could be via visual designer.

We believe it's also a way to make API usage _simpler_ for enduser, even the one who can not, or have no time to code.

Hi,

No 1005 ms was not a cache miss it was a request to the origin server. Latency was 799 ms.

I assume CloudFront will contribute some latency, however in our case (we are using Heroku) our servers were already on Amazon platform, therefore CloudFront --> our server latency should be significantly lower. So CloudFront cache miss latency for the enduser will be not significantly higher than origin server latency for the enduser.

Good question. It depends on the caching strategy. As we essentially serve Gists we have two types of URLs one something like [gist-id]/ meaning the latest version of that particular gist and another URL is [gist-id]/[revision-id] which is a particular revision. For 'latest' URL we just do a redirect to particular latest version. For first type of resource we have 60 seconds expire, however it is also not too expensive to re-generate it. For second type of resource (with particular revision) we have much higher expire time (several days). By this type of caching strategy I assume we will get only 20% of all requests to our servers so saving is significant.