Currently working on a CLI tool that performs property-based testing from Arazzo documents: https://github.com/IgnacioGoldchluk/cuerdo
I agree, but one thing is to demand all your users to be on the latest Chrome, and another one is to support browsers that are no longer maintained and contain security issues (IE). If we discourage people from driving…
For public services you can tell people to use another device, or provide a way to schedule an appointment in-person that is accessible using old browsers.
Maths IS pattern recognition
I had a contract once to save a government website that had serious performance issues, it was so unusable that people preferred to go in-person and wait 4h in a queue rather than try to fill the forms online. The…
One important thing that is often not mentioned is the lack of operator overloading. In Elixir if you have "a + b" it means "a" and "b" must be numbers for the code to succeed, which narrows down the possibilities…
Then people from a sanctioned countries are blocked from open source, or worse, you have to explain to the bank and/or the government why you sent 20USD to someone in Venezuela.
It is a negative feedback loop, so yes, it makes systems stable.
Dependency hell. Usually how it goes is you have to develop a new feature, you find a library or a newer version of the framework that solves the problem but it depends on a version of another library that is…
Server Side Public License? Since it demands any company offering the project as a paid product/service to also open source the related infrastructure, the bigger companies end up creating a maintained fork with a more…
Going from Django to Phoenix I prefer manual migrations. Despite being a bit tedious and repetitive, by doing a "double pass" on the schema I often catch bugs, typos, missing indexes, etc. that I would have missed with…
Hey, first I want to say that Oban has been a lifesaver for me and it is the tool I miss the most from the Elixir ecosystem when doing work in Python. Thanks so much and congrats on the release. I have one question: are…
As another 3rd world citizen living in Northern Europe, I usually describe it as "processes and rules over common sense". They understand your situation, they agree with you, they can solve your problem, but they will…
Keep in mind in Argentina public domain works are not free (free as beer) of use, you have to pay a fee to the government, for example if you play Beethoven music in your short film or any work you created. This is…
Electronic Enginering is also not that old and it has been a proper engineering discipline for many years already
In an ideal world none of the past 70 years of conflicts that led to this unrecoverable resentfulness would have happened. Unfortunately the only peaceful solution I can imagine is for Israel to let Gazans move to other…
It would be useful to compare with other leagues where home field advantage is significant. I do not have any data but as a football fan I suspect the following variables are important: - England is an homogeneous…
Surprisingly, no. Milei's party does not have majority in the Congress, he does not have much power, and the best example is his omnibus bill [1]. Initially Milei's party attempted to pass a massive 300-page reform,…
That is not the definition of fungible. You can put a mark on a USD$100 bill and trace it, but it still has the same value as any other USD$100 bill, or 5 20$ bills, etc.
The map '%{username, age, first_name, last_name}' would be 1 character away from the tuple '{username, age, first_name, last_name}'. It is easy to miss the '%' character and you'll waste some time figuring out why your…
They are different. def square_vals(x : list): return (val * val for val in x) is a function that takes a list and returns a generator. While def square_vals(x : list): for val in x: yield val * val is a generator…
.rs (Serbia) for Rust projects.
In my experience, "little software shops" are about maintaining "living fossile" systems. They survive by signing contracts with non-tech companies (supermarkets, healthcare, etc.) to develop a system and offer support,…
It is always the same debate in any cryptocurrency thread. People from economically free countries cannot understand cryptocurrencies because they are not meant for them and label them as scam. They cannot understand…
On top of the 150% annual inflation and the government making it almost illegal to buy USD, the general population has basic knowledge of cryptocurrency and they are not afraid of sharing biometric data.…
Currently working on a CLI tool that performs property-based testing from Arazzo documents: https://github.com/IgnacioGoldchluk/cuerdo
I agree, but one thing is to demand all your users to be on the latest Chrome, and another one is to support browsers that are no longer maintained and contain security issues (IE). If we discourage people from driving…
For public services you can tell people to use another device, or provide a way to schedule an appointment in-person that is accessible using old browsers.
Maths IS pattern recognition
I had a contract once to save a government website that had serious performance issues, it was so unusable that people preferred to go in-person and wait 4h in a queue rather than try to fill the forms online. The…
One important thing that is often not mentioned is the lack of operator overloading. In Elixir if you have "a + b" it means "a" and "b" must be numbers for the code to succeed, which narrows down the possibilities…
Then people from a sanctioned countries are blocked from open source, or worse, you have to explain to the bank and/or the government why you sent 20USD to someone in Venezuela.
It is a negative feedback loop, so yes, it makes systems stable.
Dependency hell. Usually how it goes is you have to develop a new feature, you find a library or a newer version of the framework that solves the problem but it depends on a version of another library that is…
Server Side Public License? Since it demands any company offering the project as a paid product/service to also open source the related infrastructure, the bigger companies end up creating a maintained fork with a more…
Going from Django to Phoenix I prefer manual migrations. Despite being a bit tedious and repetitive, by doing a "double pass" on the schema I often catch bugs, typos, missing indexes, etc. that I would have missed with…
Hey, first I want to say that Oban has been a lifesaver for me and it is the tool I miss the most from the Elixir ecosystem when doing work in Python. Thanks so much and congrats on the release. I have one question: are…
As another 3rd world citizen living in Northern Europe, I usually describe it as "processes and rules over common sense". They understand your situation, they agree with you, they can solve your problem, but they will…
Keep in mind in Argentina public domain works are not free (free as beer) of use, you have to pay a fee to the government, for example if you play Beethoven music in your short film or any work you created. This is…
Electronic Enginering is also not that old and it has been a proper engineering discipline for many years already
In an ideal world none of the past 70 years of conflicts that led to this unrecoverable resentfulness would have happened. Unfortunately the only peaceful solution I can imagine is for Israel to let Gazans move to other…
It would be useful to compare with other leagues where home field advantage is significant. I do not have any data but as a football fan I suspect the following variables are important: - England is an homogeneous…
Surprisingly, no. Milei's party does not have majority in the Congress, he does not have much power, and the best example is his omnibus bill [1]. Initially Milei's party attempted to pass a massive 300-page reform,…
That is not the definition of fungible. You can put a mark on a USD$100 bill and trace it, but it still has the same value as any other USD$100 bill, or 5 20$ bills, etc.
The map '%{username, age, first_name, last_name}' would be 1 character away from the tuple '{username, age, first_name, last_name}'. It is easy to miss the '%' character and you'll waste some time figuring out why your…
They are different. def square_vals(x : list): return (val * val for val in x) is a function that takes a list and returns a generator. While def square_vals(x : list): for val in x: yield val * val is a generator…
.rs (Serbia) for Rust projects.
In my experience, "little software shops" are about maintaining "living fossile" systems. They survive by signing contracts with non-tech companies (supermarkets, healthcare, etc.) to develop a system and offer support,…
It is always the same debate in any cryptocurrency thread. People from economically free countries cannot understand cryptocurrencies because they are not meant for them and label them as scam. They cannot understand…
On top of the 150% annual inflation and the government making it almost illegal to buy USD, the general population has basic knowledge of cryptocurrency and they are not afraid of sharing biometric data.…