search for: thougt

Displaying 20 results from an estimated 72 matches for "thougt".

Did you mean: though
2004 May 17
0
Some thougts about implementing native 3-way calling and attended transfer
As I understood, Asterisk has a lot of features but lacks native 3-way calling and attended transfer. It would be great to have these features available to a simple IAX phone. I wonder how this could be implemented in Asterisk without asking for a patch. It should be possible with parking, conferencing, AGI and the manager interface. The extension 77 could be used by the attendant to blindly
2015 Sep 01
0
Open thougts about the project governance & workflow
On Tue, Sep 1, 2015 at 3:55 AM, Erwan Velu via Syslinux <syslinux at zytor.com> wrote: > Hi folks, > > I've been involved in Syslinux since 14 years and been almost off for many > years for multiple reasons. I'm currently trying to recover and while > observing the project with a little of distance I noticed the following : > > - project's activity is pretty
2010 Mar 01
2
Thougt I understood factors but??
Hi, consider the following > a<-gl(3,3,9) > a [1] 1 1 1 2 2 2 3 3 3 Levels: 1 2 3 > levels(a)<-3:1 > a [1] 3 3 3 2 2 2 1 1 1 Levels: 3 2 1 > a<-gl(3,3,9) > factor(a,levels=3:1) [1] 1 1 1 2 2 2 3 3 3 Levels: 3 2 1 It is probably something obvious I missed, but reading the documentation of factor, and levels I would have thought that both should produce the same output as
2009 Dec 13
5
retransfer fail of large files with inplace and broken pipe
...his means that if a file has transfered e.g. 80 % i start again from beginning. using partial and partial-dir was no solution to resync because rsync cut the original file (e.g. from 20 GB to 15 GB) which means that i have to transfer the whole rest of 5 GB. so i had a look at --inplace which I thougt could do the trick, but inplace is updating the timestamp and if the script start a retransfer after a broken pipe it fails because the --inplace file is newer than the original file of the sender. using ignore-times could be a solution but slow down the whole process to much. is there a option...
2007 Apr 30
2
Structuring a rails application
...ication with modules, but i have problems to define the routes. Is'' it possible to use someting like this: <%= link to ''...'', :module => :module_name, :controller => :ctrl_name [...] -%> ? The controllers i want to access are in app/controllers/module_name. I thougt i could define something like this: map.connect '':module/:controller/:action'', but it doesn''t work. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To...
2015 Sep 01
2
Open thougts about the project governance & workflow
Hi folks, I've been involved in Syslinux since 14 years and been almost off for many years for multiple reasons. I'm currently trying to recover and while observing the project with a little of distance I noticed the following : - project's activity is pretty low - patches sent to the mailing list (ML) are not likely to be reviewed - Integration workflow is pretty unclear - release
2019 Sep 13
2
revoking ssh-cert.pub with serial revokes also younger certs
...sh/revoked_keys -z 17 id_user_rsa-cert.pub The serial is 1 less the serial of my created certificate Check, if my certificate is valid root at host # ssh-keygen -Qf /etc/ssh/revoked_keys id_user_rsa-cert.pub id_user_rsa-cert.pub (test on myhost - created by ansible (1564358942)): REVOKED Why? I thougt, when i use -s <Serialnumber> only this specific certificate for a pubkey is revoked... jakob -- lore ipsum
2007 Oct 09
2
AW: CentOS 5 release for IBM z/Series?
...So, there will be no release in the near future of centos 5 for Z? At the moment we got a realy small z/linux installation, but i love it. Keeping the TCO as low as we can was necessary to satisfy the decision-maker. So we decided to choos a free linux distribution, centos was a good decicion we thougt. (redhat / fedora was always my favorite flavor *g*) It would be great if we can give something to the community! Personaly i can't help very much cause i'm the only knowledge carrier here for z/linux, with anoter colleague, and so we havent much time. How is development going on for cento...
2015 Feb 12
1
Samba4 kinit issue with principal and keytab file
Hi Rowland, Yes, I read this documentation carefully. I have two working Apache2 with kerberos authentication working. My question is more about troubleshooting a keytab. If I need to test manually a keytab file chalenging a specific principal, what's the prefered method ? I thougt that a kinit could be done using a principal name, but I am unable to kinit with somehting else than the user at REALM Any help ? Thanks. Olivier
2007 Oct 02
1
How to view the code of a method?
Dear All I am a biginner of R. I have difficulty with reading the code of a method. I am using the vars package to estimate a VAR model and I want to view the code of "predict" method for objects with class attribute "varest". I thougt I could just type the name "predict" without anything to display the code of the method as I often do with generic function. However, I got the following messages: function (object, ...) UseMethod("predict") <environment: namespace:stats> I cannot figure out the meaning...
2005 Jul 12
0
meetme an customized menu
...e for testing!"); if (!ast_streamfile(chan, "whatNumberToInvite", chan->language)) dtmf = ast_waitstream(chan, AST_DIGIT_ANY); else dtmf = -1; ast_log(LOG_WARNING,"Something pressed ?? :%d \n",dtmf); break; My thougt was, that ast_waitstrem waits a certain time period and then return the dtmf-code. but somehow the code executes without pause between the two log-outputs. the original statement in the code, does indeed wait. any thougts ?? maybe someone has an idea how sip+agi+meetme could work ? thx in adv...
2011 Nov 26
1
Building syslinux 4.04 on a 32bit system
I thougt somebody might like to know - I got a fresh copy of 4.04 from http://www.kernel.org/ - when building on a 32bit system, the build fails at first. I had to do a "make spotless" to get a successful build. make[2]: Entering directory `/home/per/workspace/syslinux-4.04/diag/geodsp' ./mk...
2007 May 30
1
Factor function: odd behavior when labels argument contains duplicates?
Hi all. I think it would be nice to be able to combine levels of a factor on creation a la x <- rep(0:5,5) y <- factor(x,levels=0:5,labels=c('1','1',2:5)) ## (1) y [1] 1 1 2 3 4 5 1 1 2 3 4 5 1 1 2 3 4 5 1 1 2 3 4 5 1 1 2 3 4 5 Levels: 1 1 2 3 4 5 I thougt this would (should?) create a factor with 5 levels, ie combining 0 and 1 in x into one level in y. I find it hard to predict the behavior of the following lines: table(factor(y)) ## Odd ? 1 1 2 3 4 5 10 0 5 5 5 5 table(factor(factor(y))) ## This is what I want 1 2 3 4...
2004 Jun 30
1
Using Asterisk as H323 gateway
Hi there. I am trying to connect Asterisk to a local danish ip-telephony provider. But is having some difficulties. First I thougt they were related to the provider. But then i started debugging on the Asterisk (aix2 debug) When I make a call using AIX to the provider everything seems to work just fine: *CLI> -- Accepting AUTHENTICATED call from 192.168.1.150, requested format = 1024, actual format = 1024 -- Exe...
2008 Jun 11
1
decrease the time it takes for asterisk (fxsks) to answer
Morning list, Was curious if it is possible to decrease the time asterisk takes to answer an incoming call to a zaptel interface. Example: [Jun 11 09:33:06] VERBOSE[4489] logger.c: -- Starting simple switch on 'Zap/2-1' [Jun 11 09:33:10] NOTICE[4489] chan_zap.c: Got event 18 (Ring Begin)... [Jun 11 09:33:12] NOTICE[4489] chan_zap.c: Got event 2 (Ring/Answered)... [Jun 11 09:33:12]
2006 May 12
2
Choosing not to save @session in a given controller or action ?
...n the middle of the action that return a given thumbnail. So when it ends, it writes the @session as it read it at its beginning (with no modification since it doesn?t make any). So the @session variable is totally broken for my next calls to ?get_thumbnail? because the @session modification that I thougt I made has been overwritten Does anybody know if (except if my design is really a bad idea ? ? i.e. using @session that way) it?s possible, to tell a controller or an action not to ?close_session? at its end ? (but of course I don?t want to totally disable session for that controller/action...
2010 Jan 27
3
Data transfer
...king for a way to connect the devices over the internet. I did some very quick testing with Asterisk and PJSIP [1] and it looks very promising. Apart from the voice transmission we need to sent some Data too (like used frequency, GPS position, very small data, about 5 kByte a minute). So my first thougt was to use SIP/Messages but some time of searching shows that asterisk doesn't handle this. We could of course use an extra tcp connection but this seems not very elegant to me ;-) because SIP should handle that... The Asterisk Console shows that asterisk drops the message: WARNING[15294]: c...
2009 Apr 11
2
who happenly read these two paper Mohsen Pourahmadi (biometrika1999, 2000)
...s paper,got any idea how he got the LS estimates of gamma. he assumed the autoregressive phi_tj satisfy the cubic function on lag of time,where t is from 1 to 11,j from 1 to t-1,his model is: phi_tj=gamma1+gamma2*(t-j)+gamma3*(t-j)^2+gamma4*(t-j)^3, #biometrika 1999,page685 at first moment ,I thougt my design matrix should be 1 1 1 1 1 2 4 8 1 3 9 27..... but I found this is wrong,actually I should(I think) use a polynomial design matirx with level of 11,degree=3 here is my rocode~~ y1=c(1,0.9,0.98,1.06,0.83,1.00,0.41,0.93,1.01,0.86) y2=c(0.05,0.16,0,0.26,0.15,0.61,0.33,0.31,0....
2019 Nov 06
2
Dovecot mangesieve proxy - internal failure
...are connecting to port 4190 and not 143 for ManageSieve? Aki > On 06/11/2019 17:48 telsch via dovecot <dovecot at dovecot.org> wrote: > > > I need a more detailed hint. Dovecot proxy IMAP is running fine, but how > to add to the same proxy managesieve support? > > I thougt it's activated in the proxy: > protocols = imap sieve > > In the passdb proxy to the backends SSL or STARTTLS port successfully > for IMAP. What exactly missing for managesieve? > > Thanks! > > On 11/6/19 3:52 PM, Sami Ketola via dovecot wrote: > > Also those v...
2019 Nov 06
2
Dovecot mangesieve proxy - internal failure
Also those variables can't be returned from passdb as they are needed pre-auth. Sami > On 6 Nov 2019, at 16.51, Aki Tuomi via dovecot <dovecot at dovecot.org> wrote: > > You are hardcoding the port. I'm pretty sure your managesieve is not listening on 143 =) > > Aki > >> On 06/11/2019 16:46 telsch via dovecot <dovecot at dovecot.org> wrote: