public static float SAMPLE_RATE = 8000f;
public static void tone(int hz, int msecs)
throws LineUnavailableException
{
tone(hz, msecs, 5.0);
logger.info("tone");
}
public static void tone(int hz, int msecs, double vol)
throws LineUnavailableException
{
byte[] buf = new byte[1];
AudioFormat af =
new AudioFormat(
SAMPLE_RATE, // sampleRate
8, // sampleSizeInBits
1, // channels
true, // signed
false); // bigEndian
SourceDataLine sdl = AudioSystem.getSourceDataLine(af);
sdl.open(af);
sdl.start();
for (int i=0; i < msecs*8; i++) {
double angle = i / (SAMPLE_RATE / hz) * 2.0 * Math.PI;
buf[0] = (byte)(Math.sin(angle) * 127.0 * vol);
sdl.write(buf,0,1);
}
sdl.drain();
sdl.stop();
sdl.close();
}
Mixer.Info[] mixerInfos = AudioSystem.getMixerInfo();
00:51:59 [crit] 876464#876464: *1 stat() "/opt/tomcat/apache-tomcat-10.1.16/webapps/S-2/" failed (13: Permission denied), client: 45.1
server.port = 2023
# Configuration for MySQL Database
# spring.jpa.hibernate.ddl-auto=create
spring.jpa.hibernate.ddl-auto=update
spring.datasource.url = jdbc:mysql://localhost:3306/db_basic
# DIFFERENT USERS!!!
spring.datasource.username=db_user
spring.datasource.password=password
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.show-sql:true
keyForVersion = 0
# Output to a file named application.log.
logging.file.name=appli.log
Уточню. Я имел ввиду конкретно в телеге установка прокси зачем? ) Какую не ставлю ,хоть забугорные хоть наши в устройствах все равно мой родной ип, а через трекеры коротких ссылок смотрю вообще какойто третий, но стабильный.
Можно в десктопном варианте тг прятать ип как-то?