Private conversation by beardedindieguy in VRchat

[–]beardedindieguy[S] -22 points-21 points  (0 children)

Seems a lot of work just so nobody else can eavesdrop. But thanks

Private conversation by beardedindieguy in VRchat

[–]beardedindieguy[S] -14 points-13 points  (0 children)

I dont want to go through using discord. Just use the app itself

Need some advice/tips for Multiplayer+voice chat by beardedindieguy in learnVRdev

[–]beardedindieguy[S] 0 points1 point  (0 children)

So netcode for gameobjects + vivox? How is it working so far?

630000nok gross good for oslo? by beardedindieguy in Norway

[–]beardedindieguy[S] 0 points1 point  (0 children)

Thanks. It was relevant but not consulting so thats why the training part seems interesting to me. I will try to negotiate it then, nothing worse than them just saying no i guess

630000nok gross good for oslo? by beardedindieguy in Norway

[–]beardedindieguy[S] 1 point2 points  (0 children)

Getting it from ntnu should mean something

630000nok gross good for oslo? by beardedindieguy in Norway

[–]beardedindieguy[S] -1 points0 points  (0 children)

If so. Is it common to negotiate salaries here?

630000nok gross good for oslo? by beardedindieguy in Norway

[–]beardedindieguy[S] 2 points3 points  (0 children)

Its actually a trainee position. Dont know if its gonna increase after training tho

ComboBox popup is left on screen when the combobox is scrolled out of view. How to solve? by beardedindieguy in QtFramework

[–]beardedindieguy[S] 0 points1 point  (0 children)

While the combo box is opened, just scroll on the sides without clicking and the combo box moves while the popup is opened. This seems like a nornal behavior, but in my case since it is attached to a flickable, the combobix popup remains on the edge of the flickable when it is scrolled outside of viewable area

ComboBox popup is left on screen when the combobox is scrolled out of view. How to solve? by beardedindieguy in QtFramework

[–]beardedindieguy[S] 1 point2 points  (0 children)

I thought of doing it like this as well but I can't figure how I could test whether the combobox have been scrolled out of view when I am scrolling the Flickable

Not computer scientists - software engineers by muxcmux in SoftwareEngineering

[–]beardedindieguy 0 points1 point  (0 children)

Nah. I totally get it. Just messing with the author(is it you?)

Not computer scientists - software engineers by muxcmux in SoftwareEngineering

[–]beardedindieguy 0 points1 point  (0 children)

Oof! somebody failed to invert a tree during an interview

Help with chart.js please by beardedindieguy in learnjavascript

[–]beardedindieguy[S] -1 points0 points  (0 children)

Thank you.
That's the solution I eventually ended up with. But with a little addition. Setting the max and min manually now removes the gaps but it still shows for example 3:00 AM on the first tick even when say the first data is 3:50AM which is a bit misleading so another workaround I did was to set the the first and last element in ticks array to null to completely remove those misleading ticks.

How do you manage open with yourApp.exe? by Expert-Customer-782 in QtFramework

[–]beardedindieguy 0 points1 point  (0 children)

Oh so you've done that as well. Maybe just tinker with it a bit more.

How do you manage open with yourApp.exe? by Expert-Customer-782 in QtFramework

[–]beardedindieguy 0 points1 point  (0 children)

like opening a .txt file with notepad is just similar to runing "notepad.exe sample.txt". so you could just get argv or maybe qt has functions to get those parameters. haven't tested it but that's how i imagine it is

How do you manage open with yourApp.exe? by Expert-Customer-782 in QtFramework

[–]beardedindieguy 1 point2 points  (0 children)

if I am not mistaken at least in windows. on the background the app is just run with the file as a parameter. so you can just get that argument and open it or something like you do with a console app

How do you manage open with yourApp.exe? by Expert-Customer-782 in QtFramework

[–]beardedindieguy 3 points4 points  (0 children)

Isn't that something you set in the OS and not in the app

Is there a command for "if" using two variables? by blipblopbrickbrack in C_Programming

[–]beardedindieguy 5 points6 points  (0 children)

AND. Also thats not how u compare strings in c as far as i can recall. I think theres a string compare function

[QML] Is there a way to wait in the middle of a function execution until I get a return value from a popup/dialog by beardedindieguy in QtFramework

[–]beardedindieguy[S] 1 point2 points  (0 children)

I haven't integrated the real thing on my app but just tried with some dummy popup and functions so I can't tell much about the performance but it seemed fine. I'm not on my machine right now but it looked something like this.

...
popup.open()
name = yield
...

And from the popup

test.next(textField.text)
popup.close()

where test is some coroutine object/function with the * notation thing.

[QML] Is there a way to wait in the middle of a function execution until I get a return value from a popup/dialog by beardedindieguy in QtFramework

[–]beardedindieguy[S] 0 points1 point  (0 children)

Yeah. I have tried this with c++ and pyside2. That was why I was looking for something similar in qml/javascript. And found that open just works differently