search
  • Sign In
  • Sign Up
Password reset successful

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

P粉896751037

P粉896751037

Follow
student

Follow 0
fans 0
integral 0
How to do fade-in and fade-out with JavaScript and CSS

I want to make an HTML div tag fade in and fade out. I have some code that fades out, but when I fade in, the opacity of the div stays at 0.1 and doesn't increase. Fade

2026-01-16 11:43:12Ask
CSS
How big can a MySQL database get before performance starts to degrade

At what point does a MySQL database start to lose performance? Does physical database size matter? Do number of records matter? Is any performance degradation linear or exponential

2026-01-08 22:44:13Ask
MySQL
Python list in SQL query as parameter [duplicate]

I have a Python list, say l = [1,5,8] I want to write a SQL query to get the data for all the elements of the list, say select name from students where id =

2026-01-01 14:43:13Ask
MySQL
Prepend line to beginning of a file

I can do this using a separate file, but how do I append a line to the beginning of a file? f=open('log.txt','a') f.seek(0) #get to the first position f.write("text") f.close() Th

2025-12-28 13:22:26Ask
Python
How do I execute PHP that is stored in a MySQL database?

I'm trying to write a page that calls PHP that's stored in a MySQL database. The page that is stored in the MySQL database contains PHP (and HTML) code which I want to run on page lo

2025-12-23 10:22:13Ask
MySQL
getElementsByClassName() doesn't work in old Internet Explorers like IE6, IE7, IE8

The following code: var borderTds = document.getElementsByClassName('leftborder'); gives me an error message in Internet Explorer 6, 7 and 8: Object does not support this met

2025-12-12 21:01:29Ask
JavaScript
Google Sheets code: Resolving permission issues and data placement errors

I'm writing my first code using Google Script. I'm having a problem with my code, it doesn't have the required permissions to access Google Sheets. When trying to execute the code I get the error "Exception: You do not have permission to call SpreadsheetApp.openById". This code is designed to modify and retrieve data from a Google Sheets spreadsheet. In addition to the permissions issue, there is a specific behavior in the code that needs to be addressed. This code is intended to transfer information to a specific row in a GoogleSheets spreadsheet, but is currently transferring data to the spreadsheet

2024-04-03 09:26:47Ask
JavaScript
Is it possible to use :nth-child() or :nth-of-type() with any selector?

Is there a way to select the nth child element that matches (or doesn't match) an arbitrary selector? For example, I want to select every odd table row, but in a subset of rows: table.myClasstr.row:nth-child(odd){...}<tableclass="myClass"><tr><td>Row< trclass="row"><!--Iwantthis--

2023-10-20 17:04:56Ask
CSS3
Rails: Truncate HTML tag text while preserving link text during database column truncation

I have a database column called comment that stores comments containing HTML tags. To shorten large texts and display them completely in a popup window, I used the truncate(comment,length:50,escape:false) function. Let us consider two examples: Example 1: The comment column contains the following plain text with HTML tags. By using escape:false, the HTML tags are not truncated and the text is displayed correctly, including any formatting, such as bold: <str

2023-09-12 19:18:11Ask
HTML
Place interactive markers on images using React

please help. I have an image like the one below that is displayed on the home page (a larger image). Note that the "FORGE" house has a white and blue marker with a black arrow in the middle. The same goes for "rental" homes. Each of these markers will act as an interactive button. Here's the expected interaction behavior: On hover, the blue background will expand to reveal the text "Forge" or "Rentals". When clicked, it will direct the user to the appropriate "Forge" or "Rentals" page. Also want it to be responsive if and when the screen resizes,

2023-09-08 21:25:41Ask
React