Viewing profile — nooorofe
nooorofe
HN member- Joined
- Sun, Sep 18, 2016, 12:39 AM UTC
- HN karma
- 36
- Public activity
- 54 items
- HN profile
- View on Hacker News ↗
About nooorofe
No profile information was provided.
Recent public activity
-
comment
Comment #42984955
it was fixed with workaround, in newer versions, they copy statically compiled nodejs to the server and it works.
-
comment
Comment #41231525
Airflow is far from perfect, but I don't understand your concerns. I work in a big and messy company and even messier department. We have jobs running in Databricks, Snowflake, som…
-
comment
Comment #41228407
> if you want to convert some scheduled pipeline to some event-driven architecture Airflow has sensors and triggers. https://airflow.apache.org/docs/apache-airflow/stable/author...…
-
comment
Comment #38816352
There is nice summary on the topic: https://aws.amazon.com/blogs/big-data/choosing-an-open-table... ("Optimizing read performance"). Those technologies primary "Data Management at …
-
comment
Comment #38339645
from zoneinfo import ZoneInfo import pendulum import datetime def pendulum_to_datetime(pendulum_dt: pendulum.DateTime) -> datetime.datetime: return datetime.datetime.fromtimestamp(…
-
comment
Comment #38334176
>pendulum is probably your best bet It is best until you work with Pandas DataFrame ( https://stackoverflow.com/questions/47849342/making-pandas-w... )
-
comment
Comment #37727181
I doubt it was .exe, probably .msi (installer) or zip file.
-
comment
Comment #35412647
no sure it is relevant, probably all heavy lifting done in C++ and Rust https://searchfox.org/mozilla-central/search?q=render&path=&...
-
comment
Comment #34990873
https://github.com/evolus/pencil
-
comment
Comment #34869138
I think the article and most of the commentators are missing a real problem. The real problem is that there is an underlying complexity, which has no simple solution - collaboratio…
-
comment
Comment #33224213
I am using Java occasionally, there isn't any special learning curve if you know basic syntax. Same as in Python you don't start with Jdango and virtual environments, you shouldn't…
-
comment
Comment #33156646
Term "toxic" is toxic by itself. Periods when engineer don't understand the problem should be spent on analysis of the problem domain. "Now I am working on defining the problem dom…
-
comment
Comment #31541163
Talend Studio? https://www.talend.com/products/talend-open-studio/
-
comment
Comment #31486494
Apache Airflow is tool for *analytical data* pipelines. If you want to create a daily/monthly data feed from your operational DB, move to it into Data warehouse, run jobs to proces…
-
comment
Comment #31486359
very basic use cases: * run job for given reporting_period * backfill data for reporting_period between N and M * lookup failed jobs Nothing in Databricks supports that.
-
comment
Comment #31486085
he has "a wonderful secretary who looks at the incoming mail"
-
comment
Comment #31298086
People like [Sam Walton]( https://en.wikipedia.org/wiki/Sam_Walton ) born in poor farmer family or [Jeff Bezos]( https://en.wikipedia.org/wiki/Jeff_Bezos ) son of 17 year old high …
-
comment
Comment #30890870
do you have doubts those people are skilled? https://en.wikipedia.org/wiki/Brad_Fitzpatrick https://news.ycombinator.com/item?id=21727925
-
comment
Comment #30890425
there is a strict mode https://sqlite.org/src/wiki?name=StrictMode
-
comment
Comment #30716881
> No Java I am not sure what "essential tool" means if pandoc included in it. For me Intellij, Eclipse, Dbeaver are more essential (+ few other Specific tools based on Eclipse). C#…
-
comment
Comment #30666385
> Python Design Patterns My brain puts it next to: globe of China, Jewish Olympic games (real thing).
-
comment
Comment #30490228
I have mixed feeling about Nim. I've tried to learn it few years ago. It was "sold" like a Python replacement, it looks like a Python a bit, but when you write code it feels nothin…
-
comment
Comment #30403625
Yes, that part is different, reusability of the code is not expected to be the same as normal software code. Not different that the code starts from requirements (which are differe…
-
comment
Comment #30399549
I don't like the code. My start point would be that import pandas as pd import numpy as np if __name__ == "__main__": n_samples = 10000 samples_np = pd.DataFrame(np.random.randint(…
-
comment
Comment #30050659
For a bigger code base projects fixed typing contributes to speed of development. Add to it dependency management you will have clear win-win for something like Java over Python.