search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

P粉148782096

P粉148782096

Follow
student

Follow 0
fans 0
integral 0
How to get the Cartesian product of multiple lists

How can I get the Cartesian product (every possible combination of values) from a group of lists? For example, given somelists = [ [1, 2, 3], ['a', 'b'], [4, 5] ] How do I

2026-01-12 09:22:22Ask
Python
How to use django models with foreign keys in different DBs?

I have 2 models for 2 different databases: Databases were created manually but it should change nothing. class LinkModel(models.Model): # in 'urls' database id = models.AutoFi

2025-12-30 11:01:11Ask
MySQL
jquery IE Fadein and Fadeout Opacity

I am getting this weird problem in IE with a CSS Overlay I am applying for a lightbox. Basically, I use fadein and fadeout for jquery - the problem is that everything works fine EXCE

2025-12-29 22:43:11Ask
CSS
Oracle Differences between NVL and Coalesce

Are there non obvious differences between NVL and Coalesce in Oracle? The obvious differences are that coalesce will return the first non null item in its parameter list whereas nvl

2025-12-26 17:01:22Ask
MySQL
PHP inserting multiple checkbox AND textbox arrays into MySQL Database

I'm having trouble with the array results in my php. My first problem is this : It shows everything even if the checkbox isn't checked. My second problem is that it won't insert t

2025-12-25 12:22:20Ask
PHP
How to use the Qt's PIMPL idiom?

PIMPL stands for Pointer to IMPLementation. The implementation stands for "implementation detail": something that the users of the class need not to be concerned with. Qt's own clas

2025-12-11 09:43:12Ask
C++
Listen for key press in .NET console app

How can I continue to run my console application until a key press (like Esc is pressed?) I'm assuming its wrapped around a while loop. I don't like ReadKey as it blocks operation a

2025-12-10 14:43:17Ask
C++
Check if all elements in a list are equal

I need a function which takes in a list and outputs True if all elements in the input list evaluate as equal to each other using the standard equality operator and False otherwise. I

2025-12-02 19:22:21Ask
Python
New entries only: Update recently added fields

I'm trying to find a way to be able to update the unit code for any new unit product, but keep the original unit code for unit products that have already been created. That is, if the unit codes change between the topics offered, I want the unit codes to reflect the exact codes at the time the unit course was created. This is my table CREATETABLEUnits(UnitsIDINT(10)AUTO_INCREMENT,UnitsNameVARCHAR(255)NOTNULL,UnitsCodeVARCHAR(20)NOTNUL

2024-04-02 22:48:20Ask
MySQL
A connection interruption was encountered while executing a specific query

I'm getting a 2013LostConnectiontoMySQLserver message during a query to MySQL hosted on an AWS instance. The query below is the only one that causes this error (other queries run fine), and this query runs without issue on a Synology Docker container running MySQL. The only unique thing I found is that this query uses a CTE while other successfully running queries do not. AWSMySQL is 8.0.23 and NASDockerMySQL is 8.0.28. I have

2024-03-22 10:12:35Ask
MySQL