search
  • Sign In
  • Sign Up
Password reset successful

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

P粉494151941

P粉494151941

Follow
student

Follow 0
fans 0
integral 0
Getting a list of all subdirectories in the current directory

Is there a way to return a list of all the subdirectories in the current directory in Python? I know you can do this with files, but I need to get the list of directories instead.

2026-01-19 14:43:05Ask
Python
Difference between null and empty ("") Java String

What is the difference between null and the "" (empty string)? I have written some simple code: String a = ""; String b = null; System.out.println(a == b); // false System.out.p

2026-01-14 19:43:12Ask
Java
How does delete[] "know" the size of the operand array?

Foo* set = new Foo[100]; // ... delete [] set; You don't pass the array's boundaries to delete[]. But where is that information stored? Is it standardised?

2026-01-01 16:22:15Ask
C++
What is the Big O performance of maps in golang?

The "Map types" section of the go language specification describes the interface and general usage of map types and the "Go maps in action" post on The Go Blog casually mentions ha

2025-12-23 10:01:13Ask
Python
Adding foreign key columns to a MySQL table: step-by-step guide

I have a table named payment_request in MySQL DESCRIBEpayment_request giving the following output, orderbook table is provided below, I want to add the id from the payment_request table in the orderbook as a foreign key with the name payment_request_id after the id column (second position). What is the SQL that runs MySQL?

2023-10-29 18:54:01Ask
MySQL
Understand what is the meaning of "to_route('route_name')" method in Laravel?

I saw this in this tutorial: returnto_route('route_name'); does to_route('route_name') mean the same as redirect()->route('route_name)? I tried to find an explanation in the Laravel documentation but didn't find any useful information.

2023-09-15 15:54:28Ask
PHP
How to check within a given date range

I have two different arrays: accommodation:[{id:1,name:"SenatorHotelFnideq",address:"RoutedeCeuta,93100Fnidek,Morocco",checkin:"September1",fullCheckinDate:"2021-09-01",checkout: &q

2023-09-07 20:25:21Ask
Vue.js
The purpose and application of hash (#) in URL

I'm wondering if there are any other uses for hashes besides being an anchor in a URL? I read about getting the full URL including the hashed query string here. What is the client's status information? please help.

2023-08-22 16:15:06Ask
HTML
How do JavaScript closures work?

How do you explain closures to someone who understands the concept of JavaScript closures (e.g. functions, variables, etc.), but not the closures themselves? I've looked at the Scheme example given on Wikipedia, but unfortunately it didn't help.

2023-08-22 10:16:45Ask
JavaScript