HackerTrans
TopNewTrendsCommentsPastAskShowJobs

draklor40

no profile record

Submissions

Ask HN: Paid/free lightweight solutions to host tech blog/site easily

1 points·by draklor40·5 лет назад·7 comments

Ask HN: Indepth Introduction to RDBMS (Or Postgres) Internals

23 points·by draklor40·5 лет назад·5 comments

comments

draklor40
·4 года назад·discuss
Foreigner living in Berlin. Ticket inspectors are civilized and polite. Altercations and provocations are rare. Given my observations, I will take this news report with a BIG pinch of salt rather than assume discriminatory behaviour.
draklor40
·5 лет назад·discuss
15-16 inch is my comfort zone. Anything else is too small and my eyes hurt and bigger than that is unwieldy.
draklor40
·5 лет назад·discuss
Interesting. Worth taking a look at
draklor40
·5 лет назад·discuss
CloudFormation, with its HORRIBLE YAML templating (whatever dsl/language) and arcane error messages is a horror story. I hate it so much that I'd rather quit my job than debug why CloudFormation decided for no reason to update my RDS instance for a PR that was just a README file update.
draklor40
·5 лет назад·discuss
Would be an achievement if they even retain 1% of it as active users.
draklor40
·5 лет назад·discuss
You can be a good Developer AND a nice human being. The choice is not either or. That is the goal one should strive for, not to decide between shooting down a PR or checking-in bad code into the repo.
draklor40
·5 лет назад·discuss
But isn't BBC itself a propaganda arm for the UK ? So now they simply hate it cause they have competition ?
draklor40
·5 лет назад·discuss
Salem gundu and banganapalli FTW !
draklor40
·5 лет назад·discuss
Go nuclear.
draklor40
·5 лет назад·discuss
So I could be banned for sharing a document that says 'Google is evil' ?
draklor40
·5 лет назад·discuss
Zerohedge is severely anti-Elon Biased. He might be at fault for many things, but this is just a first gen product that hopefully improves in the next generations.
draklor40
·5 лет назад·discuss
hardware development as a service. atleast a virtualized micro-controller so that people can build tiny devices with sensors, peripherals etc like we build web apps on AWS. As a software engg. I'd like to get more hands on with processors/controllers and peripherals etc and this is by far the most frustrating part for me as I have no idea how to debug electronics or solder beyond basics. I would absolutely love to work with someone on this, if they can provide a basis for this.
draklor40
·5 лет назад·discuss
I would differentiate between non CEO founders and founders CEOs. Non-founder CEOs are subject to the whims and fancies of the board (institutions).

I am disappointed that Yale with 30 BILLION USD ! in endowments did not have the same impact a hastily put together fund filled mostly with volunteers did. To weed out the poor capital allocators, you need skin in the game. Not saying it is perfect, but it probably would be way better than what we saw during the pandemic (and still see).
draklor40
·5 лет назад·discuss
Individuals are more ready to take risks than institutions.

To me this was the most damning indictment of all. Once founders leave a compnay (or an institution), as BalajiS says, they become a shell of their former selves,with the individuals mostly in for self-preservation rather than set out fulfill the purpose of the institution.
draklor40
·5 лет назад·discuss
Agreed, but irrespective of Librem/PinePhone, companies in general can build much better products when they focus on doing few things good than many things bad.
draklor40
·5 лет назад·discuss
Unpopular Opinion: I don't want a Linux Desktop (XFCE, KDE, etc) on my phone. I don't care about being able to run terminals or `chown -R user xyz` or `htop` on my phone.

I want a phone with a decently polished OS, smooth (given hardware constraints) that can run apps that I control (deny ads, location info. etc) and provides an alternative to the Android/IOS duopoly.

I just hope that the Pine Community will realize this and focus energy and work towards having a canonical OS on the PinePhone that just works.
draklor40
·5 лет назад·discuss
IMHO Static typing => structure, not necessarily Map<String, String> (which is also a type). Shaping data is quite important and having an associative array doesn't necessarily means that the data is shaped.
draklor40
·5 лет назад·discuss
> This is what I run into. But that's not exactly a dynamic language problem. It's more of a data-oriented programming (in the Clojure sense) problem.

Yes, all dynamic languages have this problem. I have transitioned to statically typed languages and it has been very peaceful so far :)
draklor40
·5 лет назад·discuss
``` breaking things up into small isolated components that can be reasoned about independently ``` - This is insufficient for the same reasons unit tests are not enough and you also need integration tests. The moment you cross namespace boundaries, you will end up not setting keys /entries in maps , missing logic etc and end up needing something like Spec/Schema....
draklor40
·5 лет назад·discuss
I wrote Clojure for 4 years. I understand your pain points. Dynamic types are an impediment beyond a certain code size.