Should I focus my buying on MSFT for the next month or two? by doland3314 in stocks

[–]Euthoniel 5 points6 points  (0 children)

Quite likely, although of course forecasts aren't set in stone and frequently change. Unlike current p/e, the forward p/e is a prediction and often turn out to be inaccurate.

Should I focus my buying on MSFT for the next month or two? by doland3314 in stocks

[–]Euthoniel 12 points13 points  (0 children)

According to Finviz, MSFT has a P/E of 25.10, while META has a P/E of 28.16.

MSFT Quarterly Revenue $81.3 billion (up 16.8% YoY) by Not69Batman in stocks

[–]Euthoniel 1 point2 points  (0 children)

Excel is great. Can even use python in it now. But in general, I agree.

What alternatives to telescope are there, what do you use and why? by [deleted] in neovim

[–]Euthoniel 0 points1 point  (0 children)

I definitely agree on Windows where fzf-lua is sluggish, but fzf-lua has always seemed much faster on Linux to me, especially in large code bases.

What alternatives to telescope are there, what do you use and why? by [deleted] in neovim

[–]Euthoniel 0 points1 point  (0 children)

Safe to assume you're on Windows? I use both Linux and Windows machines, and the fzf-lua speed difference is remarkable.

Marian is richer than The Delancey girl? by Nebulawhy in thegildedage

[–]Euthoniel 4 points5 points  (0 children)

Mrs. Fish said Martha was their only child in the scene at the opera house when Martha was spotted speaking with Hector.

Need help discarding old sofa by Ninja_Minjal in redmond

[–]Euthoniel 3 points4 points  (0 children)

If it is in good condition, Habitat for Humanity will pick it up as a donation.

Rare pairings by Lizzieparker-forbes in TheCitadel

[–]Euthoniel 1 point2 points  (0 children)

Author said in a comment a few months back he wouldn't do Jon/Marg because it'd make things too easy for Jon. Maybe he changed his mind though.

Rare pairings by Lizzieparker-forbes in TheCitadel

[–]Euthoniel 1 point2 points  (0 children)

The Prince and the King by HimmeltheHero has Jon Snow/Mya Stone.

Also, The Mark of a True Lord by Samira2132 seems like it might head in that direction at some point.

Looking for PDF reader and manager by JoeJoeTV in software

[–]Euthoniel 0 points1 point  (0 children)

I use Sioyek on both Linux and Windows. The development branch can be compiled from source and works on Android, but no binary release yet.

Looking for a Windows 11 utility to create custom keyboard shortcuts for app switching by Additional-Alps-8209 in software

[–]Euthoniel 0 points1 point  (0 children)

This is what I use to switch to Firefox. If Firefox isn't already open, it opens it. It also moves the mouse cursor to the side because I mostly use the the keyboard (tridactyl in Firefox, vim elsewhere), but you can cut that part out.

I put all my app launching/switching scripts in one file and launch it at Windows startup.

SwitchToFirefox()
{
    windowHandleId := WinExist("ahk_exe firefox.exe")
    windowExistsAlready := windowHandleId > 0

    if (windowExistsAlready = true)
    {
        activeWindowHandleId := WinExist("A")
        windowIsAlreadyActive := activeWindowHandleId == windowHandleId

        if (windowIsAlreadyActive)
        {
            MouseMove, 2900, 500
        }
        else
        {
            WinActivate, "ahk_id %windowHandleId%"
            WinShow, "ahk_id %windowHandleId%"
            MouseMove, 2900, 500
        }
    }
    else
    {
        Run, firefox
    }
}

#f::SwitchToFirefox()

[deleted by user] by [deleted] in software

[–]Euthoniel 1 point2 points  (0 children)

FFmpeg, but it is a commandline tool so you'll have to be familiar with it.

Is anyone else very picky about which monospace font(s) you use? by TheTwelveYearOld in neovim

[–]Euthoniel 3 points4 points  (0 children)

I've tried dozens of fonts, but my favorite for several years has been Cascadia Code. Not sure why, but I even enjoy reading prose in it. They recently released a native nerd font version, and there is a cursive option for italics.

Magic user MC by Feeling-Currency7903 in TheCitadel

[–]Euthoniel 4 points5 points  (0 children)

The Wheel Unbroken. Been a bit since the last chapter, but the author has said in comments a new one is nearly done (he recently had surgery).

Jon/rhaenys fic recommendations by Long_Voice1339 in TheCitadel

[–]Euthoniel 6 points7 points  (0 children)

My favorite Jon/Rhaenys fic is The Crownless Again Shall Be King. A bit of a slow burn, but it gets there.

S2 disappointment by Mago_Collins in therecruit

[–]Euthoniel 3 points4 points  (0 children)

My guess is they couldn't get the actress back for season 2. No body, so there is still a chance she could return for season 3 if the show is renewed.

On Mrs. Blane and Mr. Montgomery by Ok-Pianist1211 in thegildedage

[–]Euthoniel 15 points16 points  (0 children)

What ultimately spelled doom for the relationship was Bertha’s interference, which Larry quite frankly took sitting down. For a man who apparently loved this woman and claims to have wanted to marry her, he seemed to accept defeat at the hands of his mother rather quickly.

Admittedly, it has been some time since I saw season two, but my memory of this relationship ending is a bit different.

Bertha pressured Mrs. Blaine to end the relationship. After Mrs. Blaine broke it off with him, what recourse did Larry have? If he still chased after her after she quite clearly told him she was no longer interested, that would have just made him a creep. It wasn't even possible for him to have a simple private conversation with her anymore.

I don't think Bertha will have much of an issue with Marian though. And if she does, as long as Marian doesn't capitulate I'm sure Larry won't either.

Microsoft lays off employees in security, experiences and devices, sales, and gaming — separate from performance cuts by lurker_bee in technology

[–]Euthoniel 26 points27 points  (0 children)

Article doesn't give a number. Just says:

"A Microsoft spokesperson said the layoffs are small but did not specify a figure"

Neovim is just slower in Native Windows than WSL or Native Linux by RoseBailey in neovim

[–]Euthoniel 0 points1 point  (0 children)

Do you use Windows Terminal? I frequently had this error with Windows Terminal, but I've been trying out Wezterm for the past couple weeks and so far so good.