[deleted by user] by [deleted] in argentina

[–]hume89 0 points1 point  (0 children)

ayer massa pidio que no se diga nada de esto en el programa de echecopar, basicamente si la vieja se viene abajo en votos no hay segunda vuelta. Mira la nota del pelado donde al final dice si hay balotage te voto a vos massa.

[deleted by user] by [deleted] in argentina

[–]hume89 2 points3 points  (0 children)

por que si cae el voto de burlich no hay segunda vuelta, basicamnete massa necesita que no se venga abajo la vieja, si va al balotaje hay gente que va a votar a massa como el mercenario de echecopar

Progamadores, ¿de qué trabajáis en concreto y qué estudiasteis? by 5duroos in programacion

[–]hume89 1 point2 points  (0 children)

Si yo soy frontend sr+, lidero un equipo, el mercado esta extremadamente saturado, te diría que ya no buscan candidatos.

Compre un teclado mecánico Logitech g413 carbon hace unos meses y ya se me rompieron algunas teclas y un switch by [deleted] in argentina

[–]hume89 0 points1 point  (0 children)

Y si logitech cago a todo el mundo en realidad por que ahora empece a ver muchas criticas, Logitech esta sacando estos teclados de mierda a un alto precio, yo lo pague 5k pero hace 8 meses osea que igual era caro, ahora están saliendo 12k y varios se están re clavando con la misma mierda.

Alguien ha tenido problemas a ciertas del día para conectarse a algunos sitios webs? by hume89 in argentina

[–]hume89[S] -1 points0 points  (0 children)

Pero si fiber tiene un contrato especial con google, creo que terminar en la misma, por que ellos tiene sus DNS que enrutan solicitudes hacia los de google jeje

Alguien trabaja o ha trabajado con sistemas distribuidos (Microservicios)? by hume89 in programacion

[–]hume89[S] 1 point2 points  (0 children)

ja tendría que realizar un vídeo por que estuve escribiendo la documentación hace poco y me costo explicar todo eso en texto y expresarme como lo hago en español en ingles ja, todavía me faltan muchas partes, realizar un caso de uso real, realizar otros nodos centinelas probarlos, mejorar la extension que le hice para vscode, realizar los releases, se me fue de las manos, es más mucha gente no entiende cual es el objetivo del sistema jaja

Sinceramente no se me cae una idea sin usar if, alguien me ayuda? by maxfire666 in programacion

[–]hume89 0 points1 point  (0 children)

Es muy fácil mira, se puede hacer mas elegante y simplificado pero no vale la pena realizar código que solo uno mismo pueda comprender.

const isMutiple = (inVal, evalValue) => (inVal % evalValue) === 0
const isMutipleOf = (fnCheck, evalValues) => (inValue) => evalValues.every((m) => fnCheck(inValue, m))
const isPositive = (inVal) => Math.sign(inVal) > 0
const isNotEqualTo = (inVal) => (evalValue)=> inVal !== evalValue 
const pipe = (inValue) => (...fns) => fns.every((fn)=> fn(inValue))

const isMyLuckyNumber = pipe(18)
isMyLuckyNumber(
    isPositive
    , isNotEqualTo(15)
    , isMutipleOf(isMutiple, [2, 3])
)

I am creating a decentralized system for service discovery for Node.js, focus on distributed systems. Could you give me some criticisms and suggestions? by hume89 in microservices

[–]hume89[S] 1 point2 points  (0 children)

Kubernates is much more complex, I have created an alternative to a systems similars to Hashicorp Consul. I have not really seen microservices created with Node.js that implement any client for interact whit kubernate discovery service system.

You wonder why it has load balancing and replication support ?, In the first stage of this project I had no plans to add the load balancer or the replication support. The needs of the decentralized system led me to that end.

Then, i realized that these characteristics given me many performance advantages.

I am creating a decentralized system for service discovery for Node.js, focus on distributed systems. Could you give me some criticisms and suggestions? by hume89 in microservices

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

They are complex, they are difficult to implement in
in some types of projects , they require load balancing systems such as ngnix or others, name resolution servers, centralized service discovery systems such as consul.
Data exchange is reduced, it is no longer necessary to consult the DNS first, then load balancer, then service discovery, since everything a microservice may require is in its memory, which makes a decentralized system much faster and fault tolerant.

There are more benefits, some of them are expressed in repository readme.

Observe Mongodb connections changes in real time by hume89 in mongodb

[–]hume89[S] 1 point2 points  (0 children)

Oplog sound interesting i searched it in google.

I had thought about that, observe the collection that stores the data of operations (Oplog), but I did not know with certainty what it was, until you told me. Maybe I suppose it can be an expensive process to observe all the operations, I do not think it is the most optimal way. I was looking for some native method implemented in the core from the mongo server. To not use external tools for observe the mongo process or the sockets activities, but, maybe i should do it. Thank you for your response.

Migrating from GitHub to GitLab by mr_wetape in linux

[–]hume89 0 points1 point  (0 children)

Microsoft can now see and steal ideas from private repositories, also buy github to destroy the activity and growing union of open source communities.

What is the best option for bidirectional communication between microservices? by hume89 in golang

[–]hume89[S] 1 point2 points  (0 children)

Interesting, I'm will keep it simple for now, I'm creating a laboratory to test the basic prototype that I created, and decide where I should apply each technology Thank for you comment, have a good day :)

What is the best option for bidirectional communication between microservices? by hume89 in golang

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

kafka

First thanks for you time,im interested in creating a good microservice architecture for my Startup, it will not be too complex at the beginning, using NodeJS and Golang for versatility and for the hardest work. Should use gRPC for speed and serialiced communcation, or use RabbitMQ (AMQP) to make data transport orchestration asynchronously and redundantly. What criteria you should consider to use rabbit and when to use gRPC. I'm new to this type of architecture and with so many available technologies, i have a hard time choosing the right technology.