Displaying 4 results from an estimated 4 matches for "16438".
Did you mean:
16436
2016 Dec 02
3
unlist strips date class
Is this a bug?
> unlist(list(as.Date("2015-01-01")))
[1] 16436
[[alternative HTML version deleted]]
2016 Dec 02
0
unlist strips date class
..."3" "a" "b"
do.call(c, x)
# [1] "1" "2" "3" "a" "b"
However, if the list contains dates:
x <- list(as.Date("2015-01-01") + 0:2, as.Date("2016-12-02"))
unlist(x)
# [1] 16436 16437 16438 17137
do.call(c, x)
# [1] "2015-01-01" "2015-01-02" "2015-01-03" "2016-12-02"
then 'unlist(x)' drops the attributes and 'do.call(c, x)' does not.
And if the list contains factors:
x <- list(factor("Z"), factor(c("...
2006 May 15
3
Mysql::Error in RecipeController#new
Hi,
I''m doing the following tutorial
:http://www.onlamp.com/pub/a/onlamp/2005/01/20/rails.html?page=3
but when I''m trying to access the database I get the following error
#28000Access denied for user ''root''@''localhost'' (using password: NO)
That''s strange because the database.yml file is defined with a password
:
development:
2015 Mar 23
0
trying to connect to asterisk with softphone (logs, etc)
...Parkinglot :
Use Reason : No
Encryption : No
linux-k7qk*CLI>
linux-k7qk*CLI>
The port seems to be open and listened to:
linux-k7qk:~ #
linux-k7qk:~ # lsof -i UDP:5060
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
asterisk 3520 root 12u IPv4 16438 0t0 UDP *:sip
linux-k7qk:~ #
and the bind address is correct:
linux-k7qk:~ #
linux-k7qk:~ # cat /etc/asterisk/sip.conf | grep bind
bindport=5060 ; UDP Port to bind to (SIP standard port
is 5060)
bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds
to a...