|
Hey guys,
I'm an owner of a brand new V2 coupe that I purchased back in February. I wanted a daily driver with a bit of power that will make my office trip exciting. I liked the car during the break-in and I couldn't wait to finish the recommended 1,5...
Started by BERSERKER-V on
, 15 posts
by 14 people.
Answer Snippets (Read the full thread at cadillacforums):
Is your Coupe a manual or auto? Take....
It's time for you to mod Originally Posted by Pphilthy It's time for you to mod Agreed...my biggest problem is traction Those CL600s are never something to take for granted, stock or mildly modified they are monsters .
|
|
I've been approached by a group that want me to build a website of questionable legality. Can I as the developer get in trouble? Or will the people who asked me to develop it get in trouble?
Edit: basically it's a site where people might be upset that...
Started by Galen on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
(I've always wanted to say.
IANAL.
If you're writing software to, say, steal people's internet banking passwords, then yes, you're probably in trouble then.
Then they'll be the ones who are in trouble.
|
|
What am I missing here?
I want to do a simple call to Select() like this:
List<int> list = new List<int>(); //fill the list List<int> selections = (List<int>)list.Select(i => i*i); //for example
And I keep having trouble casting...
Started by Alex Baranosky on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the ....
Select() will return you an IEnumerable<int> type, you have to use the ToList() operator :
List<int> selections = list.Select(i => i*i).ToList();
Select() doesn't return a List so of course you can't cast it to a list .
|
Ask your Facebook Friends
|
I'm having trouble accessing the internet. I can connect to my wireless router successfully, but I can not access the actual internet. However, other computers connected to the same network can. What are some potential problems?
Started by waiwai933 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
This is essential for DHCP functionality :
2.) If your router is using MAC... .
1.) Make sure the Win2k computer is set to obtain an IP via DHCP and that your encryption key is working .
I've run into problems like this before, there are two likely culprits .
|
|
I am reading this article:
http://www.juiceanalytics.com/writing/bubble-trouble/
I would like to make a chart that looks like the bubble one in Excel.
Is VBA a requirement?
Can anyone help me to start?
Started by alexluvsdanielle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Why not use one of the conditional formatting features of Excel? Version 2007 has some pretty nice looking ... .
With some VBA you could probably simulate it.
I don't believe you can perform this exact graphical representation using Excel "out of the box" .
|
|
When using TortoiseCVS, as I checkout a module, dialog (see screenshot ) telling me "Trouble launching CVS process", "The handle is invalid". Any idea on how this would be happening?
Started by Alessandro Vernet on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I had another concurrent install....
Reinstalling TortoiseCVS solved the problem.
Shouldn't it be in the form of a file URL?
is cvs.exe added to the path?
which version of tortoise? cvs? there was a bug reported with that description, according to google .
|
|
I'm having a lot of trouble importing a DLL to use. I have an aspx page with no code behind, no virtual directories.
All I know about the DLL is it's filename 'GenerateExcel.dll' and namespace 'Xander.Utilities'. How do I import it with either of these...
Started by rlb.usa on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To call a dll from your program you need to include the System.Runtime.InteropServices classes
try:
using System.Runtime.InteropServices [DllImport("name.dll")] private static extern int FunctionNameInDll();
I'm not sure if this will work as I don't ... .
|
|
Hello
I'm learning Python, and I'm having trouble with this simple piece of code:
a = raw_input('Enter a number: ') if a > 0: print 'Positive' elif a == 0: print 'Null' elif a < 0: print 'Negative'
It works great, apart from the fact that it always...
Started by trolle3000 on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Handling here to avoid trouble!
Expanding on my comment on the accepted answer , here's how I would do.
|
|
I've noticed that some software names occasionally raise an eyebrow.
I'm thinking of:
libpr0n (semi-official synonym of libimg2 ) mutt (Mail client) BullZip (Freudian slip waiting) GSpot (codec identification software) Did you ever get into trouble for...
Started by DR on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
I never got in trouble for that one, and I don't think anyone else did either.
Never got in trouble browser'.
That deals with i18n called "3CPO" (since he was protocol/translator droid .
|
|
So, I often have trouble describing a function in a succinct name. It's usually not a problem in functions that are made for reuse, but often a large process needs to be broken into sub-functions. Often these get strange names, such as connectionsToAccessLines...
Started by rlbond on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
But it's well worth the trouble finding the best possible names, since it makes your code the question title that the act of programming could be described as "trouble coming up with good.
Refactoring too.
|