search for: someothernumber

Displaying 3 results from an estimated 3 matches for "someothernumber".

2020 Jan 08
2
admin console
<div dir="auto">No I think you misunderstood me. The m3u file contains the URL with the port number in it, since as far as icecast knows that's is the URL. It doesn't (and can't) know that I want a different URL. It has http://foo.bar:8000/mountpoint but I want http://foo.bar/mountpoint<div><br></div><div>It's the wrong URL from my
2020 Jan 08
0
admin console
Hi Jake http://foo.bar/mountpoint is going to be interpreted as port 80 by the player You want to do http://foo.bar:8000/mountpoint > http://foo.bar/mountpoint I think you are going to have to do some port shifting from 8000 > someothernumber like 12345 on the router. regards Robert On 8/01/20 7:07 pm, jake at jakebriggs.com wrote: > No I think you misunderstood me. The m3u file contains the URL with > the port number in it, since as far as icecast knows that's is the > URL. It doesn't (and can't) know that I w...
2007 Nov 13
5
how to ensure signature compliance while mocking in ruby
...method1 > Bar.method2(''param1'', ''param2'') > end > end > > class Bar > end > > So far so good... Now my dilemma is that while implementing method2 in > Bar, I can come up with any weird signature (e.g. def method2 > someInteger, someOtherNumber) and I will not be breaking FooTest. This > obviously makes life hard while refactoring. Coming from a Java/C# > background, I used to rely on compilation to catch these issues. > > How have people solved such problems? > > Pradeep Hi Pradeep, Fundamentally you should never rely...