search for: distracting

Displaying 20 results from an estimated 613 matches for "distracting".

2004 Jan 24
3
Grandstream 100 sidetone
...lso quite hight. I am distracted when both caller and called party talking over each other occasssionally. The volume of the sidetone can be turned down using the volume button but it also control the volume of the voice call. As the sidetone is louder than the conversation it is getting rather distracting. Can the sidetone be calibrated or adjusted? If not, how are people coupling with it? -- David Kwok Iaxtel/FWD # 17001813482 ext 1002 -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 1878 bytes Desc: S/MIME...
2009 Dec 17
2
[LLVMdev] updated code size comparison
..._harvested_dec_09/076389.c is > miscompiled on GCC 3.4 and SunCC 5.10. Yeah, there are definitely several examples where small code is generated by miscompilation, especially of volatiles. However I would prefer to leave these testcases in, unless there is a strong feeling that they are too distracting. They serve as poignant little reminders about how easy it is to get volatile wrong... John
2017 Dec 19
3
Minimal AD DC server for dev/test setup
Hi Samba List, I am developing software which should interop with AD/LDAP, I am looking at using the Samba DC and loading it with some example user accounts. "Interop with AD" means use and AD backend for authentication, retrieval of basic user record and membership info. Simple enough/ In the past, I've implemented similar functionality using OpenLDAP as the reference backend
2009 Dec 17
0
[LLVMdev] updated code size comparison
> However I would prefer to leave these testcases in, unless there is a > strong feeling that they are too distracting. They serve as poignant > little reminders about how easy it is to get volatile wrong... They skew the results in favor of the less careful compilers so they are more than simply distracting, they are unfair. -- Eric Botcazou
2008 Jan 17
4
Asterisk desktop tools for OS X
Hi everyone, I have been long working on a project (http://asterisktools.org, to be released under GPL) that aims to provide desktop tools for Macs. I am finally getting to the release stages of this application and hope to have an early BETA available next weekend. If there is anybody who is interested in this tool, please send me an email as I am looking for people who can test the
2017 Dec 19
5
Minimal AD DC server for dev/test setup
About the last question, I'll be reading up on samba-tool. Apologies. A better question is: can I run the DC without an attached DNS server? How little can I get away with running? In my imagination, I should be able to run just the LDAP+Kerberos parts, AIUI that's all I need, skipping DNS, fileserving, winbind, etc; blame this on my view of AD as a quirky LDAP. Again, scoped for my use
2007 Sep 28
4
re-encode tool win32
2007/9/28, Aaron Whitehouse <lists@whitehouse.org.nz>: > > > Under linux/bash, it would be something like.... > > cd /MusicDirectory > > find . -type f -name "*.flac" -exec sh -c 'flac -t {} && flac -8V {}' > \; > > Wouldn't it be nice if it was something closer to: > flac --reencode --recursive -8 *.flac I think this would
2006 Nov 07
3
COW and unredirect_fullscreen_windows
I'm using Compiz 0.3.2 on Gentoo with the Nvidia 9626 beta drivers. First off, I would like to state that Compiz is very, very nice. The effects are very tasteful and enhance the desktop experience instead of being distracting. Compiz itself works great, the animations are smooth and it's very nice that it now uses the Metacity themes. The only reason I'm not using Compiz full time is that it clobbers the framerates of my other 3D apps, aka games. From what I understand, one way around this would be to activat...
2010 Jun 29
5
Samba Forum vs. Mailing List?`!
Hello everyone, I wanted to ask if there is an official Samba Forum, because I could not find any on the Project Page. If there isn't any, is there a particular reason for this not-existance? Best regards Tom H. Lautenbacher
2006 Oct 19
5
Google Ads in the Wiki
A fairly serious question: how much can we (as users) donate to get the Google ads off the Wiki? I guess this does not give so much revenue, and it is really distracting. So, if we can match the annual income of Google Ads on the Wiki, I think I (and others) are willing to compensate this with donations. I have seen some potential Dutch users getting turned away seeing the main CentOS site because it looked unprofessional. They main nit probably being the Goog...
2011 Aug 20
2
hetlp_type text doen't work on Ubuntu
Hi, I' using Ubuntu 10.10/11.04 and on both of the systems help doesn't work unless I set options(help_type="html"). I hate to change context and help_type='html' distracts me. I want text based help inside console. Where should I look to fix this problem? -- Amol
2006 Nov 07
2
Snom 360 flickering screen
Hi guys. I just bought and configured a Snom 360 and have noticed that the LCD is constantly flickering at a rate of ~10-15Hz (that's a guess). Either way, it's very distracting. Has anyone else encountered this before? Any solutions? Cheers, -- Nick E: nick.hoffman@voxpak.com P: +61 7 5591 3588 F: +61 7 5591 6588 If you receive this email by mistake, please notify us and do not make any use of the email. We do not waive any privilege, confidentiality or copyright as...
2006 Jan 30
1
Is CVS security on topic for this list?
Hi everyone, I'm wondering about the security implications of running a CVS server with group write permission on the repository and various other configuration details. Is this an appropriate discussion for this list? If it is I have a setup I'd like some feedback on. If this is not the appropriate list please accept my apologies for the distraction. Best Regards, --Duane Whitty
2012 Oct 03
3
[LLVMdev] Does LLVM optimize recursive call?
...r stack (AKA "segmentation fault" :-( ) > if the compiler could not optimize it (tail recursion optimization). Only if the recursion is very deep. In practice, a recursive descent parser isn't going to run out of stack space, nor will a quicksort or binary-tree walker, You're distracting this man from his job of learning how to program. Yes, it's a mistake to have a set of mutually recursive routines that chew up all your stack space; but it's a mistake to reply on a compiler optimization to avoid such problems. Write an explicit loop if it's a possibility. Preston
2010 Jan 28
3
[LLVMdev] llc generated machine assembly code for NASM
On 01/28/2010 11:41 AM, Anton Korobeynikov wrote: > > The required efforts equal to ones required to write new assembler. > "Too weak to be usable" means "it's not possible to represent many > important constructs with masm/nasm/fasm". Wow. It's perhaps too much of a distraction, but I'm curious about the details of this. It's probably because
2012 Oct 03
0
[LLVMdev] Does LLVM optimize recursive call?
...to the recursive invocation of the _larger_ subrange. Recursively calling into the smaller subrange guarantees that it's size is less than half of the current range, whereas a non-tail call into the larger subrange can require linear stack space if the partition isn't good. > You're distracting this man from his job of learning how to program. Indeed. Journeyer, you should ignore this stuff that we are saying, these are all exceptions: you'll fix them if they arise, but you generally shouldn't design with them in mind. Journeyer, if you want to learn more about tail calls, I reco...
2007 Jun 21
2
PHP 4.3.10 on CentOS 4 or CentOS 5
Hi Everyone, I am in a fix with an installation for a client where I need PHP version 4.3.10 or above (4.3.x, but not PHP 5). The application we are trying to run will not run on PHP 5. CentOS 4.5 provides PHP 4.3.9, is there a quick an easy way to have PHP 4.3.10 available on either CentOS 4.5 or CentOS 5 Any pointers will be greatly appreciated. -- "I never look back darling, it
2008 Nov 21
4
MFC ZFS: when?
In several of the recent ZFS posts, multiple people have asked when this will be MFC'd to 7.x. This query has been studiously ignored as other chatter about whatever ZFS issue is discussed. So in a post with no other bug report or discussion content to distract us, when is it intended that ZFS be MFC'd to 7.x?
2011 Feb 21
7
Air Conditioning - ON!
...ever been pushed before. You may also note that upstream was also 'very late' with these new releases. Could it be we are discovering why? (please don't try to answer that) Please please please... ease up, give them the time they need. Make notes for future conversations, but quit distracting them and making them feel bad. Or, write your scathing reply to a thread... get really down angry and in the dirt... then when you're done, just delete it. CentOS team, I do have just one suggestion (and I have no rights to ask this). It seems that the list goes quiet and waits for a while...
2007 Sep 28
0
re-encode tool win32
...spend his time writing the > > encoder (which he does incredibly well). I guess that people who want > > to do this will find it out eventually :). With any luck, third party > > tools will step in to provide this kind of functionality, in a > > user-friendly manner, without distracting Josh. The same argument > > could be said for the windows FLAC gui - is it just a "distraction" > > from the core job of upgrading the encoder? > > > > To be fair, if it is really that simple, someone that isn't up to > > working on the encoder could add...