I have this problem, All users received deferent mails ,all this mails repeated . I have exchange 2003 with eXchange POP3, How can I stop this repeating Emails
Hi guys;
I've got a puppet module to setup several Gigaspaces PU's. Each of these have quite a few variables to be placed within the configuration file templates. We're also using several different environments so these variables are repeated several times to contain the values for each environment.
My question is where the best place to store these variables would be? A class of their own, an external .pp I import, or something other?
I'm using Input Director as a software KVM to control my laptop from my desktop, and all is almost OK with the setup. However, key-presses on the master keyboard seem to repeat very easily on the slave, and it is close to impossible to type a word on the slave without getting repeated characters. I typed the word 'repeat' on the master keyboard and my editor on the slave captured the characters 'repeeaatt'.
Both machines are Windows 7.
I'm getting repeated errors in my console log that look (basically) like this:
10-09-29 10:06:08 AM com.apple.launchd[1] (com.apple.launchd.peruser.501[51581]) getpwuid("501") failed
10-09-29 10:06:08 AM com.apple.launchd[1] (com.apple.launchd.peruser.501[51581]) Exited with exit code: 1
This machine was set up using the migration assistant, from a machine where my UID was 501, but here it's 505. I have the same username and group set, of course, but...
So, where is this peruser launchd tool configured, so that I can disable the daemons that are causing this error message?
I'm getting repeated errors in my console log that look (basically) like this:
10-09-29 10:06:08 AM com.apple.launchd[1] (com.apple.launchd.peruser.501[51581]) getpwuid("501") failed
10-09-29 10:06:08 AM com.apple.launchd[1] (com.apple.launchd.peruser.501[51581]) Exited with exit code: 1
This machine was set up using the migration assistant, from a machine where my UID was 501, but here it's 505. I have the same username and group set, of course, but...
So, where is this peruser launchd tool configured, so that I can disable the daemons that are causing this error message?
I have an Excel sheet that I'm using to keep track of the status of certain things.
I want to have a column which consists of cells containing a repeated drop down that allows you to select (as background)
red
amber
green
unknown
I don't want any text in this cell, I just want a coloured block.
Is this possible?
I've tried playing around with data-validation-list (based on range containing all of said colours but to no avail)
I found this in my log server:
sm-mta[11410]: r9BKb6YY021119: to=<[email protected]>, ctladdr=<[email protected]> (33/33), delay=2+07:24:18, xdelay=00:00:01, mailer=esmtp, pri=29911032, relay=mail1.mkuku.com. [58.22.50.83], dsn=4.0.0, stat=Deferred: Connection refused by mail1.mkuku.com.
This message is repeated every 10-30 seconds with a different "to" address.
What is this? Is my server being used to send spam?
I have an Excel worksheet that has two columns, in one is the name, in the other there are one or more emails, separated by a comma.
Now, I want to get two columns with repeated names but unique emails, so no more than one email address in a single cell, I just want column one to have a name and column two to have an email.
Now it is like this:
name1 email1, email2, email3
name2 email1
name3 email1, email2
And I want it like this:
name1 email1
name1 email2
name1 email3
name2 email1
name3 email1
name3 email2
thanks
Has anybody had any experience using XXClone as a tool for cloning an existing installation of Windows in order to move it from an old PATA drive to a new, larger SATA without having to reinstall everything? Did you have any problems? Or can you recommend an alternative (free) software tool that you know - preferably from repeated experience - is reliable?
I'm looking to move Windows XP Home SP3 to a new disk: same file system, same partition size.
Thanks for looking.
I'm running Xubuntu 11.04, the bootup-time is quite fast but when I log in it takes close to a minute before the desktop is displayed, meanwhile I see no activity on the hard drive. When I finally have the desktop I see this notification repeated 10 times:
and then this one:
In .config/autostart I have these entries
$ ls
xfce4-settings-helper-autostart.desktop
xfce4-clipman-plugin-autostart.desktop xfce-panel.desktop
$ cat xfce-panel.desktop
[Desktop Entry]
Encoding=UTF-8
Version=0.9.4
Type=Application
Name=xfce4-panel
Comment=
Exec=xfce4-panel
StartupNotify=false
Terminal=false
Hidden=false
I need some assistance to locate the slow startup, which logs to look at etc.
And then this annoying message about xfce-panel. Where do I look for from where it is started.
The lead developer of the FO engine send me by chance an email about a REALLY nice feature I did not know about.
Did you ever encounter a long table with merged cells, where the merged cell went on to the next page? While column headers are by default repeated on the next page, row headers are not.
Tables with group-left column and pivot tables are prime examples where this problem occurs.
I have seen reports where merged cells could go over multiple pages and you would need to back to find the row header on previous pages.
The BI Publisher RTF templates have a special tag you can added to a merged cell to repeat the contents after each page break. You just need to add the following (wordy) tag to the next merged table cell:
true
Example:
2nd page of report before adding the tag
2nd page of report after adding the tag.
Thought you might want to know.
Klaus
I am facing the following problem. I want to run a python script as a service on Ubuntu 11.10 system (already mentioned in the following link:
Python service using Upstart on Ubuntu)
I followed the steps mentioned in the above mentioned link, but i got the following error message in syslog:
init: script main process (21826) terminated with status 1
Jun 8 16:59:55 bilbo kernel: [263012.984531] init: script main process ended, respawning
Jun 8 16:59:55 bilbo kernel: [263013.044099] init: script main process (21827) terminated with status 1
The above two lines are getting repeated all the time.
On saying sudo start script, I get the following:
$ sudo start script
script start/running, process 21826
Following is the content of my script.conf placed in /etc/init:
description "Used to start python script as a service"
author "bilbo"
start on runlevel [2]
stop on runlevel [06]
exec python /home/bilbo/scripts/webserver.py
respawn
Please tell me what I am doing wrong? Do I have to change my python code as well?
I need to make a query that creates 3 columns that come from 2 tables which have the following relations:
TABLE 1 has Column ID that relates to TABLE 2 with column ID2
In TABLE 1 there is a column called user
In TABLE 2 there is a column called names
There can be 1 unique user but there can be many names associated to that user.
If i do the following i get all data BUT the user column repeats itself for each name it has associated. What i want is for use to appear unique but the names columns appear with all the names associated to the user column but separated by commas, like the following:
select user,names from TABLE1 left join TABLE2 on TABLE1.id = TABLE2.id
This will show the users repeated everytime a name appears for that user. what i want is to appear like this:
USER - NAMES
cyrex - pedrox, rambo, zelda
homeboy - carmen, carlos, tom, sandra
jerry - seinfeld, christine
ninja - soloboy
etc....
On my laptop, I forgot the password to my Ubuntu partition, so I logged into the root command shell on the recovery start up option in GRUB so that I could change the password.
On my first attempt to change my user password, I got this error:
root@username-PC:~# passwd username (*not my actual user name*)
Enter new UNIX password:
Retype new UNIX password:
passwd: Authentication token manipulation error
passwd: password unchanged
After doing some research, I discovered that I was stuck as read only on the file system, so I ran the following command to remount the file partition as read/write:
mount -rw -o remount /
Afterwards, I change my user password using passwd and it was changed successfully.
I restarted my laptop and tried to login using the new password but the only thing that happened was after entering my password it flashed to a black screen with some text that I couldn't make out except for "Ubuntu 12.04" then another black screen half a second later, and finally back to the login screen. Repeated attempts to login results in only this action.
I installed the proprietary driver (fglrx-updates) on Ubuntu 12.10 64-bit for my graphics card (ATI Radeon HD 7570). I am using two displays, one connected with DVI, one with HDMI. I set the desktop to be expanded to both screens and disabled the under scan for the HDMI screen, which is always for some reason enabled on HDMI screens.
Now the issue. Everything was fine until I restarted my computer. After reboot, the screen connected with HDMI cable had the black borders again, meaning that the under scan is again enabled. I checked the ATI CCC, and under scan was disabled. However, moving the slider to enable under scan and then back to zero fixed the issue -- temporarily. The same issue is repeated every time I restart my computer. The settings remains the same, but the computer seems to ignore it.
Any ideas how I could solve the issue?
I'm wondering about functional or non-functional requirements. I have found lot of different definitions for those terms and I can't assign some of my requirement to proper category.
I'm wondering about requirements that aren't connected with some action or have some additional conditions, for example:
On the list of selected devices, device can be repeated.
Database must contain at least 100 items
Currency of some value must be in USD dollar.
Device must have a name and power consumption value in Watts.
are those requirements functional or non-functional ?
I'm developing an xbox indie game and as a last-resort I have a try...catch encompassing everything.
At this point if an exception is raised I can get the user to send me a message through the xbox however the limit is 250 characters.
How can I get the most value out of my 250 characters?
I don't want to do any encoding / compressing at least initially.
Any solution to this problem could be compressed if needed as a second step anyway.
I'm thinking of doing things like turning this:
at EasyStorage.SaveDevice.VerifyIsReady()
at EasyStorage.SaveDevice.Save(String containerName, String fileName)
into this (drop the repeated namespace/class and method parameter names):
at EasyStorage.SaveDevice.VerifyIsReady()
at ..Save(String, String)
Or maybe even just including the inner-most method, then only line numbers up the stack etc.
TL;DR: Given an exception with a stacktrace how would you get the most useful debugging infromation out of 250 characters?
(It will be a .net exception/stacktrace)
Though in every project we (testers) face different set challenges, when it comes to CV, more or less we have same responsibilities. For example responsibilities like understanding requirements, preparing and executing test cases, creating defects, liaising with dev, BA teams will be repeated for every project we involve. If we keep writing same responsibilities for every role, CV becomes mediocre and a yarn. In fact most of the testing resumes I have come across are like that.
How do I avoid repetition of responsibilities in my resume and make it more interesting?
If this is not the correct forum for this question let me know.
Thanks in advance for your suggestions.
After an update some months ago, my laptop has begun making a low, repeated clicking sound every few seconds. It is not being generated through the regular sound system, as altering the volume and even muting the sound does not make any difference. My regular audio works fine, by the way, so I am guessing this is some sort of PC speaker, since I cannot hear the click when I listen through regular headphones.
Strangely, when I open the sound settings dialog the click magically disappears. I don't need to change any settings; if I simply leave the dialog open in the background then the problem disappears.
Any ideas what this could be?
I am running regular Ubuntu 12.04, and this is the output from lspci -v | grep -A7 -i "audio":
00:1b.0 Audio device: Intel Corporation N10/ICH 7 Family High Definition Audio Controller (rev 02)
Subsystem: Acer Incorporated [ALI] Device 0349
Flags: bus master, fast devsel, latency 0, IRQ 44
Memory at 54200000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: snd_hda_intel
Kernel modules: snd-hda-intel
Sometimes I find myself in situations when the part of code that I am writing is (or seems to be) so self-evident that its name would be basically repeated as a comment:
class Example
{
/// <summary>
/// The location of the update.
/// </summary>
public Uri UpdateLocation { get; set; };
}
(C# example, but please refer to the question as language-agnostic).
A comment like that is useless; what am I doing wrong? Is it the choice of the name that is wrong? How could I comment parts like this better? Should I just skip the comment for things like this?
I'm just messing around with OpenGL and getting some basic structures in place and my first attempt resulted in each SceneObject class (just contains vertex information right now) having it's own VBO inside it, however I've read that it might be better to share VBOs across multiple objects.
Also, I read that you should avoid resizing a VBO (repeated calls to glBufferData with different size parameters), and instead choose a fixed size for a VBO, and just try a range from the buffer. I don't think changing the size of the buffer data would happen too often, but surely it would be better to only allocate the data you need? Choosing an arbitrary value seems risky.
I'm looking for some advice on working with individual objects in a scene and their associated buffer data.
In the front page of my website, I have some previews to articles (with a small introduction to them) that link to the full articles.
I want to disallow the front page to prevent duplicate content. But if I do this (in robots.txt), would it still be crawled?
I mean, the full articles would be still reached by the crawler even though I disallowed the only page that links to them?
I don't want the webcrawler not to access the page and enter the links in them, but I just don't want it to save the information (that will be repeated in the full articles).
I downloaded Ubuntu 11.10 one week ago and burned it to a CD. I installed it on my system which has a 1.5 TB hard.
It installed successfully and I clicked on the restart button. The computer restarted and I chose the first option, which was to load Ubuntu. A black screen would appear with a cursor in top left hand side and I think the system was hung. I repeated this process by erasing the last Ubuntu install but I faced a similar problem.
Can anybody help me?
I'm trying to do a remake of Snowbros . I'm doing it using libgdx but at each time i must try to thought how things got done .
For example the physics of the jump and collisions . It seams to be time perfect , but i use the deltaTime to try to aproximate the value in game . I think in this case maybe its using some calcs with processor Hz , but i don't know.
Then the simple question , is there any resources of how did they programm this games? Or any idea of the simple ideas repeated each game to game in the old style retro games.