PR_freak

joined 1 year ago
[–] PR_freak@programming.dev 3 points 1 year ago

Now I have it too

[–] PR_freak@programming.dev 2 points 1 year ago

The future of PCs in general is tied to professionals and gamers, there is no need for a pc anymore in an household who is not anything of the above

Which means that the average PC user will become more and more tech savy, this is the only thing that could raise the Linux market share

On the other hand I don't see a single chance of linux becoming relevant in personal computing unless a big corporation decides to offer an experience that is/has:

  • A polieshed UI, something eye-pleasing like MacOs
  • Noob friendly in the sense that it offers a 100% TRUE terminal-free experience
  • Reliable across hardware of any kind, the average user doesn't want to worry about graphic or wifi drivers. Heck the average user doesn't even know what a driver is
  • Not buggy
  • An easy way to install any software they need, today's program coverage in various software centers often doesn't fulfill the needs of the average user
[–] PR_freak@programming.dev 8 points 1 year ago* (last edited 1 year ago) (2 children)

What facts am I ignoring? Link em and I will read them

I think your comment applies to yourself better than to me so here are the links I suggest you to visit:

Marathon world records

200m dash world records

Powerlifting world records

What you will notice if you pay attention is that across history there has never been a moment in which the female record was better than the male one, that is a fact you can very easily verify yourself

This is what my stance relies on, not gut feeling or bias

[–] PR_freak@programming.dev 14 points 1 year ago* (last edited 1 year ago)

there are millions and millions of women out there that could easily wipe the floor with any man at literally any sport

Wut

Can you name one from all these millions?

I am not even going to reply to the rest of your comment since it doesn't really say anything worth debating

[–] PR_freak@programming.dev 14 points 1 year ago* (last edited 1 year ago) (1 children)

Oh I can show you unicorn powder i have it right here

[–] PR_freak@programming.dev 28 points 1 year ago* (last edited 1 year ago) (6 children)

As an italian born in the exact city that invented pesto i can say that there is no such thing as red pesto

[–] PR_freak@programming.dev 23 points 1 year ago (1 children)

Instructions unclear I stuck a finger in her eye and she punched me

[–] PR_freak@programming.dev 9 points 1 year ago (2 children)

Fun fact bags of doritos, chips and similar are not allowed because they make too much noise in the movie theater

Imagine a whole crowd making their bags crack when reaching inside and munching loudly on doritos, it would be so damn awful

[–] PR_freak@programming.dev 2 points 1 year ago (1 children)

Yeah, now read that really slowly

[–] PR_freak@programming.dev 9 points 1 year ago (6 children)
[–] PR_freak@programming.dev 1 points 1 year ago

Yeah I bet they feel so good about having the perfect recipe for naming variables, a recipe only they know or care about

[–] PR_freak@programming.dev 3 points 1 year ago* (last edited 1 year ago) (2 children)

Camel case for local variables

Pascal case for global ones

The name should tell me it's purpose

That's it

 

I am trying to debug from vscode a vue 3 with TS and vite project using firefox

As stated in the Debugger for firefox extension page i did:

open the Developer Tools Settings and check the checkboxes labeled "Enable browser chrome and add-on debugging toolboxes" and "Enable remote debugging"

and executed Firefox as follows

"C:\Program Files\Mozilla Firefox\firefox.exe" -start-debugger-server

The problem is that the debugger is all buggy and doesn't hit the correct line

Here is my launch.json (the one for chrome works perfectly well)

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "attach",
            "name": "Attach to Chrome",
            "port": 9222,
            "webRoot": "${workspaceFolder}",
            "urlFilter": "http://127.0.0.1:4000/*"
        },
        {
            "name": "Attach to Firefox",
            "type": "firefox",
            "request": "attach",
            "url": "http://127.0.0.1:4000",
            "webRoot": "${workspaceFolder}",
            "pathMappings": [
                {
                    "url": "http://127.0.0.1:4000/src",
                    "path": "${workspaceFolder}/src"
                }
            ]
        }
    ]
}
view more: next ›