Displaying 20 results from an estimated 136 matches for "mimick".
Did you mean:
mimic
2005 Mar 22
1
Mimicking Linksys PAP2?
I've got a Linksys PAP2 on my Vonage account with unlimited
usage, but my softphone-addon account only has 500 minutes. Anyone ever try
to setup their * to mimick the Linksys PAP2 ? Any comments or suggestions on
what problems I might run into if I try?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050322/a12e639c/attachment.htm
2008 Mar 10
1
Mimicking SPSS weighted least squares
Howdy,
In SPSS, there are 2 ways to weight a least squares regression:
1. You can do it from the regression menu.
2. You can set a global weight switch from the data menu.
These two options have no, in my experience, been equivalent.
Now, when I run lm in R with the weights= switch set accordingly, I
get the same set of results you would see with option #1 in SPSS.
Does anybody know how to
2018 Jan 06
0
How to programmatically save a web-page using R (mimicking Command+S)
The 'webshot' package (on CRAN) can do this.
Henrik
On Jan 6, 2018 05:27, "Christofer Bogaso" <bogaso.christofer at gmail.com>
wrote:
> Hi,
>
> I would appreciate if someone can give me a pointer on how to save a
> webpage programmatically using R.
>
> For example, let say I have this webpage open in my browser:
>
>
2018 Jan 06
3
How to programmatically save a web-page using R (mimicking Command+S)
Hi,
I would appreciate if someone can give me a pointer on how to save a
webpage programmatically using R.
For example, let say I have this webpage open in my browser:
http://www.bseindia.com/stock-share-price/dabur-india-ltd/dabur/500096/
When manually I save this page, I just press Command+S (using Mac) and
then this page get saved in hard-disk
Now I want R to mimic this same job that I do
2006 Jul 12
2
(Re-)designing a CMS
Hello Rails-list,
I''m working on a CMS in Rails.
The company that I work for currently uses a CMS written in PHP, and I
want to mimick it in Rails, and improve along the way.
The PHP variant works with templates like this:
In the root of the webdir, there are the template files, named
cms_news.html for example.
This page contains custom tags, in the form of definitions and placeholders...
The definition tags go like:
<!--cms...
2016 Feb 29
3
Sys.readlink (on BSD vs Linux)
...~/test/foo", "~/testlink/foo")); normalizePath(c("~/test/foo","~/testlink/foo"))'
I expected `Sys.readlink` to show the same output as `normalizePath`.
Also, I think the readlink.h imported to R to be the same as from the system's `readlink` command, thus mimicking the command line difference.
Am I wrong with the latter? Anyway, the behaviour is irritating, thus the request to at least mention `normalizePath` in the Rd of `Sys.readlink`.
Best,
Sven
> On 29 Feb 2016, at 11:44, Mikko Korpela <mikko.korpela at aalto.fi> wrote:
>
> On 29.02...
2002 Mar 31
5
File Owner, Group and Permissions for Win2000
Hi,
I need to mirror some Linux directories on a Win2000 box but the owner, group and permissions are lost. I realize Win2000 does not use the same system but thought there may be some way around it with cygwin. Is it possible to mimick /etc/passwd to preserve ownership etc? Is there a better solution?
Roger
-------------- next part --------------
HTML attachment scrubbed and removed
2009 Nov 28
2
Orphaned R Packages (maybe this is too inside baseball?)
How do the R "powers that be" handle packages that are orphaned from CRAN?
Recently, I was looking for a function either part of the base functionality or an add-on package that mimicked the "poly" functionality from Octave (http://n4.nabble.com/Re-R-function-that-duplicates-Octave-s-poly-function-td901174.html)
Based on that post a helpful R user strongly encouraged me to look at the "signal" package.
cran.es.r-project.org/web/packages/signal/index.html...
2011 Nov 15
1
[LLVMdev] add pass to O2. use as "clang -O2 .."
Hello folks,
I wrote a transforming looppass for my project, opt --help can see it. I
want clang to use my pass too, so that I don't have to compile to IR, opt,
and then llc to binary manually. Now I am trying to add my pass to O2
by mimicking LICM pass.
I add a line "MPM.add(createMyPass());"
in PassManagerBuilder::populateModulePassManager, and got assertion fail
"void llvm::PMTopLevelManager::schedulePass(llvm::Pass*): Assertion `PI &&
"Expected required passes to be initialized"' failed."...
2006 Jan 26
1
Help constructing a find_by_sql command
..._sql statement, I tried:
result = Componentlog.find_by_sql ["select * from (select raw_sql_.*,
rownum raw_rnum_ from (SELECT * FROM componentlog WHERE (cl_compname
like ?) ORDER BY cl_spr DESC ) raw_sql_ where rownum <= ? ) where
raw_rnum_ > ? )", criteria, limit, offset]
Which mimicks the error SQL with with an extra right paranethesis but I
still get the same error. Can any SQL guru give me a helping hand?
Thanks
Jeff
--
Posted via http://www.ruby-forum.com/.
2004 Sep 14
2
Excel TDIST and TINV
...terion using the t-distribution on a set of numbers
in perl. I was unable to find a TDIST and TINV function for perl. I am
getting these functions from Excel. So, I figured that I would install
R and call it from perl, overkill for what I need I know. I am having a
hard time figuring out how to mimick the Excel TDIST and TINV functions
in R. Can somebody give me a hand with this? Thanks in advance.
--
Justace Clutter <prophecy at corpranet.net>
2005 Jun 15
1
Bridged-appearances
Has anyone figured out how to mimick a traditional bridged-appearance? My
guys like the ability to put a call on hold on line "3" and it's the same
call on line "3" on everyone else's phone.
2017 Sep 08
5
[RFC] llvm-dwarfdump's command line interface
...--debug-dump=info
$ llvm-dwarfdump --debug-dump=apple-objc
becomes
$ dwarfdump --debug-info
$ dwarfdump --apple-objc
respectively.
My question is, how attached are users on other platforms to the current command line interface? I could easily create a separate command line parser for Darwin that mimicks Darwin dwarfdump (like llvm-objdump does), or we could just change the command line interface for llvm-dwarfdump. I know that there is also a dwarfdump utility on Linux (based on libdwarf?) that has an entirely different command line interface from both llvm-dwarfdump and Darwin dwarfdump.
Do peop...
2020 May 22
2
Creating a copy Pass of DependenceAnalysis
Hi,
I want to create a copy of DependenceAnalysis downstream.
At first I tried the HelloWorld tutorial. But then I figured, maybe I
should move on
to create my pass by mimicking some other pass in LLVM.
So, I tried copying DependenceAnalysis itself [1]
Although after a lot of time of trying it compiled, I'm pretty sure I have
done it
completely in the wrong way. What is more, I can't access my pass with the
argument
I put (-rt-dep-checks).
Then, I watched thi...
2009 Mar 24
1
Why na.rm=FALSE is the default
...argument: it does not make sense to average a
nonexistance into an aggregate, and removing them implicitly leads to
accidental pairwise deletion in some cases, and sum(x) / length(x) < mean(x)
(which many would find disturbing)...I'm just looking for a source to cite
on this issue to support mimicking R's behavior in a database system's
aggregating functions (sum, avg, var, etc.).
Cordially,
Adam Kramer
Ph.D. Candidate, Social Psychology
University of Oregon
adik at uoregon dot edu
2005 Feb 25
1
Asterisk in front of Toshiba CTX
I have googled, and wiki'ed until blue. Is it possible to put
T1---*----Toshiba CTX ? I have a TE405P, with one interface programmed
for the T1, I am not sure how to program the 2nd port to mimick the T1
to the Toshiba. The Zapata.conf
[channels]
switchtype=national
context=from-pstn
signalling=pri_cpe
usecallerid=asreceived
echocancel=yes
echocancelwhenbridged=no
echotraining=400
overlapdial=yes
immediate=no
group=0
channel => 1-23
Zaptel.conf
bchan=1-23
dchan=24...
2012 Mar 28
2
using both bridged and routed networking
Hello,
I''m using Debian Squeeze with Xen 4.0 HVM. Both running 64bits.
I''ve got 4 domU''s requiring the bridged setup to work, I''ve got an IP
address for each.
Now I need to setup routed networking for the rest of domU''s. I just
changed the configuration in xend-config.sxp and restarted Xen.
Routing started to work, while there are still
2013 Mar 15
2
Help finding first value in a BY group
I have a large Excel file with SKU numbers (stock keeping units) and
forecasts which can be mimicked with the following:
Period <- c(1, 2, 3, 1, 2, 3, 4, 1, 2)
SKU <- c("A1","A1","A1","X4","X4","X4","X4","K2","K2")
Forecast <- c(99, 103, 128, 63, 69, 72, 75, 207, 201)
PeriodSKUForecast <- data....
2011 Mar 30
1
[LLVMdev] Trouble traversing the CallGraph
...cgn->begin();
ii != cgn->end(); ++ii ) {}
}
-----
The CallGraphNode::const_iterator is inconsistent. For starters, the inner loop never exits and, besides, if I
try to use the values contained in the iterator (e.g. ii->second) I get segfaults. Calling CG.dump() works
flawlessly, but mimicking the code from CG.dump() in my user code produces inconsistent CGN iterators
again. I am at a loss here, any ideas?
Best,
Gabriel
PS: I have already added the CallGraph analysis to the pass requirements.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <ht...
2011 Jul 11
1
Password Resets as root
...next login" for this case. If I use "smbpasswd -s" as root
the password is changed as I want, but the user cannot change the password
until the next day. I didn't see a way to set this flag via any of the
Samba tools as root.
I was able to get this working via rpcclient by mimicking an admin
password reset from a Windows machine, but this required having access to
the password for an admin account available to the automation.
I ended up patching pdbedit to add a new option " -Y, --pw-must-change
set password must change flag" and call this after sett...