search
  • Sign In
  • Sign Up
Password reset successful

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

P粉482108310

P粉482108310

Follow
student

Follow 0
fans 0
integral 0
How to load a jar file at runtime [duplicate]

I was asked to build a java system that will have the ability to load new code (expansions) while running. How do I re-load a jar file while my code is runni

2026-01-17 10:43:08Ask
Java
go routine blocking the others one [duplicate]

The following code run forever instead of stopping one second after the beginning. The go routine with the infinite loop seems to prevent the other one from s

2026-01-11 10:43:07Ask
Python
How to Get True Size of MySQL Database?

I would like to know how much space does my MySQL database use, in order to select a web host. I found the command SHOW TABLE STATUS LIKE 'table_name' so when I do the query, I get s

2026-01-02 16:22:32Ask
MySQL
Meaning of numbers in "col-md-4"," col-xs-1", "col-lg-2" in Bootstrap

I am confused with the grid system in the new Bootstrap, particularly these classes: col-lg-* col-md-* col-xs-* (where * represents some number). Can anyone please explain the fo

2025-12-07 09:22:13Ask
CSS
Issues with Solidity to Javascript return types

First, to make it easier to understand the problem, I will only keep the functions that are more useful for understanding the problem. This code allows the creation of NFTs in an array, where the first NFT has an idToken of 0. When I click the "Get data from contract" button, I want to pass parameter 0 to the readContract(tokenid) JavaScript function to display the Power value, a uint8 (randomly generated, value from 0 to 100) HTML file. Unfortunately, I encountered a bug and I tried various ways to resolve it without success. Contracts and Java

2024-01-17 00:12:18Ask
JavaScript
How to concatenate multiple MySQL rows into one field?

Using MySQL I can do the following: SELECThobbiesFROMpeoples_hobbiesWHEREperson_id=5; My output: shoppingfishingcoding but I only want 1 row, 1 column: Expected output: shopping,fishing,coding The reason is that I am selecting multiple values ​​from multiple tables, And after all concatenation, I get much more rows than I want. I looked up a function on MySQLDoc and it doesn't look like CON

2023-08-28 11:10:23Ask
MySQL
Running MySQL in Docker and persisting data to my created directory [duplicate]

I'm trying to run MySQL in Docker and persist the data to a directory I created. I ran the following command: ``` docker run --name mysql-mac -p 3306:3306 -e MYSQL_ROOT_PASSWORD=my_strong_password -d mysql:latest -v /Users/alexeyzhulin/Projects/data/mysql:/var/

2023-07-24 23:47:05Ask
MySQL
How to create a circular border in CSS where x% is red and the rest is white, where x is a state variable in a JavaScript file?

I'm making a timer app that initially has a white surround around the remaining time in the timer. I want the ring surrounding the remaining time in the timer to gradually turn red, and then turn completely red when the timer runs out. {remainingTime.hours}:{remainingTime.minutes}:{remainingTime.seconds}. cou

2023-07-24 18:47:03Ask
CSS3