search
  • Sign In
  • Sign Up
Password reset successful

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

P粉799885311

P粉799885311

Follow
student

Follow 0
fans 0
integral 0
Using multiple versions of the same DLL

I've been tasked in creating a new module for an application, and so, I'm adding new DLLs to the project. This is all fine and well. However, in my DLLs I'd like to use a new versio

2026-01-10 13:01:16Ask
C++
What is the difference between venv, pyvenv, pyenv, virtualenv, virtualenvwrapper, pipenv, etc?

Python 3.3 includes in its standard library the new package venv. What does it do, and how does it differ from all the other packages that match the regex (py)?(v|virtual|pip)?env?

2026-01-03 19:22:11Ask
Python
How to map OO inheritence to a relational database scheme?

I have a canonical data model. Some fields are related to the pricing of a product. It inherits certain attributes from the product table. I want to model this inheritance in a MySQL

2026-01-01 17:22:21Ask
MySQL
CSS only method to dynamically modify image src on click without using JavaScript

I need to change the src of an image on mouse click using only css like img:active{}

2024-04-06 19:25:49Ask
CSS3
PHP code stops interpreting from ">" character

I just migrated all my WordPress files to another server (share). I imported the database and changed the old domain name. When I enter the wp-login page, it displays the PHP code instead of the login form interface: `element.*Default'LogIn'.*@paramstring$messageOptional.Messagetodisplayinheader.Defaultempty.*@paramWP_Error$wp_errorO

2024-03-31 09:02:01Ask
PHP
Is there a way to run Google Lighthouse with php + bash?

I try to use Google-Lighthouse on my website. I wrote a php file that calls a bash script to run lighthouse-cli. run_bash.php:<?phpif(isset($_GET['subject2'])){$text=$_GET['subject2'];$text=escapeshellarg($text);$command='./rex.sh2> &

2024-03-28 10:21:11Ask
PHP
PHP CURLOPT_WRITEFUNCTION returns header information to the body

When I include curl_setopt($ch,CURLOPT_WRITEFUNCTION,'curl_write_flush') I insert the header into $body. But without CURLOPT_WRITEFUNCTION everything works fine. What can I do to prevent headers from being inserted into $body? <?php$ch=curl_init();curl_setopt($ch,CURLOPT_URL,"https://stackov

2024-03-19 19:20:53Ask
PHP
How to avoid HTML iframe causing page refresh

Suppose I have the following code: <h1><h1><divclass="content">//This iframe does not occupy the entire page <iframesrc="/fileB.html"></iframe></div> Now, in `<divclass="content">` displays from f

2023-09-15 22:35:01Ask
HTML
Upload a CSV file containing the URLs from the HTML page and use Flask to read the URLs you want to crawl

I currently need to make a web-based system that can upload a CSV file containing a list of URLs. After uploading, the system will read the URL line by line and will be used for the next step of crawling. Here, crawling requires logging into the website before crawling. I already have the source code for the login website. However, the problem is that I want to connect an html page named "upload_page.html" with a flask file named "upload_csv.py". Where should the source code for login and scraping be placed in the flask file? upload_page.html<d

2023-09-07 11:22:35Ask
HTML
rtk query without useEffect

Using RTK queries, do we have to use effects to run the query on the mount? ReactQuery has no effect running queries while mounted, so wondering if there is similar behavior? constComponent=({id})=>{const[postCheckApplication,{data}]=usePostCheckApplicationMutation();useEffect(()=>{postCheckApplication(

2023-09-01 12:49:13Ask
React