similar to: Rails job position in UK

Displaying 20 results from an estimated 1100 matches similar to: "Rails job position in UK"

2009 Oct 17
1
looking for reference that covers convergence in distribution
I am looking for a good probability book that describes convergence in distribution. I have looked through Introduction to Probability by Charles M. Grinstead, J. Laurie Snell, but I don't find any formal description on convergence in distribution. Could somebody recommend a good book that cover this topic? Thank you!
2013 May 13
3
ZFS on Linux + ACLs
Hello, Does anyone test ZFS on Linux and ACLs? I can't setup POSIX ACLs and any extended even using acl_xattr or acl_tdb. Is any way to use ACLs with ZFS on Linux (Samba 3 or 4)? Best regards /Adrian Berlin --
2006 Apr 27
3
gmane?
Hi All, I recently found gmane http://gmane.org/ It's a system to covert mail to news and back, with the nice property of keeping a searchable archive... Very convenient if you are subscribed to many lists and don't want to have your mail box cluttered. I use it to read several mailing lists already, but R is not available there. I wonder if the admins know about gmane and if they
2006 Apr 18
6
R and ViM
Dear all, I'm starting to learn R, but I'm already programing for a while, using ViM as editor. Therefore I'd like to be able to use R together with ViM. My question now is, whether there are already people out there knowing how to do this in a similar easy way as with Emacs, and if those would be willing to share this knowledge. I did already research on the web on this topic,
2002 Dec 20
1
System tray
Hello, Is there any system tray support in wine? :) if not how to restore minimized Trillian window (with contacts etc.) ? :) Greetings, Szymon
2002 Aug 10
4
Samba PDC and Word
I have Samba running as a PDC and it works perfectly, until that is, a Win 2000 user authenticated by the PDC and with a profile on the Samba server wants to access Word and then after a minute or so Word crashes, I got the same result with a Redhat PDC and also with an SME server distro. Informed suggestions other than dump Word are very welcome... John Russell Digital Media Lab University of
2009 Oct 17
2
Recommendation on a probability textbook (conditional probability)
I need to refresh my memory on Probability Theory, especially on conditional probability. In particular, I want to solve the following two problems. Can somebody point me some good books on Probability Theory? Thank you! 1. Z=X+Y, where X and Y are independent random variables and their distributions are known. Now, I want to compute E(X | Z = z). 2.Suppose that I have $I \times J$ random number
2004 Oct 13
3
smbfs mount issues
This problem began a couple months ago with my new install of (you guessed it) XP sp2. Now, when i mount a share from the xp machine to my debian box, everyone, including rot, gets a permission denied trying to ls the dir. I've read posts about switching to cifs, but that has opened a whole new can of worms. I'd just like to see smbfs mount my shares properly the way they used to. My
2013 Feb 13
2
rsync'ing samba shares
I know this has come up a bit in the past, but consider this situation: Two Samba4 DC's - and I want to "mirror" the data shares to the "backup" DC in case we lose the primary DC and it's file shares. [A cheap, dirty, poor-mans semi-CTDB. How did you ever guess that Red Green was helping me?!] The easiest way is probably rsync'ing the data. However, will that
2010 Mar 15
1
[LLVMdev] Seeking advice on Structural Analysis pass
On Mar 13, 2010, at 11:54 AM, James Stanier wrote: > It > analyses the CFG and recognises specific region schema, such as if- > then, > if-then-else, while-loop, etc., and builds a "control tree" which > represents > the hierarchical structure of the input program. I am not sure if my definition of a control flow tree is the same as yours, but if it is, I am very
2012 Nov 07
0
[LLVMdev] LLVM Development Opportunity UK.
Hello My name is Guy Quantrell. I work for an organisation called WA Consultants. We are a recruitment agency based in the UK, specialising in supplying to mobile handset providers. I am currently recruiting for a major handset manufacturer based near London who is looking for an LLVM developer to lead its open source activities in this area. I am very keen to have a chat with anybody wishing to
2019 Apr 25
2
Error with dbcheck after upgrade to 4.10.2
Hi, I am seeing the following error when running samba-tool dbcheck # samba-tool dbcheck --cross-ncs ERROR(<class 'KeyError'>): uncaught exception - 'No such element' File "/usr/local/samba4/lib/python3.6/site-packages/samba/netcmd/__init__.py", line 185, in _run return self.run(*args, **kwargs) File
2014 May 19
1
Zero byte files
Hi all, I have a Centos 6 box running samba-3.6.9 and I have a problem with files turning to 0 bytes after being edited and saved. One of the users reported that he changed the name of two files and both ended up sized 0 bytes and opening them revealed them to be empty. Has anyone had a similar problem? I've been looking for 3 days and there's obvious pattern to the events
2007 Jun 01
2
Samba authentication slow after upgrade to Samba 3
Hi, I have just upgraded a server from Samba 2 to Samba 3 and some of the Windows clients are taking a long time to authenticate shares (1 or 2 minutes). Eventually the username/password box appears and then when you enter a correct password, all is fine - it is just the initial authentication. This is a simple UNIX password Samba server (with NIS) and I have set it to not use encrypted
2007 Jan 23
3
[fixed] vectorized nested loop: apply a function that takes two rows
(Extremely sorry, disregard previous email as I hit send before pasting the latest version of the example; this one is smaller too) Dear R users, I want to apply a function that takes two vectors as input to all pairs (combinations (nrow(X), 2))of matrix rows in a matrix. I know that ideally, one should avoid loops in R, but after reading the docs for do.call, apply, etc, I still don't know
2007 Jan 23
3
[fixed] vectorized nested loop: apply a function that takes two rows
(Extremely sorry, disregard previous email as I hit send before pasting the latest version of the example; this one is smaller too) Dear R users, I want to apply a function that takes two vectors as input to all pairs (combinations (nrow(X), 2))of matrix rows in a matrix. I know that ideally, one should avoid loops in R, but after reading the docs for do.call, apply, etc, I still don't know
2007 Jan 31
2
Windows Client Print Queue does not get cleared afterjobcompletion....
Hi, I am too having the same problem when printing, I could not find a solution other than as you do, remove it after. I am still looking at this issue and will send to this list if I get a solution if no-one replies. :) Dave > -----Original Message----- > From: > samba-bounces+david.ellison=atkinsglobal.com@lists.samba.org >
2009 Apr 15
7
[LLVMdev] Accessing instruction/operand names
Hello everyone, I'm currently constructing a graph from LLVM bitcode, and I have a question about accessing the names of the variables shown in the .ll assembly file, assuming it's possible... For example, with %2 = load i32* %x_addr, align 4 ; <i32> [#uses=1] I can retrieve the opcodeName() from the Instruction object, which is "load". I can also access the operand
2010 Mar 13
2
[LLVMdev] Seeking advice on Structural Analysis pass
Hi folks, A few months back I finished writing and testing a pass which implements "structural analysis" as described originally by Sharir in 1980 ("Structural analysis: A new approach to flow analysis in optimizing compilers") and more recently by Muchnick in Advanced Compiler Design and Implementation. It analyses the CFG and recognises specific region schema, such as
2007 Jun 07
3
Guest account access with User mode security?
Hi, I have a Samba server that I have just transitioned from Samba v2 to v3 and at the same time I have changed from share mode security to user mode security. I having problems allowing guest access to some of my shares on the server. I have some shares (such as apps and cdrom etc) that I would like to allow anyone to access - even if they do not have an login account on the Samba server. This