Readit News logoReadit News
meric commented on What does “serverless” mean to you? So many companies are using it    · Posted by u/whispersnow
yshrestha · 3 years ago
Good observation. Code is also a Jenga tower of abstractions from High level language (Python) -> Low level language (Assembly) -> CPU microcode. No code is just yet another layer on top. The higher up you go, the more difficult it can be to debug issues, and the more locked in you will be in the infrastructure. I like to stay somewhere in the middle. Not too low such that I am wasting a bunch of time with implementation details, but not too high where I don't understand enough about the technology to fix issues. The industry, as an aggregate, is steadily and relentlessly moving up the abstraction tower.
meric · 3 years ago
A builder may use bricks to build a house - yet he may still be interested in the brick's composition & the brick making method.

These days, he may even use a brick robot to automate bricklaying, and still be interested in the mortar used.

Same for software ?

meric commented on Invade Haiti, Wall Street Urged. The U.S. Obliged   nytimes.com/2022/05/20/wo... · Posted by u/acqbu
LatteLazy · 4 years ago
Fair is fair: capital is what builds economies, capital wins wars, capital allows culture to form, capital makes resources available. And capital will go where it is best protected.

So a country that lets it's capital get destroyed is pretty much fucked.

This is the fundamental issue with most forms of communism, socialism and theocracy: they're perpetually short of capital.

Places like Northern Europe work very hard to simultaneously protect capital and human assets. And that's good. And we should emulate that. But all to often people try to down grade capital instead of upgrading people.

The places people so often think of as alternatives (Venezuela as a recent example) all too often fall for this error and doom themselves.

meric · 4 years ago
The most notable theocracies - Iran and Saudi Arabia, do fairly well compared to the other two forms of government. I wonder why they're do better than one might expect.
meric commented on Ask HN: What NoSQL database do you recommend in 2020?    · Posted by u/pier25
pier25 · 6 years ago
Serverless means the infrastructure is completely abstracted from you and it scales on demand.

Cloud functions are triggered on demand so these scale up and down as needed.

meric · 6 years ago
Amazon Aurora seems to fit.
meric commented on Ask HN: Where to look for junior level remote positions?    · Posted by u/oblomovshchina
meric · 7 years ago
There are a number of open source projects looking for contributors. I know wesnoth.org is one. The downside of contributing to open source projects full time is you will have to find alternative income.

Deleted Comment

meric commented on Ask HN: I'm just a programmer worried about climate change, how can I help?    · Posted by u/y3k
meric · 7 years ago
One example I can imagine you can help with: if your city doesn't have it, you could put its train timetables in an app. There's one for Sydney, it's called TripView. A train timetable available in a convenient manner will help people rely on trains more and reduce CO2 emissions.
meric commented on Django 2.1 released   docs.djangoproject.com/en... · Posted by u/parvenu74
zimablue · 8 years ago
As a counter point, I tried to use Django for a data-visualisation project and ran into some problems. Everything is built on models, which are kind of activerecord pattern. Django has an inbuilt (and inferior) version of sqlalchemy, so that when you want to push sql past a certain point (define queries more complex than the api) you're pretty much stuck. Now you have codebase with two different database libraries in it. You're probably using an spa so all the view stuff isn't helping, and Django kind of infects your code because it won't run without an initializarltion step so if you have a module importing something that imports Django, any time you use that it needs to initialize Django itself. I don't think that these are mistakes, just choices that they made that make it very good for websites up to a certain (sql/data) complexity and very annoying afterwards.
meric · 8 years ago
You might have seen aldjemy already but I thought I might mention it https://github.com/Deepwalker/aldjemy - let's us use SQLAlchemy queries in our django code without requiring redefining the models in an SQLAlchemy manner. It's easy to put a wrapper around it to convert SQLAlchemy results back into Django model instances.

I'm exploring using Django Channels to send data to visualisation SPA's in realtime. https://channels.readthedocs.io/en/latest/

Deleted Comment

Deleted Comment

u/meric

KarmaCake day5252January 27, 2010View Original