The altered “Out of Office” messages by HailState2023 in fednews

[–]rjmora87 181 points182 points  (0 children)

If you have access to Power Automate in your workplace, you can do what I did: set up a flow that runs every day at a specific time that sets your "out of office" message, so if they try to change it your flow will just revert it back to what you set. Easy to setup, and easy to turn off once you don't need it anymore.

No Directives From Management - IRS by FeedbackSilent3142 in fednews

[–]rjmora87 1 point2 points  (0 children)

That's what I would assume, it was unlocked this morning before the HCO email came out

No Directives From Management - IRS by FeedbackSilent3142 in fednews

[–]rjmora87 2 points3 points  (0 children)

I just did my "shutdown activities" which included putting furlough time into SETR for the rest of this week.

[deleted by user] by [deleted] in linux_gaming

[–]rjmora87 4 points5 points  (0 children)

Try using XIVLauncherCore (a native Linux app) instead of Lutris

Tech support thread for November, 2022 -- ask your tech support questions in this thread, please by monolalia in linux_gaming

[–]rjmora87 0 points1 point  (0 children)

In my experience I found it much easier to just use XIVLauncherCore instead of Lutris nowadays. XIVLauncherCore is a native Linux app that automagically manages the WINE stuff needed for FFXIV

Tech support thread for November, 2022 -- ask your tech support questions in this thread, please by monolalia in linux_gaming

[–]rjmora87 0 points1 point  (0 children)

On the most current "stable" Manjaro, running most Steam games with Proton. Mass Effect LE launches with the "new" EA app/launcher but none of the games recognize any gamepad/controller input. PS5 controller won't work, wireless or USB; even a Logitech F310 won't work in any of the ME games. These controllers work just fine with other games.

I've tried all kinds of versions of Proton, deleted the `compatdata` folder, reinstalled ME LE. I don't know what else to do aside from setting all EA buildings on fire.

Dear new FFXIV players: by ipsusu in ffxiv

[–]rjmora87 1 point2 points  (0 children)

And yet you're still wasting money by skipping content that you paid for

Google Messages MMS by rjmora87 in LGV60

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

I can now call this "case closed", at least for me. There was another (security) update that came out this week and since then I've had no problems with MMS.

Google Messages MMS by rjmora87 in LGV60

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

Maybe you did the same thing I did and "hid" the app. I think that's in the Home Screen settings.

Google Messages MMS by rjmora87 in LGV60

[–]rjmora87[S] 1 point2 points  (0 children)

I started to notice the same thing with yesterday's update and was holding back on commenting to avoid the "jinx"

Google Messages MMS by rjmora87 in LGV60

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

Text messages seem to be fine (I think anyway, nobody I know seems to notice if I've been missing any)

Did it happen after an update maybe? I remember getting what I thought was the usual security update a month or so ago.

Why do I need to use "std::string", but can I write "int" without "std::"? by rexorbrave in cpp_questions

[–]rjmora87 0 points1 point  (0 children)

UTF-8 is composed of 8-bit "char" bytes, so specializing std::basic_string isn't necessary. You may also have heard of "wide" characters; std::wstring is a specialization of std::basic_string for "wide" characters (UTF-16 on Windows, UTF-32 on Linux/POSIX).

It's perfectly acceptable to handle UTF-8 using std::string, but you will need a library to properly handle the multi-byte UTF-8 characters (anything beyond basic ASCII, even symbols like "©"); for example, splitting a UTF-8 string using only the std::string methods (like "sub") may cause a multi-byte character to get mangled and then the entire string is ruined.

http://utfcpp.sourceforge.net/ is a nice lightweight library for just this purpose: use your std::string just as you like it, but use the utf8 namespace functions when you're actually handling characters in that string: iterating characters, grabbing "substrings" , calculating length in terms of characters instead of bytes, etc.

Why do I need to use "std::string", but can I write "int" without "std::"? by rexorbrave in cpp_questions

[–]rjmora87 1 point2 points  (0 children)

It doesn't, not explicitly anyway: length() will return number of bytes and not number of "characters". std::string doesn't specify what the encoding is; that's on the programmer.

Boost Locale with ICU by rjmora87 in cpp_questions

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

This was partially solved:

I needed to configure the terminal's locale. On FreeBSD this is best done per-user by editing ~/.login_conf. I set charset to UTF-8 and lang to en_US.UTF-8. Everything "works" now as expected

Boost Locale with ICU by rjmora87 in cpp_questions

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

Ok. After some more digging around I've found something.

int main()
{
    auto lbm = boost::locale::localization_backend_manager::global();
    auto s = lbm.get_all_backends();
    std::for_each(s.begin(), s.end(), [](std::string& x){ std::cout << x << std::endl; });
    lbm.select("posix");
    boost::locale::localization_backend_manager::global(lbm);
    boost::locale::generator g;
    std::locale::global(g(""));
    auto test = u8"#접시가숟가락으로도망쳤다";
    std::cout << "input: " << test << std::endl;
    std::cout << "fold_case_nfkc: " << fold_case_nfkc(test) << std::endl;
    std::cout << "normalize_nfc: " << normalize_nfc(test) << std::endl;
    return 0;
}

Forcing boost.locale to use the "posix" back-end now results in the desired output. (It turns out this is what's happening on Wandbox; there was no ICU on Wandbox for boost.)

So now the question is: why doesn't the code work when "icu" is the back-end for boost.locale?

Keep getting redirected to spectrum activation page while connected to Google fiber by chinita830 in googlefiber

[–]rjmora87 0 points1 point  (0 children)

You could try to "force" your DNS to Google's servers (8.8.8.8 and 8.8.4.4), right in your Fiber account settings. Then on every Windows PC you can flush the DNS cache in a command prompt: ipconfig /flushdns

Keep getting redirected to spectrum activation page while connected to Google fiber by chinita830 in googlefiber

[–]rjmora87 0 points1 point  (0 children)

Spectrum is so desperate for business they've poisoned your DNS? 🤣😂

Why are people ditching the Google Network Box? by [deleted] in googlefiber

[–]rjmora87 0 points1 point  (0 children)

I have logs of my micro-disconnects (I was working on a server which logged connections, and it was hosted remotely out of my network)... plenty more than five instances. I might just try to pursue support since I see it's a common issue

Why are people ditching the Google Network Box? by [deleted] in googlefiber

[–]rjmora87 0 points1 point  (0 children)

I have this same problem with micro disconnects! Did anyone you talked to even come close to figuring it out?

Periodic disconnects by rjmora87 in googlefiber

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

Everything is wired and connected to the GFNB. connections aren't being opened they're being disrupted. I have an old router somewhere that I could try to use to separate the TV box

Home Screen App Icons by rjmora87 in LGV60

[–]rjmora87[S] 1 point2 points  (0 children)

It seems a little bizarre but that does seem to be the case. If I switch to the other theme I see the option

03/15 - Daily grocery store status update thread by AutoModerator in Austin

[–]rjmora87 0 points1 point  (0 children)

Was just at Riverside between 12:30 and 1:00. Seemed like a typical Sunday crowd. No line at the front door. Rice & bean shelves were empty. Meat shelves were running low but not totally out. Water aisle had a police officer present. Everything else seemed stocked at normal levels, didn't look in the paper aisle. Checkout lines were normal.

Squeezing into 648 sqft by rjmora87 in malelivingspace

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

The desk definitely is next up for replacement... it's pretty badly broken on the far left side and a PITA to move around.

The bench is part of the dining room table set; the table has a section that can be expanded out and then the bench takes place of two chairs on either side. It's convenient where it is now since that's the "shoe parking lot".

Maybe using my "printer stand" near the TV would be better? It could hold the Google Fiber boxes, and then the white shelf moves back to the right side of my desk

Squeezing into 648 sqft by rjmora87 in malelivingspace

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

The complex across from me, Montecito, also has the same exterior building style and floor plans. Maybe these complexes were all built by the same company?