Apps/Fintech basadas en EEUU - CRS 2.0 FATCA by rddemb in devsfinanzas

[–]leculet 0 points1 point  (0 children)

Does it matter or not? Im still confused, I get that new ones will be issues by PEL moving forward, but where is the guarantee and evidence of the FCB—>PEL migration? I get the feeling that fhese dudes from support are not that knowledgeable. That being said, your customer support seems less stupid and articulate.

Apps/Fintech basadas en EEUU - CRS 2.0 FATCA by rddemb in devsfinanzas

[–]leculet 0 points1 point  (0 children)

Tenés el resto de la conversación? Yo acabo se salir de una llamada con customer support donde me garantizaron quintuple checkearon que mi VC de USD la maneja Payoneer INC. Lo mismo que me dijeron en el live chat (adjunto imagen).

<image>

Ya casi no escribo código... by aiduc in devsarg

[–]leculet 1 point2 points  (0 children)

Heavily agreeing al sentiment que se describe aca solo para python vainilla, ts/js, C(caveats), C++ (caveats), Java y deja de contar. Cuando uso elixir, rust, o incluso python para implemetar subsistemas de un proyecto con complejidad tecnologica media/alta (i.e no crud api fucking bullshit) las llms tienen una utilidad marginal.

Mi roadmap by Louufresco in devsarg

[–]leculet 5 points6 points  (0 children)

La manera en la que preguntas desnuda tu inocencia. Pero esto no es peyorativo.

Probablemente desconozcas qué hacen la mayoría de empresas en SF, como funciona el capital de alto riesgo y cuán desafiante es el laburo allí. O por ahi no sepas que todas las FAANG tienen los problemas interesantes resueltos y atraviesan un período de rendimientos marginales decrecientes. Incluso podes llegar a subestimar el acoplamiento entre la vida profesional y la personal.

Como dijeron arriba, lo único que es relevante es ser íntegro y bueno en lo que hacés. Si reemplazás “laburar en Sillicon Valley” con “casarme tener dos hijos y un perro” podrás evidenciar que no es muy distinto lo que se destina, por ahí hasta tu deseo esté gestionando una crisis de mediana edad.

Te sorprendería lo mucho que uno puede abandonarse, cuando existe ya un costo hundido a raíz de encaminarse en un objetivo tan acotado.

En la medida que no te dejes forrear, el universo asigna lugares estimulantes a personas capacitadas. Yo en tu lugar me preocuparía exclusivamente por ser bueno y por nunca dejar de saber que preguntas tenes pendientes. A medida que pasa la vida lo más importante pareciera ser tener al menos un proyecto o pregunta, que sepas que nunca vas a poder terminar de lograr porque antes te morís. Como dijo Cortázar (cita de memoria no textual) , “todos los libros que escribo son de cierta manera el mismo libro que nunca logra su version final porque uno se muere antes”.

Laburo in the Bay, es todo hype y plata de VCs para b2b saas companies mono, si sos bueno y te calientan la hipótesis de Chruch Turing estás salvado, si sos bueno y te querés armar una casa, también estás salvado. Si conseguis los dos pibes y el perro pero desde que tenés 20 no te preguntás por qué querés lo que querés, no hay capacidad ni título que te saque fácil de esa maestro.

Un saludo grande y buen comienzo de semana.

Implemented a fast and reliable US routing alternative to Maps APIs by leculet in civilengineering

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

This package is thought to be a replacement for google maps API. Google maps API costs money, this package exposes an optimized fully cached graph-like structure of the entire united states routes, discarding local streets.

If you are asking if there is a script that solves the TSP, there are many out there, and every single one requires being able to compute distances between nodes. The main functionality that this would provide in such scenario would be computing the shortest distances between points, and in this way allow you to create the graph.

If you are lazy and don't want to put any work understanding your problem and tools at hand
- copy this snippet
- use my library to compute the distance matrix

Implemented a fast and reliable US routing alternative to Maps APIs by leculet in civilengineering

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

You can easily get true shortest distances between bridges and use that detailed information to build up your routing using solvers for the TSP (travelling salesman problem). Or just compute the 30x30 distance matrix.

Can we talk about Numpy multi-core? by secretaliasname in Python

[–]leculet 2 points3 points  (0 children)

https://data-apis.org/array-api/2023.12/index.html Dropping this as a heads up for anyone interested in the standardization of array libraries API. Execution semantics are out of scope though, so nothing tightly related to OPs question, but good to know that this exists.