Displaying 14 results from an estimated 14 matches for "simpleton".
2002 Nov 29
2
Regular Expressionsionism
...[138] "J30712_Elstim_msa_amplitude_5_25_s1-17_19-43_45_48w.post"
I have not found the key to generating the logical AND equivalent of the "|" OR infix operator, a
proxy for the simpleton's dream: my.list.files(pattern="*Elstim" & "*post")
Thanks
- Derek
P.S.,
Of course I could always do this in stages:
> elstims <- list.files(pattern = "Elstim") # all the files with "Elstim"
> ElPostinos <- grep("post",...
2014 Jul 01
1
Still confused about Kerberos password expiry
...th password changes in Samba-Tool, eh?)
B) Set the Kerberos password complexity off
C) Tell Kerberos to stop remembering old passwords
This is just a home setup I am using to try and learn Samba4. I seem to
be making good headway, but this issue perplexes me.
Thank you for your patience with a simpleton like me.
-jimc
2010 Jun 25
1
Hardware RAID 10 server - reformat NTFS partition to ext3 and resize for Centos 5.5
...un GParted from a CD, reformat the NTFS and append the
space to the existing Linux partition? What will I have to do with LVM
to see the expanded partion? - anything special? I've never done this
before - is it really much more complicated than I've outlined here?
Please advise this old simpleton. Many thanks in advance.
Ed Westphal
2005 Dec 25
1
cygwin and tar -- still?
...tar: /cygdrive/E/conifers/rconifers_0.0-5.tar: Cannot open: No such file or
directory
tar: Error is not recoverable: exiting now
Error: cannot open file 'rconifers/DESCRIPTION' for reading
E:\conifers>
I still don't understand why the cygwin tool is required. I'm just a mere
simpleton and haven't spent the time required to become king-fu master with
this particular minutiae. Could the script that builds the package be fixed?
Is it broken? If it's not broken, what's with the cygdrive stuff? why does
the entire path need to be there?
Is the tar that's in the to...
2011 Dec 01
1
there's no payoff in confusing the users
...h, or _whatever_ it is.
then i walk the array again, using the tag for each chunk to
generate the appropriate output for the desired format(s)...
(sometimes the tag, or the output, is dependent upon the
surrounding chunks, and that's the reason i walk it twice.)
it's the methodology of a simpleton, i am the first to admit,
but it works, and it works well, and it works sufficiently fast.
best of all, for me, is that it's extremely easy to understand.
even better, for everyone: it's easy for users to understand.
after all, there's no payoff in confusing the users. is there?...
2006 May 31
7
How to render from with <%%> ?
I have a loop that I iterate through in my view.
<%
coll.each do |itm|
puts(itm.value)
end
%>
How do I render the itm.value without using a <%= %> tag? Should puts
not work?
Joerg
P.S. There is a good enough reason for me wanting to do this :-)
--
Posted via http://www.ruby-forum.com/.
2018 Jan 20
2
Can anyone help with a quick app_record.c module improvement and can explain over-riding modules?
....com/asterisk/asterisk/blob/master/apps/app_record.c#L166
> * \param dtmf_integer the integer value of the DTMF key received
>
> So,3 questions I guess:
>
> 1: Am I going about this the right way? (unimrcp is not an option here)
> 2: Can someone explain in layman's terms how a simpleton like me could
> copy, hack about with and make a new module, like, for example,
> app_record_alt.c, that would stick around each time I updated Asterisk
> from source?
> 3: Or, is anyone willing to make the simple code change to the file to
> improve it to send back the DTMF to the d...
2006 Jan 27
4
find.collect problem.
...t; ActiveRecord::Base
set_primary_key "bc_ref"
def self.fullname( reference )
result = Bugclient.find(reference.strip)
result.bc_name
end
end
However I am not sure how to combine the two so that the client full
name is collected instead of the reference.
I have tried the simpleton approach of
@bugclientrefs = self.find_all(["bug_id = ?", reference]).collect {|b|
[ Bugclient.fullname(b.client_id.strip) << " - " << b.client_ref.strip
]}
But that just returns errors
Does anyone know how to combine the two?
Thanks
Jeff
--
Posted via http...
2007 Oct 15
0
help with simple goodness of fit test
..., p = pr,
rescale.p = TRUE)
> c;
Chi-squared test for given probabilities
data: d1
X-squared = 156992.7, df = 99, p-value < 2.2e-16
I'd expect the "goodness of fit" test to pass, with a high p value. Can
someone tell me why things seem incorrect. Again I apologize for the
simpleton request.
Thanks,
John
--
View this message in context: http://www.nabble.com/help-with-simple-goodness-of-fit-test-tf4630125.html#a13221078
Sent from the R help mailing list archive at Nabble.com.
2007 Jun 30
1
Cisco 7970G line buttons
I just upgraded my 7970G to the SIP firmware. What I'd like to do is have the 8 line buttons be able to make outbound calls using the same account (for practical purposes, same caller-ID). Since the phone is going to have a single public DID, when a call comes in, it should ring on the first available line. So, if I'm on line 1 and a call comes in, it should ring on line 2.
How can this
2003 Jan 12
10
Shorewall on a file/webserver/router Help
Hi,
I have a install of shorewall I have 2 interfaces(I think)
ppp0[connection device] and eth0 [LAN device],
I want to allow all traffic from the the internet in or aleast port 80 and
CVS and webmin and mail and everything normal to the main machine with
shorewall on it.
I changed to policy file but it just gave me errors as to double interfaces.
I also what still to alow connection sharing
2018 Jan 20
2
Can anyone help with a quick app_record.c module improvement and can explain over-riding modules?
...6
> >> * \param dtmf_integer the integer value of the DTMF key received
> >>
> >> So,3 questions I guess:
> >>
> >> 1: Am I going about this the right way? (unimrcp is not an option here)
> >> 2: Can someone explain in layman's terms how a simpleton like me could
> >> copy, hack about with and make a new module, like, for example,
> >> app_record_alt.c, that would stick around each time I updated Asterisk
> >> from source?
> >> 3: Or, is anyone willing to make the simple code change to the file to
> >&...
2006 Jan 25
12
DRY in Models
I am building an app right now that needs to grant access to three
levels of members right now - each will have their own table in the DB.
When creating the add_user action I am converting the password into a
hashed password through the model.
The way I am doing this right now, I will inevitably end up with
repeated code in three different models. Is there a way I can define
this code in
2009 Jun 25
9
WINE install of Dreamweaver MX fails
Hello. I'm new to this forum.
Before I posted this, I did due diligence searching for an answer to my problem. I found and tried 2 possibles; but neither would work for me.
First my machine specs:
64 machine dual boot between WinXP and Ubuntu Janty Jackalope 9.04.
When I used Hardy Heron 8.04 last year, I was able to install Version 7.0 of Dreamweaver MX on a fluke.. I still don't know