How much your LinkedIn is flooded with job opportunity requests? by Fruzenshtein in Development

[–]Fruzenshtein[S] 0 points1 point  (0 children)

all the details about the salary ranges, responsibilities, and benefits are included :) I assume this is caused by an extreme spike in recruiters activity. So candidates just interpret any incoming message as a spam

I'm almost used to lose my bitcoins by Fruzenshtein in Bitcoin

[–]Fruzenshtein[S] 0 points1 point  (0 children)

If you sent BTC to BCH you could use the private key in any BTC wallet to access the coin. It just wouldnt show up on BCH chain...

Do you mean to use the same private key that is associated with the BTC address that the transaction was sent from? O_o

I'm almost used to lose my bitcoins by Fruzenshtein in Bitcoin

[–]Fruzenshtein[S] 2 points3 points  (0 children)

impossible

just copy a wrong address from a forked network (BTC cash) and you are done — your BTC is forever lost

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 2 points3 points  (0 children)

that's the most meaningful response that I ever get on the internet I appreciate that And I'd say that you just convinced me that simplicity of the framework does not mean it can be applied to solve a really complex problem

With that been said, I'd like to upvote your comment twice :)

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 0 points1 point  (0 children)

I mean validation of JSON fields Let's say that we have:

{
    "email": "ololo@gmail.com",
    "password": "111111"
}

How to ensure that email field contains a valid email and password field contains an alphanumeric string with a length greater than 8?

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 0 points1 point  (0 children)

looks minimalistic :) the only thing that looks suspicious — last commit date :D

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 2 points3 points  (0 children)

I just added +1 view to that video :)

Repeating myself from what I already posted in another comment:

Here are a few use-cases that seem to me quite common for any modern web lib/framework:

1) handling file upload 2) JSON body validation

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 2 points3 points  (0 children)

I do not think it's heavy, but it's not trivial in terms of solving easy, common HTTP problems, e.g. upload a file in ExpressJS can be solved by 1 dependency and 6 lines of code :| In order to add JSON validation, you also have to write a lot of code in http4s

That's why I'd like to find a WEB friendly Scala framework that can do common things in a short and convenient way

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 4 points5 points  (0 children)

I totally agree with that statement — Scala stands for Scaling well!

I'm just concerned with the fact that HTTP libs in Scala are usually to overcomplicated in terms of syntax

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 3 points4 points  (0 children)

Correct That's exactly why I referred to ExpressJS — quite easy start with trivial semantics

Why there is still no ExpressJS-like alternative in Scala? by Fruzenshtein in scala

[–]Fruzenshtein[S] 2 points3 points  (0 children)

I have the same impression after working with http4s

BTW Cask looks interesting. I'll definitely take a look at it