similar to: How to set up your library location for multiple users

Displaying 20 results from an estimated 300 matches similar to: "How to set up your library location for multiple users"

2007 Nov 26
1
Plotting with R: setting the y axis
I have a series of numbers I'm wanting to plot. They come from a nanodrop machine, which graphs with a specific x and y indices. X goes from 220nm to 350nm, which I can set. But the y axis should go from -5 to 65, but I'm finding it impossible to hardcode that. I've looked. I've typed ?plot at the R prompt. Google has not been my friend. _R Graphics_, if it holds the key, has not
2007 Apr 14
2
Installation Worries
I have been trying to start up Icecast2 using http://www.howtoforge.com/linux_webradio_with_icecast2_ices2 as my docset. The icecast server comes up; I'm able to go to http://localhost:8000/ and see the pages. I can't seem to get the ices2 part working. I use the suggested config file: [...] <input> <module>playlist</module> <param
2004 Nov 26
1
rsync +progress +percentage
Hi everyone! Im new to this list and i searched the archive for any dupes of this subject but didnt find any. I have a small problem, i want to use rsync to keep all of our systems up 2 date but recently we had some servers that only did a half update. We want to be able to see a progress indicator of the transfer. The best thing was if there was any way to get it in percentage or only a
2014 Mar 26
6
Is there any benefit to using NetworkManager on a server with a static IP?
I've been banging my head against the wall trying to get a simple two NIC bond to work. Got really odd behavior from service network restart, then finally decided to disable NetworkManager. Voila! Bonding and the network service script starts working just the way I expect. Does anyone here actually use NetworkManager on anything but a laptop or desktop? I can't seem to figure out a reason
2011 Apr 12
2
Compile CELT to Windows 64
did anyone compile CELT for Windows 64 bit? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20110412/746edf83/attachment-0002.htm
2011 Apr 03
1
How much buffer to use in the receiver side?
Hi, I am about to start using CELT for streaming audio over the net. i assume that i better have some buffering in the receiver side to overcome small jitter in the network. but my application very sensitive to delay. can anyone advise about it? i am using windows for both sender and receiver side. thanks, Doron -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Apr 17
2
Virtual Sound Card for Windows
Hi, Can anyone recommend a Virtual Sound Card for windows? thanks, Doron -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/opus/attachments/20110417/0b1a4195/attachment-0002.htm
2011 Jun 07
3
Cleveland dot plots
I would rather use cleveland dot plots than bar charts to display my study results. I have not been able to find (or figure out) an R package that is capable of producing the publication quality dot charts Im looking for. I have either not been able to get error bars (lattice), cannot order the data display properly (latticeExtra), or cannot make adjustments to axes. Does anyone have a quick
2012 Aug 01
0
Upcoming workshop on R, taught by John Fox in Berkeley, CA
There are still some seats available in the workshop on R that John Fox will be teaching next week in Berkeley, CA. The workshop title is "The R Statistical Computing Environment: The Basics and Beyond." It will run from Monday, August 6 through Thursday, August 9 (9:00 a.m. through 5:00 p.m. each day). This workshop is offered as part of the Inter-university Consortium for
2017 Jul 01
2
Jacobi 5 Point Stencil Code not Vectorizing
I am able to vectorize it with the following code; #include <stdio.h> #define N 100351 // This function computes 2D-5 point Jacobi stencil void stencil(int a[][N], int b[][N]) { int i, j, k; for (k = 0; k < N; k++) { for (i = 1; i <= N-2; i++) for (j = 1; j <= N-2; j++) b[i][j] = 0.25 * (a[i][j] + a[i-1][j] + a[i+1][j] + a[i][j-1] + a[i][j+1]); for
2006 Mar 23
0
Writing a function to fit ALSOS models. problem with normalization?
Dear all, Below is my attempt at a function to fit Alternate Least Squares Optimal Scaling models, as described in Young (1981) "Quantitative Analysis of Qualitative Data" and Jacoby (1999) "Levels of Measurement and Political Research: An Optimistic View". I would welcome any comments on coding style, tips & tricks etc. I also have a specific problem: the output tends
2001 Feb 20
1
plugin cause winamp and sonique to crash when using playlist or skin ahead
Winamp Version: Winamp v2.72 Processor Type: PII 300mmx RAM: 64mb RAM FILES IN PLAYLIST: 99 Number of OGG Files in Playlist: 90 Number of MP3 Files in Playlist: 9 scenario: I have several OGG files along with MP3s in a PLS playlist and evertime I skip ahead in the list about 12 or so songs the program crashes (I've also tried this with a M3U playlist, using the same files). It happens
2024 Apr 16
2
howto achieve 'hide unreadable' for msdfs symlinks
hi, on a samba domain member file server i'm using dfs root shares with multiple msdfs symlinks pointing to other shares (on the same server), which works fine. These linked shares have different access rights, therefore a user might have access to one linked share but not to another. Is there any option to hide msdfs-symlinks to shares that a user cannot read? (the same as 'hide
2017 Oct 24
3
Jacobi 5 Point Stencil Code not Vectorizing
Your problem is due to GVN partial reduction elimination (PRE) which introduces a PHI node the current loop vectorizer cannot handle: opt -O3 stencil.ll -pass-remarks=loop-vectorize -pass-remarks-missed=loop-vectorize -pass-remarks-analysis=loop-vectorize remark: <unknown>:0:0: loop not vectorized: value that could not be identified as reduction is used outside the loop remark:
2017 Oct 23
3
Jacobi 5 Point Stencil Code not Vectorizing
<div> </div><div> </div><div>Hello,</div><div> </div><div>To me this is an issue in llvm loop vectorizer (if N is large enough to prevent complete unrolling of j-loop).</div><div> </div><div>Woud you mind to share stencil.ll than I would say more definitely what the issue
2024 Apr 17
1
howto achieve 'hide unreadable' for msdfs symlinks
On 16-04-2024 16:21, Konrad Jacobi via samba wrote: > hi, > on a samba domain member file server i'm using dfs root shares with > multiple msdfs symlinks pointing to other shares (on the same server), > which works fine. These linked shares have different access rights, > therefore a user might have access to one linked share but not to > another. > Another option is
2017 Jul 01
2
Jacobi 5 Point Stencil Code not Vectorizing
Hello, I am trying to vectorize following stencil code; #include <stdio.h> #define N 100351 // This function computes 2D-5 point Jacobi stencil void stencil(int a[restrict][N]) { int i, j, k; for (k = 0; k < 100; k++) { for (i = 1; i <= N-2; i++) { for (j = 1; j <= N-2; j++) { a[i][j] = 0.25 * (a[i][j] + a[i-1][j] + a[i+1][j] + a[i][j-1] +
2017 Jul 01
3
Jacobi 5 Point Stencil Code not Vectorizing
Does it happen due to loop carried dependence? if yes what is the solution to vectorize such codes? please reply. i m waiting. On Jul 1, 2017 12:30 PM, "hameeza ahmed" <hahmed2305 at gmail.com> wrote: > I even tried polly but still my llvm IR does not contain vector > instructions. i used the following command; > > clang -S -emit-llvm stencil.c -march=knl -O3
2013 Oct 11
3
Gaussian Quadrature for arbitrary PDF
Hi all, We know that Hermite polynomial is for Gaussian, Laguerre polynomial for Exponential distribution, Legendre polynomial for uniform distribution, Jacobi polynomial for Beta distribution. Does anyone know which kind of polynomial deals with the log-normal, Student抯 t, Inverse gamma and Fisher抯 F distribution? Thank you in advance! David [[alternative HTML version deleted]]
2003 Dec 12
1
jacobi.root, scre.eq, cgf.0, cgf.1 and cgf.2 R-plus functions nee ded
Who can send to me code that can perform in R-plus jacobi.root, scre.eq, cgf.0, cgf.1 and cgf.2 that are part of the S-plus package? Marc D. Brodsky