HackerTrans
トップ新着トレンドコメント過去質問紹介求人

vikR0001

no profile record

コメント

vikR0001
·2 年前·議論
This looks very interesting! Is it possible to implement this in a node.js web app? Does it work with any build tool? How much latency does it add to a production server?
vikR0001
·2 年前·議論
In my opinion, this article a hilarious joke, a satire. I mean...

> Let's take a look at what the bootstrapping code for a very minimal syntax looks like: > > ldfgldftgldfdtgl > df > > dfiff1 crank f
vikR0001
·2 年前·議論
This is very cool. Note: the chalk-on-chalkboard sound comes to my speakers as harsh static.
vikR0001
·3 年前·議論
Is there a good forum for React users to ask questions and discuss best practices?
vikR0001
·3 年前·議論
You might want to look at https://www.meteor.com/. There aren't a lot of alternatives to it that do such a good job of providing its benefits:

- Zero-config build tool

- Accounts system included

- Live reactive data system included

- Easy interface to React, Svelte, Vue

- Can use its out-of-the box MongoDB integration or integrate with any database via GraphQL

- Great community forum

A new version 3.0 is almost done.
vikR0001
·3 年前·議論
Is there a legend for the shading? I wasn't quite sure what shades of color meant what amounts of light pollution.
vikR0001
·3 年前·議論
Will you be HIPAA-compliant?
vikR0001
·3 年前·議論
Meteor is a very strong option. It will build anything you throw at it. It has built-in accounts so you can get your login/auth system running very quickly. It has a lot of options for live data if your app needs it - your users see relevant updates on their screens without needing to refresh the window. It supports React, graphQL, MongoDB, and other view frameworks/databases.
vikR0001
·3 年前·議論
You're working at one of the best companies in the world and you want to go back to college? Why? You're doing great.
vikR0001
·3 年前·議論
In the author's footnote #1, he praises Svelte and Vue. So the whole article boils down to "Don't use React, use Svelte/Vue instead."
vikR0001
·4 年前·議論
> You inherit an asset that you are forced to liquidate in order to afford the inheritance taxes on that asset.

Do you live in France by any chance?
vikR0001
·4 年前·議論
Do you live in France by any chance?
vikR0001
·4 年前·議論
How can a little iPhone possibly have enough power to transmit data all the distance to a satellite?
vikR0001
·4 年前·議論
First of all, you're really good at identifying the need for people to be able to answer this question! It's a very good question because often people aren't aware of their own skills. I don't have an answer here but if you could develop one you'd have many customers to utilize this as a service.

I googled "what hidden skills do i have" and found other people looking into this question as well.
vikR0001
·4 年前·議論
Anybody in Ft. Myers, Florida?
vikR0001
·4 年前·議論
What payment processors are safe to rely on?
vikR0001
·4 年前·議論
Selenium can be very difficult to install when it comes to specific browser libraries.. Playwright, just as one example, is very easy to install.
vikR0001
·4 年前·議論
You can do something like this. This query can be created and run on the client:

``` const SAMPLE_JOIN_QUERY = gql` query ($main_data_id: String!) { mainData( main_data_id: $main_data_id) { id main_data_field_1 main_data_field_2 main_data_field_3 related_data{ related_data_field_1 related_data_field_2 related_data_field_3 } } } `; ```
vikR0001
·4 年前·議論
When you say it doesn't support tables, can you provide more info? GraphQL can return lists of course.
vikR0001
·4 年前·議論
Let's say you need to get a field back that is already in the database table, but that wasn't previously returned by the GraphQL endpoint. All you have to do on the front end is ask for it and GraphQL will populate it for you on the server.