Displaying 20 results from an estimated 600 matches similar to: "Shaping. What I thought would be simple..."
2000 Feb 28
1
Parser Bug Somewhere.... (PR#460)
Full_Name: John P Cavanaugh
Version: .99
OS: linux
Submission from: (NULL) (24.116.10.99)
dataset$ema12 <- EMA (dataset$Close,12)
dataset$ema26 <- EMA (dataset$Close,26)
dataset$MACD_fast <- dataset$ema26 - dataset$ema12
dataset$MACD_slow <- EMA(dataset$MACD_fast,9)
dataset$MACD_hist <- dataset$MACD_fast - dataset$MACD_slow # This line doesnt
work!!!
But... if I does work if I
2006 Jul 31
3
Polymorphic associations and single table inheritance
Running into an interesting problem that at first glance appears to be a
bug in the AR association code. However, it''s explicitly coded this way
so I''m not so sure.
I have some code like this:
class Address < ActiveRecord::Base
belongs_to :addressable, :polymorphic => true
end
class Person < ActiveRecord::Base
has_many :addresses, :as => :addressable,
2004 Dec 29
1
Bizarre DNAT problem...
Ok, ive been pulling whats left of my hair out trying
to figure this one out and I give up.
I seemingly simple DNAT is not working. Below is a
snippet from my rules file.
DNAT net loc:192.168.1.1:22 tcp 2022
DNAT net loc:192.168.1.175:22 tcp 1022
Basically Im trying to forward port 1022 on my
firewall to a machine on my local network.
My firewall machine is
2010 May 06
0
creating a station from the ground up
Hi bob,
Well - the upload is the important number when you are talking about
delivering to other people.
You could quite easily run icecast on a VPS (virtual private server) - it
would certainly cost you to do this.
I work for a streaming media company though, and could help you set up a
station - if you're interested - please e-mail me directly - not through the
mailing list.
Thanks,
2004 Oct 05
2
Printer name changed in samba 3.0.7
We have a strange problem when using samba 3.0.7 where a printer's name
is changed to the name of the printer driver. We use samba to share out
printers from a fedora core 1 system. On a windows client they initially
show up accurately. When adding the windows driver from a windows client
for a new shared printer the driver files get transferred just fine.
However, the printer name in the
2010 May 06
0
creating a station from the ground up
Hi Bob,
Well, if you plan to do it from home - it's unlikely you'll be able to
support more than 3 people on a domestic internet connection, broadcasting
at 128kbps.....not sure what you have, connectivity wise there.
Can you run a speedtest? http://speedtest.net
Regards,
William
On Wed, May 5, 2010 at 8:26 PM, Bob Cavanaugh <bobdavcav at comcast.net> wrote:
> Hi William,
2010 Aug 16
2
tools for broadcasting
Hi all, I'm sending this to both lists because I want to know what both
sides of the conversation think about this. For those of you on the icecast
list, can I have a recommendation on the right tool to broadcast with? If
you like, I'll send you my prerecorded shows, just tell me what the best way
to send those is. For the audacity list now, would it be possible to develop
a broadcasting
2010 May 05
3
creating a station from the ground up
Hey all, I am looking to start my own station, but don't know where do
start. I have edcast, so will use that to originate my programs. However,
how do I set up a server to broadcast to? Thanks.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.xiph.org/pipermail/icecast/attachments/20100505/edb6e275/attachment.htm>
2004 Jul 05
1
printer preferences not settable using samba print driver
We're putting together a Linux-cups-samba print server for Windows
clients. A dozen print drivers have been loaded and used successfully on
the Windows clients from the samba server. But, one particular printer
is causing trouble: a Xerox DC 2240. When a windows client tries to open
the printer preferences, after connecting to the printer on the samba
print server, a popup says
2010 Aug 15
1
slightly offtopic, uninstalling edcast
Hi all, I have edcast on my computer, but I didn't check the box to install
the mp3 encoder, and it is not installing correctly after it has been
deleted from the location it is installed in. It doesn't show up in the
control panel list, so can't do anything about it there. How do I completely
remove edcast from my machine and start over?
-------------- next part --------------
An
2010 Aug 15
1
still having problems with edcast
Ok all, I have deleted the edcast folder on my machine and reinstalled
edcast. However, I can't get the mp3 encoder to install. Tim said that it
should ask if you want the encoder, and I thought I selected it under the
select components to install, but it isn't installing. Two additional things
are happening,
1. When I open edcast, I don't see anything in the dropdown lists.
2005 Jan 28
2
Nortel --> Asterisk-------->Asterisk
I am looking at setting up the following configuration and any
help/input/comments before signing the PRI contracts will be greatly
appreciated.
PRI Tampa PRI
Sarasota PRI
<--> Nortel BCM-->Asterisk<------------------>Asterisk<--->
I would like to link the Nortel BCM to * using the a digital trunk card.
The BCM will
2006 May 10
0
Boolean attributes - not so simple as I thought
Suppose I have a table ''items'' with the attribute ''bool'' which is
boolean.
There''s an array @attribs which holds :bool and some other symbols of
attributes which are not boolean.
class Item < ActiveRecord::Base
{
def attribs
[:bool , :x , :y]
end
}
The trouble is that @item.bool? and @item.bool behave differently.
If I set @item.bool=5
2006 Apr 20
0
paginate :includes not working as I thought it should
Hello everyone, I have the code below:
paginator_options.merge!({:conditions => ''cities.id = 4'', :include =>
[:cities]})
@people_pages, @people = paginate :people, paginator_options
There''s a many-to-many relationship between people and cities.
It seemed like before this was working, but now in the sql that''s generated
the join table isn''t
2004 Mar 13
0
Quick thought on win32-mmap
I suggest getting rid of the hash style arguments fior new() for this
package. In this particular case, you already have a class and accessors,
so you can just use the yield trick, e.g. rb_yield(self) if
rb_block_given_p(). Thus you can do:
mm = Mmap.new do |m|
m.namespace = file
m.swapfile = sfile
m.size = 1024
end
Looks just as nice, and is a lot less code on the C side of
2007 Nov 28
0
OpenHash class I thought I would share...
I love OpenStruct, but it has no ability to iterate over the members.
I had extended it, but recently I use this little class. Anyone see
any issues with it ?
class OpenHash < Hash
def method_missing(name, value=nil)
key = name.to_s.sub(/[=?!]$/,'''').to_sym
self[key] = value if name.to_s[-1,1] == "="
return self[key]
end
end
>> o =
2010 Nov 24
1
thought this was about the drink
I am such a n00b I did not think about this as an application. What is wine for anyway care to share and educate a person who seems to be lacking the proper knowledge ?
Would a kind soul mind pointing me in the right direction to forums for the drinkable wine ?
I would like to check some reviews of my favorite winery. Sorry about the confusions!
1999 Sep 12
0
Just a thought ...
Dear all
As someone who leaves his R session open for days - even longer - because
only I access the computer it is on, I very occasionally crash it (my most
recent success was to use a very long plot() which it turned out have both
'l' and a 'b' without keyword!).
I try to be careful, preserving essential bits of coding in an adjacent
emacs screen and doing save.image() from
2005 Mar 28
2
problem with 1 dialing (recording says must dial 1 when I thought I did)
TRUNKMSD1=1 ; MSD digits to strip
(usually 1 or 0)
TRUNKMSD2=2 ; MSD digits to strip
(usually 1 or 0)
; logn distance calls
exten => _91NXXNXXXXXX,1,NoOp("Dialing: "${TRUNK}/${EXTEN:${TRUNKMSD1}})
exten => _91NXXNXXXXXX,2,Dial(${TRUNK}/${EXTEN:${TRUNKMSD1}})
exten => _91NXXNXXXXXX,3,Congestion
When I dial
2013 Jul 15
0
Thought you'd find this interesting
Hi!
I?ve just learned about the water crisis and thought you would be interested to check out this story:
https://waterforward.charitywater.org/et/ZVUzUwZ0
Let me know what you think!
Thanks,
Marcos
--
Sent via WaterForward, an initiative of charity: water
WaterForward, 387 Tehama Street, San Francisco, CA 94103, USA.
Click here to unsubscribe: