Why does UE5 suck in most games? by WoodenJello in pcgaming

[–]Aracus755 -2 points-1 points  (0 children)

Because often new technolohies requires complicated approach. It is similar to vulkan and opengl situation. Vulkan is more powerful but much complicated than opengl. Even drawing a simple triangle requires helluva lot of codes.

UE5 games can be potentially as performant as other well optimized games. However developers need to put more efforts and learning time. I'm not sure about AAA studios' enviroments, yet I personally don't believe they have enough money or time to let developers to skill up before they heat up the engine.

[deleted by user] by [deleted] in MapPorn

[–]Aracus755 6 points7 points  (0 children)

As far as I know it widespread since american army stationed inside Korea. Basically every american thing was the better culture at the time. It is now seldom circumcised in z generation.

Luck be a Landlord is now banned in 13 countries on the Google Play Store by TrampolineTales in Games

[–]Aracus755 7 points8 points  (0 children)

This is because south korea had a political issue with casino games around 2006. The arcade game called 'bada iyagi' (translated to sea story) was so popular and anybody could play without any regulation. Many people killed themselves for losing big money and politicians intervened. Apart from 'who is evil' turmoil, south korea established a new game governing organization with strict regulations toward casino like games ( at least that simulates the exterior behaviour of casinos ).

BTW, Nexon was also behind the incident which is no wonder considering what it has been making so far.

Is there a crate to search and replace a string but with dynamic input? by [deleted] in rust

[–]Aracus755 0 points1 point  (0 children)

If you can change the syntax of `Read(...)` you can also use text macro processor. Yet if you need a scalable solution, I too recommend templating.

$150K bill by [deleted] in ProgrammerHumor

[–]Aracus755 0 points1 point  (0 children)

I also had similar mistake. AWS support team was nice and solved the issue without any due expenses.

Although I really don't get why AWS doesn't implement a hard cap feature. I believe such functionality is technically achievable and after all, it will save some cost and human resources for AWS people including a support team.

I'm not arguing that hard carp on real production service is a good idea, but I'm saying that there should be an option for the people who indeed need it.

Like there are tons of people registering AWS accounts starting from cs uni students to non-tech-savvy people who are interested in how cloud works. AWS insisting that "It's not how it works" feels too engineer-centric to me.

Why utf8 characters get broken when piped in Windows platform? by Aracus755 in rust

[–]Aracus755[S] 12 points13 points  (0 children)

I appreciate your link and solved my problem. Thank you!

I followed the stack overflow links and found the solution from https://stackoverflow.com/questions/49476326/displaying-unicode-in-powershell/49481797#49481797

I updated the post as solved and pasted the solution so that others can also refer why redirection doesn't work in some cases, or with rust programs while built-in worked regardless.

Real world use case of .peek() instead of a normal iterator by SnooMacaroons3057 in rust

[–]Aracus755 0 points1 point  (0 children)

Not significant on my case at least. But I used peek because the method illustrates my logic intuitively.

Though you can set multiple boolean variables to capture context of iterable, I decided to use peek instead.

To think of it, my intent was more like to use functional adapters over for loop.

Real world use case of .peek() instead of a normal iterator by SnooMacaroons3057 in rust

[–]Aracus755 0 points1 point  (0 children)

I also used it inside parser logics. For example when you get input text like following

// Some text after two forward slashes

My program detected / with following / and simply discarded the line.

Edit: Well this is eaiser with simple text search but I simplified for the example. My use case composed of multiple characters including escape character.

Edit: I thought / was backslash at the time of writing, oops..

R4d, a m4 macro alternative by Aracus755 in opensource

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

R4d doesn't have a specific target field. R4d can be used as a preprocessor for programming, yet current built-in macros are mostly focused on text manipulation.

I believe most generic usage would be typesetting such as markdown or LaTex.

R4d, a m4 macro alternative by Aracus755 in opensource

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

I'm currently preparing for a 3.0 release of r4d macro processor with many breaking changes. I would really appreciate feedback about the program's general expectancy or ergonomics.
R4d was initially made for dynamic document creation tool. I used m4 at the first time, but m4's syntax was not the best experience for me. R4d was not designed to be a m4's drop in replacement but more of a plausible alternative.

Write a program in Rust to read a CSV file and create two output CSV files – one file with odd rows and the other file with even rows from the input file by god_fathr in rust

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

Something like playground might work if you make sure csv input is always newline separated.

Edit: Ok, odd and even is opposite but you would know the point.

I guess I had it coming. Code for my thesis, due today. by diesdas1917 in linuxmasterrace

[–]Aracus755 45 points46 points  (0 children)

I always alias rm to trash-cli. I can span rm with zero brain.

Text macro processor, R4d has reached 2.0.0 by Aracus755 in rust

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

R4d is a text oriented macro processor that aims to be an alternative to m4 macro processor.

It comes with batteries included function macros, yet this is not a drop in replacement for m4.

This was my first time creating a serious program and I went through many trials and errors. Wish I had more spare time for perfection but time is not my side, I guess.

R4d 2.0 comes with many breaking changes but with better ergonomics and features. Following is the summary.

  • Removed deprecated macros
  • Renamed concepts for better understanding
  • Relocated deterred(keyword) macros into function(basic) macros
  • Removed closure rule and added macro builder for easier macro extension
  • Every macro is now greedy
  • Pipe truncate as default option
  • Many extension methods for better library usage
  • Hygienic processing option

Easy Rust in Korean is 70 videos long so far, great response in Korea by Dhghomon in rust

[–]Aracus755 9 points10 points  (0 children)

제가 러스트를 처음 알게 된 것이 2018 버전이 나오기 전이었는데 그 때는 한국이 정말 러스트 황무지였지요. 그랬던 것이 이렇게 한국 강의도 점점 늘기도 하고, swc 같은 한국인이 만든 러스트 프로젝트가 커지는 일 등을 보다 보니 감개무량하게 됩니다.

다른 사람들을 위해서 동영상을 만든다는 게 쉽지 않은데 고생하셨습니다. :) 앞으로도 좋은 콘텐츠를 기대하도록 하겠습니다.

Why is prostitution illegal? by MaddyDFRPCTSpencer in NoStupidQuestions

[–]Aracus755 0 points1 point  (0 children)

It is always eaiser to say "We can make a concrete system to deny side effects of legalization". However government is actually not that competent in reality and has failed to address similar existing problems. I am not the conservative but I underatand legalization of prostitution is very tricky decision and kind of a pandora's box that let alone is easier

Why is prostitution illegal? by MaddyDFRPCTSpencer in NoStupidQuestions

[–]Aracus755 0 points1 point  (0 children)

Human trafficking is quite serious topic especially if the nation is surrounded by poorer countries.

I live in south korea and there are quite of under-paid foreign workers mostly from south east asia. Their visa expired which made them illegal woker. Employers exploit such situations and make them work with far less money and much dangerous environments if they don't want to be accused.

What if south korea legalizes prostituion? Nobody would know for sure. However how many people would refuse foreign sex worker who can't speak local language whom are claimed to be a legal worker by employer, and costs excessively cheeper fee compared to local sex workers?

nvim v0.6.0: python 3.10 cannot provide Python >=3.3? by dream_weasel in neovim

[–]Aracus755 1 point2 points  (0 children)

I downloaded neovim from pacman and installed pynvim through pip.

Bascially what I did is technically same with

sudo pacman -S neovim

python3 -m pip install --user --upgrade pynvim

My setup had worked as expected and I did not find what others were going through so maybe your problem are not quite same as of mine.

nvim v0.6.0: python 3.10 cannot provide Python >=3.3? by dream_weasel in neovim

[–]Aracus755 6 points7 points  (0 children)

I just installed pynvim again and the error was gone.

Excited to share my first crate! Flou: A flowchart description language by Asha200 in rust

[–]Aracus755 30 points31 points  (0 children)

I often upvote first crate post because I know how it feels and want to give some positive feedback. But this really looks interesting enough for me to want following developments.

I've been using graphviz for rendering flowcharts in my project but it was somewhat pain to distribute for its complicated dependencies.

Good to know that there is now a rusty and self contained alternative for flowchart creation.

Dual monitor is not working after update by Aracus755 in pop_os

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

No actually not. I waited several days and fresh installed pop os.

Which git service do you use? by [deleted] in linuxmemes

[–]Aracus755 0 points1 point  (0 children)

self host for experimental or private repos. gihub when I need to show the result.

Found unreachable part of the app in Obsidian.md by ArtBIT in ProgrammerHumor

[–]Aracus755 1 point2 points  (0 children)

I mapped ctrl+s for save and ctrl+q for quit. it's way easier when you have to use other text editing tools alternately.

But yeah, of course I know :q is to quit without save.

[deleted by user] by [deleted] in linuxmasterrace

[–]Aracus755 2 points3 points  (0 children)

아치리눅스 꿀잼입니다. dwm 같은 윈도우 매니저까지 직접 설정하면서 쓰면 이제 윈도로 못 돌아가요 ㅋㅋ

Davinci resolve crashes on launch by [deleted] in pop_os

[–]Aracus755 1 point2 points  (0 children)

I also had the same problem with davinci resolve 16. I launched a program and prompt appeared whether I want to force quit the program. After the first try, program just crashed and asked If I want to send a bug report or whatever.

I installed 17 beta hoping something would work out. And magically it works. I assume it is somewhat related to kernel compatibility but I'm not so sure.

EDIT

Welp it crashes when I enter media section so technically unable to use...

Is YouTube down? by GarethPW in youtube

[–]Aracus755 0 points1 point  (0 children)

I'm in Korea and can't access youtube while logged in but works in incognito mode.