Displaying 20 results from an estimated 700 matches similar to: "Filling symbols in xyplot"
2013 Mar 02
1
Please help: Any way to query host membership in nested ldap groups?
Hi all,
I have a openldap server setup with netsted netgruops,. Say the netgroups are:
ngA: (host1, -, - ), (host2, -, - )
ngB: ngA, (host3, - - )
ngc: ngB, (host4, -, -)
Is there a way to find host1's membership? so that I can return: ngA, ngB, ngC?
Thanks a lot.
--Rob
2014 Jul 16
3
[LLVMdev] Dragonegg 2.9 Cannot load plugin
Hi,
I'm using KLEE which supports only LLVM-2.9. In order to compile some
c++ file which requires gcc 4.5, I built Dragonegg 2.9 with LLVM-2.9
and gcc 4.5.1 on a Linux x86_64 machine. It was sucessfully built.
When I try to compile a c++ file using this plugin as below
gcc test.cpp -fplugin=path/dragonegg.so
I got this error:
cc1plus: error: Cannot load plugin path/dragonegg.so
2003 Jan 24
3
OT: don't send html email - RE: Musicmatch
uggggh,
Friends don't let friends send HTML email.
A friendly request that you be considerate to those that do not want email
in virii susceptible formats.
Myles.
<p>Lorenzo banged on his keyboard and his computer puked the following....
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="MSHTML
2007 Jan 10
2
labels outliers in boxplot
Dear R-users,
Following is part of my data, where slide has 36
levels and block 48 levels. I have done boxplot for
each slide on the same graph. There are outliers for
each slide and I tried to use indentify functtion to
identify outliers in such a way that when I click on
an outlier or point, the points will be labelled by
either their block or ID or by both but without
success. How can I make
2003 Jan 28
1
Squid ports to open
Hello,
Have a question I am new to squid, although I have about 100~150 hours of study in the last month to move up quickly. I have set up rh 7.1 on a 300 mgz intell celeron
128mb ram 8gb hd. shorewall 1.2.9 running webmin with openssl access and squidGuard filter. I set it up this weekend to work with a fairly small network that masquerades through shorewall. It serves 60 windows boxs most
2012 Dec 09
1
Fwd: samba_dnsupdate principal and TKEY unacceptable
Hi,
I am trying to run samba with bind_dlz (bind-9.9.1 - P1) on a multi-homed
network. I have configured the setup as per Samba4 Howto.
But when I try to do "samba_dnsupdate --all-names" it fails with error:
dns_tkey_negotiategss: TKEY is unacceptable
The kerberos ticket being used by samba_dnsupdate shows follwoing
principals:
klist -c /tmp/tmp6cxfgY
Ticket cache: FILE:/tmp/tmp6cxfgY
2012 Jul 18
3
pecl install json on CentOS 5.8
Hi
Any clue about the below issue?
/usr/bin/pecl install json
WARNING: channel "pear.php.net" has updated its protocols, use
"channel-update pear.php.net" to update
downloading json-1.2.1.tgz ...
Starting to download json-1.2.1.tgz (17,780 bytes)
......done: 17,780 bytes
11 source files, building
running: phpize
Configuring for:
PHP Api Version: 20041225
Zend Module
2007 Oct 27
2
UTF-8 BOM
I'v encountered what seems to be a bug in PHP Markdown v1.0.1k. Given
a UTF-8 with a BOM, the first line is not parsed.
A brief search revealed a bug report for a similar issue in python-
markdown:
> I'm using the markdown.py command to generate HTML from Markdown
> documentation and I've found that if a utf-8 file starts with a BOM
> a paragraph is generated
2008 Apr 09
3
help with model relationship for Product/Bill of Materials
I am struggling to find the best way to set up relationships to
achieve this so that it fits the rails idioms.
I have a table of products and I want to be able to create a bill of
materials for a product..
So a product can either be a single item, or a package consisting of
several other products.
I have created a table:
----
class BomItem < ActiveRecord::Base
belongs_to :product
2024 Sep 07
1
Reading a txt file from internet
I tried it on R 4.4.1 on Linux Mint 21.3 just before I posted it, and I just tried it on R 3.4.2 on Ubuntu 16.04 and R 4.3.2 on Windows 11 just now and it works on all of them.
I don't have a big-endian machine to test on, but the Unicode spec says to honor the BOM and if there isn't one to assume that it is big-endian data. But in this case there is a BOM so your machine has a buggy
2007 Dec 28
1
Tags in files with Unicode BOM
Is there any way for flac or metaflac to support input from files with
Unicode Byte Order Marks (BOM)?
In command:
metaflac --remove-all-tags --set-tag-from-file="CUESHEET=CDImage.cue"
--set-tag-from-file="LOGFILE=CDImage.log" CDImage.flac
If "CDImage.cue" contains Unicode characters, most text editors append BOM
at the 1st line of this file.
And metaflac does not
2010 Feb 16
7
YAML, UTF-8, TextMate, Notepad
This is not a question but a report on the difficulties I had and the
solution I found with respect to UTF-8, YAML::load, and Ruby/Rails.
Comments are appreciated.
- - -
I had been struggling for two days to get UTF-8 working in my Rails app.
I had/have a localization file, lib\locale\de.yml, that had iso-8859-1
encoding. I could not get that to display properly.
Marnen, quite correctly,
2024 Sep 07
1
Reading a txt file from internet
On 2024-09-07 4:52 p.m., Jeff Newmiller via R-help wrote:
> When you specify LE in the encoding type, you are logically telling the decoder that you know the two-byte pairs are in little-endian order... which could override whatever the byte-order-mark was indicating. If the BOM indicated big-endian then the file decoding would break. If there is a BOM, don't override it unless you have to
2024 Sep 08
1
Reading a txt file from internet
On 2024-09-07 7:37 p.m., Jeff Newmiller wrote:
> I tried it on R 4.4.1 on Linux Mint 21.3 just before I posted it, and I just tried it on R 3.4.2 on Ubuntu 16.04 and R 4.3.2 on Windows 11 just now and it works on all of them.
>
> I don't have a big-endian machine to test on, but the Unicode spec says to honor the BOM and if there isn't one to assume that it is big-endian data.
2024 Sep 07
1
Reading a txt file from internet
When you specify LE in the encoding type, you are logically telling the decoder that you know the two-byte pairs are in little-endian order... which could override whatever the byte-order-mark was indicating. If the BOM indicated big-endian then the file decoding would break. If there is a BOM, don't override it unless you have to (e.g. for a wrong BOM)... leave off the LE unless you really
2009 Nov 12
1
Reading a data file one record at a time [SEC=UNCLASSIFIED]
Dear r-help,
I have a radar data file in the following format:
nrays
for (1 to n_rays)
{ some_data_info
for (1 to n_gates)
{ some_data_info}
}
N_rays=360 and n_gates=950
The data looks something like:
Header line1
Ray1 header
gate1 var1, var2,.....,varN
...
gate950 var1, var2,.....,varN
Ray2 header
gate1 var1, var2,.....,varN
...
2015 Mar 04
4
Samba4+ClamAV
Senhores, bom dia!
Tem como instalar o Samba 4 com o antivirus ClamAV? Achei v?rios
artigos, mas n?o consegui fazer funcionar o ClamAV.
Desde, j? agrade?o a aten??o de todos.
Atenciosamente,
Marcio Fiorette
2012 May 14
6
problem with importing node definitions (2.7.14) [SEC=UNCLASSIFIED]
Hi all,
Doing some work with a puppet 2.7.14 installation to see what''s new and needs to be changed, however i''m seeing unexpected behavior with my manifests, so my external node directory isn''t being imported. This is on a rhel 5 server with the puppet rpms from yum.puppetlabs.com, but the cilent machines is based on fc17 beta with 2.7.13 rpm (which is with that
2004 Jan 09
4
Erro C0000001
Hi everybody
I get it the follow error:
The System can not log on.
Between parentheses (C0000001).
What the means of this, please?
--
Gilberto Nunes
Suporte Rede Bonja - Bom Jesus/Ielusc
Fone: 433-0155 - ramal 235
www.ielusc.br - suporte@ielusc.br
Linux User n? 199930
ICQ #136176504
--
Gilberto Nunes
Suporte Rede Bonja - Bom Jesus/Ielusc
Fone: 433-0155 - ramal 235
www.ielusc.br -
2007 Nov 28
13
What to call a class: Manifest? Configuration? ResourceContainer?
Hi all,
I''ve got a new class in the current code, which I''ve been calling
Configuration but Matt reasonably thinks is horrible.
He is recommending the name Manifest, and I figured I''d see what
others thought.
The point of the class is to function as a resource container -- it
keeps a reference to all of the resources we''re managing, and knows
how to