HN user

fefb

36 karma
Posts6
Comments57
View on HN

Okay about the mortality rate. What about the hospitalization rate? Is it low enough to do not break the health system ? And about the smokers? diabetics ? Cancer patients ? And about the old one already hospitalized ? The kids ? And about the 0.3% that will dye ? How many young people will die in a old population ? And about the doctors and nurses extra exposed to the virus from different people?

Yeah . Nice add. I believe I already was exposed to differents diseases. I grew up in a third world country. Also, I did a exchange program in a multicultural US University where I had contact with different people from around the world.

I will try to expose more to sunlight , arms and legs. I spend all my day indoor.

Absolutely. Mental health has a big influence in our body and immune system. I work a lot in this moment of my life, but my exercises, books and relaxing times are mandatory in my week.

And some days of the week I avoid to be with a lot of people for a long time. I don't know, but for me after a meeting or group work I fell drained.

Thanks. I believe I can improve my diet with more veggies, fruits and grains. My diet has a lot of animal protein .

Yeah supplement market in US is crazy. I am another country where I buy from a great source when I need to complete my diet.

Nice thanks. Yeah exercise is great. I started work out when I was a teenager, 12 year ago. Lifting weights is a pleasure for me, I have a strong body. However, it is so normal in my life that I do not have a "basis/notion" to compare . About coffee free teas, I believe I can help my body decreasing my caffeine daily dose. It will help my sleep. Thanks again

Yes, PT brought new aspects for Brazilian corruption: the size, the proportion. They fed private big companies with a lot of "opportunities" and dirty money (JBS is an example of a private corrupted company the grewn up with PT) . Also, they abused of state companies like Petrobras. Their corruption reached other countries in South America, Europe and Africa. PT gave steroids for Brazilian corruption.

Hey,

For Mobile App, I am using Ionic 4 and React Native. The main positive point is in the end you will be able to build for iOS and Android with same code.

For backend, I am using Google cloud, Firestore, google functions , graphql.

o/

For static files, Firebase Hosting is great too. Easier than S3 + CloudFront , just a firebase deploy inside your project. Also, you can undo versions from their dashboard. In addition, easy integration with your domain.

I am using Google Function , and it is okay. I using with NodeJs10. The bad thing is limited in the zones that can be deployed. It is GA for Node 6, I believe. In general, I had many problems with cold start last year, but now it's looking better.

I didn't use yet Cloud Run, but it looks promising. If I understood well, its billing time is better than Google Function for traffic spikes. However, it is beta.

Location: Brazil

Remote: Yes Willing to relocate: yes

Technologies: Firestore, Redis, MySQL, Postegre, GraphQL, Google Functions, Lambda, EC2, App Engine, MQTT, WebSocket, Nodejs, React, Ionic. I know hardware desing language like VHDL.

Email: fefb08@gmail.com

I am full stack developer that like to solve problems with technology ️

Oh gotcha. Yes, agree. In general a rest system will be faster than GraphQL. The GraphQL abstraction layer decrease the response time. Another point against GraphQL is if the object design has much resolver fetching database style, it will make a bunch of requests to the database that can overload the system or increase your bill.

What I meant is that you probably would use the same SQL script to fetch from your database the data. GraphQL is not responsible for talk to your database. If you have a SQL database, you must specify the SQL script to fetch the data as well as RESTFUL. Pay attention that GraphQL is not a database technology, Graphql is a query language for APIS.

I believe that article is referring when you need to fetch the data in differents places. Of course in your design, a single SQL query to you database would resolve it, probably you would use the same query for a Graphql resolve. But when a field need to be fetched from another database or document in a nosql, for example, graphql tends to be more organized, of course in a restful APi you would run some concurrents jobs and have the same result. I believe that best benefits that I got from graphql is flexibility in the endpoint with some basic validation data type and a good structure in the backend. However, about performance is debatable.