search
  • Sign In
  • Sign Up
Password reset successful

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

P粉743288436

P粉743288436

Follow
student

Follow 0
fans 0
integral 0
How do I get the parent directory in Python?

Could someone tell me how to get the parent directory of a path in Python in a cross platform way. E.g. C:\Program Files ---> C:\ and C:\ ---> C:\ If the directory doesn't have

2026-01-26 15:22:28Ask
Python
Creating temporary tables in SQL

I am trying to create a temporary table that selects only the data for a certain register_type. I wrote this query but it does not work: $ CREATE TABLE temp1 (Select egauge.dat

2026-01-06 20:43:05Ask
MySQL
What is the difference between HTTP_HOST and SERVER_NAME in PHP?

What is the difference between $_SERVER['HTTP_HOST'] and $_SERVER['SERVER_NAME'] in PHP? When would you consider using one over the other and why?

2026-01-05 22:21:40Ask
PHP
Duplicating a MySQL table, indices, and data

How do I copy or clone or duplicate the data, structure, and indices of a MySQL table to a new one? This is what I've found so far. This will copy the data and the structure, but n

2026-01-04 07:22:21Ask
MySQL
When to use static vs instantiated classes

PHP is my first programming language. I can't quite wrap my head around when to use static classes vs instantiated objects. I realize that you can duplicate and clone objects. Howev

2025-12-16 16:01:16Ask
PHP
Is it possible to change a list to a toolbar in responsive mode?

I have the following cards. nav has many items (I've left one here for brevity). <divclass="col-md-3"><divclass="card"><divclass="card-header"><h3class="card-title">title</h3>&lt

2024-04-02 16:09:27Ask
CSS3
Left join results in empty result

Am I using the correct connection method here? Trying to figure out where the problem is in the code. Try changing the inner, outer and right joins, just to try it out. SELECTusers.region,count(internal_profile_views.user_id)fromusersLeftJOINinternal_profile_viewsONusers.id=internal_profile_views.user_idANDusers.id=in

2024-04-02 00:27:45Ask
MySQL
Vue and Blazor for frontend

We have a project that requires creating a website for a university. The entire desin and vue parts are completed. But there was misunderstanding and lack of communication with our teacher, he wanted us to create the admin panel using .NETBlazor. For example, we have announcements section in our website and we need to populate this section with data from an admin panel created using Blazor. But is this possible? Can I run both projects in the same browser and the same port_Thanks for your opinion.

2024-03-27 10:44:39Ask
Vue.js
Does the ResizeObserver fire first when the page loads?

It seems that when I pass the node to ResizeObserver.observe() on the DOMContentLoaded event, it is called immediately. Is this considered normal behavior?

2024-03-25 20:48:53Ask
HTML
React Native custom TextInput does not respond to onChangeText event

I want to create and use a CustomTextInput in ReactNative. I have created it as per the code below but the onChangeText property in CustomTextInput is not working properly. Despite extensive research, I couldn't figure out the cause of the problem. What might I have missed? importReact,{useState}from'react';import{View,StyleSheet}from'react-native'

2023-09-21 22:59:27Ask
JavaScript