Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to the Power Users community on Codidact!

Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.

Activity for Quasímodo‭

Type On... Excerpt Status Date
Comment Post #290711 "Perhaps this is what the devs intended" -> Hardly so, were that the case our $HOME would be littered with links. But this is the source code: ``` photo_path = g_get_user_special_dir (G_USER_DIRECTORY_PICTURES); g_free (priv->photo_path); /* Get XDG. */ if ...
(more)
2 months ago
Comment Post #290503 Warum gehst du denn davon aus, dass der Fragender Deutsch spricht? In any case it would be better to stick to English, as that's what most people can understand.
(more)
3 months ago
Comment Post #290503 If not a modeline (that you would have to add to every such file anyway, right?), an autocmd would very likely allow it.
(more)
3 months ago
Comment Post #290545 I always use `mpv --profile=low-latency --untimed av://v4l2:/dev/video0`, then press S to take picture, it will go to the current directory. I'm not writing this as an answer because you mention "can cope with things like multiple cameras being connected and disconnected". With MPV you would need...
(more)
3 months ago
Comment Post #290395 You could just try using Chrome's user agent in Firefox to see if your hypothesis holds water.
(more)
4 months ago
Comment Post #289917 > My question is how to configure the datetime format. Isn't that simply what you wrote in the other comment? I.e. `date +%Y-%m-%d_%T`? > Does that mean i have to generate every possible locale, check every possible locale if the format matches what i want, and if there is no locale that has th...
(more)
6 months ago
Comment Post #289922 In Vifm that would be easy. ``` noremap <F6> :!mv %f /destdir/<CR> ``` Would make F6 move the selected files to `/destdir/`. Maybe Ranger has something similar?
(more)
6 months ago
Comment Post #289917 Well, each locale does have a different time format. ``` $ LC_TIME=en_US.utf8 date +%x~%X 10/09/2023~01:08:12 PM $ LC_TIME=ru_RU.utf8 date +%x~%X 09.10.2023~13:08:17 ``` The question does not match what you are asking in comments. Also note that `where you are ≠ where your computer is conf...
(more)
6 months ago
Comment Post #289465 If you don't really need the Git history, but just the current snapshot of the repository, and the repository is large, then `git clone --depth 1 --shallow-submodules` could significantly speed up the process. Otherwise, though I don't think I used it myself, passing `--verbose` might provide some...
(more)
8 months ago
Comment Post #288004 Once you are absolutely sure that the device is /dev/sda — which surprises me, as that is usually mapped to the main storage device, so please double-check if trying it —, you could try the disk destroyer. ``` sudo dd if=/dev/zero of=/dev/sda bs=4M ``` If it doesn't work I'm afraid nothing wi...
(more)
about 1 year ago
Comment Post #287926 Some text was still missing indeed, sorry! You could try :inoremap <tab> <C-t> for insert mode, though that will always insert a given number of spaces or tabs without respecting the list level.
(more)
about 1 year ago
Comment Post #287926 Indeed, some text got cut out of the first quoted paragraph, I edited the comment.
(more)
about 1 year ago
Comment Post #287926 Your example only shows the case of a "top level" indentation. Should the solution also be extensible to non top levels?, i.e. ``` 1. aaaaa 1.1. bbbbbbbbbbbbbb bbbbbbbbbbbb ``` You mention \<ESC\>\<Tab\> but not the mode (normal or insert)? Note that \<Tab\> = \<C-i\> so if you map one yo...
(more)
about 1 year ago
Comment Post #287380 Haha funny thing... Never occurred to me because I set default zoom at 110% so the cursor on the picture becomes larger than my actual cursor, but yes at a smaller zoom level I can confirm they look the same here on Debian. Which is no surprise, given the window decorations and purple background I gu...
(more)
over 1 year ago
Comment Post #287367 @#56802, 1\. All in a single list? I don't think so. You can always find each of them with `:h :delete`, etc. 2\. `!` is not a register, it's a "modifier" available in many Ex commands. See `:h :pu` for example. 3\. Yes, but you would need to modify the MWE so as to step 2 be `"sdd` instead....
(more)
over 1 year ago
Comment Post #286831 @#56802 Moderators cannot move questions to other networks; All is fine anyway because the question is totally on topic here.
(more)
over 1 year ago
Comment Post #286834 Hey @#56802, thanks for the feedback; Please check if the updated question is sufficiently clearer.
(more)
over 1 year ago
Comment Post #286871 Oh, it's a dozen of items above it, but yes, and it works, thanks! Would you like to write an answer?
(more)
over 1 year ago
Comment Post #286831 Just to make sure I read it correctly, `./a/b/c/d` should be copied to `./c/d`, correct?
(more)
over 1 year ago
Comment Post #286831 The question is not off-topic here (Linux Systems is a subset of Power Users), but given the question and context, this would be a perfect fit for Linux Systems.
(more)
over 1 year ago
Comment Post #286828 Experience. The `type/subtype` thing jumps to the eye as a [mime type (a.k.a. media type)](https://en.wikipedia.org/wiki/Media_type). Which is what `file -i` reports.
(more)
over 1 year ago
Comment Post #286828 I don't have an answer. But for practical purposes, for the `-t` argument, try what `file -i *.svg` reports.
(more)
over 1 year ago
Comment Post #286560 It's possible that your processor throttles as a safety measure due to hitting a given temperature. You could use a hardware monitor to verify if that is true. (I can't recommend one since I'm not a Windows user.) Turbo Boost is common nowadays but AFAIK it boils down to the same concept.
(more)
almost 2 years ago
Comment Post #286120 https://unix.stackexchange.com/a/697797
(more)
about 2 years ago
Comment Post #286102 Do you mean that you are not the author of the post at Solveforums or are you additionally suggesting that it is a mere coincidence that the first paragraphs are **identical** to the ones you have written here and thus you have not copied it?
(more)
about 2 years ago
Comment Post #286042 @#36377 Thank you! This is sure helpful.
(more)
about 2 years ago
Comment Post #285868 Perhaps you will have more luck in Reddit. From [this list](https://duckduckgo.com/?q=how+to+monetize+my+website+site%3Areddit.com) there seems to be some Subreddits where this would be on topic. Good luck!
(more)
about 2 years ago
Comment Post #285868 @#54036777 For these kind of applications, I'm afraid you are right. People are likely to just search for "calculator", use the first one that fits, and go away. This is a considerably different approach than for information providing sites such as Wikipedia ([some figures](https://www.washingtonpost...
(more)
about 2 years ago
Comment Post #285868 I am inclined to agree with @#36396. To me this is off-topic, because the question boils down to "how to monetize a web page?" and I wouldn't call it a survey of software, but of third-party services to do so — after all one could always easily put up his own first-party ads ("selling this car, conta...
(more)
about 2 years ago
Comment Post #285868 Have you considered donations? Of course this will highly depend on your site's profile and audience, but on the other hand advertisements are the web's plague. They attempt to track and distract users. I wouldn't be surprised if most of the visitors used adblock anyway.
(more)
about 2 years ago
Comment Post #285834 Very likely, although I also do not use Windows for years, so I don't even know if WSL is bundled by default or if it needs to be installed.
(more)
about 2 years ago
Comment Post #285834 Assuming this is not available as a option to `git` itself, stating your operating system is important (unless you want to gather information for all of them). Your proposed solution, `sort -u`, is ideal for Unix systems. I guess in Windows things would be different, since it doesn't follow the POSIX...
(more)
about 2 years ago
Comment Post #285699 As a Firefox user, I would expect some more information by clicking on that icon. . Why did you not do that (premise: you trust your browser, which is obviously a valid premise since you are using it)? If you did, why did you not include what you found out by doing so?
(more)
about 2 years ago
Comment Post #285587 @#36377 Unfortunately I don't know if such exists, all that I know I found out on those bug reports.
(more)
over 2 years ago
Comment Post #285412 @#36377 Thank you for the information, I did not know that one!
(more)
over 2 years ago
Comment Post #285379 I found several mentions to Powertoys. Not a Windows user though.
(more)
over 2 years ago
Comment Post #285412 @#53305 Thanks, I didn't know those Github projects you and Samcarter brought up, good to see there are many improvements available. Yes, I think you're right about that GTK is specific to that OS. I'm fixing it.
(more)
over 2 years ago
Comment Post #285408 I agree that would be the expected behavior in most vanilla setups, however if you click the link from a window in workspace 1 and the browser is at workspace 2, I wouldn't be surprised if the focus was kept on the window in workspace 1. The same if you assigned the browser to always open on workspac...
(more)
over 2 years ago
Comment Post #285405 Preventing all new windows from stealing focus would solve this problem, but I don't think you would like that, right? So, could Windows figure whether the new Chrome windows was opened because you clicked a link on Skype, or because you directly invoked Chrome etc. to take a different focus policy d...
(more)
over 2 years ago
Comment Post #285383 Arguably, bitrate is incorrect, just as infectionrate, reactionrate etc. It's interesting that Microsoft decides to call it bitrate in the Video group, and bit rate in the audio group.
(more)
over 2 years ago
Comment Post #284942 @#53196 As documented, `$XDG_CONFIG_HOME/gtk-3.0` (that amounts to `~/.config/gtk-3.0`) is also one of those places, and the fact that I can successfully change my theme there confirms it is a working location. Indeed, appending the warp setting to `/etc/gtk-3.0` also has no effect. But thanks for yo...
(more)
over 2 years ago
Comment Post #284577 @#53305 It is not a text file, although some parts of it are plain text, so it is really not that difficult. `histdel` looks good indeed, but it works with regular expressions, which makes it a considerably more error-prone than editing `.viminfo` by hand.
(more)
over 2 years ago
Comment Post #284581 @#53305 `file -i .viminfo` says: `.viminfo: application/octet-stream; charset=binary`. It is a binary file.
(more)
over 2 years ago
Comment Post #284577 Thanks @#36377c, it is, but barely. With your hint I could write a solution. I guess we make a good team ;)
(more)
over 2 years ago
Comment Post #284512 This is a very good option compared to Maxima when it comes to interactive sessions, since it allows one to use arrow keys properly and even has history of commands via the Readline library.
(more)
over 2 years ago
Comment Post #284508 The program should inverse a matrix. Alright, but does it need to be a browser program, or are you willing to install one? Windows, Linux, ...? Does it need to be free-software or free of charge?
(more)
over 2 years ago
Comment Post #284354 Perhaps Zoom will cut it for you? [Not that I recommend it...](https://stallman.org/zoom.html)
(more)
over 2 years ago
Comment Post #283847 @#8049 Thanks for bringing this up. I'd say word processor is a subcategory of text editors, since both can edit (pure) text. But I agree that the question seeks a word processor, since it's about coloring words. Edited.
(more)
over 2 years ago
Comment Post #281975 @samcarter You're welcome!
(more)
almost 3 years ago