hzlatar | 4 years ago | on: Building for the 99% Developers
hzlatar's comments
hzlatar | 4 years ago | on: Building for the 99% Developers
hzlatar | 4 years ago | on: Ask HN: Does modern software development need any coding?
Even more so 25 years ago when various GUIs became ubiquitous.
About 20 years ago, Flash and Dreamweaver were promising the same.
You see where it's going.
hzlatar | 4 years ago | on: The Big DevOps Misunderstanding
> Under a DevOps model, development and operations teams are no longer “siloed. Sometimes, these two teams are merged into a single team where the engineers work across the entire application lifecycle, from development and test to deployment to operations, and develop a range of skills not limited to a single function.
Today, devops is often used to describe the engineering role very similar to the classic system administrator. I guess this is mostly because it sounds "more modern" and it's more attractive.
But, the comments in this thread made me aware that there indeed is a role that's focused only on serving developer needs. I guess we could call an engineer a devops engineer if their job is only to build and maintain system tools for developers.
hzlatar | 4 years ago | on: Ask HN: How would a programming language look if designed by non-programmer
They expected us to imagine a simple instruction set with 7-10 commands. But one clever guy wrote this: "My CPU has only one instruction - manage_elevator. The code for elevator management is: "manage_elevator". He passed with A.
I guess that is how a non-programmer would imagine a programming language.
hzlatar | 4 years ago | on: AWS Tools Suck
AWS isn't a developer tools company. It is ops tools company. In particular enterprise ops tools company. Their customers are IT managers and system administrators from large companies. That explains 1 and 2.
Famously, AWS is organized as huge bunch of two pizza teams. Essentially, it's a huge incubator for internal startups. That's how they manage to churn out new features so frequently and try out and discard unsuccessful products. Also, that is why their tools looks so damn inconsistent and why you never know what's working with what.
Regardless of money, they can't make the tools better without sacrificing something. And that is a space for competitors. Work on developer centric tools for small and medium sized companies.
hzlatar | 4 years ago | on: Ask HN: Does agile stifle our best ideas?
hzlatar | 4 years ago | on: Ask HN: Good books that have documented software development wisdom of years?
- Mythical Man-Month by F. Brooks
- Peopleware by T. DeMarco, T. Lister
- Creativity, Inc. by E. Catmull
- Design Patterns by The Gang of Fourhzlatar | 4 years ago | on: Don't start with microservices – monoliths are your friend
Then, in about two years, everything changed. Suddenly, every new web project (and web was also novel) included a MySQL DB. That's when the idea about the three tier architecture was born. And since then, a few generations of engineers have been raised that can't think of a computer system without a central DB.
I'm telling this because in microservices I see the opportunity to rethink that concept. I've built and run some microservices based systems and the biggest benefit wasn't technical, but organizational. Once, the system was split into small services, each with its own permanent storage (when needed) of any kind, that freed the teams to develop and publish code on their own. As long as they respected communication interfaces between teams, everything worked.
Of course, you have to drop, or at least weaken, some of ACID requirements. Sometimes, that means modifying a business rule. For example, you can rely on eventual consistency instead of hard consistency, or replenishing the data from external sources instead of durability.
Otherwise, I agree with the author that if you are starting alone or in a small team, it's best to start with a monolith. With time, as the team gets bigger and the system becomes more complex, your initial monolith will become just another microservice.
hzlatar | 4 years ago | on: ATX-80 – ZX-80 computer clone with ATmega8 processor
That's how I learnt to code.
hzlatar | 4 years ago | on: Ask HN: What’s most challenging in development for AWS Lambda (and serverless)?
Admittedly, I'm a fan of serverless. I believe serverless will soon become a dominant form of cloud computing. I think it is just a matter of immaturity of the platforms and lack of tools. While I can't do much about the platforms, I can try to build better tools.
That's what my team and I are doing with Mantil https://github.com/mantil-io/mantil
hzlatar | 4 years ago | on: Ask HN: What’s most challenging in development for AWS Lambda (and serverless)?
hzlatar | 4 years ago | on: Ask HN: What practical skills do you recommend?
Listening skills help not only in your professional life, but also in raising kids and having a good relationship with friends and family.
hzlatar | 4 years ago | on: How a Formula 1 Race Car Works [video]
hzlatar | 4 years ago | on: Directory Opus is a complete replacement for Explorer
I am happy to see that the idea is still alive. Although, I don't use Windows anymore.
hzlatar | 4 years ago | on: Ask HN: What’s most challenging in development for AWS Lambda (and serverless)?
I think Lambdas can be, or better, soon will be suitable for almost all use cases. We are just missing proper tools and good design patterns. Those must to be opinionated.
hzlatar | 4 years ago | on: Ask HN: What's an insanely competitive job for a software engineer?
hzlatar | 4 years ago | on: Software devs, how have you sped up your workflow?
On my previous job, I had been working for 15 years on the development of a complex business system. It included desktop apps, mobile apps, webs, on-premises and clouds. Throughout the years, we have introduced many then cutting-edge technologies for new products within the system. Some technologies before they were cool. But, the fine-working-already-done products, we kept supporting with the original technology for the lifetime of the product.
The point is that many new tools and technologies bring a very limited value to the finished working products.
Now, I am a maker of the new development tools. So, I am eager to push them to the world, but wouldn't like to be perceived as an "architecture astronaut". Your opinion helps in understanding how and why engineers choose new tools and technologies.