HN user

sheraz

1,309 karma
Posts33
Comments668
View on HN
news.ycombinator.com 9y ago

Ask HN: Knowledge transfer within your company?

sheraz
1pts0
postimage.org 9y ago

Image hoster pushes 1.8 PB per month through Cloudflare CDN

sheraz
71pts45
hci.stanford.edu 9y ago

Speaking to your phone 3x faster than typing and lower error

sheraz
1pts0
github.com 10y ago

Show HN: Hn_weather, generating time-series “weather” data of Hacker News

sheraz
3pts8
www.thegoparcade.com 10y ago

A series of ridiculous games based on the US election

sheraz
1pts0
www.curabase.com 10y ago

Show HN: Curabase – Curate a list of links for yourself, your team, or the world

sheraz
51pts40
medium.com 10y ago

Edge cases will kick you in the nuts

sheraz
1pts0
azure.microsoft.com 10y ago

Azure container service available today in public preview

sheraz
15pts1
lightyear.fm 10y ago

Vizualization – Scroll the galaxy through space, time, and music

sheraz
3pts0
qz.com 10y ago

Tracking private air travel in Davos with DIY radio

sheraz
5pts0
news.ycombinator.com 10y ago

Ask HN: How are you managing links for your team?

sheraz
1pts0
news.ycombinator.com 10y ago

Show HN: Feedback on my freelance dev portfolio?

sheraz
2pts1
www.helloaviva.com 10y ago

Show HN: An app for urbanite parents with small children

sheraz
4pts1
medium.com 10y ago

Don't build a rocket ship just to cross the street

sheraz
2pts0
news.ycombinator.com 11y ago

Ask HN: How are you managing links for your team?

sheraz
1pts0
www.3cosystem.com 11y ago

Show HN: 3cosystem – biggest tech and event calendar in your city

sheraz
7pts3
news.ycombinator.com 13y ago

Ask HN: What do you use to manage all your domains and hosting?

sheraz
3pts1
news.ycombinator.com 13y ago

Ask HN: Most interesting place you have coded?

sheraz
1pts0
www.photoof.co 13y ago

Show HN: A Photo of Everything Project

sheraz
1pts1
news.ycombinator.com 13y ago

Ask HN: Disrupt forum software cetegory with only UX improvements?

sheraz
1pts2
news.ycombinator.com 14y ago

Rackspace changes pricing on CloudFiles. Now $0.10 / gig

sheraz
1pts0
rts.micex.ru 14y ago

Russian Stock Market has suspended trading

sheraz
62pts14
news.ycombinator.com 14y ago

Ask HN: Family albums in 2012, what do you use?

sheraz
5pts8
www.forbes.com 14y ago

Is "The Cloud" catching up to Oracle?

sheraz
1pts0
docs.google.com 14y ago

Survey: Measure the impact on Godaddy as a result of SOPA

sheraz
1pts1
news.ycombinator.com 14y ago

Show HN: Smart renters disrupting real estate - The Addressory

sheraz
2pts8
www.addressory.org 14y ago

Smart renters disrupting real estate - my newest project

sheraz
2pts0
news.ycombinator.com 15y ago

Is there a site where freelancers can post a bounty for new projects?

sheraz
2pts1
news.ycombinator.com 15y ago

Is there a site where freelancers can post a bounty for new projects?

sheraz
2pts0
quitfacebookday.com 16y ago

Quit Facebook Day

sheraz
9pts3

nuvoair.com | Full-stack engineer | FULLTIME | ONSITE | Stockholm, Sweden

No visa sponsorship available. You must have permission to work in EU.

We are a small but fast-moving funded (2017) digital health start-up changing the way healthcare is delivered. We combine hardware, software and data to improve lives of people suffering from respiratory conditions and to enable better clinical decisions.

Your key responsibilities are to build, test and maintain architecture. Discover opportunities for data acquisition, and to assist scientists with data modeling, mining and deployment.

Your skill set and qualifications include: Minimum 5 years of commercial software development/ Python, Django and Flask frameworks and SQL / Strong linux command line a plus -- GIT/Jenkins/Docker/etc -- Testing (unit and integration) / Strong communication and documentation skills (fluent in English)

What we offer:

  - Competitive salary incl. pension plan
  - Opportunity to participate in our option plan
  - 6-week annual leave
  - Subsidized gym membership
  - English speaking office in central Stockholm
  - A fast-growing startup
  - The opportunity to shape the future of healthcare
If interested reach out with an intro and CV/github/portfolio to sheraz.sharif@nuvoair.com

I'm think the "doesn't suck" does not really sells this.

What, exactly are the benefits here over bootstrap or any of the 300 other frameworks with similar specs?

Looking at your examples I can't immediately see the difference to bootstrap other than (maybe) the smaller file size.

I moved off of swarm and back to regular docker after taking a hard look at our needs and infrastructure. Turns out we don't need all the clustering and scaling magic of swarm or kubernetes.

In fact, this has greatly simplified our development, testing, deployments, monitoring, and recovery.

If I need to scale then I add more cores to a machine with minimal downtime. No need for all this rolling upgrade stuff (at least for my applications)

Perhaps rather than using bootstrap on a high stakes project (like client work or apps with paying customers) you could try bootstrap customization on a low risk side project? That way when (not if) your screw it up there is no anxiety of an angry client or customers demanding a fix? There is no anxiety of having to support IE or some client’s esoteric dom-modifying browser plugins.

This way you can learn at your own pace and really get s feel for the codebase and workflows for bootstrap customization.

Well, the trick is that I have downtime but it last for only a few seconds.

  Docker pull <image name>
  Docker container stop <container name>
  Docker run <opts> <image name>
This does result in a “hiccup” for any clients wanting to connect. They will see a 502 gateway error at which point they should retry with exponential backoff.

And that is the trick — make the client retry with the exponential backoff. Document it as the expected behavior when that event arises. And for our traffic patterns this is acceptable.

Sure, but there is a bit of relativism here, isn't there? A 10 year-old might consider Coldplay an oldie the same way a fresh javascript developer might consider jquery old legacy stuff despite the fact that both continue to make releases.

I think if you are selling services as a consultant then perhaps sell the solution rather than the technology behind it.

When I buy a car I’m buying the benefit of it, which is convenient transportation. I don’t really think that I’m buying a drive train, engine, steel body, airbags and whatnot.

Yes, and I love it.

In hindsight I have been guilty of resume-padding and falling prey to hype by choosing to build on technology not appropriate to the problems at hand. And I find myself reverting back to basics, with bits of new tech sprinkled in.

My reversions:

  - React, flux, redux ---->  jQuery and intercoolerjs when needed
  - Swarm, Kubernetes  ---->  Just plain old docker on single machine, scale vertically with cores and memory when needed
  - Microservices first ----> Django Monolith first, then break out microservice when needed
  - API Gateways (kong, Azure) ----> Nginx reverse proxy with hand-edited configs.

I can do this because I have chosen to work on niche problems and smaller markets. Scale is not my issue, even in very successful scenarios.

I see jQuery will have a place in my stack for some time to come. It just works (tm), and it plays well when I need to level-up with wither intercooler or yes -- backbone.

Another benefit is that it is a low barrier to entry for junior developers. It allows me to establish a baseline knowledge, and then mentor other things like workflow, code structure, and architectural things rather than chasing weird configuration things inside of webpack or the taskrunner-du-jour.

How many hundreds of thousands pass through American borders with little hassle every day? That is not news (but maybe it should be as well).

Also, one cannot paint with such a wide brush as "The USA." It is the same mistake as any American visiting London, Paris, and Berlin -- and then saying they have seen "Europe." They didn't see Europe -- they saw globalized mega-regions that happened to be located on the European continent.

Unfortunately, Baltimore is an outlier when it comes to violent crime, corruption, and poverty. It is an urban center in decline and in need of all kinds of help. (This is where I stop, else it becomes political very quickly).

Compare Baltimore to places like Denver, Dallas, or Phoenix, and you will see very different cities. The US is huge in geography, population, and economics. Pinpointing an outlier and concluding that the entire country is poor and dangerous does not make for constructive conversation.

We would do ourselves a favor to talk more about the specific problems Baltimore faces, and then look at the broader American context to see which sister similar cities have tackled similar problems.

The productivity drop I see is that machines spiking CPU and apps like sketch struggling to keep up with updates and refresh. When that starts then devs and designers start tweaking settings and googling answers and boom. 1 hour gone to IT issues. Swapping adapters. Swapping cables. Cycle continues...

well said. That stupid apple dongle on iPhone. Amazing that I can't charge AND use my urban ears. Wtf.

Or apple abandoning that cool magnetic charger! My mbp 2010 had that skinny one, and I never came off.

Now we have usbc or whatever it is called, but waaaaay longer battery life, so that might be the answer there.

Come to think of it, is there wireless charging for laptops yet?

Cool idea, but from the article it really seems like they want to license the tech rather than go head to head against established browsers.

This reminds me of something that I would see on dribbble as a UI/UX exploration.

Last point, the data consumption! I'd like to see the data and power draw for this app.

Apple HomePod 8 years ago

Yeah I'll stick with Sonos, thanks. We have one at work, and the only complaint I have is the terrible taste in music of my colleagues :-)

For me, the Medium name is hurting the credibility with anyone who would publish there. I'm more likely to give my attention to someone with a static site, even if it is a boring old template. (I'm thinking of doing the same for myself).

As for Hackernoon I would be more likely to read their content off-medium. However, I do feel like I see them too often on HN, which means I now actively filter them out when deciding what to read. They are a little overexposed here.

I think the author echos some things I've been feeling about my work environment (the desktop). There is a lot of friction that comes when each of my applications wants to be its own immersive experience. My take-away from his post is that he seems to be iterating away from those rich, colorful, and distracting interfaces to something that is kind of interface-less.

This, too, is my dream (or sorts).

- Spotify without the spotify interface. (Google Music, in his case)

- Slack without the slack interface (IRC, I guess)

- Email without the web-client or sluggish Apple mail interface.

I know there are CLI for each of those use cases. But it takes commitment to learn and get them working to your liking.

Slack is Down 9 years ago

First bitbucket and now slack?

not a good day to be an enterprise saas...

Not a ProGet user here, but this definitely seems like a good idea.

What are the open-source / self-hosting options here? It gets a little messy with all the sub-dependencies, doesn't it?