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 samcarter‭

Type On... Excerpt Status Date
Edit Post #288040 Post edited:
about 1 year ago
Comment Post #288040 probably the same problem as in https://discussions.apple.com/thread/254648701
(more)
about 1 year ago
Edit Post #288040 Initial revision about 1 year ago
Question Converting pdf to png with sips on macOS 13.3.1 Ventura
With pervious versions of macOS, I used `sips` to convert pdfs into pngs ``` /usr/bin/sips -s format png document.pdf --out document.png ``` In macOS 13.3.1 Ventura, this now gives an error: ``` /Users//Desktop/document.pdf Error: Cannot extract image from file. /Users//Desktop/docume...
(more)
about 1 year ago
Edit Post #287978 Initial revision about 1 year ago
Answer A: Install Quarto extensions globally
This is probably not a lasting solution, but one can manually copy the individual folders of the extensions to ``` /share/extensions/quarto/ ``` Documents seem to be able to find them from there, but I doubt they will survive future updates. Update: Surprisingly, the added extension...
(more)
about 1 year ago
Edit Post #287977 Initial revision about 1 year ago
Answer A: Disable automatic tlmgr updates in Quarto
I didn't yet find a clean solution, but as a dirty hack one can edit the `quarto.js` file and change the line ``` ``` to ``` ``` (this obviously won't survive any updates to Quarto)
(more)
about 1 year ago
Edit Post #287976 Post edited:
about 1 year ago
Edit Post #287976 Post edited:
about 1 year ago
Edit Post #287976 Post edited:
about 1 year ago
Edit Post #287976 Post edited:
about 1 year ago
Edit Post #287976 Initial revision about 1 year ago
Question Disable automatic tlmgr updates in Quarto
Let's assume one has a Quarto document which does not compile because of an error in the latex code, e.g. here a simply typo in a macro name: ``` format: pdf test\newlin test ``` Quarto will first try to compile this document and when it notices the error it will then try to run `t...
(more)
about 1 year ago
Edit Post #287900 Post edited:
about 1 year ago
Edit Post #287900 Post edited:
about 1 year ago
Edit Post #287899 Post edited:
about 1 year ago
Edit Post #287900 Post edited:
about 1 year ago
Edit Post #287899 Post edited:
about 1 year ago
Edit Post #287899 Post edited:
about 1 year ago
Edit Post #287900 Post edited:
about 1 year ago
Edit Post #287899 Post edited:
about 1 year ago
Edit Post #287899 Post edited:
about 1 year ago
Edit Post #287900 Initial revision about 1 year ago
Answer A: Circulate through spaces on macOS 11
Another approach is to use Karabiner-Elements. As a first step, I created to executable shell scripts, which will switch to the previous/next space using the handy tool SpaceInfo `Spaceprev`: ``` #!/bin/zsh export CurrentSpace=$(/Applications/SpaceInfo/SpaceInfo --active-space) export All...
(more)
about 1 year ago
Edit Post #287899 Post edited:
about 1 year ago
Edit Post #287899 Initial revision about 1 year ago
Answer A: Circulate through spaces on macOS 11
One possibility is to use Hammerspoon with the following configuration: ``` hs.hotkey.bind({ "cmd" }, "Right", function() local NextSpace = 1 for k, v in pairs(hs.spaces.allSpaces()[hs.screen.mainScreen():getUUID()]) do if v == hs.spaces.focusedSpace() then NextSpa...
(more)
about 1 year ago
Edit Post #287898 Initial revision about 1 year ago
Question Circulate through spaces on macOS 11
Back in the days of OSX 10.6 Snow Leopard, one could circulate from the last space to the first space, e.g. if one was on the last space and used the keyboard shortcut to go to the next space, it would bring you to the first space. I asked a similar question for Mavericks at https://apple.stackexc...
(more)
about 1 year ago
Edit Post #287874 Initial revision about 1 year ago
Question Install Quarto extensions globally
Is there a way to install Quarto extensions globally? If I follow the installation instruction from https://quarto.org/docs/extensions/managing.html and e.g. use ``` quarto add quarto-ext/fontawesome ``` to install an extension, I have to do this from the same folder as my current project...
(more)
about 1 year ago
Edit Post #287873 Initial revision about 1 year ago
Question Do we want an update for our logo?
"Why an update?" you might ask. The current logo looks nice, but there are a couple of problems which could be solved with an updated logo: - Is the site name "Power User" or "Power Users"? - Is the mouse cursor in the Power User logo an accessibility problem? I doodeled around a bit and came...
(more)
about 1 year ago
Edit Post #287843 Initial revision about 1 year ago
Answer A: Programmatically changing the keyboard illumination in small steps
Instead of trying to build my own touch bar, I'm now using Karabiner Elements to remap the existing keys on the touchbar to the desired behaviour. The following configuration will remap the screen brightness, keyboard illumination and volume keys to change their settings in small increments: ``...
(more)
about 1 year ago
Comment Post #287709 You're welcome!
(more)
over 1 year ago
Edit Post #287709 Post edited:
over 1 year ago
Edit Post #287709 Post edited:
over 1 year ago
Edit Post #287709 Post edited:
over 1 year ago
Edit Post #287709 Post edited:
over 1 year ago
Edit Post #287703 Post edited:
dirty hack: adding block quotes around the images so one can see their size and transparency on the white background of the page
over 1 year ago
Edit Post #287709 Initial revision over 1 year ago
Answer A: How to make background transparent and trim to content
I don't know if or if not this is possible from within grafx2, but your manual workflow can be simplified dramatically by using image magick. The following command will do all your steps at once and reproducibly: ``` convert test.gif -transparent white -gravity south -chop x60 -trim output.png `...
(more)
over 1 year ago
Comment Post #287703 I don't know if your question as asked is possible or not, but I think there is a good chance that your manual workflow can be simplified drastically. Therefore I'd like to see a test image.
(more)
over 1 year ago
Comment Post #287703 Can you show an example image?
(more)
over 1 year ago
Edit Post #287683 Post edited:
over 1 year ago
Edit Post #287683 Post edited:
over 1 year ago
Edit Post #287684 Initial revision over 1 year ago
Answer A: Permanently disable motivational messages and animations on duolingo.com
The problem is that these two settings are only stored in the local storage of the browser and not transmitted to duolingo. This means that when the local storage is cleared for some reason (for me, the local storage gets cleared when restarting the firefox), these settings are lost. As a workarou...
(more)
over 1 year ago