@Fox The first place I noticed the problem was when I added a visual to the interface. I added a text link to the interface from the 'textlink' section in the open blocks and inserted an image into it. My aim was to have no text inside and only redirect to a link when the image is clicked. However, no matter how much I removed the predefined "New Link" text, whenever I made an addition or deletion to the interface, it would reappear. To solve this issue, I set the font-size of the text link to 0 using CSS, which prevented the "New Link" text from appearing. The problem I'm talking about is probably similar to what I experienced with the text link. The default values assigned by the system, even if you change them, revert back to the values defined by the system when something new is added to the interface or when a setting is changed (for example, background color or deleting a button). Currently, to overcome this issue, I am constantly keeping a backup of the HTML. Whenever I make a new change, I copy the content from the backup, and this is how I'm trying to deal with it, but it's clear there is a problem. Hopefully, it will be resolved soon.
Threads bug
-
I have 2 scripts created - one to check proxies can access a site (writes them to file), and another to use these proxies (reads from this file)
The first script runs fine, I run on 10 threads. When 1 thread ends, it creates a new thread and continues until the file is empty. As expected.
However the second script runs X threads which is a random number between Y and Z. In this case, when 1 ends another thread is not created. Changing this to a fixed integer fixes the problem.
I assume this is just a small bug that could be easily fixed, as ideally I would like to have a different num of threads on each run (for time or resource balancing)
BAS 21.7.2
Chrome version 68.0.3440.106 -
@tombarkley said in Threads bug:
I have 2 scripts created - one to check proxies can access a site (writes them to file), and another to use these proxies (reads from this file)
The first script runs fine, I run on 10 threads. When 1 thread ends, it creates a new thread and continues until the file is empty. As expected.
However the second script runs X threads which is a random number between Y and Z. In this case, when 1 ends another thread is not created. Changing this to a fixed integer fixes the problem.
I assume this is just a small bug that could be easily fixed, as ideally I would like to have a different num of threads on each run (for time or resource balancing)
BAS 21.7.2
Chrome version 68.0.3440.106According to the description, you can guess for a long time. Send a script, I will look.