search
  • Sign In
  • Sign Up
Password reset successful

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

P粉654894952

P粉654894952

Follow
student

Follow 0
fans 0
integral 0
Detecting an undefined object property

How do I check if an object property in JavaScript is undefined?

2025-12-31 17:01:06Ask
JavaScript
Is string::c_str() no longer null terminated in C++11? [duplicate]

In C++11 basic_string::c_str is defined to be exactly the same as basic_string::data, which is in turn defined to be exactly the same as *(begin() + n) and *(

2025-12-27 15:01:06Ask
C++
Deprecated: Implicit conversion from float xx.xxxx to int loses precision excel_reader2.php line 922

OS: Windows 11 PHP version 8.1.6 Error message: Deprecated: Implicit conversion from float65.03846153846153 to int loses precision in C:\xampp\htdocs\sati\import\excel_reader2.php line 922 publicfunction__construct($file ='',$store_extended_info=true,$outputEncoding=''

2024-01-04 12:03:28Ask
PHP
BeautifulSoup ingests all data, but .findAll() only returns links to one parent

I'm trying to scrape a website using BeautifulSoup in Python. All data is ingested, including all links I try to access. However, when I use the .findAll() function, it only returns part of the link I'm looking for. That is to say, only the link /html/body/div[1]/div/div[2]/div/div[2]/div[1] in the following xpath is returned. This will ignore the link /html/body/div in [1]/div/div[2]/div/di

2023-09-14 12:14:43Ask
HTML
Display current wallet balance of Tera Wallet on Elementor page using HTML and JavaScript

I have implemented TeraWallet on my WordPress site which displays the current balance in a specific text element on one page. Now I want to retrieve the current balance text and display it in a specific text element on another page created using Elementor using HTML and JavaScript. On the page showing the wallet balance, the HTML structure is as follows: <divclass="woo-wallet-content"><divclass=&quo

2023-09-11 10:03:37Ask
HTML
Problem: Javascript's change function is not valid

I'm having trouble changing text translation using JavaScript. This is the html code document.getElementById('slider-en1').style.visibility='hidden';document.getElementById('slider-id1').style.visibility='visible';functionchangeFunc(){varselectBox=doc

2023-09-06 00:04:57Ask
JavaScript
php PDO replace anonymous parameter ('?') in query with editable value

I'd like a way to show what a SQL query looks like when replacing anonymous parameters (?) with actual parameters. This is for readability purposes and debugging only and will not be used as an actual query. I found this function works in most cases: returnarray_reduce($this->bindValues,function($sql,$binding){returnpreg_replace('/\?/',is_numeric($binding)?$binding:'&quo

2023-09-02 11:38:14Ask
PHP
Is it wrong to place <script> tag after </body> tag?

How wrong is it to put the script tag after the closing body tag (&lt;/body&gt;)? &lt;html&gt;....&lt;body&gt;....&lt;/body&gt;&lt;scripttype="text/javascript"src="theJs.js"

2023-08-21 23:56:17Ask
HTML