Darius Juodokas

Results 21 comments of Darius Juodokas

Just an idea... what about creating _lock_ files (hidden, of course) in build dir, right next to the files built? And if the _lock_ is missing - warn user that...

I can second that. I've read in previous issues that ZM_BASE_URL is deprecated, but the idea is sound. I also tried injecting a tag, but that didn't help ``` sub_filter...

Another probably related issue: some URLs are stepping one level up. Say, if my actual base URL is /my/cams/admin, some resources are being fetched from /my/cams (losing the /admin part...

A temporary somewhat working workaround: ``` location ~ ^/my/cams/admin/?(.*) { proxy_pass http://localhost:81/$1$is_args$args; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; sub_filter 'src="/' 'src="'; sub_filter 'href="/' 'href="'; sub_filter '/index.php' 'index.php';...

@connortechnology 1. which version? 2. can you show us, what's the Live Stream page, what's the cgi-bin URL in the HTML opened in your browser? (no need or the whole...

``` ~/workspace/origin/target$ tail ~/.bashrc top() { echo Hey } top2() { echo Hey two } ~/workspace/origin/target$ LC_ALL=C type top top is a function top () { echo Hey } ~/workspace/origin/target$...

And I can't really launch tests... ``` ~/workspace/origin$ ./tests.py sys platform is linux2 Running fakechroot chroot target/jail origin Traceback (most recent call last): File "./tests.py", line 51, in print(check("", 2,...

Thanks for the hint regd fakeroot :) Silly me... Still, smth is off ``` ~/workspace/origin$ ./tests.py sys platform is linux2 Running fakechroot chroot target/jail origin Traceback (most recent call last):...

Not to be a whiner, but... :D ``` ~/workspace/origin$ make check DEBUG=0 clang -c -o target/origin.o src/origin.c -std=c11 -Werror -Wno-format-nonliteral -Weverything -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -D_XOPEN_SOURCE=700 clang -o target/origin target/origin.o -std=c11 -Werror...

@maxwxyz The only "mods" I did was installing plugins (parts library, BIM, etc.). I can apt-purge freecad, no probs there. But how do I remove plugins? Once I reinstall freecad,...