5,681 questions
0
votes
1
answer
131
views
How do I get Windows to "refresh" after manually changing the registry entry for the accessibility text scaling?
I'm trying to write a program that I can fire off from a button on my MOBA mouse that will toggle Windows 11's "Text Size" setting (Settings app > Accessibility > Text Size > the ...
0
votes
0
answers
53
views
PhpStorm Deployment Options - Override Default Permissions Not Working
I might be misunderstanding how this feature is supposed to work, but I swear it used to work for me and now it doesn't, but I'm not sure what changed.
I am working on a shared project, and whenever I ...
Advice
0
votes
4
replies
122
views
Disabling the Android Screen-saver
From what I can tell, the general answers to this question seem to amount to manipulating Android's "screen_off_timeout" timer, or enabling the Developer-Mode's "stay_on" attribute....
0
votes
1
answer
157
views
VS Code suddenly slow to open, how to fix? [closed]
Suddenly, my VS Code (version 1.109) has started taking 8-10 seconds to open. Earlier, it used to open instantly. My laptop is fast and other apps open quickly, but VS Code is slow. How can I resolve ...
0
votes
0
answers
45
views
How to change the VSCode SmartSelect interaction with quotation marks
There seems to have been a recent behaviour change in VSCode that has caused the editor.action.smartSelect.expand action to include quotation marks. For example, in the string 'example string', if I ...
0
votes
0
answers
28
views
the virtual python env is not in conda/envs,but in other place ,the vscode can't find the virtual env
I have set the path of the virtual env in .vscode/setting.json, but it didn't work
"python.defaultInterpreterPath": ".\\conda_envs\\py312\\python.exe",
"python.terminal....
0
votes
1
answer
307
views
Can't see my_project settings in PyCharm Community Edition 2025.2.3
I'm doing Angela Wu's course on Ubuntu. At day 16 she explains how to install a package into your project. (This one https://pypi.org/project/prettytable/)
Then she proceeds to show how to do that in ...
0
votes
1
answer
185
views
Open general settings without default apps permissions screen
I am trying to do simple thing - just to open the iPhone General Settings.
It is my code (on button click):
let settingsUrl = URL(string: UIApplication.openSettingsURLString)!
if UIApplication.shared....
3
votes
1
answer
471
views
SwiftUI Settings Window on MacOS
I'm trying to reproduce the Settings screen of XCode 26.
I tried as follow:
var body: some Scene {
Settings {
SettingsView()
.presentedWindowStyle(.hiddenTitleBar)
...
0
votes
0
answers
52
views
Color change for document's navigation window
I want to change the color of the selected item in the the following navigation window:
It is responsible for switching files, and is usually bound to the keyboard shortcut Ctrl + Tab:
Here is the ...
13
votes
0
answers
2k
views
GitHub Copilot Model Selection: How to Change the Default Version Setting?
How to Set a Persistent Default Model in GitHub Copilot Chat?
Hello,
I'm currently using GitHub Copilot to generate tasks for me. When working with code, I usually prefer to use Claude by selecting it ...
0
votes
0
answers
45
views
how to remove vertical lines in gutter after adding a change
I just recently reinstalled VS Code on my Mac. Before when I added changes from Explorer, the lines in the gutter would disappear. Now, after staging, the lines are still there. The only way to ...
0
votes
1
answer
80
views
Android get bluetooth device new name changed in bluetooth settings
How can I get the new name of a bonded device that was changed in the Bluetooth settings? Is it possible to track this change?
I checked:
val adapter = context.getSystemService<BluetoothManager>(...
0
votes
0
answers
69
views
Pin Code Lock for Settings on Android Smart TVs
I've developing an android app for smart tv. Objective of the program is to run in background and block Settings with a pin code. If user inputs proper pin e.g. 1234 the settings should open. I've ...
0
votes
0
answers
68
views
Spring @PropertySource Property resolution order differs by Java SDK version?
I'm working on a Spring Framework project and recently upgraded the Java SDK from 11 to 17. After upgrading to Java 17, everything worked fine — the project built successfully, deployed without issues,...