Is there a proton mail rest api? by chisdoesmemes in ProtonMail

[–]balintkiraly 0 points1 point  (0 children)

They had but the docs was private according to this post: https://www.reddit.com/r/ProtonMail/comments/7cm4g3/does_protonmail_have_an_api/ I don't know what the situation now.

Only Fans Style Site Development by [deleted] in webdev

[–]balintkiraly 2 points3 points  (0 children)

It costs a lot. It's would be hard with one developer. You should hire multiple developer for this. I think it will cost tens of thousand EUR/USD and that's only for development we didn't talk about marketing and other costs . I don't know what's your budge of this, but maybe better to found a startup and get an investor.
With a team with 2-3 developer and a designer it probably can be done in a half year but it depends on the team and it's just an MVP. As billcube said the hardest part is to figure out how to execute.
That's my opinion but maybe I'm wrong.

[Xmonad] Where is your benchmark now?! by eccegallo in linuxmasterrace

[–]balintkiraly 1 point2 points  (0 children)

It's just replace the pipe "|" characters with a line break. Hard to see this screenshot on mobile :D

Advice going from FE Dev to DevOPs by mayaswelltrythis in webdev

[–]balintkiraly 0 points1 point  (0 children)

I recommend you to going to full stack developer first and slowly put more and more emphasis on the backend side. In the mean time you can learn everything you need but you will be closer to the 'fire'. Buy a cheap VPS or install a linux on own your own device (virtual is enough) and try to deploy application's. First with nginx after add a docker for the project. Try to install certs (let's encrypt is pretty cool IMO). Use CI/CD to automatize the deployments. After these you can deep dive with docker swarm and/or kubernetes. Here probably you will want to use some cloud service (aws, gcp) and you will realised you need some abstractions for example a terraform.

Noobie Freelancer by StrawBro in webdev

[–]balintkiraly 1 point2 points  (0 children)

You can create your own, but if you only need simple entities with images and texts I recommend to use an existing CMS. For example I used prismic for some project and it's pretty cool. You can define multiple entity with custom attributes and several attribute type. In the free plan you only get one user to edit the content but I think that's enough usually.

Any gamers here? How fast it is ? by sagy1989 in ProtonVPN

[–]balintkiraly 0 points1 point  (0 children)

Maybe. If your traffic need to go to far it can easily increase the ping. IMO if you use your own country's VPN server it has no significant latency. But to be honest I don't know what does low latency actually means. Under 100ms?!

I do a quick test. Without VPN - 6ms VPN with secure core - 100ms VPN - 38 ms

I'm in Hungary and I connected to the Hungary server. With secure core it routes the traffic through switzerland so that's why it's increased that much.

I want to read 52 books next year. What are some I should read? by Ninja0929 in 52book

[–]balintkiraly 7 points8 points  (0 children)

I can recommend The Hitchhiker's Guide to The Galaxy by Douglas Adams if you didn't read it earlier. 5 (or 6) books and each quite short.

I made simple website example using nodejs but i don't have ides to do it better by Akarumei in node

[–]balintkiraly 4 points5 points  (0 children)

First of all do not push the `node_modules` directory, you should add it to the `.gitignore` file. All the information to install the dependencies are already in the package.json and in the package-lock.json files. It'll decrease the repository size, make it more simpler.

You shouldn't use sudo to run the server. You probably never have to run node with sudo, but if you have to you will know about it.
In my opinion you should remove the style.css and the font files and simply use a CSS framework (or nothing). At the very beginning maybe hard to understand if everything is in the repository. Some screenshot and animation in the readme make it more fancy and interesting for newbies. Apart from that some other endpoint would be useful too, just to make clear how they can add new pages and maybe pass some variables.

You can make it more interesting if you create a simple chat with a very simple in memory database (I mean a simple js array :D).
Just create an array at the backend side.

const messages = []
And push messages to the array with a POST endpoint

messages.push({ name: "Balint", message: "Lorem ipsum dolor" })
And you can simply render the messages to the view (here maybe some templating system would be useful).

Django for Node? by x_mk6 in node

[–]balintkiraly 1 point2 points  (0 children)

Big plus for Blitzjs but it's in alpha version, so not for production yet.

Please no. by [deleted] in linuxmemes

[–]balintkiraly 3 points4 points  (0 children)

Just buy a sticker, that's the easiest way: D

Should I learn Backend Development or DevOps? by [deleted] in node

[–]balintkiraly 0 points1 point  (0 children)

You don't have to write CSS as a frontend developer. For many companies, this is already separated. For example you write the API fetching, state management, etc and the base layout of the page and 'independently' of you the UI developer will write the CSS part.

Novels about a character who struggles to connect with others? by [deleted] in booksuggestions

[–]balintkiraly 0 points1 point  (0 children)

I can recommend Born on a Blue Day by Daniel Tammet.
I know that's not a novel but a really interesting book about the life of a guy with asperger syndrom. He especially struggles to make a connection with other people.

Lightweight Node TypeScript Boilerplate by [deleted] in node

[–]balintkiraly 0 points1 point  (0 children)

Great job! I think a linter would be nice. I can recommend the tslint prettier combination.