All Questions

19771 questions


1 answers
317 views
0
Image not displayed even after getting URL contents with iOS shortcut

This time, I am thinking of connecting to the web server that I installed myself through iOS shortcut and sending the file by POST.Before that, I made and tested a very simple HTML, but only images we...

1 years ago

0 answers
420 views
0
It's an opencvc++ question I'm trying to mark it according to the moving video, but the video doesn't play

int main() { VideoCapture capture; capture.open(pipoball.avi); CV_Assert(capture.isOpened()); double frame_rate = capture.get(CAP_PROP_FPS); int delay = 1000 / frame_rate; Mat frame; int nofrm = 0; Po...

1 years ago

1 answers
344 views
0
I don't know why the number of elements changes when the type is converted to dtype view

I don't know why the number of elements changes when the type is converted to numpy type view arr = np.zeros(2, dtype=np.uint16)arrarray([0, 0], dtype=np.uint16)arr.view(np.uint8)array([0, 0, 0, 0], d...

1 years ago

1 answers
359 views
0
I set up mfa authentication with awscli, but it doesn't work.

I want to be able to execute the command after mfa authentication using aws cli in the local environment.Below is the configuration I tried.cat~/.aws/credentials [default]aws_access_key_id = YOUR_ACCE...

1 years ago

1 answers
376 views
0
About Multiple Checkboxes on the Same Page

We are creating a site using html.Place multiple check boxes in the table of the application form on the pageI would like to be able to select all for each item, but Currently, all check boxes for all...

1 years ago

1 answers
293 views
0
What is an Event Listener?

What does event listener mean in C++?When I read an SDK document, the following sentence appears, and what is the listener class?I don't know for sure when I search for it, so I'm wondering if the key...

c++
1 years ago

1 answers
373 views
0
To distribute the exe file including the Firebase private key

When implementing Firebase in Python, I think we will use the json file as a private key as follows:If you decide to exe and distribute the Python file, you will probably end up distributing the json ...

1 years ago

1 answers
349 views
0
Please let me know if you have any difficulties with the wasm memory management method.

Thank you for your help.I'm studying wasm based on a book called Hands-on WebAssembly, and I hear that wasm's memory management uses JavaScript's ArrayBuffer, so I can't use the malloc function of the...

1 years ago

1 answers
281 views
0
Error building Rails environment: ActiveRecord::DatabaseConfiguration::InvalidConfigurationError

This error occurs when creating rails db:create when building rails environment with AWScloud 9.I would appreciate it if you could tell me how to solve this problem.error codeec2-user:~/environment/Ra...

1 years ago

1 answers
324 views
0
I don't know what it is, but I'm curious about this. To add additional variables to an already defined function.

from shapely.geometry import Pointdef somefunc(lst): return [Point(x) for x in lst]if __name__ == __main__: xy = [(x, x) for x in range(1, 10)] print(somefunc(xy)) There is a need to add a count varia...

1 years ago
« - 80 - »

© 2024 OneMinuteCode. All rights reserved.