Viewing profile — scardine
scardine
HN member- Joined
- Mon, Nov 12, 2012, 11:03 PM UTC
- HN karma
- 1,990
- Public activity
- 615 items
- HN profile
- View on Hacker News ↗
About scardine
Recent public activity
- comment
- story
-
comment
Comment #21219073
I guess you can have heated lens just like you have heated mirrors (I'm living in Brazil so I don't have this problem). I like to use darker film in side windows, but it makes hard…
-
comment
Comment #21209670
Right after finishing Electronics vocational school I spent the next year working as an intern at Unicamp (Campinas University in Brazil). The job was at the computer lab of the Sc…
-
comment
Comment #21190993
It is a catch 22: unless you are spending at least half your time prospecting new clients it is hard to keep a steady income, but it is hard to invest that much time in the commerc…
-
comment
Comment #21136211
It may come as a surprise, but neurotypical people also show stereotypical movements (stereotypy is the term used formally in scientific literature for this behavior). There is a n…
- comment
-
comment
Comment #21050471
I'm OK with GMO products, what I hate is: * GMO that don't produce viable seeds so I have to buy seeds from you every season. * GMO that only works with some other supply available…
-
comment
Comment #21050310
Python is kind of a strange beast - definitely imperative but with some FP-ish features: functions first-class citizenship, list comprehensions, generator functions/expressions (an…
-
comment
Comment #21034553
Have you tried Python's SQLAlchemy, the ORM parent posts are praising? The `sqlalchemy.sql` module is awesome and pretty much maps 1:1 to raw SQL. Composing SQL expressions using t…
-
comment
Comment #21001710
The space elevator itself would be something outrageously expensive and dangerous to build - but there will always be people willing to take the challenge.
-
comment
Comment #21001659
I just finished reading the "Mars Trilogy" by Kim Stanley Robson where there is a tension between the "red" and "green" parties (first group want to keep Mars pristine, the other w…
-
comment
Comment #20996981
The moon has ideal conditions for solar energy harvesting: no atmosphere, no weather... Since Project Apollo in the 1970s it is known that all the materials needed for manufacturin…
-
comment
Comment #20994854
Leaving moon's gravity well may be cheaper than getting to space from earth but it is far from free. With a space elevator in the moon you can use raw material from the moon to ass…
-
comment
Comment #20981686
In Brazil there is a concept called Business Entity Disregarding (Desconsideração da Personalidade Jurídica) that can get both ways: make partners liable for company debts or compa…
-
comment
Comment #20948500
As I understood, once you hire someone in France the labor code makes it virtually impossible to terminate the contract. In Brazil employers have to pay a fine if they fire a worke…
-
comment
Comment #20941580
Interesting, so in France you can't fire someone but can legally make his life miserable through constant relocation? Brutal...
-
comment
Comment #20940739
Interesting, in Brazil all the companies in the chain are liable in a labor-related law suit. Before the 2017 Labor Reform[1], frivolous law suits by former employees were a billio…
-
comment
Comment #20863804
You can flag it for reopening (but you need at least 3k rep IINM).
-
comment
Comment #20856383
If you run a terminal multiplexer like byobu you may want to run it only for the ssh connection, not for every sub-shell (otherwise you may get a warning about running a multiplexe…
-
comment
Comment #20802194
If you are on 3.7 you can add this import: from __future__ import annotations And then forward references don't need to be strings. I wonder if this could fix the generated page.
-
comment
Comment #20799818
I think transcription (even if not perfect) helps a lot when English is not your first language and you are still training your ear. Remember not everybody processes audio the same…
-
comment
Comment #20781835
It is like JavaScript: I don't hate JS itself, I hate spaghetti-code people write with it (but I do hate automatic type casting). I don't hate C, I hate dangling pointers and buffe…
-
comment
Comment #20771233
Sound reasons but there is nothing preventing you to adopt this pattern with Jinja. :-) I'm glad that Jinja2 templates are now first-class citizens in Django as I care about perfor…
-
comment
Comment #20762684
It is a design decision from a time where the general belief was that template designers played in a lower league compared to "real" software developers. It is 2019 and personally …