warryoz
315 posts


@malkikawa The White House card sucks, not the Topuria vs. Gaethje fight
English

@javarevisited Both are good, but I prefer Gradle because of its syntax
English

@javarevisited I’ll check the component metrics, probably something with the database connection pool size
English

hey @grok could you create me a picture of Satya, CEO of microsoft, smilingly creepily like William Dafoe?
English

@SumitM_X The data must only be created and changed by one microservice. Otherwise the microservices are not correctly defined
English

@antoniosarosi @queensgambit001 @playerTwoQ Tiene sentido. El equipo de Java recomienda ArrayDeque como reemplazo de LinkedList por el cache locality Seguro hay formas de amortizar el shifting Equipo Java y creador de C++ de acuerdo. Si eso no dice algo, no sé qué lo hará Grande Sarosi. No es rage bait, son fundamentals
Español

@queensgambit001 @playerTwoQ There is shifting going on but to delete by index in linked lists you first have to traverse node by node, then delete. So, O(n) with lots of cache misses because every node is individually allocated.
Deleting in arrays requires shifting, O(n) with excelent cache locality.
English

Linked lists where invented by CS professors to teach data structures with a simple example. They're useless in real programming.
Saquib Aftab@iamsaquibdev
Which List implementation is faster for 100,000 operations in Java? Benchmarks: 1. ArrayList get(index): 0.001 ms 2. LinkedList get(index): 85 ms 3. ArrayList add(end): 0.5 ms 4. LinkedList add(end): 0.6 ms 5. ArrayList add(middle): 45 ms 6. LinkedList add(middle): 42 ms ArrayList dominates for random access. LinkedList barely wins for middle insertions. ArrayList uses contiguous memory with O(1) indexed access. LinkedList requires traversing nodes for O(n) access. Default to ArrayList unless you're doing frequent insertions at specific positions.
English

A ver, periodistas y políticos colombianos: matar gente en un procedimiento irregular es una ejecución extrajudicial. Eso es como que un policía por ahí asuma que ustedes llevan "harina blanca" en un bolsillo y les mete un balazo porque cree que así se lucha contra el narco.
¿Ven lo terrible de lo que está haciendo Trump?
Español












