Newest Questions
24,150,626 questions
-1
votes
0
answers
19
views
Automatically enclosing sections of unrelated elements in <div> tags
I'm trying to create a script that will enclose each chapter of writing in a div element, so that I can automate tabination on posts without having to manually implement it each time. Take something ...
-2
votes
0
answers
18
views
how do i use VLOOKUP in Google Sheets? [closed]
I am new to Google Sheets and trying to learn how to use the VLOOKUP function.
I have a table with employee IDs in one column and employee names in another column. I would like to search for an ...
0
votes
0
answers
13
views
ProtoCentral AFE4490 Pulse Oximeter Breakout Kit: No Red / IR LED Illumination despite using multiple probes and code examples (Arduino Uno/Nano R4)
I am having trouble activating the Red LED or IR LED on my ProtoCentral AFE4490 Pulse Oximeter kit. I have performed extensive troubleshooting steps but cannot get the pulse oximeter LED's to ...
Advice
0
votes
0
replies
19
views
How To Manage Infrastructure And Domain Layer Properly In Clean Architecture
I am learning about Clean Architecture. I know there are different interpretations but I am trying to follow the original one by Uncle Bob.
I am implementing some basic logic in my infrastructure ...
1
vote
0
answers
25
views
I have issues jumping to my kernel in my bootloader
I'm having trouble jumping to my kernel in my bootlloader, i read the second sector of the disk and loaded it at 0x8000 after setting up the GDT i far jumped into Protected Mode, then i set up the ...
Advice
1
vote
5
replies
36
views
Why doesn't it use all available RAM?
I understand that Node.js applications are often scaled using multiple processes, containers, or servers.
However, I'm trying to understand the reasoning behind the default V8 heap limits.
For example,...
-1
votes
0
answers
25
views
Im trying to create a new yml file in my config
Im working on making a Config file for my plugin and to make my test file to make sure it works but i cant seem to use getDataFolder from what i found its still a thing in docs. Here is what I have ...
1
vote
0
answers
26
views
Securely storing error messages displayed to the application user in a database
Ultimately, I'd like to reduce the redundancy of identical error messages and even prevent potential DDoS attacks. I've developed the following method in the Spring Boot application. The goal is for ...
-3
votes
1
answer
56
views
What is XOR RAX, RAX MOV RDI, [PTR] REP STOSQ [closed]
I was reading a story and part of it was
XOR RAX, RAX
MOV RDI, [PTR]
REP STOSQ
I did not understand it. Please can you help me. I asked google, but it was useless and I need to know. It could be a ...
0
votes
1
answer
38
views
Wordpress / php / shortcode - remove hyphen from the output
The problem is when the topic has a space I need to include the hyphen to create a corresponding link that goes to that topic - how do I remove the hyphen from the output text but keep it in the url.
...
-4
votes
1
answer
36
views
Handle Cloudflare Turnstile on Inglatan Website
from seleniumbase import Driver
import time
driver = Driver(uc=True)
url = "https://ingatlan.com/35386626"
driver.uc_open_with_reconnect(url, 4)
time.sleep(15)
driver.uc_gui_click_captcha()
...
-3
votes
1
answer
86
views
Why does my Python function get rejected by register command?
I am using PySpigot to build a plugin for a Minecraft server, specifically a staff manager. But I came across this error:
[16:46:33 INFO]: moha_ali250 issued server command: /pyspigot reload ...
-3
votes
1
answer
44
views
SSH: connect to host github.com port 22: Connection timed out when pushing to GitHub [closed]
Issue Screenshot
I'm trying to push to GitHub using SSH, but I get the following error:
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
I ...
Best practices
0
votes
3
replies
57
views
How do I generate random words from two different lists and combine them into one search?
I haven't been able to find the information for this specific issue (only random word generators and unscramblers). I'm mainly looking for best practices related to the problem.
I want to generate ...
Tooling
0
votes
0
replies
21
views
How to watch files in Go with debouncing and glob pattern support?
When using fsnotify directly in Go, saving a single file triggers 4 to 5 raw events per save. For example saving a file in VSCode produces WRITE, CHMOD, WRITE, RENAME and CREATE events all from one ...