Charles Marcotte

Results 6 comments of Charles Marcotte

Will do.  Must be a drop down for branch selection here somewhere ....   :-) Chuck Marcotte On Monday, August 4, 2014 12:59 PM, trumpetinc [email protected] wrote: > Can you do...

FYI.  The Call ERROR json parser does not match the spec and a parsing error is occurring. My server is based on the Version 1 WAMP Authbahn release code for...

Hmm... The Promise class needs the get() method to check to see if the value has already been set BEFORE calling wait(). If no thread is waiting when the other...

Better: ``` #!/bin/bash echo "Current DISPLAY=$DISPLAY" echo "Finding a free DISPLAY number" for i in $(seq 1 20); do DISPLAY=":$i" xset q >/dev/null 2>/dev/null ; RET=$? if [ "$RET" -ne...

* Added a fg option - needed by a window shortcut? * disown added * added more cleanup arguments to Xephyr server ``` $ cat ~/launch_desktop.xfce4 #!/bin/bash echo "Current DISPLAY=$DISPLAY"...

i keep tweaking: #!/bin/bashecho "Current DISPLAY=$DISPLAY"echo "Finding a free DISPLAY number"for i in $(seq 1 20);do    DISPLAY=":$i" xset q >/dev/null 2>/dev/null ; RET=$?    if [ "$RET" -ne "0" ] ;...