All Questions

19771 questions


1 answers
434 views
0
Some data is not registered in DB

I added data to sqlite using sqlalchemy.Only some data (in this case, password_hash) is not added and becomes null.I'm reviewing it myself, but I can't find any mistakes.Please point out any mistakes ...

1 years ago

1 answers
214 views
0
What is the purpose of using w in lines 4 to 6 of the code?

def median(x,y,z): print(x,y,z) if x>y: w = x x = y y=w print(x,y,z) if z<x: return x if z<y: return z returnyassert median(3,1,2) == 2

1 years ago

1 answers
291 views
0
MySql update does not use index

The MySql command below does not use the index in update.In where, we make decisions in the order of column FlagSer and PriceUpdateTimeSer.The index fflag_price_idx は is the composite index of the col...

1 years ago

1 answers
430 views
0
Index is out of range.A non-negative value must be less than the size of the collection.

After implementing the following code, the error started to follow the title.I couldn't solve the problem even after looking into it, so I'll ask you a question.I look forward to hearing from anyone I...

c#
1 years ago

1 answers
408 views
0
Information on how to display images obtained in the presense.

Use the Spresense camera board.When retrieving images, how to display them on an external monitor instead of an LCD Do you have any?For example, you can connect with bluetooth.You can connect to the m...

1 years ago

1 answers
272 views
0
Python while list 1 and list 2 are incomprehensible.

class solution:defaultTwoLists(self, list1: Optional [ListNode], list2: Optional [ListNode] - > Optional [ListNode]: cur=dummy=ListNode() while list1 and list2: if list1.val<list2.val: cur....

1 years ago

1 answers
295 views
0
Array encountered an error during Java personal exercises, but I don't know how to fix it.

The top is the class for the main function (error) and The classes below are for reference types.I want to upload the captured image here, but it's not going up well, so if I were to write it,Drinks =...

1 years ago

1 answers
265 views
0
Cannot Bulk Rename php in VSCODE Edit

I use VSCODE to write the php code.I'm going to rename a variable or function.Many sites say Press F2, but When I actually press F2, there is no response.The variable has a cursor and the variable is ...

1 years ago

1 answers
248 views
0
Please tell me how to write the required conditions for entering numbers and kanji in regular expressions.

To prevent missing numbers in the street number when users enter addressesPlease tell me how to write the required conditions for entering numbers and kanji in regular expressions.I tried using the co...

1 years ago

1 answers
258 views
0
SDL2 on Debian

I would like to use SDL2, but for some reason the window does not appear.As far as the log shows, the program seems to be working.However, the window does not appear.If you know the solution, please t...

1 years ago
« - 15 - »

© 2024 OneMinuteCode. All rights reserved.