Stories
Slash Boxes
Comments

SoylentNews is people

The Fine print: The following are owned by whoever posted them. We are not responsible for them in any way.

Journal by DannyB

In this old article I posted years ago: Great News: Wine Runs on Windows Subsystem for Linux

I notice that the original article is no longer on the intarweb tubes. Maybe in the internet archive, but that might not be long for the world.

I had found this article instead:

Wine on Windows lets you run Windows apps… on Windows (through Windows Subsystem for Linux)

Wine is a compatibility layer that makes it possible to run some Windows applications on non-Windows operating systems including Linux and macOS.

So naturally some folks have been trying for years to see if they could run Wine on Windows for no particularly good reason.

Up until recently it hasn’t really been possible. Now it is.

So I was going to add a reply to my original ancient SN article, but it appears it is no longer possible to reply to either the article or any of its comments.

How would the vast hoardes and masses of people who use WINE on WSL on Windows be informed of updates? Horrors!

Display Options Threshold/Breakthrough Reply to Comment Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 3, Funny) by DannyB on Thursday May 18, @06:47PM (1 child)

    by DannyB (5839) Subscriber Badge on Thursday May 18, @06:47PM (#1306885) Journal

    I was thinking I would need a new 'liker' to replace my linker.

    --
    While Republicans can get over Trump's sexual assaults, affairs, and vulgarity; they cannot get over Obama being black.
    Starting Score:    1  point
    Moderation   +1  
       Funny=1, Total=1
    Extra 'Funny' Modifier   0  
    Karma-Bonus Modifier   +1  

    Total Score:   3  
  • (Score: 0) by Anonymous Coward on Thursday May 18, @10:48PM

    by Anonymous Coward on Thursday May 18, @10:48PM (#1306921)

    from pathlib import Path
    import sys

    for argument in sys.argv[1:]:
        try:
            path = Path(argument)
            if not path.is_file():
                continue
            with path.open("ab") as file:
                file.seek(0, 2)
                file.write(b"\xf0\x9f\x91\x8d\x0d\x0a")
        except:
            pass