Viewing profile — joewood1972
joewood1972
HN member- Joined
- Mon, Dec 01, 2014, 1:17 AM UTC
- HN karma
- 46
- Public activity
- 23 items
- HN profile
- View on Hacker News ↗
About joewood1972
No profile information was provided.
Recent public activity
-
comment
Comment #43384205
Sure, DBT (Data Build Tool) has been around for a while. It's a way to manage SQL (and also Python) data pipelines - the "T" in ELT. Home page for DBT Core is here https://docs.get…
-
comment
Comment #43380146
Loving this list. One thing I would totally recommend though is to look at tools like DBT, as this supports a lot of these patterns out of the box (snapshots, materialized views, s…
-
comment
Comment #43333009
One question that springs to mind is the in-browser "playground" and hosted coding use-case. I assume WASM will be used in that scenario. I'm wondering what the overhead is there.
-
comment
Comment #41349628
For example, Apache Iceberg is exactly this. Complete with bitemporal query support.
-
comment
Comment #39808192
Hi Slig, just wanted to say that my family has been obsessing over these puzzles since you posted these. Thanks for the putting this together. I would suggest you add some sort of …
-
comment
Comment #39520027
In the intro, this post is referenced https://francoisbest.com/posts/2021/hashvatars
-
comment
Comment #29942558
This is great. Looks really nice on mobile.
-
comment
Comment #29272634
One problem will be deciding on when tomorrow is. If your work day starts at 9pm, you have lunch at midnight, do you then go home the next day? We could lose lots of complexity of …
-
comment
Comment #14067574
I think it depends on the type of application, and how much code you want to reuse. Assuming this a fairly large scale app and long term maintainability is a consideration: * If so…
-
comment
Comment #12100978
Sure you can share files, it's works OK with some caveats. More in the overview under DriveFs: https://blogs.msdn.microsoft.com/wsl/2016/04/22/windows-subs...
-
comment
Comment #11801605
The best answer is to use a tool that saves in the format that the file was in originally. I think VSCode and some others do that. If the file only has 2-space indentation then TAB…
-
comment
Comment #11679358
JSX has zero community adoption? Or was there a missing comma in there? Of the React code I see, I would estimate that JSX adoption is high 90s. I've used both Angular, played with…
-
comment
Comment #11623081
Seems to be a confusing article and site. It lists AR as a disruptor, but mentions Google Glass and not Hololens. The link to "Augmented Reality" links to an article about VR. Then…
-
comment
Comment #11349959
No, de-duplication and conflict resolution is much harder if dependencies are in a bundle. There are many better solutions to this problem: * Fix NPM and make it immutable. If ther…
-
comment
Comment #11225739
Not sure I follow. For distributing apps for friends you can (and I do) distribute using HockeyApp or TestFlight or whatever. There's also a Development->Sideload app feature in Wi…
-
comment
Comment #11225487
The problem with an open distribution system is that it easy to abuse, and that leads to security problems. Most of us all know non-IT literate family members that have clicked thr…
-
comment
Comment #10938041
Agreed. I see the same result. The search results are as I would expect. I understand there is an issue with languages and regions, maybe the OP's region is not US English. It woul…
-
comment
Comment #10150609
Neither, the cool kids are using Radium https://github.com/FormidableLabs/radium :-J
-
comment
Comment #9640002
I think what was meant was that immutability solves cache synrhoncization issues. More accurately, state synchronization issues. If you think about the DOM as the projected state o…
-
comment
Comment #9140326
Not to diminish the argument, but other than diskspace, I really don't understand the downsides described here. I'm wondering, given the author was an early adopter of Git, this is…
-
comment
Comment #9119505
If everything is immutable then a reference check is all you need. They key is to avoid deep copies. Observables are problematic when changes can ripple through your model/view-mod…
-
comment
Comment #9081995
React also has its own implementation of the Flex layout system. Implemented in JavaScript and C++ (for react native).
-
comment
Comment #8919231
Unless I've misunderstood, and it may be semantics, but I don't see this as infinite scroll. If I had 10,000,000 rows the browser would still struggle with this grid as it needs to…