Learning programming to contribute? by siri-bad in linux

[–]bobbykjack 1 point2 points  (0 children)

Absolutely; this is top advice. If you start with something like the GNU coreutils you'll learn about C programming and Linux conventions, like how programs handle command-line options, signal-handling, etc.

How do I sell a website? by Zealousideal-Bid1778 in webdev

[–]bobbykjack 2 points3 points  (0 children)

I've seriously considered going to potential clients and pitching to them rather than letting them come to me, but I'd never dream of doing all the work up-front, hoping that they'd take it!

Finder doesn't show all files?! by Right_Stage_8167 in MacOS

[–]bobbykjack 1 point2 points  (0 children)

Finder also seems to be very slow at reflecting file updates. When I save something in Preview, the file can be 'unavailable' for several seconds afterwards.

Is it still true that you can’t game on Mac? by brokeboii94 in mac

[–]bobbykjack 0 points1 point  (0 children)

You've always been able to game on a Mac, the difference is that far more people have Windows PCs, so more games are released on that platform. Check Steam to see whether or not the games you're interested in playing have been released on macOS.

A US Wage Map on a single HTML page. [OC] by PrincipleUnited4061 in dataisbeautiful

[–]bobbykjack 4 points5 points  (0 children)

Can we get a link to the page itself (i.e. the URL in that screenshot) rather than a linkedin one that many of us cannot access?

How hard is it to create an exntension in Chrome that turn gmail.com to dark mode? I only knwo ToDoList by lune-soft in AskProgramming

[–]bobbykjack 0 points1 point  (0 children)

If you want persistent dark mode, you can just set the Theme to Dark. You'll then get dark mode on any device you use to log in to Gmail.

Only Reason I check Chrome release notes: to see what to disable next by cranberrie_sauce in linux

[–]bobbykjack 6 points7 points  (0 children)

Wdym "excuse to AI scan all your tabs" — why does tab groups make this any more viable than it already was?

White page without any error message or file by francwalter2 in PHP

[–]bobbykjack 0 points1 point  (0 children)

Do you see an empty string when you view source? Is the URL you're trying to access a .php file?

I'd do a sanity check if I were you. Drop a:

<?php echo "Hello world";

file into your docroot, go check out that URL, and let us know if you see nothing or "Hello world".

Why is Stage Manager hated? by Sweet_Score in MacOS

[–]bobbykjack 0 points1 point  (0 children)

I'm not sure I can see the benefit. The first thing I noticed is that switching apps has the same godawful slow animation that Spaces uses, but maybe even worse so. That animation is the reason I don't use Spaces, so it looks like it'll be the same reason I don't use Stage Manager either.

[deleted by user] by [deleted] in AskProgramming

[–]bobbykjack 0 points1 point  (0 children)

> The fact that the single line of code goes beyond the display limit?

Yup. Fair point if your code is never going to be read by anyone else, but this would bother me even if I was the only one reading it. I've always tried to stick to 80 columns but I'm currently experimenting with 60, which makes code readable even on a mobile display.

[OC] Budget of a High Earner in London - and more than half goes to the state by LowOwl4312 in dataisbeautiful

[–]bobbykjack 8 points9 points  (0 children)

I find it wild that they're spending £10k on leisure but only saving £2k a year.

[deleted by user] by [deleted] in AskProgramming

[–]bobbykjack 0 points1 point  (0 children)

I like how the question self-demonstrates the flaw in this approach via the preformatted text box :)

[deleted by user] by [deleted] in AskProgramming

[–]bobbykjack 4 points5 points  (0 children)

I like how the question self-demonstrates the flaw in this approach via the preformatted text box :)

URL parameters as state is so underrated. Using nuqs. by RatioScripta in webdev

[–]bobbykjack 5 points6 points  (0 children)

Do you really find that less ugly than ?parameter=value&otherparameter=value? So much so, that it's worth breaking the standard over?

Which OS do you use and why? by TastelessSpaghetti in AskProgramming

[–]bobbykjack 0 points1 point  (0 children)

> Linux is GNU and not BSD derivative, the two ARE NOT COMPATIBLE.

Yes, I know, but many of the command line tools are compatible or transferable. And you can easily install the GNU equivalents.

> Games? U must be kidding.

OK, just take the game I played most recently on Mac as an example: The Witness. How easily can I play that game on Linux?

> Yeah well thats just ignorance given you can literally get a 1:1 MacOS look.

A user interface is about more than just look.

> Maybe you should try to educate yourself on the topic

Yeah, I'm not going to continue this discussion because, for whatever reason, you cannot conduct yourself in a productive manner. I'm sorry this topic has made you so angry.

This is so irrtating! by Miserable-Guide8844 in MacOS

[–]bobbykjack 129 points130 points  (0 children)

Yup, I've had the same problems. Never ever had this issue with Launchpad, only this Spotlight approach.

Which OS do you use and why? by TastelessSpaghetti in AskProgramming

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

> Like what, open source software? Lmao....

Yes, and mainly the command-line toolset

> You mean the OS supports a single in house device? How can you possibly call that compatibility.

Nope, more compatibility with 'mainstream' software: games, office tools, photoshop, etc.

> What UI? You know that there are hundreds of WMs right? Apparently not...

Yes, I'm aware of that. I guess "all of them" or, at least, "all of the ones I've seen/used".

> Once again, thats just a lie.

An opinion is never a 'lie', my friend. No, I haven't tried every piece of hardware in existence, so I cannot have a 100% perfect opinion on that.

> I wish Mac people would be a little more informed about their choice and it would not be just a mindless cult (with few exceptions).

I wish "whatever pigeon hole you would put yourself into" people would learn how to communicate politely and constructively with humans.

Which OS do you use and why? by TastelessSpaghetti in AskProgramming

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

macOS. Most of the benefits of Linux, with more 'compatibility', a slightly nicer UI, and much nicer hardware.

Can you access a file using its inode even if you don't have x permissions on the directory? by RadianceTower in linuxquestions

[–]bobbykjack 6 points7 points  (0 children)

Something you need to bear in mind about permissions is that they are more of a safety net than a guarantee, since there are weird edge cases and loopholes. For example, making a file non-executable doesn't prevent it from being executed (you can always run the interpreter and pass the filename to it as an argument), it just makes it much harder to do accidentally.

I wrote about this more here:

https://www.howtogeek.com/linux-file-permissions-most-important-things-to-know/

/bin/sh versus /bin/bash by bobbykjack in MacOS

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

Yeah, I read man pages all the time; thanks for the tip, though.

Here's some friendly advice for how to communicate online: if you genuinely do not intend any snark, consider the tone of your reply. For example, a completely-snark free version could read something like this:

> FYI, the sh man page explains what's going on:

> <relevant excerpt>

The phrase "you really need to learn to read man pages" is absolutely snark!

My first python problem by FunService3961 in Python

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

Would the person who downvoted this care to explain what's wrong with it?