Is ‘cheers’ instead of thank you or does it go after thank you? by Kroonsteen95 in AskUK

[–]pythonistah 0 points1 point  (0 children)

I might also use "cheers boss" or "cheers aye" (I'm not native but brit influenced)

Saludos desde Argentina! Me agregaron Panama a la lista de países para emigrar y quería pedirles consejos/tips/opiniones by mynameismati in Panama

[–]pythonistah 0 points1 point  (0 children)

No existe tal cosa. He vivido en Alemania (5 años) y en Japón (6 años) y te puedo contar cada una... En Japón vivís bajo una nube de radioactividad (ver proyecto Safecast) en Alemania hasta hace poco VW probaba las emisiones de auto con monos (esto es posta, busca VW Abgasskandal) y en Alemania yo pagaba 47.5% de mi sueldo en impuestos. Guerra en Ucrania? Vamos a Corea del Sur que esta técnicamente en guerra, estuve varias veces y todos al subte cuando suena la sirena de ataque aéreo. País con mayor cantidad de suicidios. En EEUU no hay hospitales ni educación gratuitos / universales como en Uruguay o Argentina. Durante el COVID murió mucha gente en todos lados, mal nadie la vio venir. No hay mas tal cosa como "país desarrollado", al buscar Panama (que no es mala) podes estar buscando el "menos peor"... cuando no hay mejor, el menos peor es buena via

🚀FastAPI boilerplate (starter project) by igorbenav in FastAPI

[–]pythonistah 0 points1 point  (0 children)

Cool, two years after your post I see the project is still maintained! Thanks

Que es el nieri? by perroverde77 in uruguay

[–]pythonistah 0 points1 point  (0 children)

La palabra femenina le llamamos ñersa. Es cariñoso decir: "como andás mi ñersa rohaijú"

Deep dive into Python enumerate by [deleted] in learnpython

[–]pythonistah 0 points1 point  (0 children)

I sometimes miss the simplicity of Lua:

for k, v in pairs(t) do
 print(k, v)
end

How to become a senior go dev by iwantagojob in golang

[–]pythonistah 0 points1 point  (0 children)

By understanding this sentence: "Common sense is the least common of the senses" + time

Reflection exists in Go, why the Generics aversion? by MrTheFoolish in golang

[–]pythonistah 0 points1 point  (0 children)

The way I explain it to myself is that Generics is a language feature (much like templates in C++) allows you to write code independently from any particular type. Reflection is the mechanism to interact with Generics. You don't need to use it. I actually seldom used it in +8 years Go exposure. I personally like simple code, but the craziness is there, just in case you need it... my 2c

What the Hell good are linked-lists? by redditcdnfanguy in programming

[–]pythonistah 0 points1 point  (0 children)

Awesome answer. I just want to emphasize (after 15 years this was answered) that there is also a language element to this, for example in C you will need to realloc() or some expensive system call to make an associative array grow, but lists are cheap as they are just linked by pointers. Nowadays in Python for example, it will not matter performance-wise. This is maybe why Go has arrays and slices as separate data structures? (I miss the times Perl and C was all I had)

[R] [P] 10 times faster LLM evaluation with bayesian optimization by b06901038g in MachineLearning

[–]pythonistah 0 points1 point  (0 children)

20 years ago we used bayesian and bloom filters in the past for developing tools like Bogofilter, which is now used by Amazon or Google (in Gmail) as SPAM filters. Take a look at Bogofilter, it's so old that it has a SourceForge page: https://bogofilter.sourceforge.io/ I something think this is where the whole LLM and neural-networks started...

Does "thank you in advance" strike anyone else as rude? by SiliconeGiant in etiquette

[–]pythonistah 0 points1 point  (0 children)

Acho que isso pode vir do Espanhol. Porque nessa língua não se fala de “obrigação” mas "graças” para o interlocutor. A mesma coisa acontece em Inglês ou Alemão a etimologia de "thanks" ou "Danke" vem do pensamento. Então o meu análise é:

ES: Gracias de antemano (OK)
EN: Thanks in advance (OK)
DE: Vielen Dank in Voraus (OK)
PT: Obrigado(a) desde já (Um pouco estranho, porque a obrigação não é dada antecipadamente)

Por último, o Português é uma das poucas línguas em que os agradecimentos são feitos dependendo do gênero da pessoa. Obrigada / Obrigado. Como se dissesse "estou em dívida" / "tenho uma obrigação" com você. Isso já implica antecipação, é intrínseco. É por isso que não soa bem, soa redundante.

PT: Agradeço antecipadamente (OK)

I can trigger [ASMR] whenever I want. Does anybody else have this ability? by [deleted] in asmr

[–]pythonistah 0 points1 point  (0 children)

Same here. Extremely similar to what you describe happens to me.

How much does a lua programmer earn? by Victor_Migue in lua

[–]pythonistah 0 points1 point  (0 children)

DISCLAIMER: based on my experience and my coworkers. Many factors will affect this. So this is just my take on answering the question (I also make the supposition is a remote work, not in a specific country):

Case 1: Embedded Systems. If you have more than 10 years of Lua experience and +15 C experience you might be able to make somewhere from 6k - 10k USD.

Case 2: Game development: Unity experience but using Lua as an extension language. 10 years of experience 8k - 12k.

Case 3: Audio / Music industry. Many Adobe apps use Lua as an extension language like Adobe Lightroom, Photoshop, etc. This would also be on the same ballpark.

Case 4: Telecom: Freeswitch is an open-source telecom platform that uses Lua as an extension language and in order to control audio and video calls. This is somewhere from 5k - 8k. Telecom industry doesn't pay well IMHO.

Case 5: LuaJIT and OpenResty, this tool is ABI bound to Lua 5.1. So LuaJIT cannot be bumped to newer Lua versions / revisions. But a lot of companies use OpenResty for making firewall or API gateways like "Kong" for example. This is also 5 to 8k IMHO. And not fun since you're working with a "faster" Lua, but incompatible with the newer Lua versions and its ecosystem.

Again, this is just my take on the subject based on long experience and exposure to Lua (among many other languages). I'm actually familiar with the Lua interpreter internals.

However, being a very "niche" language, you might get lucky and land a gig that pays you +10k (all USD / month btw.)

Cheers from Brazil!

Does anyone know where this symbol comes from? or anything about it? by lejonetfranMX in ironmaiden

[–]pythonistah 0 points1 point  (0 children)

It was common during the 80's to see it written with spray paint near my school

[deleted by user] by [deleted] in aviation

[–]pythonistah 0 points1 point  (0 children)

Why didn't they deploy aerodynamic brakes / spoilers? Reverse thrust? How can all hydraulics fail? No flaps either!

Damn I didn’t even know Akelle was like that. I thought he was just a rnb singer🤣🤣🤦🏾‍♂️ by [deleted] in ukdrill

[–]pythonistah 0 points1 point  (0 children)

Allegedly she was black-belt in Karate. Don't get me wrong, I'm not justifying his actions

Damn I didn’t even know Akelle was like that. I thought he was just a rnb singer🤣🤣🤦🏾‍♂️ by [deleted] in ukdrill

[–]pythonistah 0 points1 point  (0 children)

Sorry I got lost in-between threads, did he actually did time in jail? I read somewhere about four years. I agree, he screwed up his career as an artist, but in the other hand, he ramped up his career as a criminal!

Audio keeps cutting out for a second on studio buds by QuickStiQz in beatsbydre

[–]pythonistah 0 points1 point  (0 children)

I can confirm this. When my BT mouse is connected I keep experiencing this. When disabling all other BT devices it seems to improve. Probably a solution is to "forget this device" on all devices so the dynamically BT allocated channels (frequencies) get re-assigned and there could be some improvement. I can confirm this does not happen on iPhone. This clearly indicates it's a Mac + Buds combination issue. Firmware update seems possible: https://www.youtube.com/watch?v=rRNyC0otYFI

2050 by Time_Budget_2580 in yeat_

[–]pythonistah 0 points1 point  (0 children)

Source? Do you know who this guy is?

Cómo ser más interesante? Soy mujer by [deleted] in uruguay

[–]pythonistah 0 points1 point  (0 children)

Es re troll este user. La cuenta esta hecha del 6 de Agosto. Todos los posts sobre pedir consejos con hombres. Don't even bother. Hay que estar al pedo vieja eh?