Joel Tio

Results 13 comments of Joel Tio

I had the same problem with `s/try-take!`: ``` (t/every 2000 #(do (println "hello") (s/try-take! (s/stream) 1000))) ``` The above code will print `hello` once, then hang. As in @gsnewmark's example,...

@kachayev My bad, I just tried it and it didn't work too. I can't remember what I was trying to do, but I know that after running the above code,...

I'm running on Mac Mojave 10.14.2, using Docker for Mac.

I doubt it's a IP address / port forwarding problem, I don't have any services running on port 80 other than the apache server in the docker container. When I...

Here's what I have: ``` $ docker exec -it 8f00d332f856 bash root@boincserver:~/project# ls apps cgi-bin gui_urls.xml py bin config.xml html reread_db boincserver.cronjob db_dump_spec.xml keys templates boincserver.httpd.conf db_revision plan_class_spec.xml upload boincserver.readme...

I managed to hack a solution, maybe it will help you find the root problem. I know that `/etc/apache2/` is where all the configuration files are stored by default by...

Here is the log for supervisor: ``` root@boincserver:/var/log/supervisor# cat start* addgroup: The GID `0' is already in use. addgroup: The GID `0' is already in use. addgroup: The GID `0'...

Here's what I get ``` $ stat -c '%g' /var/run/docker.sock stat: illegal option -- c usage: stat [-FlLnqrsx] [-f format] [-t timefmt] [file ...] ```

Yeah, looks like the equivalent for Mac is the `-f` option instead of `-c`. Not sure how to do it platform-independent though. ``` $ stat -f '%g' /var/run/docker.sock 20 ```...

I'm not sure what the right way is, but while waiting, I think the following workaround is better than making a symbolic link in the docker container. So, what I...