5,483
questions
0
votes
0
answers
36
views
Problem with user authentication in django
For a reason unknown to me, when authenticating a user, I enter the following data: email and password, as a result, super users are authenticated, but ordinary users are not.
What can be done about ...
0
votes
0
answers
32
views
Customizing VS Code Integrated Terminal Color Theme *For Each Terminal Program*
I'm aware that one can customize the color theme of the VS Code integrated terminal (separately from the color theme of the editor itself) by using methods explained here. As can be seen in the ...
-1
votes
0
answers
19
views
How to set default scope for Reformat File dialoge in PhpStorm?
I have muscle memory for running Ctrl + L, which formats the entire file. In a current project, this isn't feasible. I want formatting to only apply on my code changes.
I know I can open up the ...
0
votes
0
answers
8
views
Not able to see my android app in Alarms and reminder
I am using following permission:
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"/>
But I am not able to see my application in Alarms and reminder page. And ...
-1
votes
1
answer
19
views
unwanted tag elements appears in emmet
this is vscode
p>lorem * 5 creates extra span tag elements and indeed if I would want span tags I could code it like that p>span>lorem * 5
in conclusion:
1- why p>lorem * 5 mimics as p&...
0
votes
0
answers
10
views
How can I deel with gcc compile error in vscode cause by path separator?
When I run compile C source file task with gcc in vscode, the command "gcc -g ${workspaceFolder}/src/main.c" will be like "gcc -g D:\xx/src\main.c" , and the finnal error tips is &...
-3
votes
0
answers
26
views
How to edit AF_UNIX socket settings?
We're doing some Fcgid tuning(perl/Apache/mod_fcgid). One of the settings is FcgidConnectTimeout:
FcgidConnectTimeout Directive which states "This directive is not respected on Unix, where ...
0
votes
0
answers
30
views
Resizing of Pycharm terminal
So basically the issue is with terminal window. I wanted to make it like in some other IDEs(photos below), but found out that there is no way to do it with PyCharm stock settings. Maybe someone knows ...
0
votes
1
answer
35
views
Pulumi Azure Native Provider: Error 404 when Adding WebAppApplicationSettings to Static Web App (SWA)
I'm working with the Pulumi Azure Native Provider to deploy infrastructure, and I'm encountering an issue when trying to add WebAppApplicationSettings to an Azure Static Web App (SWA). The Static Web ...
-1
votes
0
answers
21
views
ESlint auto-fix in the VSC
Hellow, guys. i don't know what dosen't work Eslint Auto-fix.(Eslint Workes well, warning and Error Every thing but, I mentioned that only Auto-fix doesn't work.)
Here's my code. i'm doing work in the ...
-1
votes
0
answers
21
views
too many instance of settings ; now some doesnt work in settings while some works in workspace and profile specific
Earlier there were mainly 2 settings file when press Settings Editor (Ctrl+,)
settings.json
project.code-workspace
Now there are profile settings file and then and global settings
now issue is when ...
0
votes
0
answers
10
views
How to disable small popup while editing Android Studio 2024.1.1 in ubuntu?
I just installed Android Studio 2024.1.1 in ubuntu after not using it for a while, and there’s a new feature where a small popup while editing, which I find very annoying because cannot edit text ...
1
vote
0
answers
31
views
How to setup input and output txt file in vs code for c programming in mac os?
Cant setup input and output txt file for vs code in mac os. How to configure setting.json for the viable output?
I tried using setting.json config for windows but doesn’t help. Tried asking to chatgpt ...
0
votes
0
answers
26
views
VSCode cpp_properties.json didn't work but workspace works
enter image description heremy structure is this and I tried to add path in .vscode/cpp_properties.json like this enter image description herehowever the ide can't find the header file also, so I ...
0
votes
1
answer
28
views
Trying to update pytest.ini file during runtime but the settings are not picked up for the same test execution instance
`I'm trying to update pytest.ini file during runtime (Wanted the log folder to pick up current date and time as a file name) but the settings are not picked up for the same test execution.
For example,...