Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Christopher Nevoraski
How to seal drywall with salt water contamination?
I had a water softener leak in the basement which resulted in a lot of salt water absorbing into the drywall. Everything has since been dried, but there are salt deposits forming on the surface of the drywall. All of the drywall is green board as a preventative measure in case of flooding.
I have tried to scrape/sand the affected areas, applied oil-based primer, patched with drywall compound, and then applied another coat of oil based-primer prior to painting. Still the salt deposits come back, even after multiple coats of oil-based primer.
Does anyone have any ideas? Thanks.
4 AnswersDo It Yourself (DIY)7 years agoWhat to do against attempted online identity thief?
Someone has been attempting to gain access to my girlfriends online accounts. This includes all large ecommerce sites, email, Facebook, Paypal, etc. The person has also been creating new accounts under my girlfriends name and attempting to have sites like Ebay and Paypal transfer the account over to the fake email address. The attacker apparently knew my girlfriends security questions for Ebay as they temporarily had access to the account. We believe we know who this is, as there has been a problem with a certain person in the past. But we are not positive.
Through password reset attempt emails from Ebay, we learned several different IP addresses used by the attacker. I ran scans on all of the IP's to try to determine more information about the attacker. The first IP came through a local AT&T router and the device used was a Sony Ericson. Ebay said the second IP was from a sprint device. I ran scans on this IP but the host was down. The third IP was running a firewall, but AT&T says that the location is in Scranton, Pennsylvania from a network operations center. I'm not sure if this is the same local attacker using a VPN, or someone else entirely?
We have all of the access attempt/password reset emails saved and know where the attacks appeared to come from, but are unsure how to proceed. Do we contact AT&T or Sprint or some higher authority? Any suggestions or feedback on personal experiences would be great.
Thank you!
4 AnswersLaw Enforcement & Police7 years agoC# Populate DataTable from Access?
I am having some trouble binding a datatable returned from a query to a datagridview. I believe the problem is in the GetTableFromQuery(...) method. Debug shows no table rows being populated after the query execution. The table contains no data in the datagridview after binding the datasource.
Here's the query and call to database operation.
private void buttonFilterCustomers_Click(object sender, EventArgs e)
{
DataTable dt = new DataTable();
string query = "SELECT * FROM Customers WHERE '" + comboBoxFilterCustomers.SelectedItem.ToString() + "' = '" + textBoxFilterValueCustomers.Text.ToString() + "'";
dt = DatabaseOperations.GetTableFromQuery(query, null, CommandType.Text);
dataGridViewCustomers.DataSource = dt;
}
Here's the database operation. Sorry for the lack of indentation.
public static DataTable GetTableFromQuery(string query, Dictionary<string, object> parameters, CommandType commandType)
{
DataTable dataTable = new DataTable();
using (OleDbConnection conn = GetConnection())
{
using (OleDbCommand cmd = new OleDbCommand(query, conn))
{
cmd.CommandType = commandType;
if (parameters != null)
{
foreach (KeyValuePair<string, object> parameter in parameters)
{
cmd.Parameters.AddWithValue(parameter.Key, parameter.Value);
}
}
using (OleDbDataAdapter adapter = new OleDbDataAdapter(cmd))
{
adapter.Fill(dataTable);
}
}
}
return dataTable;
}
1 AnswerProgramming & Design7 years agoHelp with fantasy lineup?
Well it's getting close to kick-off for my championship match. I've spent way too long this week researching my options, primarily at QB. I decided to start Russell Wilson because he is the only QB I have that won't be playing in rainy/windy conditions and because I hope that Arizona will shut down Lynch. Any opinions on my lineup? Should I make any changes? Thanks in advance!
QB- Russell Wilson
RB- Jamaal Charles
RB- Le'Veon Bell
WR- Brandon Marshall
WR- Pierre Garcon
TE- Jimmy Graham
W/R- Zac Stacy
K- Mason Crosby
D/ST- Denver Broncos
B- Tom Brady
B- Kirk Cousins
B- Jay Cutler
B- Jordan Todman
B- Torrey Smith
B- Detroit Lions
3 AnswersFantasy Sports7 years agoWho should I start at QB for week 16?
It's the championship game, standard scoring. Here's my options:
Tom Brady
Russell Wilson
Jay Cutler
Kirk Cousins
3 AnswersFantasy Sports7 years agoWhat DEF should I start week 15?
I currently have the Broncos, but the following three are available on waivers for this week:
Dolphins
Eagles
Bills
Who would you start?
2 AnswersFantasy Sports7 years agoWhich RB/WR should I start in a standard league?
Here's my options for RB (Need two):
Andre Brown
Le'Veon Bell
Maurice Jones-Drew
Zac Stacy
Here's my options for WR (Need one):
Pierre Garcon
Torrey Smith
Roddy White
Thanks in advance for the help!
2 AnswersFantasy Sports7 years agoWho should I start this week?
Who should I start this week for fantasy playoffs? This is my current line up. Thanks in advance!
QB- Tom Brady
RB- Jamaal Charles
RB- LeVeon Bell
WR- Brandon Marshall
WR- Torrey Smith
TE- Jimmy Graham
W/R- Andre Brown
DEF- Denver Broncos
K- Mason Crosby
B- Russell Wilson
B- Maurice Jones-Drew
B- Zac Stacy
B- Michael Crabtree
B- Pierre Garcon
B- Mike Wallace
2 AnswersFantasy Sports7 years agoFree web hosting companies?
Hello,
I currently pay 10.84 a month for web hosting. They have been ticking me off with erroneous billing and I'm looking for somewhere else to go.
Are there any companies that offer free hosting? I already have a registered domain name.
2 AnswersOther - Internet8 years agoSQL Query INNER JOIN Problem?
Hello,
I am having a problem with a SQL query. I have three tables in my Access db as follows:
ClassTable
-classId (key)
-classification
PhotoClassTable
-photoId (key)
-classId
PhotoTable
-photoId (key)
-subject
-date
ClassTable has a one to many relationship to PhotoClassTable, which has a many to one relationship with PhotoTable.
It's a C# Windows Form Application. There is a ComboBox to select the classification. On change I want a ListBox to contain the photoId, subject, and date of the pictures corresponding to the classification. I have a query which will display the photoId according to classification, but I can not seem to get the second inner join to show the three fields from PhotoTable corresponding to the selected photoId's.
My current query to join ClassTable and PhotoClassTable is as follows:
string querySQL = "SELECT photoId FROM PhotoClassTable INNER JOIN ClassTable
ON PhotoClassTable.classId = ClassTable.classId
WHERE ClassTable.classification = '" + comboBoxClassify.SelectedValue + "'";
Here's my latest attempt at the three table join:
string querySQL = "SELECT a.photoId, a.subject, a.date FROM PhotoTable a INNER JOIN PhotoClassTable b
ON a.photoId = b.photoId JOIN ClassTable c
ON b.classId = c.classId
WHERE c.classification = '" + comboBoxClassify.SelectedValue + "'";
I'm probably missing something simple... Any help would be appreciated. Thanks!
2 AnswersProgramming & Design8 years agoNeed to hook up wired speakers to a DVD player?
I have a 5 piece surround sound speaker set from an old AV unit I used to have. I want to hook these up to a DVD player but it doesn't have the standard speaker wire output. It has S-Video, optical, component, and digital video output. Is there some kind of converter I can use to go from one of these outputs to five speaker wire outputs?
Thanks!
3 AnswersOther - Electronics8 years agoWhere can I find the highest GB of data storage online for no charge?
I'm looking for a convenient online site for data backup and offsite access. I currently have paid subscriptions to two smaller-name sites I use for web hosting services but their file managers aren't a real treat. Unlimited free storage would be nice. Any suggestions?
1 AnswerOther - Internet8 years agoJava question: Add an ArrayList of BigIntegers to one BigInteger?
This is where I read in the data from a text file, save each line as a BigInteger. I want to be able to add all of the BigIntegers in this ArrayList to one resulting BigInteger or any value what-so-ever. I have tested the program to this point and there is successful population of the ArrayList of BigIntegers.
//Read in each line as a BigInteger. Save each BigInteger to the ArrayList.
String strLine;
ArrayList<BigInteger> lines = new ArrayList<BigInteger>();
while ((strLine = br.readLine()) != null) {
lines.add(new BigInteger(strLine));
}
Thanks in advances!
2 AnswersProgramming & Design8 years agoWhich of these players should I start in week 16?
I have a choice of starting two of these four players in a PPR league, one must be a wide receiver.
DeAngelo Williams
Reggie Bush
David Wilson
Marques Colston
Anquan Boldin
Any thoughts?
3 AnswersFantasy Sports8 years agoHow to reinstall OS on a Macbook?
Hello,
I got an old Macbook from a friend and want to reinstall the OS and start fresh. I am a Windows/Linux guy, this is my first exposure to iOS. I plan to use the laptop for a college course on iOS application development as well as to learn the OS. This reload is my first step in the understanding of iOS.
I don't have any software or license key, if Mac's come with such. Any tips, suggestions, warnings, precautions, step-by-step procedures would be greatly appreciated.
I have hardware / software tech experience with Windows and programming experience in Linux environments so feel free to use big words lol!
Thanks!
1 AnswerSoftware8 years agoLast minute fantasy QB advice?
RG3 is out....
I have Brandon Weeden and Russel Wilson. Who should I start?
4 AnswersFantasy Sports8 years agoStart David Wilson, Alfred Morris, or Reggie Bush Week 15?
I need two of these three guys to start this weekend. I also get points for kick returns, which takes Wilson's value way up as he is the starting RB this week and also returning kicks.
Any thoughts?
Thanks!
3 AnswersFantasy Sports8 years agoWhich defense should I start?
I have the Texans and the Rams.
I'm worried about the Colt's passing attack against a Texan's secondary. I'm also a bit worried about the Rams. If it wasn't for Adrian Peterson the Rams would be the easy choice.
Any suggestions?
3 AnswersFantasy Sports8 years agoPick the best performing fantasy lineup!?
It's a PPR league with a 0.5 points per reception. There is a 2 point bonus for rushing over 100 yards, receiving over 100 yards, passing over 300 yards, and scoring a touchdown on 40 yard or greater play.
Here's the player list:
QB - Robert Griffin II
RB - Arian Foster
RB - Alfred Morris
RB - Reggie Bush
RB - David Wilson
WR - Marques Colston
WR - Anquan Boldin
WR - Sidney Rice
WR - Cecil Shorts
WR - Justin Blackmon
TE - Owen Daniels
TE - Brandon Myers
K - Lawrence Tynes
DEF - Texans
DEF - Rams
Now pick a lineup:
QB -
RB -
RB -
WR -
WR -
TE -
RB/WR/TE -
K -
DEF -
The best answer goes to whoever picks the best performing team!
1 AnswerFantasy Sports8 years agoWhat's the best free CMS tool for websites?
I have a potential client who wants a website designed in DreamWeaver. One of their staff wants to be able to easily update text and pictures. The person doing this updating has no coding experience.
I understand that the newest version of DW, which I would be using, contains a content management system. However, I haven't used DW since version 3 and don't remember a CMS feature then.
So basically, I want to be able to present additional no-cost options to the client for convenient maintenance options if the DW CMS tool is not to their suiting.
If anyone knows of some good CMS tools I would appreciate the help! Don't feel you're helping me make money, this is volunteer for a non-profit!
Thanks =D
Christopher Nevoraski
2 AnswersSoftware8 years ago