search
  • Sign In
  • Sign Up
Password reset successful

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

P粉517814372

P粉517814372

Follow
student

Follow 0
fans 0
integral 0
How to get the entire document HTML as a string?

Is there a way in JS to get the entire HTML within the html tags, as a string? document.documentElement.??

2026-01-23 15:22:08Ask
JavaScript
Setting a max character length in CSS

I am making responsive website for school and my question is: How do I set a max character length of the sentences (with CSS) on my website (like 75 characters) that when I have a v

2026-01-04 17:22:05Ask
CSS
Modifying list while iterating [duplicate]

l = range(100) for i in l: print i, print l.pop(0),

2025-12-30 20:22:19Ask
Python
React.js inline style best practices [closed]

I'm aware that you can specify styles within React classes, like this: const MyDiv = React.createClass({ render: function() { const style = { colo

2025-12-09 09:22:32Ask
CSS
What am I doing wrong when using getters to retrieve state data and display it in a component?

I'm very new to vuejs3 and vuex4. I'm trying to do something simple like a getter. Since it didn't work for me, I made a console.log to see if the results appear in the console. The result is this: CompulatedRefImpl{dep: undefined, _dirty: true, __v_isRef: true, effect: ReactiveEffect, _setter: f, ...}... I think I have to implement it in the calculation

2024-03-29 09:03:31Ask
Vue.js
Why isn't my code adding data to my json file?

I'm making a registration page but can't seem to understand why it's not working. EDIT: Updated code to remove userObject. Still can't get the code to actually post the data to my json file. New code: import{useState}from "react"; constSignup=()=>{const[formData,setFormData]=useState({email:"",passwo

2024-02-25 22:50:02Ask
React
How to test functional splitting in microservices

I have a function split into 3 microservices running using kubernetes. Based on the input of the first one, the second one performs the operation and automatically creates a kubernette to handle the final result. I want to do a test to check the whole process but I don't know how to do it. I think this might break some testing principles... Has anyone done something similar and offer some advice? greeting.

2024-02-04 10:58:15Ask
PHP
Spring batch job not starting in development environment

I'm using springspring-boot-starter-batch2.7.9 with mysqlDB as the data source. I have a strange problem, the batch job runs on my local but fails to start in the development environment (kubernetes) with the following exception: Exceptionwhilestartingjoborg.springframework.jdbc.UncategorizedSQLException:PreparedStatementC

2023-09-06 10:01:50Ask
MySQL
When the parent element sets min-height: 100%, the child element will not inherit the height.

I found a way to make a div container take up at least the full height of the page by setting min-height:100%;. However, when I add a nested div and set height:100%;, it does not extend to the height of the container. Is there any way to fix this problem? html,body{height:100%;margin:0;}#containment{min-height:100%;background:pink;}#containment-s

2023-08-21 23:25:12Ask
CSS3
Learn how to implement pagination or filtering functionality in Next.js

I'm looking for a solution to implement paging or filtering in my web application using traditional page routing methods. Do I need to use client side data fetching? When the query string changes, it will not cause the page content to be re-rendered. I don't want to use SSG to get the entire data and paginate it on the client side. Can you provide some advice or examples of how to achieve this effectively? There are currently limited resources on this topic and I would like to be able to handle dynamic data changes without affecting performance. Tried passing query string to getServerSideProps but it only gets it on refresh

2023-08-14 20:23:46Ask
React