Displaying 20 results from an estimated 111 matches for "niceties".
1999 Nov 04
1
Mathematical niceties
I'd like to make axis titles, chart titles, legends and the like
mathematically nice (e.g., have proper superscripts and subscripts,
variables in italics, and so on). Ideally, one could go into ``math mode"
a la LaTeX, and write something like
plot(blah, xlab="Methane in $\mbox{cm}^3$ / g", blah).
This is just an ideal, but it would be nice. Is some approximation of this
2011 Jul 11
8
6.0 text-mode installer broken?
...guess it defaults to
Minimal (which is fine by me, but still it's a bug).
If you give the VM 768 MB of RAM, the GUI installer is launched, and
this one allows you to configure the hostname, the networking details,
and choose the install mode. The system boots up with networking and all
the niceties enabled.
--
Florin Andrei
http://florin.myip.org/
2004 Apr 20
2
Rank - Descending order
...,
Is there any simple way to way to produce "rank", for a given
list, but in a descending order?
E.G:
x = list(a=c(1,5,2,4));
rank(x$a); produces 1,4,2,3
However I am looking for a way to generate (4,1,3,2).
It would be particularly nice if the proposed solution has all
the niceties of rank function (like NA handling and ties.method
functionality)
TIA
Manoj
2017 May 03
2
clang assembler keeps .Linfo_string symbols?
That was probably my fault - not sure of the niceties of the list. Also
not sure I understand why the integrated assembler behaves differently.
I guess gold is never used with object files produced this way?
Regards
Michael
> Tim Northover <t.p.northover at gmail.com> writes:
>
>> On 3 May 2017 at 08:01, Rafael Avila de Espindola...
2000 Nov 08
1
vorbis module: Makefile cleaning
...bably be statically linked, and never installed, just getting
used for the specialized oggenc versions
Heh and wouldn't it be nice to support --program-prefix and friends so that one
could switch easily between 'stable' and 'development' binaries?
Just some ideas for beta3 niceties (as if you didn't have enough),
Erik
If such hacker niceties are desired I can help someone put'em in place.
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-dev-request...
2006 Apr 16
3
variable variables?
Hi everyone,
Does Ruby support variable variables like PHP
(http://www.php.net/manual/en/language.variables.variable.php)? Or do I have
to use eval, like
some_hash.each_pair{|key, pair|
eval "#{key} = #{value}"
}
Or is there some other way?
I''m actually trying to figure this out in order to use ez_where to create
its conditions from a hash, so if this isn''t even
2007 Jul 24
4
GemPlugin or Mongrel::HttpHandler subclass
Hey all
I am working with a technology standard (specific to the commercial
print industry) by which each element within the workflow has bi-
directional HTTP messaging. As each side needs a http server, I
thought I could either:
a) use a gem plugin to modify the behavior of mongrel
b) subclass Mongrel::HttpHandler
In short, its xml messaging between two points; each with a HTTP
client
2012 Sep 08
3
Can I make spss.get reencode from Windows-1252?
...handful of others) come into R looking like this: "Don\x92t know". Now if I read that SPSS file in with read.spss and include "reencode='Windows-1252'", those characters convert to UTF-8 just fine, yielding "Don?t know". But then, of cource, I don't get the niceties of spss.get, such as the "labels" attributes on the columns.
So my question is, how can I either pass the "reencode='Windows-1252'" option through to read.spss, or how can I make spss.get default to reencoding from Windows-1252 instead of Latin-1?
Thanks
?Dan
2011 Mar 26
2
Rails 3 + SSL
...I want to have some pages use
ssl, and some not. It appears the require_ssl approach is pre-Rails3
and there are other alternatives. Most of the posts I read talk about
using a diff domain for ssl (secure.mysite.com). Doing that means I
have to flip domains and seems to get in the way of *_path niceties of
routes in rails3.
I realize I''m probably making this harder than it needs to be, but
it''s my first ssl implementation.
thanks for the replies in advance
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To po...
2011 Jun 26
1
Default values in control list of function
In building a function for a package, I'd like to set the defaults in a control list,
e.g.,
makeg<-function(parameters, eps = 1.0e-7, control=list(showwork=TRUE, rubbish=1.0e+101)){
etc.
}
This does not provide showwork or rubbish within the function if control() is not fully
specified. Copying others, I've previously set the control defaults within the function
then matched
2006 Jun 09
18
Is IRB the ruby console ?
I''m running script/console but keep getting the message that irb.bat is not
recognized as an internal or external command, operable program or batch
file.
If it means anything I am running instant rails. I can invoke irb straight
forward.
TIA
Stuart
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Aug 13
1
SqueezeBox, a new Mongrel handler
SqueezeBox is a simple file system based routing framework for erubis
templates.
It aims for a couple of niceties as well:
Instead of putting your logic inside your template, like you would
with PHP, SqueezeBox recognizes a separate logic file to be called
before it loads the template. This allows you room to load
ActiveRecord models or do calculations. These logic files return to
the webserver the last line...
1999 Aug 02
2
HTML Output from R
...ads the HTML output, formats the header
and footer and any graphic output if necessary.
My question is: Has anyone done any HTML output from R?
My first attempt at this is the following:
(Note: this function is not intended for "production" work; in particular
no error checking - all the niceties I intend to add in the end)
mat2html <- function(x, y, capt="The Default Title", file= file){
#x: The matrix to be written in HTML
#y: A vector of length m containing the colnames of x
#capt: The title for the table
#file: The HTML file to write to
n <- dim(x)[1] #no. of rows...
2003 Nov 03
4
dovecot vs cyrus, uw, etc.
I've been doing research on switching our current e-mail server
(qpopper, sendmail) to imap. The decision on which server to use is
essentially down to Cyrus and Dovecot -- I like Cyrus' approach to a lot
of things, but the "blackbox" nature of it makes some niceties like
using spamassassin and procmail difficult, or at least counterintuitive.
Dovecot seems to play nicer with other apps.
I'm a bit concerned with stability, though. Although we don't have a lot
of users (about 60) they're all very big e-mail users -- my users rely
on their e-mail mor...
2006 Mar 25
1
foreign keys on migration
I have reached a development plateau and now want to integrate some of
the rails niceties that I passed over to get the system online.
I am fooling with migrations. I am using postgresql. I put in my
migration script (at the end of the ''up'' method, the following raw sql
code...
# set up primary key restratints for PostgreSQL
execute ''ALTER TABLE ONLY...
2006 Apr 03
11
Rails VPS Business Hosting
Greetings,
Does anyone have experience with Rails VPS hosting? I''m basically
looking for a hosting reseller option so I can have control of my
clients domains and hosting. I''m looking for something easy to use;
although I like learning it all, and am learning a lot, I am most
definitely not a command line linux user type as of yet.
The one that I''ve looked at
2008 Aug 08
0
[LLVMdev] Ideas for representing vector gather/scatter and masks in LLVM IR
...ghtforward approaches being considered,
and involve either plumbing through new operations, or new semantics for old
operations. There is nontrivial (I expect) but straightforward (again, I
expect) work involved in either. The rest of the options try to avoid some
or all of that work and/or provide niceties for end users at the expense of
being "clever".
Options 3 and 4 are almost certainly outside of the realm of what LLVM
should consider. One of the best things about SSA is how explicit it makes
dependencies, so adding any kind of implicit mask that is carried behind
people's backs is...
2005 Feb 07
4
network drives
Another nicety may be handling network drives. I''ve been using a ruby
script which manipulate using the "net use" command to map network
drives, disconnect network drives, query to see what drives are
connected, etc..., but it''d be sweet if this type of functionality was
included in win32 package.
Maybe usage like:
nd = Win32::NetworkDrive.new(
2007 Jan 12
1
compiling vs interpreting
So I thought I'd write this down, in case anyone has useful input to it or
wants to read up on the decisions later.
Currnetly swfdec compiles actions from a flash file into JSScript objects
and executes them using the standard Spidermonkey API. While this allows
all the niceties that are available with SpiderMonkey (most
important: a whole debugging framework with stack inspection etc - see
player/swfdebug to get an idea about this), I don't like this approach.
I'm probably going to rewrite this into an interpreter that duplicates a
lot of the functionality of jsi...
2000 Sep 03
2
cvs changes
...bogg does.
Now, the other tools don't really belong in the library, so I've started
to pull those out as well. A good place to start was libao, which I have
cleaned up a bit, and made into it's own module called 'ao'. It also
builds to RPM and has 'make dist' and such niceties. It needs a little
work (shouldn't plugins be dynamically loaded?) before I'd ship it but
it's a nice lookin' lib, Stan. My work on this is already commited in the
'ao' module. So you guys who are coding on this should look it over, yell
at me if need be, etc. A few chan...