Displaying 20 results from an estimated 300 matches similar to: "Stupid passwd tricks: User with blank GECOS can''t change passwd"
2007 May 14
1
Free Colgate Max Fresh Whitening Toothpaste
http://www.colgate.toothpaste-sample.com
Get New Colgate Max Fresh Whitening Toothpaste. Cool Mint Flaor with
Breath Strips.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2003 Nov 18
2
SIP Context from domain?
Hi,
Is it possible to pick the context of a call from chan_sip based on the
domain of the To: header of the INVUTE? I've had a quick look throught he code
and can't see anything, I want to use the voicemail virtual hosting with
chan_sip. Can the sip domain be picked out with a global in extensions.conf?
This woud also solve my problem.
If not is there any specifc reason/restriction
2003 Dec 06
3
some success with linux 2.6 and wcfxo
Hi ,
I picked up a x100p the other day and thaught I'd havea go at getting the
driver going for linux 2.6, things have gone pretty, two basic problems.
1. makefiles, with 2.6 you can't get away with using the old makefile to build
the kernel modules, they will build but you'll get an error along the lines of
"no module found in object". This is due to not using the new
2004 Jan 13
6
SIP and AGI crash...
Hi,
I'm trying to use the say-ani agi asterisk-perl script and am experiencing
crashes, I am also experienceing problems with the test-agi scripts shipped
with asterisk.
The clearest demonstration of the problem is that if I dial extension 125
configured as...
exten => 125,1,Ringing
exten => 125,2,Wait(3)
exten => 125,3,Answer
exten => 125,4,Wait(2)
exten =>
2010 Aug 26
1
list of closures
Hi, I wanted to create a list of closures. When I use Map(), mapply(), lapply(), etc., to create this list, it appears that the wrong arguments are being passed to the main function. For example:
Main function:
> adder <- function(x) function(y) x + y
Creating list of closures with Map():
> plus <- Map(adder,c(one=1,two=2))> plus$one(1)[1] 3> plus$two(1)[1] 3
Examining what value
2008 Jan 11
9
Varying test data
This isn''t specific to RSpec, but is hopefully on-topic for this list.
I like (especially when "ping pong pairing") to write a spec, then
write the smallest amount of code I can to pass it (especially when
"ping pong pairing"). Sometimes this means hard-coding a return value,
which means another spec is needed to prove that the code is really
behaving as it
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
? Fri, 12 Apr 2024 12:15:07 +0000
Iago Gin? V?zquez <iago.gine at sjd.es> ?????:
> f <- function(whatever){
> ...
> g <- function(whatever2){
> ...
> }
> ...
> }
>
> If I wanted to debug some thing directly inside f I would do
> debug(f). But this does not go inside g code. On the other hand,
> debug(g) does not work as g is not a
2024 Apr 12
1
Debugging functions defined (locally) inside another functions
Thank you Ivan, your example solves my issue this time through
debug(environment(Adder$add)$add)
Just for the future, you say
Moreover, `g` doesn't exist at all until f() is evaluated and reaches
this point. If `f` was a function, it would be possible to trace() it,
inserting a call to debug(g) after it's created.
How should I call trace() if f was a function?
Best
1998 Jul 14
1
Different Forms of attack...
Question,
there are the teardrop, ping of death, DoS and a host of other forms of
attacks. While all of the research that I have been doing concerning
another form of an attack.... I became sorta stumped on an idea...
is there anywhere.... a description on what to expect or what happenes
during any one of these or other attacks listed somewhere? If so, could
someone please direct me in that
2005 Jul 11
0
accessing an alternate controller from text_field_with_auto_complete
Afternoon,
I''m attempting to add a "tag" auto complete text field to my Movies ''edit''
view.
:controller => ''movies'', :action => ''edit'', id => 39
>
I''d like add tags to this movie, and I''d like to draw from existing tags in
the database to avoid small typos or something.
However, the
2007 Sep 09
0
[LLVMdev] Is my install correct ?
Hello,
I have installed llvm-2.0 (on a Linux Fedora 7 distrib) and I get this
error during my first use of llvm-gcc :
llvm-gcc -c adder.c
gccas: This tool is deprecated, please use opt
/usr/local/bin/llvm-as: /tmp/ccwPpLIg.s:14,0: /tmp/ccwPpLIg.s:14: error:
syntax error, unexpected $undefined, expecting TRIPLE or DATALAYOUT
while reading token: 'p'
/usr/local/bin/opt: Invalid bitcode
2012 Jan 25
0
samba 3 a 4 with kerberized nfs4
Hi
openSUSE 12.1 server and client.
I can't get the s4 fileserver nor uid:gid mappings working with s4. I
used nfs and idmapd instead. It's working, but I've a couple of qns.
1. Server fqdn hh3.hh3.site Samba 4, DNS and NFS4
I set up the nfs server with GSSAPI as in this screenshot:
http://2.bp.blogspot.com/-IspbLnfxizc/Txsp-Z1z1tI/AAAAAAAAADk/lsgel498elg/s1600/yastnfs1.png
The nfs
2005 Jul 27
3
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
Each register is a 4-component (namely, r, g, b, a) vector register.
They are actually defined as llvm packed [4xfloat].
The instruction:
add_sat r0.a, r1_bias.xxyy, r3_x2.zzzz
Explaination:
'.a' is a writemask. only the specified component will be update
'.xxyy' and '.zzzz' are swizzle masks, specify the component
permutation, simliar to the Intel SSE permutation
2005 Jul 29
0
[LLVMdev] How to define complicated instruction in TableGen (Direct3D shader instruction)
Actually the problems that Tzu-Chien Chiu are encountering are similar to what should be done for generating SSE code in
the X86 backend and also other SIMD instruction sets. I think LLVM neeeds to add instructions for permuting components,
extracting and injecting elements in packed types. If the architecture has instructions which can do permutations for
each instruction (for example
2007 Feb 16
3
[PATCH][XEND] Don''t call destroy() on exception in start()
destroy() is being called on exception in both start() and create(). It
needs to be called only in create().
Signed-off-by: Aravindh Puthiyaparambil
<aravindh.puthiyaparambil@unisys.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2011 Mar 03
2
PCA - scores
I am running a PCA, but would like to rotate my data and limit the
number of factors that are analyzed. I can do this using the
"principal" command from the psych package [principal(my.data,
nfactors=3,rotate="varimax")], but the issue is that this does not
report scores for the Principal Components the way "princomp" does.
My question is:
Can you get an
2005 May 25
2
URLS and Human Factors
This post addresses URLs generated by Ruby on Rails from a human
factors point of view.
Allow me to use Hieraki as an example. Hieraki is a great
application. It was one of my first introductions to the power of
Ruby on Rails.
Scenario: When I navigated to Chapter 1 of a book the URL in my
address bar was http://www.library.com/read/chapter/6. This
inconsistancy ("Am I on Chapter 1 or
2012 Jun 03
2
Caller ID : FSK ETSI or FSK US
Hello, All :)
Regarding to incoming caller ID on PSTN line, which one is best supported
by asterisk: is it FSK ETSI or FSK US?
I bought some caller ID converter hardware (convert DTMF to FSK and vice
versa) but still asterisk can not detect it.
The converter has a switch FSK ETSI or FSK US
This is what I put in /etc/asterisk/chan_dahdi.conf
...
cidsignalling=bell
cidstart=ring
...
If after
2007 Oct 18
12
first cut at blockless given/when/then
Hi all,
I committed a first cut at blockless Givens/Whens/Thens to RSpec''s trunk:
cd /path/to/rspec/project
svn up
cd rspec
bin/spec examples/story/calculator.rb
Take a look at examples/story/calculator.rb to see what''s going on.
Needs docs!!!!
Thoughts welcome.
I''ve also got a cut at the plain text parser checked in, but it''s not
hooked up to anything
2009 Feb 05
0
Changes to the gecos field returned by winbind
This is a trivial request -- and not a bug, but it could really make my
life easier. I don't know if other Samba users would find this useful or
not.
I'm using winbind to give "Windows" (samba domain) users access to Linux
systems, and we need to audit, generate reports, etc. on who has access,
etc. We're also using winbind groups in /etc/sudoers, so that gets audited