Newest Questions
24,197,222 questions
0
votes
0
answers
2
views
NiFi processor's data gets stuck between two processors
I have been seeing this problem increasingly now that the data gets stuck in between two different processors -- the data being as small as few KBs
what could be the cause of it? The ExecuteSQL ...
0
votes
0
answers
4
views
How to display a .gexv file on a website using sigma.js
so maybe this is the most easy question ever, but I'm reading the documentation for days now and I still don't have a clue.
I want to display a .gexf file stored on my server on the website that's on ...
0
votes
1
answer
9
views
Cannot start a ThreadPoolExecutor inside a threading.Thread function
In this example, Tkinter GUI starts ThreadPoolExecutor. But ThreadPoolExecutor is inside a threading.Thread function. The thread function says it's finished
before ThreadPoolExecutor has started ... ...
0
votes
0
answers
1
view
Wordpress assets loading. Uncaught TypeError: Failed to resolve module specifier
I hope you can help me with one, it's drivinig me crazy :(
I recently splitted a giant file called admin.js into many modules, using these two WordPress functions:
wp_register_script_module
...
1
vote
0
answers
7
views
Removing the need for ports on a production system
I have three docker containers, one is a web ui, one is the apis which produce results from database data, calculations etc and the other is to authorize users, where a bearer token is generated.
The ...
0
votes
0
answers
6
views
Is it guaranteed that the thread_id from pthread_threadid_np is never 0 on macOS?
It seems to be true but I cannot find the docs that explicitly says that. The man page says
The pthread_threadid_np() function stores the system-wide unique
integral
ID of thread in the location ...
0
votes
0
answers
4
views
Passing pipeline parameters to trigger Azure Data Factory
I'm currently running a pipeline in Azure Data Factory with a list of parameters, I wanted to ask if there was a way to push the parameters into the trigger parameters so when the pipeline is pushed ...
0
votes
0
answers
8
views
How can I controll a LCD2004 using a Pi Pico2W
I had my LCD2004 with an PCF8574(T) I2C working using a normal Pi Pico.
Since i want to use Wifi-Functionality with my project I swapped over to a Pi Pico2W but i can't get the LCD to work using the ...
1
vote
0
answers
8
views
Why doesn't readFile block on unix pipe in which no write has happened yet?
If in a terminal I enter
mkfifo /tmp/pipe
echo hello > /tmp/pipe
(which blocks) and in another I run the haskell program
main = readFile "/tmp/foobar" >>= putStr
then I see it ...
1
vote
0
answers
7
views
Polymorphic function in class and polymorphic instance: how to bind parameter types?
I have a class with a function with polymorphic parameter (a, b). I want to make an instance for this class so that its parameters should be the same a and b:
class MyClass r where
my_fun :: (a, b)...
0
votes
0
answers
8
views
VScode Stuck in Initializing virtual environments & not showing virtual environments
Problem started with Jupyter Notebook kernels not showing automatically while I was trying to work on sever.
I reinstalled python and Jupyter extensions, also trying different versions.
Nothing ...
0
votes
0
answers
20
views
swagger editor API
I'm using Swagger editor in the browser, https://editor.swagger.io/, where I can paste my specifications.
Now the question is: do they have an API so I can use to send a request with my specification?
0
votes
1
answer
13
views
Assign object to shape text that is currently selected
Powerpoint 365 VBA
Set sld = Application.ActiveWindow.View.Slide
Set Shp = sld.Shapes(2)
If Shp.TextFrame2.HasText Then
Txt = Replace(Shp.TextFrame2.TextRange.Text, " ", "+&...
-1
votes
0
answers
10
views
How to sort products by custom field in WooCommerce product collection block
I have vibe coded those functions to sort Upsells, Cross sells and Related products in WooCommerce by a custom field _ggcom_stage_date.
/**
* Tri unifié des produits liés, upsells et cross-sells
* ...
0
votes
0
answers
16
views
How to identify system/external dependencies of installed python packages
We're trying to offload checking if our python environment can install on our server to a GitHub action. What I would like to know is if there's a way of knowing which python packages in the ...