Displaying 20 results from an estimated 20000 matches similar to: "suggested minor improvement to ssh argument parsing"
2009 Sep 29
1
How to parsing data like this in R
Hi, R-users,
I met a problem:
Items:[Anna 'moi =) akku loppu joskus 4ltä. Kestää kauan nää..'\tAmer, Tuusula (0:20)\t20\t12\t16\t00\t00\t11]/Anne 'Ei jakoa,uus päivä muistio et 4n niin peruin. Hups'\t (0:16)\t0\t12\t18\t00\t00\t11/Elina 'Konsertissa. En tod. vastaa teille'\tEtu-Töölö, Helsinki (2:40)\t24\t12\t18\t00\t00\t11
I want to parsing the above data into the
2021 Aug 26
16
[Bug 3343] New: Display host provided as argument with "ssh -G"
https://bugzilla.mindrot.org/show_bug.cgi?id=3343
Bug ID: 3343
Summary: Display host provided as argument with "ssh -G"
Product: Portable OpenSSH
Version: 8.7p1
Hardware: Other
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh
Assignee:
2010 Apr 09
1
[LLVMdev] offset of extra function argument
Hi,
I am instrumenting certain calls, and want to add an extra argument.
Say
original: foo(int x, int y)
changed into
modified: foo(int x, int y, int EXTRA)
This is in opt, before lowering.
Given the list of original arguments, is it possible to tell the stack offset of the EXTRA argument?
Thank you,
Dan
_________________________________________________________________
2010 May 31
1
Suggested tidying up
Package grDevices has a function cm() to convert from inches to centimeters. Its definition is:
cm <- function(x) 2.54*x
As far as I can tell, the function is not used anywhere in the R sources (I grepped for "cm(", "cm)" and ", cm".) I did not check for all packages on CRAN, though.
May I propose to remove this apparently useless function from the sources?
[I
2009 Sep 25
0
ssh keyforwarding
Dear All,
I have a problem with the ssh keyforwarding.
I use this command:
ssh -t -A uid at hostname 'ssh hostname'
Through the mans this is the right command.
In the config file the keyforwarding is accept.
ssh-agent is runnig with my key ...
I do not know where I miss something ... or what do I wrong
In the servers the .ssh dir exist with the permissions: drwxr-xr-x
the
2008 Mar 10
1
SSH, SCP connections to remote MySQL Database using OpenOffice Possible?
I'm trying to find a way to get remote connections from my Linux Desktop machine to a remote Linux box which is hosting a MySQL database, via SSH port 22, and then once connection is established, log in to the database port 3306 and have either an SSH and or SCP connection established so I can securely do edits and queries.
I am able to connect this way from my Windows machine to remote
2004 Oct 12
1
suggested minor clarification in fix help file
In the help file for "fix" in the Details section:
I suggest that "when" be replaced by "in which case"
so that the sentence reads:
The name supplied as 'x' need not exist as an R object, in which case a
function with no arguments and an empty body is supplied for editing.
I'm looking at:
platform i386-pc-mingw32
arch i386
os
2009 May 05
2
ssh logging
Dear All,
I am a newbie in the unix world.
I have a problem. I try to log all my typed, edited (via vi/vim) and of course the output/result of a command into a file (specific file e.g.: hostname_date_time.log into my home directory).
I would like to reach the same logging what the putty does. But I do not want to use putty under linux.
This is why I ask you is it possible to logging the ssh as
2018 Apr 25
1
extendrange(): suggested improvement
Hi,
I often need to extend the plot range to the right, but not to the
left (for example: not below 0 so that log = "x" still works...). This
could be a handy improvement of extendrange():
--- utils.R 2015-08-25 18:18:20.000000000 -0400
+++ utils.R 2018-04-25 17:21:25.000000000 -0400
@@ -30,6 +30,6 @@
## Purpose: extend a range by a factor 'f' - on each side
2008 Apr 04
2
suggested minor patch for optim.R
optim ignores misspelled control parameters, so that trying
to set (e.g.) "maxint=1000" in the control argument silently
does nothing. The patch below (watch out for line breaks! also
posted at http://www.zoo.ufl.edu/bolker/optim_patch.R , and
http://www.zoo.ufl.edu/bolker/optim_new.R) adds
three lines to optim.R that issue a warning if any names of
elements of "control" fail
2003 Apr 23
0
[LLVMdev] A minor improvement: dyn_cast + iterators
This is just a quick note the let everyone know dyn_cast now works
properly with BasicBlock::iterator's and others. In other words, you can
now do things like this:
for (BasicBlock::iterator I = BB.begin();
PHINode *PN = dyn_cast<PHINode>(I); ++I)
...
instead of this:
for (BasicBlock::iterator I = BB.begin();
PHINode *PN = dyn_cast<PHINode>(&*I); ++I)
...
2006 Feb 24
2
Minor documentation improvement
Gentlemen,
In the documentation for reshape, in the function signature, the
argument "direction" is not listed. However, it is explained in the
explanation of parameters below.
I am using R 2.2.1.
Out of curiosity: Is the R core team still an all-male affair? I don't
think I have seen a single lady's name.
--
-- Vivek Satsangi
Student, Rochester, NY USA
2005 Apr 20
1
Negative argument for head() and tail()
Dear R developers,
I'm a former APL programmer. In that language, the "take" (up arrow) and
"drop" (down arrow) operators were extensively used to, well, take and drop
elements of vectors. Functions head() and tail() are equivalents in R for the
"take" operator, but nothing seems to mimic the "drop" operator. I think it
would be useful.
For
2011 Nov 21
0
Suggested improvement for src/library/base/man/qraux.Rd
Here is a modified version of qraux.Rd, an edited version of
R-2.14.0/src/library/base/man/qraux.Rd
This gives some details and an example for the case of pivoting.
In this case, it is not true that X = QR; rather X[, pivot] = QR.
It may save some other people bugs and time to have this information.
Tim Hesterberg
--------------------------------------------------
% File
2016 Mar 16
0
[Bug 1654] ~/.ssh/known_hosts.d/*
https://bugzilla.mindrot.org/show_bug.cgi?id=1654
Vincent Fortier <vincent.fortier at canada.ca> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |vincent.fortier at canada.ca
--
You are receiving this mail because:
You are watching the assignee of
2006 Jul 17
1
Patch to allow negative argument in head() and tail()
Dear developeRs (and other abuseRs ;-),
I would like to contribute a patch against functions head() and tail() of
package utils to allow for a negative 'n' argument. This allows to extract
all but the first/last 'n' elements/rows/lines of an object, similar to
the "drop" operator of APL. [1]
I put the patched head.R and head.Rd files, along with diff files in
2011 Mar 10
0
[LLVMdev] Parsing dwarf debug info of an GAS assembly file
On Mar 9, 2011, at 6:32 PM, Damien Vincent wrote:
>
> I have a question not strictly related to LLVM:
> I know there is a tool (libdwarf / dwarfdump) to dump/parse debug information of an object file,
> but do you know a tool that can parse dwarf sections of a ".s" GAS assembly file ?
I do not know any tool other than the assembler itself. What are you trying to do ?
-
2007 Aug 30
1
Fwd: Priotirize SSH Traffic
oops, i forgot to reply to the list :-/
Début du message réexpédié :
> De : Vincent Dautremont <vdautrem@ulb.ac.be>
> Date : 30 août 2007 16:58:26 GMT+02:00
> À : Ali Jawad <alijawad1@gmail.com>
> Objet : Rép : [LARTC] Priotirize SSH Traffic
>
> try that
> #tc qdisc add dev eth0 root handle1: prio
> # tc filter add dev eth0 protocol ip parent 1: prio 1 u32
2016 Mar 16
0
[Bug 1654] ~/.ssh/known_hosts.d/*
https://bugzilla.mindrot.org/show_bug.cgi?id=1654
--- Comment #4 from Vincent Fortier <vincent.fortier at canada.ca> ---
If I can add, I just came accross a clear case where this feature is
lacking for me which forces me to redirect to /dev/null: I need to
access multiple hosts from various management networks accross multiple
locations. Management IP are often the same at every location
2008 Jan 05
1
Rscript argument processing minor bug with -g
I think there's a minor bug in the argument-processing carried out by Rscript.
The effect is that if one passes "-g" as a flag to the script, it is erroneously
exposed to the main executable's argument processing and therefore generates a
message about not being able to comply with the request for a particular GUI.
Uppercase G is fine as are the other 25 letters in upper or