Skip to content

Blog

25-07-31 - Today I Learned...

A really important tool to use, especially when you work on bigger projects with multiple different functionality, write down each single small step that the flow of the program does.

Also always directly test each functionality block so you don't end up knowing where the bug lies.

See also General Programming Rules


To force Dropbox to sync you can in the app click on pause sync and then resume sync. This can solve the problem that dropbox is not syncing your files properly.


After I stepped away 4-5 hours from the project I just had one last look and solved the problem that took me 2 hours before.

25-07-17 - Today I Learned...

Whe you work with classes and you create instances in the Create operation you need to restart the patch to see if the creation of the instances worked.


In OOP in VVVV the properties taht you create in the object don't have to come out of the pad where you create the property. You can reuse the pad in another part.

25-07-15 - Today I Learned...

When you want do reduce the amount of digits after the dot in a decimal value we can use the round(val,amountDigits) function.