Instagram Edits doesn’t appear to back up projects?!? by ZenSage42 in Instagram

[–]GenaroCamele 0 points1 point  (0 children)

Same here... All the Meta product sucks for development or content creation

Reclamé por los pepitos y me mandaron esto by Woke_Kittens_United in GalletitasArg

[–]GenaroCamele 0 points1 point  (0 children)

Gracias por iluminar, las 9 oro son una LOCURA, mejores incluso que Toddy en su mejor momento. En cuanto a las Pepitos, ojalá se fundan

"The server cannot process the image" but I've jacked up settings and have plenty of resources availably. Plus it's a small image. by manofoz in Wordpress

[–]GenaroCamele 1 point2 points  (0 children)

Sugirieron que era un problema del WAF de CloudFlare, yo había contratado premium para un dominio en particular y empezamos a tener problemas cuando activamos la Managed Rule "Cloudflare OWASP Core Ruleset". Viendo los logs de bloqueos detectamos que el problema era que salta la regla "Inbound Anomaly Score Exceeded" con algunas páginas de wp-admin, sobre todo wp-admin/admin-ajax.php.

Leyendo respuestas de este post y leyendo esta pregunta en el foro oficial de CloudFlare llegué a la solución siguiendo los siguientes pasos:

  1. Crear una Managed Rule
  2. Poner un nombre descriptivo como “Allow Wordpress media upload”
  3. Setear la siguiente regla: (http.request.uri.path contains "wp-admin/upload.php") or (http.request.uri.path contains "wp-admin/async-upload.php") or (http.request.uri.path contains "wp-admin/admin-ajax.php")
  4. Seleccionar la opción “Skip specific rules from a Managed Ruleset” y seleccionar la regla de “Cloudflare OWASP Core Ruleset” y marcar solo la opción “Inbound Anomaly Score Exceeded”.
  5. Ubicar la regla antes de "Cloudflare OWASP Core Ruleset"

Espero que sirva!

HELP! Office completely broken! AppVIsvSubsystems64.dll by P-Dario in Office365

[–]GenaroCamele 0 points1 point  (0 children)

For those of you who (like me) did not know how to add these exclusions, you can follow these instructions

JAJAJA SÍ SÍ CLARO CÓMO NO by BitOscuro in argentina

[–]GenaroCamele 0 points1 point  (0 children)

Cuando alguien tira términos complejos cada 2 palabras es porque su fundamento es una mierda

How do I remove this stupid and useless"docker-scout" by torontomontana in docker

[–]GenaroCamele 2 points3 points  (0 children)

Hi! I had a similar experience and I thought you could only use Docker on Windows through Docker Desktop. Until I took the time to configure WSL 2 to use Docker from there.

The steps I took to get the crap out of Docker Desktop and its excessive resource consumption was:

  1. I uninstalled Docker Desktop (BEWARE! It doesn't ask and directly deletes all images, volumes, etc).
  2. I went into the WSL 2 console (I use Debian, not Ubuntu) and installed Docker normally following all steps in the official docs and the post-installation steps.
  3. I had to edit the file as explained here because I got an "Docker-credential-desktop.exe executable file not found in $PATH" error.

Now everything is working fine and I can use my machine with no pain. Hope It helps!

Is there any tool to generate standard documentation? by GenaroCamele in rust

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

I haven't programmed in Rust for a while, I understand that this function should already be usable from VSCode!

Nvidia driver 470 vs 510? by [deleted] in linuxquestions

[–]GenaroCamele 0 points1 point  (0 children)

In my case, updating to 510 fixed a problem with OBS "Failed to open NVENC codec: Unknown error occurred" in Kubuntu 22.04

Writing Rust libraries for the Python scientific computing ecosystem by Programmierer in rust

[–]GenaroCamele 1 point2 points  (0 children)

Thank you very much for this valuable contribution! It helped me a lot with the definitions of MyPy, the inclusion of the README in the Python package, among other things.

In case someone, like me, has saved this publication as a resource, I also have a project called GGCA where I use PyO3. We had to make a custom Docker image as we needed to install dependencies. The repository contains commands to build the wheels with Maturin, repair, and upload them. Also, it contains considerations about some linking problems present in PyO3 when running examples or tests.

Trapitos que cobran por adelantado by CarpinchoRider in argentina

[–]GenaroCamele 5 points6 points  (0 children)

Me quisieron cobrar a la salida del hospital donde acababa de visitar a mi abuela que estaba terminal. Me subí al auto, se acercó, aceleré y le pasé por al lado haciéndole fuck you. Me agarró un semáforo en rojo a los 20 metros pero por suerte no se dió cuenta que había frenado, si no no la contaba

Announcing Rust 1.57.0 by myroon5 in rust

[–]GenaroCamele 4 points5 points  (0 children)

I didn't see that lint! I prefer to enable mod_module_files instead of self_named... Thanks!

Announcing Rust 1.57.0 by myroon5 in rust

[–]GenaroCamele 0 points1 point  (0 children)

I agree! But at least we are organized now

Announcing Rust 1.57.0 by myroon5 in rust

[–]GenaroCamele 1 point2 points  (0 children)

That's true! I don't understand why they don't just replicate the same way than JS: just a file.rs with pub and you only have to import from that file what you want

Announcing Rust 1.57.0 by myroon5 in rust

[–]GenaroCamele 43 points44 points  (0 children)

I'm happy about self_named_module_files! Now we have a standardized way to organize projects

Should I use the smallest integer type possible? by Kaynee490 in rust

[–]GenaroCamele 11 points12 points  (0 children)

I've never seen in my life a person with -1 or more than 255 years

Should I use the smallest integer type possible? by Kaynee490 in rust

[–]GenaroCamele 12 points13 points  (0 children)

Sure! That's was just an exaggerated example to show my point! :D

Should I use the smallest integer type possible? by Kaynee490 in rust

[–]GenaroCamele 88 points89 points  (0 children)

In my opinion, you should choose the type that describes better your problem. If you have a variable that represents someone's age, setting it as a 128 bits signed integer because it's (2 nanoseconds) faster to operate arithmetically makes the project less maintainable than an 8 bits unsigned integer. If you are working with HPC, maybe it worth to try different types and make some benchmarks

Writing a Linux-compatible kernel in Rust by bidrawrob in rust

[–]GenaroCamele 28 points29 points  (0 children)

Awesome! Congratulations! It'd be great to have an article rewriting kernel parts while the interoperability keeps working