Displaying 20 results from an estimated 58 matches for "bleh".
Did you mean:
blah
2006 Jul 18
5
a best way to write this.
I have a form, with 3 fields, then in my controller I get the paramters
to run a query but I don''t want to filter with paramters if they are
nil or blank...
I''m doing this
@condition = ''''
if(params.....)
@condition = @condition + " myparamter = " + params[.....
if(params.....)
@condition = @condition + " myparamter = " +
2008 Apr 03
2
Winbind ignores idmap configuration (3.0.28a)
...SO_RCVBUF=8192 SO_SNDBUF=8192
smb ports = 445
disable netbios = yes
idmap domains = ORGUSERDOMAIN
# Winbind RID
idmap config ORGUSERDOMAIN: backend = rid
idmap config ORGUSERDOMAIN: base_rid = 1000
idmap config ORGUSERDOMAIN: range = 10000-20000
Here is output from winbind:
[ 7677]: lookupsid bleh
get_cache: Setting MS-RPC methods for domain ORGUSERDOMAIN
rpc: query_user sid=bleh
error getting user info for sid bleh
query_user returned an error
Could not query domain ORGUSERDOMAIN SID bleh
Thanks in advance,
Naadir Jeewa
2013 Jun 24
2
[OT] bash here documents
...in (int argc, char** argv)
{
while (1)
{
char cmd[80];
std::cin.getline(cmd, 80);
std::cout << "response to " << cmd << std::endl;
}
}
compiled by: c++ -o junk junk.cpp
and I have this bash script:
#!/bin/bash
./junk <<EOF
blah
bleh
\cC
EOF
echo "Something else"
When I run the script, the program starts and waits for input forever.
I have 2 questions:
1) The "blah" and "bleh" line are not echoed to cout. Why not? Does the here document not send the data to stdin?
2) How do I terminate the program...
2007 May 12
3
Setting form-values
...w/index.php?title='' + pagename
+ ''&action=edit'')
form = page.forms.with.name("editform").first
form.wpTextbox1 = content
form.wpSummary = editsummary
page = agent.submit form
end
save(''User:Tim.bounceback/testing'', ''bleh'')
Yields the following error message:
bleh.rb:8:in `save'': undefined method `wpTextbox1='' for nil:NilClass
(NoMethodError)
from bleh.rb:12
Any help would be appreciated
Thanks!
Tim
-------------- next part --------------
An HTML attachment was scrubbed...
URL:...
2005 Jan 04
2
print(cat(bleh)) shows up strange NULL
I am trying the following code...
for(i in 1:bins){
print(cat(c(i, length(var1[var1==i]))))
}
Where var1 is a vector with zero or more values = {1, 2, ..., bins} (or
something like that).
The result I get is...
1 33NULL
2 28NULL
3 39NULL
4 27NULL
5 32NULL
6 30NULL
7 23NULL
8 16NULL
9 10NULL
10 15NULL
11 13NULL
12 7NULL
13 3NULL
14 7NULL
15 2NULL
16 0NULL
17 2NULL
18 0NULL
19 0NULL
20 3NULL
2005 Sep 06
4
PHP and ASterisk Manager
Guys, is anybody using PHP sockets to connect to the Manager and send
command like "show voicemail users" for example or any other?
My question is, how to parse the return info in a way that can be shown back
to the user via web (discard all the manager responses not needed)?
Thx in advance for any help you can provide.
2006 Nov 20
2
schedule support on latest svn, a question
I''m running the latest backgroundrb mainly for scheduled tasks support.
As per the documentation I created the backgroundrb_schedules.yml with
the following:
simple_label:
:class: :document_sorter_worker
:worker_method: :do_work
:job: :bleh
:trigger_args:
:start: <%= Time.now + 5.seconds %>
:end: <%= Time.now + 10.minutes
:repeat_interval: 1.minute
Under lib/workers I have the following class:
class DocumentSorterWorker < BackgrounDRb::Worker::RailsBase
def do_work(args)
logger.info(''Documen...
2004 Aug 06
1
Ogg response headers
> This works with IE, not entirely sure if this technique will work within
> winamp, but my guess is no, it might need a URL that ends in .ogg....as a
> shot in the dark you could also try :
> http://server/yourscripty.php?dummy=/bleh.ogg
<p>I'd be extremely surprised if the Content-Disposition approach worked with
winamp - the problems with winamp are far too deep for it to even be
relevant.
The dummy URL parameter I _would_ expect to work, on the other hand but
obviously this would need some testing.
Mike
---...
2017 Feb 02
2
HP Zbook17 Dock and UEFI conflict with GK107GLM aka Quadro K1100M
...veaufb handoff, but only when external
>> monitors are attached. The handoff works without issue when the BIOS is
>> in Mixed EFI mode, with and without external monitors, and
>> works in Native EFI mode without external monitors.
>
> Sorted by nouveau.config=NvForcePost=1
Bleh. That's unfortunate. Presumably in "Native EFI" mode, displays
work fine with efifb until nouveau takes over?
There was a time when the blob did *something* weird which defeated
nouveau's display logic (when flipping between the two drivers).
Perhaps this Native EFI mode does som...
2008 Oct 22
1
tar: File changed as we read it
tar: blah.bleh: file changed as we read it
I have a file (two files actually) with different timestamps on the AFR
backends -- I presume because the file timestamp was set to the current time,
when the last write operation completed and there is some minor clock skew or
network lag. tar notices this intermit...
2006 Apr 05
4
Why does titleize remove hyphens?
item.title = ''alpha-bravo''
item.title = item.title.titleize
puts item.title
alpha bravo
I didn''t notice this with 1.0 - a new bug in 1.1?
Joe
--
Posted via http://www.ruby-forum.com/.
2012 Jul 30
0
Defining node types in modules
...oot@puppet01:/etc/puppet/modules/zen_puppet01opslab/manifests# cat
puppetdashboard_mysql.pp
class zen_puppet01opslab::puppetdashboard_mysql {
class { ''mysql'': }
# ''mysql::ruby'':
# ''mysql::server'':
mysql::ruby { ''bleh'': }
mysql::server { ''bleh'':
config_hash => { ''root_password'' => ''secretmysqlpassword'' }
}
}
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To view...
2006 Dec 11
1
a web interface to identify()
i have a function like this:
# show a plot and run a script when the user clicks on a plot,
# where the script arguments correspond to the user-selected point.
blah <- function(x, y) {
plot(y~x)
n <- identify(x=x, y=y)
com <- system(command=paste("bleh", names(y)[n]))
}
i would like to do this via a web page instead of x11() etc. eg:
1) a user clicks on an image in their web browser
2) the i,j coordinate is sent to the server
3) a single R process determines the nearest data point
4) the server sends a new page to the client, bas...
2004 Aug 06
3
Ogg response headers
> p.s. Please don't ever send HTML mail to this or any other mailing list.
roger that, outlook has its way of deciding for you sometimes :/
<p>> URL ends with ".ogg". If your script ends with ".php" (as it probably
does),
Since i got the mp3 part to work, myabe ill try adding .ogg to be parsed by
php in the
apache config, since it the winamp request ends up
2009 Aug 14
9
Rescuing from REXML::ParseException
Hello,
When I call an action with some invalid XML or JSON data a parse
exception gets raised from within Rails/Ruby (REXML or
ActiveSupport::JSON). The problem that I''ve got is how to handle these
exceptions. In my application_controller.rb I have the following for
debugging purposes:
def rescue_action_in_public(exception)
respond_to do |request|
request.all { render :text =>
2004 Aug 26
13
Load Balance simply doesn´t work...
i´ve been searching for a load balance solution since a month
ago... what i can say is that it simply doesn´t work. I was
unable to find one guy that did it with sucess. When "load
balance" is the subject of the message on the list, the
message is simply ignored.
So... if it doesn´t work... why LARTC don´t delete it from the
HOW TO and answer us with some "it simply doesn´t
2004 Sep 20
2
1 extension entry for multiple purposes?
Hey gang,
There must be any easy solution for this but my mind is frazzled on
compiling 2.4 with RTC as module. Bleh.
Currently extension 9000 is our VoicemailMain(@company) line. Some
employee's are complaining that the old system was better because you didn't
have to enter your mailbox number and that instead the old system took you
right to it.
I figured there was something similar so that I don'...
2014 Feb 03
5
[LLVMdev] [RFC] Removing FCA constants from the IR
Currently, you're allowed to form a constant of aggregate type using any
number of other constants you like. This makes scanning the instructions of
the IR needlessly complex when looking for references to constants.
There is no need to support this degree of complexity in the IR. We could
require that for anything but 'zeroinitializer' you cannot write a constant
of aggregate
2007 Mar 22
3
[LLVMdev] GSOC - HLVM Work
...ertain point (I love C for it's simple
beauty, but despise it when it's over 2,000 lines).
* I am a language junky, so I have:
* a relatively extensive knowledge of C, Objective-C,
Java, Ruby, and x86 assembler;
* a proficient knowledge of C++, D, C#, Python,
Scheme, and [bleh-ick-yuck] VB; and,
* a moderate to low knowledge of Common Lisp, Haskell,
and Erlang (the latter two I am currently learning).
* Have written part of a small, functional compiler as
part of a university course; I understand the architecture.
* Big fan of GC (written a small collector)
*...
2013 Aug 19
4
[LLVMdev] Generating GetElementPtr inlined in a function argument list programmatically
...working on a tool for my research project using LLVM. Thanks for your awesome work!
I have come across some bytecode like the following with an GetElementPtr instruction in brackets:
Bytecode:%3 = call i32 @_Z4funcPKc(i8* getelementptr inbounds ([5 x i8]* @.str2, i32 0, i32 0))
C++ code:func("bleh");
However when I am generating bytecode programmatically, I can not have the GetElementPtr value "inlined" in the function argument list:
Bytecode:%bbname = getelementptr inbounds [29 x i8]* @bbname10, i32 0, i32 0call void @incrementFaultSiteCount(i8* %bbname, i32 2)
C++ code: (Wha...