search for: 20242

Displaying 6 results from an estimated 6 matches for "20242".

Did you mean: 2024
2014 Nov 17
1
motif and other xmpp
...here works fine, the problem is when I want to send a message to another user on ejabberd and asterisk take this message as part him, like a sip message , the other user does not receive this message xmpp User A xmpp == Chat to == User B xmpp (not receive the message) look cli asterisk WARNING[20242][C-0000002e]: pbx.c:6646 __ast_pbx_run: Channel 'Message/ast_msg_queue' sent to invalid extension but no invalid handler: context,exten,priority=nica,s,1 any idea? -- rickygm http://gnuforever.homelinux.com
2006 Mar 04
3
select helper method
Hey I''m having problems understanding the select helper. Here is my code: _____________________ DB table: genres id name descripition ___________________ In the controller: def index() @genres = Genre.find_all.map {|u|[u.name, u.id]} @id = params[''genre''] end ____________________ In the view: <% @genre = Genre.new @genre.id = @id %>
2010 Apr 08
2
Dovecot 2.0 beta4 and Expire Plugin
Hello, there seems to be an error writing into the expire database defined by dict. dict { expire = sqlite:/usr/dovecot/etc/dovecotbeta-dict-expire.conf } ... plugin { ... expire = AutoCleanSpam 1d expire_dict = proxy::expire } with dovecotbeta-dict-expire.conf: connect = /test/addons/expire/expiresbeta.db map { pattern = shared/expire/$user/$mailbox table = expires
2012 Jan 03
7
Low performance
Hi! I do a rsync between 2 machines. The throughput is only 2 MByte/Sec. Each machine is a Supermicro server with 2 x 8 Core Opteron 6128 64 GByte of ECC RAM 1 LSI MegaRAID SAS 9280-24i4e 24 x 2TByte SATA Disks as a RAID6 2 Intel Corporation 82599EB 10-Gigabit SFI/SFP+ Network-cards Both run Ubuntu 11.04 64Bit. Both use rsync version 3.0.7 protocol version 30 There are no
2010 May 15
1
barplot: invalid 'xlim' value
...0~-191.620~80-2~3 20236~Well_80-2~7/9/2000 12:00~-191.620~80-2~3 20237~Well_80-2~7/9/2000 13:00~-191.620~80-2~3 20238~Well_80-2~7/9/2000 14:00~-191.620~80-2~3 20239~Well_80-2~7/9/2000 15:00~-190.858~80-2~3 20240~Well_80-2~7/9/2000 16:00~-190.858~80-2~3 20241~Well_80-2~7/9/2000 17:00~-190.858~80-2~3 20242~Well_80-2~7/9/2000 18:00~-190.858~80-2~3 20243~Well_80-2~7/9/2000 19:00~-191.620~80-2~3 20244~Well_80-2~7/9/2000 20:00~-191.620~80-2~3 20245~Well_80-2~7/9/2000 21:00~-191.620~80-2~3 20246~Well_80-2~7/9/2000 22:00~-191.620~80-2~3 20247~Well_80-2~7/9/2000 23:00~-191.620~80-2~3 20248~Well_80-2~7/10/20...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.