similar to: Strange performance issue

Displaying 20 results from an estimated 200 matches similar to: "Strange performance issue"

2008 May 06
3
expires header for .css
I''m using mongrel as my http server. I was using yslow to evaluate the performance of my web site and noticed I was downloading the .css file on every request??? I use one .css file for the whole site and I though I would be cached? Yslow indicates that there is no expires date/time set for the css file. How can I tell mongrel to send an expires header with my static content? thanks,
2009 Mar 19
3
Settings for CDN, GZip, Header Expires for BEtter Yslow
Hi On my website i m getting B Grade with 87 points. Now i want to make it A and there is a scope to do that. I have added Google Analytics code which is y my gzip component and header expire grade goes to B from A. I need to use Google Analytics so cant i set header expires and gzip that? Another thing is that CDN is not something for a small website. So isnt there a way out where we can set
2017 Aug 13
1
Kernel:[Hardware Error]: use of vacuum
On 08/13/2017 05:18 AM, ken wrote: > Also, cowboys scoff, but I always wear a grounded wrist strap when > handling electronics. It's a good idea, especially in low-humidity climates. Also noteworthy: the air moving through a hose can cause a vacuum's hose or attachment to build up a static charge, which is another reason it can be a bad idea to use a vacuum in a computer.
2012 Feb 10
0
Rspec testing (gunfight at coral)
Can any one give me an explanation on whats going on in this exercise. And any advice on how i should go about it. I dont need any exact codes just yet. But at least a good idea on how to start will be good Thanks Exercise 2: Gunfight at the OK Corral Description Overview This exercise is to create a small ruby program to determine the winners of gunfights, as seen in old Western movies.
2017 Aug 12
3
Kernel:[Hardware Error]:
On Sat, Aug 12, 2017 at 05:51:33PM -0400, Steven Tardy wrote: > > > On Aug 12, 2017, at 3:50 PM, Fred Smith <fredex at fcshome.stoneham.ma.us> wrote: > > > > I had a series of kernel hardware error reports today while I was away > > from my computer: > > > > Message from syslogd at fcshome at Aug 12 10:12:24 ... > > kernel:[Hardware Error]:
2010 Apr 20
5
Debugging slow apache server?
hello, i'm using an apache server to host 8 virtual hosts. even though this server is local.. 7 out of these 8 virtual hosts open extremly slow.. it takes around 10 seconds to open a page.. though the 8th (which is a completely different site) it opens fairly fast in around 1 or 2 seconds tops.. i tried tailing the error_log and i found nothing .. is there a way i could monitor wht each
2006 Sep 08
3
ISPConfig: Secure on Centos?
Just wanted to see if this tool was approved or disapproved of in the centos community as far as security is concerned. http://www.ispconfig.org/ I have noted that anything that is not a centos package is probably suspect, -so feel free to assure, or warn, at your leisure. Basically we are looking for a secure GUI based DNS admin tool, (I myself prefer an openbsd or centos dns machine and tyo
2014 Feb 04
0
[OT] ssh and security DVR
Does anyone have any "security appliance" DVR, and can you a) telnet or b) ssh into it? Also, I have read that on a lot of the low-end ones, like Swann, port 9000 is completely open, but it's not clear to me from the hack post <http://console-cowboys.blogspot.com/2013/01/swann-song-dvr-insecurity.html> whether I could ssh in there, or rsync from a server through that port.
2017 Aug 13
0
Kernel:[Hardware Error]: use of vacuum
On 08/12/2017 07:24 PM, Fred Smith wrote: > Well. overheating is possible... we don't live in the cleanest possible > house, AND we have cats. so, in general I open up this box twice a year > and vacuum out the house dirt and cat fuzzies. I'm probably overdue for > this task. Cleaning is a good thing to do, but not with a vacuum... the vacuum could loosen components, even
2007 Nov 19
5
Howto modify samba printer ACLs without Windows?
Hi all, I would like to limit access to our samba shared printers to certain user groups by commandline without using Windows. Is this possible? Thanks! Christoph
2004 Aug 06
1
Interesting catalog: Viking Electronics
This is not specifically Asterisk-related, but I think that sometimes a "pre-emptive" clue is a good thing. Viking Electronics (http://www.vikingelectronics.com/) has some neat widgets that attach to phone lines, which I'm sure many of the people on this list would find at least somewhat useful in conjunction with their Asterisk systems. Many of the widgets can be replaced with
2006 Mar 18
9
Mirror Mirror on the wall, who is the slowest of them all? CentOS
Some of the other RHEL rebuilds take one or two days, while CentOS takes 2 weeks. While i can't say if they have more than a hundred users, their speed in releasing quarterly updates is commendable. Technically CentOS is not the slowest, as Whitebox takes the wooden spoon but you get the general idea. :) __________________________________________________ Do You Yahoo!? Tired of spam?
2012 Jun 19
2
how to use by function
hi all, Assume I have data like data<-rbind(c(1,2),c(1,3),c(2,1),c(3,2),c(3,4)) I want to get some matrix like 1,2,3 2,NA,NA 3,2,4 I'm using by mat<-matrix(NA,3,3) by(data,data[,1],mat[data[,1],]<-c(data[,2])) but it doesn't work. Any ideas? thanks, cowboy
2005 Sep 01
4
Overhead Paging Systems...
Hey all, I know you all saw the topic and let out a groan. However, I understand how to get an overhead paging system to work with respect *, however I am now looking for a small(?) paging amp, that I could hook 3 or 4 horns to. I would like to just have the * extention be routed to a soundcard and out an output, so I would like an amp that is voice signal activated. Has anyone found anything
2007 Jul 07
2
Change print job priority
Hi list members, I've a problem with a printer in a samba network like the following client ----> samba dc ----> cups ----> network plotter Client: Windows XP Professional Samba: 3.0.20b on SLES 9, SP3 Cups: 1.1.20 Printer: HP DesignJet 1050C The plotter is installed as a windows network printer on the samba server. Cups is directly connected to samba:
2008 Apr 22
1
''dependencies'' and RedCloth
Hey gang. Jed noticed an issue with the ''dependency''/''dependencies'' macro the other day when working on the Collective wiki. Namely, if you make RedCloth a dependency Merb gets a little cranky. I think I have this figured out when doing some mods to Collective today too. However, before I go trying to fix this in Merb, I wanted to run this by the community.
2012 Jul 27
4
why order doesn't work?
hi all, I want to get a cumsum according to the order of some variable. However, it doesnt' work. For example, ********************** test<-data.frame(cbind(x=c(3,5,2,6,7),y=c(8,1,4,9,0))) test[order(test$x),]$sumy<-cumsum(test[order(test$x),]$y) ********************** R complians Warning message: In `[<-.data.frame`(`*tmp*`, order(test$x), , value = list(x = c(2, : provided 3
2008 Jul 07
1
Conflict with openwatcom (wrc)
Whoops. Sorry about that. I wasn't supposed to actually have that as a reply, it was meant to be another top-level post. To summarise, wrc in the Mandriva wine-1.1.0 RPM available from Sourceforge conflicts with the name of "wrc" in openwatcom, which is also a Win32 resource compiler. Cheers, The Viking, Flying Brick Systems.
2009 Sep 24
6
Connecting home intercom to Asterisk?
Hello I assume I'm not the first one to think about this: Is it possible to connect an intercom and/or door bell to Asterisk, so that I can get an e-mail that someone rang my place while I was out? Even better: If used for a doctor's office, it'd be cool if patients could type their Social Security Number on a keypad, which would open the door and notify Asterisk which would then
2017 May 30
9
GPX files
I have a Garmin 78s marine GPS receiver and it stores tracks in GPX format. This is an XML encoded set of points giving longitude, latitude, time and sea depth. Garmin support viewing this via their Garmin Express product, but there only seem to be Windows and Mac versions. I've emailed them and await a reply. In the mean time, does anyone know of any Linux products that will emable me to