Max Kuznetsov
Max Kuznetsov
> Hi, Sorry about the excessively long delay to reply ! > > In order to create something which looks like an animation, this module keeps **printing** then **deleting** what...
> I'm not sure I understand your question. Can you please explain what you mean? For example I've rainbow animation with different text's width, so It takes different time to...
> Sure ! > > ```js > chalkAnimation.rainbow('Some loooooooooooooooong text'); // Start animation > await new Promise(r => setTimeout(r, 1000)); // Wait 1 second > console.log('Something else'); // Stop animation...
You have to round the mid number down manually
> hmm perhaps we could do something like > > ```python > def read_string(handle, address, byte=50, encoding='UTF-8', search_bytes=b'\x00'): > buff = read_bytes(handle, address, byte) > i = buff.find(search_bytes) > ......
> to read null-terminated strings Gotcha, I would suggest not to add an extra argument, since you need to redefine it every time you work with `UTF-16` strings, but to...
> > > to read null-terminated strings > > > > > > Gotcha, I would suggest not to add an extra argument, since you need to redefine it every...
> it's meant to read null-terminated strings which we don't know the length of, we could add another method for reading strings that we know the size of though something...