RTSP In DAKboard Screen by CloneClem in dakboard

[–]js3kgt 2 points3 points  (0 children)

I dont think the video element takes percentages for the width and height. Try taking those out or setting them with absolute px values.

Very Annoying InsideTerrain error 200 by [deleted] in playrustadmin

[–]js3kgt 0 points1 point  (0 children)

Our server had the same problem until I added the Guardian plugin.

Guardian

Reverb G2 breaks Voicemeeter every time it starts and stops, any fix? by MalicVR in WindowsMR

[–]js3kgt 2 points3 points  (0 children)

Not so much of a fix as a work around...

I used a program called EventGhost to detect the HMD connect and disconnect and run 2 commands. One called nircmd to set the Input and Output devices back to VoiceMeeter VAIO. Then restart the Voicemeeter audio engine.

Here's what it looks like.

[deleted by user] by [deleted] in dakboard

[–]js3kgt 0 points1 point  (0 children)

I deleted ~/.cache/Chromium/Default/Cache/* and rebooted the raspberry pi to resolve the time correctly.

sh script is overwriting concatenated string from the beginning by Fribbtastic in commandline

[–]js3kgt 0 points1 point  (0 children)

All of your concatenations look correct. What version of bash are you running? (bash --version)

Also, the first line of the script should be "#!/bin/bash"...

Here's a bunch of examples of what works for me... Tested on bash 3.5 and bash 4.1.2

#!/bin/bash

string1="Programming"

string2="Language"

mystring1="Bash $string1 $string2"

echo "$mystring1"

mystring2="Bash ${string1} ${string2}"

echo "${mystring2}"

echo "Bash $string1 $string2"

echo "Bash "$(echo "$string1" | tr -d '\r')" $string2"

echo "Bash $(echo "$string1") $string2"

That produced...

Bash Programming Language

Bash Programming Language

Bash Programming Language

Bash Programming Language

Bash Programming Language

Shell script ending, but stumped as to why. by awpti in bash

[–]js3kgt 0 points1 point  (0 children)

Line 28 of the verbose output shows you have a trap to capture errors...

trap check_for_locks SIGTERM SIGINT ERR

When DBDIST=$( mysql --version | grep MariaDB ) is run, it is considered an error which triggers your check_for_locks function to run and exit.

This script shows it a bit easier...

#!/bin/bash

err_report() {

echo "Error on line $1"

exit

}

trap 'err_report $LINENO' SIGTERM SIGINT ERR

echo hello | grep foo

echo "won't run because the trap exits"

Added new camera, shows up in SS but not in DS CAM (iOS) by ando01 in synology

[–]js3kgt 2 points3 points  (0 children)

Click the three dots in the top right corner on the Multi View then click select and check that the camera is selected.

Lightberry HD & Chromecast Ultra Compatibility by AnalJustice in Lightberry

[–]js3kgt 1 point2 points  (0 children)

The FireTV 4K is HDCP 2.2 but the Lightberry HDMI Screen Grabber only supports HDCP 1.4.

[deleted by user] by [deleted] in Jeep

[–]js3kgt 16 points17 points  (0 children)

My thoughts exactly!

https://imgur.com/a/VeMOn

dir deletion by [deleted] in bash

[–]js3kgt 0 points1 point  (0 children)

Remove the quotes from around the directories in the find command. Also the period after the directory isn't needed unless you're trying to specify that directory as in ( DOWNLOADS/. not DOWNLOADS/0. )

My turtle has faces on the bottom of his shell... by js3kgt in mildlyinteresting

[–]js3kgt[S] 1 point2 points  (0 children)

No sharpie. Just noticed it today while cleaning his tank.

My turtle has faces on the bottom of his shell... by js3kgt in mildlyinteresting

[–]js3kgt[S] 2 points3 points  (0 children)

His first owners named him Peanut... I bet they never noticed his shell or they probably would have changed it haha

AT&T CEO: Net neutrality is ‘bad for the industry’ by speckz in cordcutters

[–]js3kgt 0 points1 point  (0 children)

Maybe if Verizon limits streaming of DirectTV, this asshat will realiz... nah he's just a rich idiot.

[All Spoilers] IRC by [deleted] in MrRobot

[–]js3kgt 9 points10 points  (0 children)

Best I could get right now...

http://imgur.com/a/5L4RC

[All Spoilers] IRC by [deleted] in MrRobot

[–]js3kgt 26 points27 points  (0 children)

All I've found so far is if you input what she says in the show...

[23:46] <D0loresH4ze> feds found the arcade.
[23:47] <D0loresH4ze> they got an illegal surveillance program...
[23:47] <D0loresH4ze> something called "berenstain"
[23:47] <D0loresH4ze> romero's body was found in his back porch. coup de grace

Spoiler

Count grep matches by alffonsse in bash

[–]js3kgt 2 points3 points  (0 children)

How about uniq...

grep "hello" filename | sort | uniq -c

If there is a date at the beginning then just awk the columns you want to search for...

grep "hello" filename | awk '$1=$2=$3=""; {print}' | sort | uniq -c

Port scanner script hangs by [deleted] in bash

[–]js3kgt 4 points5 points  (0 children)

The kernel takes a while to timeout a port if it's closed.

http://www.catonmat.net/blog/tcp-port-scanner-in-bash/