Displaying 20 results from an estimated 20 matches for "mathijs".
Did you mean:
mathias
2006 Sep 11
1
Wrong content-type reported for messages with only a text/html body?
Hi all,
It looks like Dovecot 1.0rc7 reports the wrong content-type for messages
with only a text/html body. An example of such a message is:
---
From: mathijs at izecom.com
Subject: test
To: foobar at example.com
Content-Type: text/html;
test
---
When I talk IMAP to Dovecot directly using telnet and fetch the
bodystructure of this message, Dovecot replies:
* 1 FETCH (BODYSTRUCTURE ("text" "plain" ("charset" "us-asci...
2010 Dec 10
3
Delete observations with a frequency < x
...Example:
1 a
1 b
1 c
2 a
2 b
2 d
Let's say, I would like to delete the rows in which the observation in the
second column has a frequency < 2 in the entire second column. This would
result in:
1 a
1 b
2 a
2 b
How can I do this? Thanks in advance!
Mathijs
--
View this message in context: http://r.789695.n4.nabble.com/Delete-observations-with-a-frequency-x-tp3081226p3081226.html
Sent from the R help mailing list archive at Nabble.com.
2011 Feb 11
11
CSRF protection in rails 2.3.11
...ent at all that you should now make
sure the filter chain halts, or that you must protect your actions by
something that''s stored in the session (because that''s all that gets
done when a faulty request hits).
Maybe I''m just doing something wrong here, please let me know.
Mathijs
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com.
For more options...
2012 Mar 16
1
ggplot axis limit
...I am bar plotting values of 10 groups. These values are all within a 90-100
range, so I would like leave out the area of the bars below 90. If I say
"graph + scale_y_continuous(limit=c(90, 100))", it does limit the axis but
the bars disappear completely. Any solution here?
Thanks a lot!
Mathijs
--
View this message in context: http://r.789695.n4.nabble.com/ggplot-axis-limit-tp4478835p4478835.html
Sent from the R help mailing list archive at Nabble.com.
2008 Mar 25
2
FXImageFrame/SEL_LEFTBUTTONRELEASE
...o luck with receiving a onclick via SEL_LEFTBUTTONRELEASE.
...
imageframe=FXImageFrame.new(mainwindow,the_image,LAYOUT_EXPLICIT,0,0,20,20)
imageframe.connect(SEL_LEFTBUTTONRELEASE) {p ''onclick received''}
...
What is it that I''m missing?
Thanks in advance,
Mathijs.
--
View this message in context: http://www.nabble.com/FXImageFrame-SEL_LEFTBUTTONRELEASE-tp16286969p16286969.html
Sent from the FXRuby Users mailing list archive at Nabble.com.
2006 Mar 06
2
DO NOT REPLY [Bug 3584] New: base64 function does not pad output correctly
...se64 function does not pad output correctly
Product: rsync
Version: 2.6.6
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: mathijs@crooked.net
QAContact: rsync-qa@samba.org
The base64 function in authenticate.c does not correcly pad the output data.
This can easily be seen by having it encode N bytes of data, where N is -not- a
multiple of 3. For instance:
base64("123") == "MTIz" (correct val...
2008 Jan 21
2
multiple ids on restful action
...parent way to
handle this?
I mean ActiveRecord handles Post.find(13,14) just fine,
Post.find([13,14]) also.
Is there a way to make ActionController''s routing automatically give
params[:id] back as an array if it detects some pattern? (something
like from_param maybe?)
Thanks for any help.
Mathijs
--~--~---------~--~----~------------~-------~--~----~
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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send...
2010 Dec 10
2
Projecting data on a world map using long/lat
...nd the globe.
Each count is assigned to the longitude and latitude of the specific
location. Now I want to plot these counts on a world map using dots (size of
dots represent the count). I have been unable to find any info on whether
this is possible and if so, how? Can you please help me? Thanks!
Mathijs
--
View this message in context: http://r.789695.n4.nabble.com/Projecting-data-on-a-world-map-using-long-lat-tp3081298p3081298.html
Sent from the R help mailing list archive at Nabble.com.
2010 Dec 09
2
Error in vector("integer", length) : vector size cannot be NA
...quot;, length) : vector size cannot be NA
In addition: Warning messages:
1: In pd * (as.integer(cat) - 1L) : NAs produced by integer overflow
2: In pd * nl : NAs produced by integer overflow
There is no missing data in my file, so I don't know what's wrong. Can you
please help me? Thanks!
Mathijs
--
View this message in context: http://r.789695.n4.nabble.com/Error-in-vector-integer-length-vector-size-cannot-be-NA-tp3079566p3079566.html
Sent from the R help mailing list archive at Nabble.com.
2012 Jan 24
4
Select elements from text
...as members of a common set [Nicol 2000].
Now I would like to get the following selection:
see also Smith, Jones and Carroll 2002
Nicol 2000
Any ideas on how to do this? What would be the best way to import the text
in R? The entire text as an element in a dataframe? Thank you very much!
Best,
Mathijs
--
View this message in context: http://r.789695.n4.nabble.com/Select-elements-from-text-tp4323947p4323947.html
Sent from the R help mailing list archive at Nabble.com.
2008 Aug 27
1
Basic question about X11()
...t x11() and than move the window manually to another desktop, It works fine, i.e. I can draw a plot in that window.
I am probably just missing some basic syntax rules here. What should I do to get my X11 window to be generated on another desktop than the one i was working from?
Thanks in advance,
Mathijs Groeneweg
[[alternative HTML version deleted]]
2010 Dec 21
1
Matching 2 SQL tables
...is missing. Basically, what I want
to do is to try and fill the missing data in 1 table with the data from the
other table. The difficulty here is that table1$project_name IS NOT
table2$project_name. Example: green-tree and green tree, new(Jacket) and
newJacket. Could you please help me?
Thanks!
Mathijs
--
View this message in context: http://r.789695.n4.nabble.com/Matching-2-SQL-tables-tp3159678p3159678.html
Sent from the R help mailing list archive at Nabble.com.
2007 Jun 04
0
mostly unix clients + subversion
...es be exported correctly through samba? Right now I'm experiencing
lots of problems just copying them from a mounted samba share to my
local (linux) machine and even more the other way around, so I didn't
even try to use a subversion-client on them.
tnx in advance for any help.
Greetings,
Mathijs
2007 Jun 10
0
create mask vs security mask
...our I want.
Is there any way/setting/patch to get the normal(local) behaviour from a
samba/cifs share??
What I want is being able to set all bits on the files I own, but have a
default setting for newly created files/dirs just like umask accomplishes on
local filesystems.
Thanks for any help.
Mathijs
2010 Jun 15
1
"cyclic" dependencies
...n see, "some stuff" requires service1 to be stopped, so it
brings service1 down (dirty/ugly) itself.
I tried some other tricks as well (creating second service block) but
puppet is smart enough to see I''m aliasing service1 in that case.
Is there any nice way to do this?
Thanks,
Mathijs
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com.
For more options, visit this gr...
2012 Mar 14
4
Merging fully overlapping groups
Hi,
I have data on individuals (B) who participated in events (A). If ALL
participants in an event are a subset of the participants in another event I
would like to remove the smaller event and if the participants in one event
are exactly similar to the participants in another event I would like to
remove one of the events (I don't care which one). The following example
does that however it
2012 Nov 01
7
Reduce(paste, x) question
I have a question about the Reduce function:
x <- list()
x[[1]] <- LETTERS[1:5]
x[[2]] <- LETTERS[11:15]
Reduce(paste, x)
[1] "A K" "B L" "C M" "D N" "E O"
How do I get this?:
[1] "A" "K"
[2] "B" "L"
[3] "C" "M"
[4] "D" "N"
[5] "E" "O"
2007 Nov 17
7
Using RSpec to drive the design of a GUI desktop application
Hello everybody,
I''ve been using RSpec as a tool to create web applications for some time
now, in Rails, and using plain Ruby with WEBrick as well. The tool suits my
needs and the story runner is great.
Now there are things that aren''t solvable on the web, you''ll need a _real_
desktop application for those problems.
So I''ve toyed a bit around with various GUI
2011 Feb 25
4
Error
Hi, I am running the following script for a different (much larger data
frame):
DF = data.frame(read.table(textConnection(" A B C D E
1 1 a 1999 1 0
2 1 b 1999 0 1
3 1 c 1999 0 1
4 1 d 1999 1 0
5 2 c 2001 1 0
6 2 d 2001 0 1
7 3 a 2004 0 1
8 3 b 2004 0 1
9 3 d 2004 0 1
10 4 b 2001 1 0
11 4 c 2001 1 0
12 4 d 2001 0
2010 Dec 11
0
is there a packge or code to generate markov chains in R
...n)
43. Re: Remove 100 years from a date object (Gabor Grothendieck)
44. Stricter read.table? (Stavros Macrakis)
45. Re: Remove 100 years from a date object (Daniel Brewer)
46. Re: Perl "cut" equivalent in R (Martin Maechler)
47. Re: Projecting data on a world map using long/lat (mathijsdevaan)
48. Re: Perl "cut" equivalent in R (William Dunlap)
49. new edition of R Companion to Applied Regression (John Fox)
50. Re: help requested (Mike Marchywka)
51. Re: Perl "cut" equivalent in R (Duncan Murdoch)
52. Re: [r] overlap different line in a xyplot (lattic...