Newest Questions
24,177,170 questions
0
votes
0
answers
5
views
sed to copy citations, help removing quotation marks
I use a bash script to copy citations from Zotero to Obsidian.
I trigger the script via a hotkey, however, the sed command also works if you have it in a terminal, then copy the citation to the ...
-1
votes
0
answers
11
views
WebSocket connection silently drops on EC2 but works perfectly on local Mac - no on_close/on_error callbacks fired
Environment
EC2 instance: t3.small (2 vCPU, 2GB RAM), Amazon Linux 2023, ap-south-1 (Mumbai)
Local Mac M1/M2, macOS, 16GB RAM
Python 3.9 (AWS) / 3.12 (Mac)
WebSocket library: websocket-client (via ...
0
votes
0
answers
6
views
Can not get user role in hidden fields of Forminator form with php code
I'm trying to use the code below to retrieve the currently logged-in user's roles into a hidden field, Custom Value, in Forminator Form. However, after submitting the form, Submission only returns {...
Advice
0
votes
0
replies
8
views
Does the flip flop makes sense? Or it's just and educational thing?
I'm studying System Architectures, in particular the integrated circuits. The last circuit is the flip-flop D. If the clock is 1 either 0 the AND gives in output 0. I have read that works with the ...
-5
votes
0
answers
28
views
I want to learn c language from scratch. Any authentic sources recc? [closed]
I want to learn c language from authentic sources but as it says that there are so much false info on the internet about c. So i would like to know about any video format learning sources where I ...
0
votes
0
answers
22
views
Order of evaluation of lambda capture initializers [duplicate]
Consider the following program:
#include <iostream>
int f(int i) {
std::cout << i;
return i;
}
int main() {
[a=f(1), b=f(2)]{}();
}
It prints 12 (with all major c++ ...
Advice
0
votes
0
replies
5
views
Query Subreddit via anonymous API
I want to do some analytics over Subreddit. Reddit support rejected my request to use their API for this. Reddit bans for everything randomly, so it's not surprising.
I can use anonymous Reddit API ...
0
votes
0
answers
8
views
Compiling RPGLE program from IFS path using VScode , for a custom library list
I need to compile RPGLE code from IFS folder using VScode using a custom library list, Although VS code allows this compilation by simply right click on the source in the IFS folder and then choosing ...
0
votes
0
answers
9
views
Micro frontend using angular18 native federation module with Primeng 18
We have a microfrontend setup consisting of a host application (shell app) and one remote application. PrimeNG v18 and its required dependencies (PrimeIcons, PrimeFlex, Angular CDK) were installed and ...
-3
votes
1
answer
23
views
Chrome Extension Content Script Runs Too Early / Too Late [closed]
Can anyone help fix my chrome extension? It's not grabbing the information from the page correctly when I press submit. I don't know code and had someone from Fiverr create this.
Content.js:
(() => ...
0
votes
0
answers
13
views
Enable-BitLocker command throws error: Value does not fall within the expected range
I have a PowerShell script to enable BitLocker on a Windows 11 device and an error is thrown when calling the Enable-BitLocker command.
Error Message: Value does not fall within the expected range
The ...
1
vote
0
answers
12
views
Angular 21 signal forms: How to loop over an array of complex sub-objects?
Let's take this simple example: I have want to write an app that edits an objects that has a list of e.g. users as one property and a user edit component should be rendered for every user in the list.
...
-2
votes
0
answers
24
views
Escaping characters in user snippets, why is $ different? [closed]
In a code snippet, if you need to escape characters such as double quotes " or a backslash \, you need to escape it with a single backslash \. Why does the $ character need to be escaped with two ...
0
votes
0
answers
13
views
How can I customize the display of A, B, C headers in the AG Grid Formula feature?
I’m using the Formula feature in AG Grid Enterprise.
I have some columns such as a row drag column and an image/icon column that are not meant to be used in formulas.
However, AG Grid still ...
0
votes
0
answers
6
views
How to scroll down a page containing svg-pan-zoom using swipe
I have a page with a couple of SVG elements employing svg-pan-zoom, as well as text and images in the same page.
I have successfully used hammer.js to implement a pinch-zoom on the SVG elements.
On a ...