Joey
Joey
Looking at that myself my personal opinion is that it's debatable whether that's a security vulnerability or a feature but it is behaviour that should be documented (if symlinks are...
I don't think this is always an easy solve. ICU sometimes is the bridge rather than a side of it. When I'm using ICU I want something that I am...
Using extra hosts to bounce it back to local seems to help.
Thanks for the redirect! I'll follow the hot potato!
Realistically speaking AWS should be shunting this so good effort trying to fill in.
Some people pay AWS a lot but to get a local test set up that's good, quick and not pulling in some test AWS setup still having metred services is...
I'm not sure the problem can be solved well with a basic syntactical design. There are some core elements of the framework that could benefit review. It might not be...
Even pthread mutexes do have a syncronisation mechanism it turns out which you've not exposed, if you look at its signalling.
Example of something I'm up to on my fork: ``` // Note: Bool might not be enough. zend_bool handle_thread_tasks(thread_obj_t *thread) { while(1) { pthread_mutex_lock(&thread->lock); if(thread->status == JOINED) { pthread_mutex_unlock(&thread->lock); return...
Wait a minute. ```while (thread->status != JOINED || thread->tasks.size) {``` How do you still run tasks when the thread has gone? Something there I'm missing (have only looked at a...