Displaying 20 results from an estimated 153 matches for "aggravating".
2012 Mar 22
0
aggravations of t-bird 10
a) I do not run gnome. I will *NEVER* voluntarily run gnome. I don't
even want it installed.
b) Click on link in an email in t-bird, and get this in the error console:
Error: uncaught exception: [Exception... "Component returned failure
code: 0x80004005 (NS_ERROR_FAILURE)
[nsIExternalProtocolService.loadUrl]" nsresult: "0x80004005
(NS_ERROR_FAILURE)" location:
2019 May 23
3
df
<rant>
I *swear*, I may get aggravated enough to write a drh - d *real* h.
Between C7, with all the /tmpfs, and this debian 18.04 that has a dozen
/snap all showing up.... All I want it to display is physical drive
partition space....
</rant>
mark
2015 Jul 25
4
Fedora change that will probably affect RHEL
This might show up twice, I think I sent it from a bad address previously.
If so, please accept my apologies.
In Fedora 22, one developer (and only one) decided that if the password
chosen during installation wasn't of sufficient strength, the install
wouldn't continue. A bug was filed, and there was also a great deal of
aggravation about it on the Fedora testing list. So, it was
2007 Dec 31
1
Program output to file using a batch command file
If I copy the following commands in my batch file to the R console, R
creates a file named "basicStatsIBM.lis" with the program output in it:
Sortie <- file(description = "basicStatsIBM.lis", open = "wt", blocking =
TRUE,
encoding = "UTF-8")
sink(file = Sortie, append = FALSE, type = "output", split = FALSE)
basicStats(ibm)
close(Sortie)
2004 Nov 06
2
wishlist: better error message in R CMD check
I was running R CMD check on Windows XP 2.0.1beta and
got this:
Error in parse(file, n, text, prompt) : syntax error on 602
After a lot of aggravation I finally discovered that if I did
this:
copy *.R allofthem.R
and checked line 602 in allofthem.R that I could find the error.
I noticed that there are repeated references in the help archives
to this sort of error and how hard it is to locate
2009 Jan 29
2
fluxbox, ess and redrawing r windows
Hi,
I'm running Lenny with Fluxbox, interacting with R via Emacs + ESS. An
ongoing aggravation with this setup is trying to get R graphics windows
redrawn.
For example, I may have 8 or 10 R graphics windows open, and I switch
between them using Alt-tab. The problem is, sometimes the windows remain
blank. Sometimes I can get the display back by moving the window with
the mouse, or switching
2018 Dec 20
3
Fedora Server - as an alternative ?
On 20/12/2018 15:33, mark wrote:
> lejeczek via CentOS wrote:
>> hi guys
>>
>> I wonder if any Centosian here have done something different than only
>> contemplated using Fedora Server, actually worked on it in test/production
>> envs.
>>
>> If here are some folks who have done it I want to ask if you deem it to
>> be a viable option to put it on
2019 Jul 23
3
[PATCH 1/1] virtio/s390: fix race on airq_areas
The access to airq_areas was racy ever since the adapter interrupts got
introduced to virtio-ccw, but since commit 39c7dcb15892 ("virtio/s390:
make airq summary indicators DMA") this became an issue in practice as
well. Namely before that commit the airq_info that got overwritten was
still functional. After that commit however the two infos share a
summary_indicator, which aggravates the
2019 Jul 23
3
[PATCH 1/1] virtio/s390: fix race on airq_areas
The access to airq_areas was racy ever since the adapter interrupts got
introduced to virtio-ccw, but since commit 39c7dcb15892 ("virtio/s390:
make airq summary indicators DMA") this became an issue in practice as
well. Namely before that commit the airq_info that got overwritten was
still functional. After that commit however the two infos share a
summary_indicator, which aggravates the
2008 Oct 24
2
Sporadic One Way Audio
...them, but they are able to hear the person. The Asterisk server
has only one ethernet interface and is on the same physical network as
the 2 snom 300 phones and is connected to the PSTN lines with a Rhino
R4FXO-EC card. Usually hanging up and calling back solves the problem,
but it is still aggravating to the customer that has been called.
Normally I'd suspect that something was only passing packets in one
direction, but there is no firewall between the asterisk server and the
phones and no iptables or anything like that running on the Asterisk
server and sifting through sip debug logs t...
2006 Jan 23
6
Ruby at O''Reilly Rough Cuts
Not sure if this is old news or not, but it would appear that both the
Ruby Cookbook and a Rails book are now available for purchase at
O''Reilly Rough Cuts (something akin to PragProg''s beta book program):
http://rubyurl.com/nHz
http://my.safaribooksonline.com/?mode=roughcuts&srchtext=ROUGHCUTS
I haven''t tried them yet, but it definitely seems worth checking out.
2018 Dec 20
9
Fedora Server - as an alternative ?
hi guys
I wonder if any Centosian here have done something different than only
contemplated using Fedora Server, actually worked on it in
test/production envs.
If here are some folks who have done it I want to ask if you deem it to
be a viable option to put it on at least portion of servers stack.
Anybody?
Many thanks, L.
2006 Apr 17
0
[LLVMdev] Re: how to code a loop in llvm assembly
On Sat, 15 Apr 2006 07:47:00 +0200
Oscar Fuentes <oscarfv at telefonica.net> wrote:
>
> BTW, Simon, is there a reason for writing LLVM assembler and not
> generating LLVM code directly?
You mean write C++ code that calls the LLVM library ?
I have a mild C++ allergy that I don't wish to aggravate.
> The later is simpler and relieves you
> from some nasty burdens.
Yes,
2011 Mar 21
2
Keyboard repeat error - VNC Xen virtual framebuffer
...m characters, sometimes
just a steady stream of newlines that were not typed are spewed into the
input.
Has anybody had experience with this or a similar problem? Google did not
turn up much that was similiar, and certainly no solutions. Any help would
be much appreciated, as this problem is quite aggravating and distracts from
Xen''s other great qualities!
Sincerely,
Garrett Robinson
--
Garrett Robinson
(484) 802-3882
Oberlin College ''11
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2020 Jun 22
7
Codifying our Brace rules-
...n line as statement(s).
+1 for this. I think braces around single-line statements can be
allowed, but they really shouldn't be mandated, and that's been my
personal policy for reviews. In particular,
if (!is_transform_applicable) {
return {};
}
is very aggravating clutter.
Braces should be required around multi-line statements. Note:
BAD:
for (...)
for (...)
single_line_statement;
GOOD:
for (...) {
for (...)
single_line_statement;
}
Cheers,
Nicolai
--
Lerne, wie die Welt wi...
2007 Jun 19
2
Leaky dovecot-auth ?
Hello,
as mentioned before, we are migrating our mailboxes from a 0.99 cluster
to a 1.0.0 one. With 0.99 dovecot-auth (with LDAP as backend) was leaking
quite happily and the dovecot-auth processes frequently did hit their
size limit and thus were killed and restarted. Which in 0.99 at least
lead to authentication failures on a busy server, as the dovecot
master process just killed off the auth
2013 Jun 07
2
How do I safely terminate COW on pre-existing files?
I want to eliminate the COW feature on all of my OS files. It is a nice
feature for user files, but I don''t see a clear benefit for the actual
OS files. And I suspect that COW induced fragmentation is causing or
aggravating problems with my system including the boot open_ctree
problem. I had planned to recursively chattr these files to "nodatacow"
status but then I ran into this cryptic warning on the chattr man page:
(Note: For btrfs, the ''C'' flag should be set on new or empty files. I...
2017 Nov 28
1
Failed attempts
Lamar Owen wrote:
> On 11/28/2017 12:04 PM, Valeri Galtsev wrote:
>> Thanks, Lamar! that is very instructive.
> You're welcome.
>
>> I was always unimpressed with
>> persistence of attempts to make more secure (less pickable) cylinder
>> cased
>> locks (precision, multi-level, pins at a weird locations/angles).
>
> The best way to make an
2010 Feb 08
2
GTA San Andreas on Mac-PLEASE READ!
I am trying to run my modified no-cd v.1.0 GTA San Andreas game on my aluminum unibody Intel processor (Nvidia gpu) mac using Wine Bottle. I got it to work once and then, after adding my saved game files to the Documents folder, I couldn't get it to run again. It just kept loading the blue virtual desktop and then crashing!!! I cant seem to pull myself away from this problem and i have been
2007 Aug 01
3
Slightly OT: SNOM & PoE
...xperienced similar issues. Phones will run fine, and then
intermittently (and at different times for different ports) the phones will
lockup and require a hard reboot.
I've read on voip-info that the SNOM phones are apparently sensitive to
lower-end network equipment, presumably with PoE only aggravating the
problem.
Question is, what are people using today to deploy PoE, and more
importantly, PoE to SNOM phones?
I believe the model we're working with is the SR224P from Linksys, and the
entire model line of SNOM (3XX)
Could anybody recommend some well-used/tested PoE equipment that you'v...