You lost it at the far left/right part. Lula is far left only for the people who believe in the fight the communism plot. For the majority, he is much more aligned with the center, so called “centrão”, so much that neither the leftists are pleased with him anymore.
HN user
caioariede
http://github.com/caioariede
[ my public key: https://keybase.io/caioariede; my proof: https://keybase.io/caioariede/sigs/arYaVDyUPb9n1TnMkeu_Xs7g0PWRnlU7ndGFFAhtsW8 ]
Not to mention that soon, it will be able to pay in installments using Pix, that’s called Pix Parcelado.
I love this! I was about to start using Substack for a personal/professional blog and I was very concerned about the structure they "force" you into. I don't want to socialize in the way they want me to. I just want to write my stuff down, and perhaps help someone, but at the end, all I want is a place to share things with myself in a more elaborated way. Looking at it now!
I will take the opportunity to ask if there’s a good way to read PDFs using phone. How terrible it is!
Just a small feedback… I have switched to the reader mode because the font used is very challenging to read for me.
Love it! The only thing that was a “meh” for me was using pipe for comments. It’s the only thing that I found to be unintuitive, which I very much like to see whenever I’m looking at a new language.
I noticed that too. Pretty confusing to read "Operational" with a green background and "System Wide Outage" on the left side.
Oh my, this is a really great suggestion. I never heard about the emergency bypass before. I'll check it out. Thank you
The wifi issue was pretty much what made me give up on the Thinkpad and go back to the Macbook, where I can set up my work environment pretty quickly and not have to deal with other random issues…
If you're not making a lot of writes, that may be good approach since AFAIK the counts will only be updated after the table is ANALYZE'd
Two Scoops of Django and the Django Tutorial itself are amazing. I highly recommend both.
The ability to customize the type of auto-created primary keys is also one step towards fixing one of the long-standing issues in Django: https://code.djangoproject.com/ticket/56
Also getting errors to connect to Redis (using cli):
ERR_TLS_CERT_ALTNAME_INVALID: Hostname/IP does not match certificate's altnames: Host: api.heroku.com. is not in the cert's altnames: DNS:*.herokuapp.com, DNS:herokuapp.com
I'm native speaker and I'm currently reading Grande Sertão: Veredas.
The beginning of the book (first 100 pages) is really hard, mostly because it use words that are not commonly used nowadays but also because some of the words are written as spoken. Some people like to read it loud because of this. I've tried myself for some paragraphs and it really made sense to me :)
Any major websites doing this well? The impression I have is that current technologies are not making it easier for Lynx to survive. In the other hand, I see people that can actually(?) browse without Javascript enabled, which makes me curious about the current state of things.
To me the, the worst thing with MacBook keyboards is when keys start to fade out[1]. I really hope they could do something about it
This commit is so funny: https://github.com/dotnet/winforms/commit/a534dd2ebff6792c31...
I'm using the web archive to compare:
https://web.archive.org/web/*/http://www.untether.space
EDIT: seems like Feb will always display 0.41% and the rest is 27.02%
I'd be happy to pay for premium feature, like extra privacy controls and no ads
edit: clarifying, I'd love to be able to not let people know when I'm online
“ZZ”?
Those asserts seem like a pre-Jupyter form of narrative.
4) That said, you should know how to write code that isn't super slow and with a data model that isn't insane. You should also know how to articulate that, since as a Senior dev, you WILL be mentoring junior devs, and communication is not optional.
I agree, but this should be a clear point. You shouldn't be overengineering something unless you really have to.
Yeah, you're right. You just cannot overwrite __init__:
AttributeError: Cannot overwrite NamedTuple attribute __init__
Also, AFAIK you cannot add methods to NamedTuple, making it much less flexible than data classes.
mIRC scripts is what you meant, right? That's basically how I started in programming.
One of the things that certainly contributed for keeping my interest in programming was the quick feedback. No need for confusing setups, just open the editor and start doing something. I know a lot of people that started this way and are good programmers nowadays.
I feel really nostalgic about Geany. That was my favorite editor back in the time, before I switched to Vim almost 10 years ago. It was pretty solid already. Good to see it's doing well after all these new/modern editors started to pop up.
Those guys will probably switch to another PoW coin
"what coins X, Y and Z are doing"
That's something I've been trying to see in some coins. A lot of them just promise a lot of stuff and when you look at their repositories, it either:
1. no real stuff being developed, just minor styling updates or replacing "bitcoin" with "x coin"
2. no activity in 2, 3 years
I'm pretty sure there are good projects and requires little investigation to detected possible scam coins.
edit: formatting
Python is strongly typed, and Python 3 annotations with tools like MyPy brings static type checks.
The thing I don't like in Redux is all the boilerplate code required to make simple things. I understand that in some point you may want/need to switch over to Redux but to start some projects I'm always considering a simple Event Emitter like node-events.