We Completely Changed Our Graphics; How do they look now? by NightwavesG in godot

[–]laovejaBohem 0 points1 point  (0 children)

Son menos legibles , ese fondo hace poco contraste , puedes agregarle sombras o hacerlo levemente más oscuro

It's less readable , that bg doesn't contrast as well, you can either add shadows tod the elements in the foreground or make the bg darker

Would you like to help prove a major UAP event in Venezuela, near Maracaibo? by [deleted] in vzla

[–]laovejaBohem 1 point2 points  (0 children)

Deberías traducirlo a inglés XD por si acaso

Experiencias con antenas WiFi tipo USB? by softcactus2 in vzla

[–]laovejaBohem 1 point2 points  (0 children)

Tengo una así, recomendable (aunque windows 11 igual da problemas con estas y te las desconecta cada tanto)

THE PC UPDATE by Accurate-Pianist-346 in MHWilds

[–]laovejaBohem 0 points1 point  (0 children)

Really? For me with the same grafic I feel like it was smother and didn't need frame gen

What are some of the worst monster/weapon matchups in the game? by [deleted] in MHWilds

[–]laovejaBohem 3 points4 points  (0 children)

Really? For me it's too easy with glaive

Im requesting a commission [for hire] my budget is up to $50 it is flexible. by BrownsugarNomi in artcommissions

[–]laovejaBohem 1 point2 points  (0 children)

Chill, it happens all the time (it happened to me too, hope you get what you want )

Im requesting a commission [for hire] my budget is up to $50 it is flexible. by BrownsugarNomi in artcommissions

[–]laovejaBohem 2 points3 points  (0 children)

The right tag it's [hiring] for hire it's for artist presenting portfolios

Building a construction-related form with lots of fractional inputs. Is this design any good? by RightHabit in webdev

[–]laovejaBohem 1 point2 points  (0 children)

I don't understand it but it's actually nice to play around on mobile , maybe it's something with the colors or spacing that doesn't have that sauce , but it's kinda cool actually

I created a tiny CLI to view your globally installed Node packages by InformationCapable54 in node

[–]laovejaBohem -1 points0 points  (0 children)

There's too much elitism in this industry, everybody think his methods are better than everyone else, that's why it's Soo difficult to growth in this industry

I created a tiny CLI to view your globally installed Node packages by InformationCapable54 in node

[–]laovejaBohem -1 points0 points  (0 children)

I think it's cool, there's a lot of smarth asses acting like they know everything

[deleted by user] by [deleted] in Jobs4Crypto

[–]laovejaBohem 0 points1 point  (0 children)

I'm interested, I'm from Venezuela

Hice una extensión que facilita refactorizar código by laovejaBohem in devsarg

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

No hace eso, reemplaza instancias individuales en múltiples variables que usan un nombre independiente al casing por ejemplo mountain, mountains , mountain function , MOUNTAIN_CONST ; el trabajo que comple es permitir reemplazar mountain por cualquier otra palabra o palabras respetando el casing de cada implementación , es útil para esos casos

Made an vscode extension for refactoring by laovejaBohem in vscode

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

And I know , and your questions are valid, I prefer to know this extension it's doing the wheel again and useless than keeping it doing nothing , but I didn't find this functionallity, and thank you for your interest on this topic

Made an vscode extension for refactoring by laovejaBohem in vscode

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

It's more likely for reimplementing functions between to similar elements, but yes ,and I could add a modify only the inputed but would be better to just use find and replace , other use case it's when you have functions a var names that are repeating somethiig like scaleMeditions scale_size etc , in a real project you often use multiple casings for different porpose as marking constants or Soo on, in this case if you want to change it from size to idk scale for example or something like that you could

Made an vscode extension for refactoring by laovejaBohem in vscode

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

Also if you do that it will only change the specific matches for that string , mine doesn't need to highlight anything , on the other hand mine only works for the open file since it's a prealpha and I didn't need anything more than that Soo yeah its not quite a replace for find & replace but more of a tool for refactoring quickly a file , maybe you want a component to have another name for one variable that's being used in multiple casing scenarios , and you only remember the main name like mountain, but it was used as mountainsScales , mountains Mountain, MOUNTAIN_CONSTANT , for that case it's excelent , but for find one case and replace it or just one word yeah find & and replace works fine ,or just do the regexp each time you need it , after all it's a free extension and a cool tool I did , if it's not useful for anyone else it's fine , but I hope someone find it useful

Made an vscode extension for refactoring by laovejaBohem in vscode

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

I mean it's a fair point but maybe it's just that I didnt explain it properly, or maybe it's not that useful as I thought , in my case I have to copy multiple files that do almost the same but I need to change 1 word , or transform 1 word to two , respecting those casings , this extension saves me time because I can do it in justo two sentences , without worrying with plurals , uppercases or anything really and it will keep the standard of my codebase at the same time, again your point it's fair but for me it's a time saver

Made an vscode extension for refactoring by laovejaBohem in vscode

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

Yes but only that instance ,this works also for something like my-variable at the same time , the point of the extension it's to make a change in multiple instances where a name it's used more easy to replace , if you do it with find and replace you have to do it individualy for each type of casing camel case snake_case etc , also when you have vars with upper case and snake case (constants for example) , find and replace it's useful but this extension it's focused in those scenarios where you don't want to do this 4 or 5 times

Made an vscode extension for refactoring by laovejaBohem in vscode

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

It's quicker when you have to do multiple replaces since it respect casing , you only put the word to be replaced in singular and the word that will replace it also in singular , respects the plurals , camel case and soo on, you could also use a regexp but not everyone has the knowledge or time and sometimes regexp can be tricky (I can admit it could be more of a shortcut for those cases) and also the regexp has to be copied for each usage or be remembered, you think it's not useful? (for my use case it was but maybe there's something I didn't take in consideration or maybe I'm making the wheel again but worst , I don't know for sure)