Contents:
Why hackintosh when you can pearintosh?
Is it question relate to linux?
does anyone know how i can tell mpv how to find these subtitles?
U aren’t even mentioning the language, expecting people to guess it?
Why hackintosh when you can pearintosh?
Is it question relate to linux?
does anyone know how i can tell mpv how to find these subtitles?
U aren’t even mentioning the language, expecting people to guess it?
Elvis Presley 2022-07-29 05:24:46
swift_110 2022-07-29 05:24:25
Yeah I’m just done with debian
How come? It kill you?
Elvis Presley 2022-07-29 05:24:56
Or too stable?
swift_110 2022-07-29 05:25:09
Elvis Presley 2022-07-29 05:24:56
Or too stable?
Lol no just went something else
Elvis Presley 2022-07-29 05:25:21
swift_110 2022-07-29 05:25:09
Lol no just went something else
Oh okay. Have fun
swift_110 2022-07-29 05:25:48
Elvis Presley 2022-07-29 05:25:21
Oh okay. Have fun
https://pearos.xyz/
pearOS – Official Website – pearos.xyz
pearOS is a linux distribution that aims for UI and UX, offering a mac like feeling, now even on older PCs. Why hackintosh when you can pearintosh? Try it now, it’s free!
pearOS is a linux distribution that aims for UI and UX, offering a mac like feeling, now even on older PCs. Why hackintosh when you can pearintosh? Try it now, it’s free!
Elvis Presley 2022-07-29 05:26:48
swift_110 2022-07-29 05:25:48
https://pearos.xyz/
You should try silverblue
swift_110 2022-07-29 05:27:17
Elvis Presley 2022-07-29 05:26:48
You should try silverblue
No thanks
Noarch 2022-07-29 06:24:22
Guys, how to use the toDouble function to convert string text to double to hold more than 13 after a decimal point
Noarch 2022-07-29 06:28:06
more than 13 numbers
Idel_Gataullin 2022-07-29 06:28:54
Noarch 2022-07-29 06:24:22
Guys, how to use the toDouble function to convert string text to double to hold more than 13 after a decimal point
Is it question relate to linux?
Noarch 2022-07-29 06:29:41
Bro
Skyking469 2022-07-29 06:32:50
Noarch 2022-07-29 06:29:41
Bro
U aren’t even mentioning the language, expecting people to guess it?
Noarch 2022-07-29 06:33:03
c++
Noarch 2022-07-29 06:35:56
qt+c++
Noarch 2022-07-29 06:51:33
I have searched the problem on google, but still don’t solve it
Idel_Gataullin 2022-07-29 06:52:28
Noarch 2022-07-29 06:51:33
I have searched the problem on google, but still don’t solve it
And this is linux chat. It’s not c++ chat
Noarch 2022-07-29 06:55:02
Skyking469 2022-07-29 06:32:50
U aren’t even mentioning the language, expecting people to guess it?
Bro , Does it possible to hold more than 13 precision numbers
Idel_Gataullin 2022-07-29 06:56:43
Noarch 2022-07-29 06:55:02
Bro , Does it possible to hold more than 13 precision numbers
Convert your number to string
smol_mazunki 2022-07-29 06:57:12

does anyone know how i can tell mpv how to find these subtitles? i would expect mpv –sub-file-paths to work if i specified the full path to where English.srt is located, but it doesn’t
smol_mazunki 2022-07-29 06:57:37
it seems to only work if i mpv –sub-file=Subs/Episode_001/English.srt
smol_mazunki 2022-07-29 06:58:17
ideally i’d just want to do something like mpv –sub-file-paths=’Subs/%p’ episode_001.mp4
smol_mazunki 2022-07-29 07:00:05
Noarch 2022-07-29 06:24:22
Guys, how to use the toDouble function to convert string text to double to hold more than 13 after a decimal point
in c++ the limit of a double fp is 15 decimal digits
Noarch 2022-07-29 07:00:14
Idel_Gataullin 2022-07-29 06:56:43
Convert your number to string
I use the text() method getting the number from the QLineEdit, then convert it to double.
smol_mazunki 2022-07-29 07:00:51
use a bigdecimal (you’d have to implement it) to achieve something like that
Idel_Gataullin 2022-07-29 07:00:57
Noarch 2022-07-29 07:00:14
I use the text() method getting the number from the QLineEdit, then convert it to double.
Again it’s off linux topic
smol_mazunki 2022-07-29 07:01:00
better yet, tell us what your goal with this precision is
smol_mazunki 2022-07-29 07:01:06
Idel_Gataullin 2022-07-29 07:00:57
Again it’s off linux topic
it’s fine
Noarch 2022-07-29 07:05:47
smol_mazunki 2022-07-29 07:00:05
in c++ the limit of a double fp is 15 decimal digits
but i only get 13 fp after use toDouble funcion
smol_mazunki 2022-07-29 07:06:07
Noarch 2022-07-29 07:05:47
but i only get 13 fp after use toDouble funcion
in order to understand why, you should learn how ieee754 works
smol_mazunki 2022-07-29 07:06:23
tldr there’s more precision with smaller numbers
Noarch 2022-07-29 07:09:05
when i output the number ,using the QString::number(double,’f’,15), it can hold 15 fp.
Noarch 2022-07-29 07:09:59
Thanks bro
smol_mazunki 2022-07-29 07:10:05
Noarch 2022-07-29 07:09:05
when i output the number ,using the QString::number(double,’f’,15), it can hold 15 fp.
it might be using long double
smol_mazunki 2022-07-29 07:10:19
which supports up to 19.26 decimal points
smol_mazunki 2022-07-29 07:10:43
regardless, on a more important note: why do you need precision?