|
Where I can find a software or a command in DOS that can give me my OpenGL version?
Thanks,
Answer Snippets (Read the full thread at superuser):
Thanks,
I also found OpenGL Version checker
another option: wglinfo , a compiled version sits around here . .
Try OpenGL Extensions Viewer.
|
|
One of my custom developed asp.net sites was hacked today: "Hacked By Swan ( Please Stop Wars !.. )" It is using asp,net and SQL Server 2005 and IIS 6.0 and Windows 2003 server. I am not using Ajax and I think I am using stored procedures everywhere I...
Started by Imageree on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Another decent tool to help you....
By replacing code might be helpful.
Problems or not, then you can ask further here, but otherwise I would get some security experts behind to query the database? These can be prone to SQL injection attacks.
|
|
In Windows Vista,
Start->Run->cmd
opens cmd.exe
Where can I find a list of all the commands that can be executed there?
Today only I found out about getmac . I used to use ipconfig/all . getmac is so much more convenient.
Started by eSKay on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Where can I find" will find you all the EXEs on the drive, and assuming you have permissions to do so, you can execute all should cover it
You....
In Windows Vista, Start->Run->cmd opens cmd.exe.
That would be effective.
|
Ask your Facebook Friends
|
How can I find out the max speed I can get in my area?
BT says that for my postcode I can get up to 20MB, but in reality I only get around 0.20mb
I don't want to purchase a 20MB contract just to "see" and find out that I can't get above 0.5MB
My current...
Started by James.Elsey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Unfortunately, the actual connect speed....
On the above if you have a new-ish line, see if you can unscrew the panel and connect to the test socket.
Make sure you are plugged in to the master socket as this can take away a number of problems.
|
|
In Powershell I can create COM objects which can be used, for example, to control Microsoft Office applications:
$excel = New-Object -com "Excel.Application" $excel.visible = $true
How can I list all of the available COM objects that can be created in...
Started by John Channing on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
That's a big download; you can either download.
If not, you can find it in the Windows SDK .
Studio.
|
|
I am working on the development of a Massively Multiplayer Online Role Playing Game (MMORPG) in .NET using C# and Silverlight. One of the features that has been requested for this game is to allow players to upload their own avatars.
Rather than displaying...
Started by Anthony Gatlin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
(update: here's the library it uses....
I've used code from the image processing lab on code project before with success .
Perhaps the AForge libraries would help you out.
Then you sharpen the image.
Apparently you apply a Gaussian Blur filter to the image .
|
|
Could anyone can tell me where I can find full ASP.NET MVC beta documentation?
Started by k1 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
MVC is also open source and is on CodePlex, so you can just look through the source of course=Documentation&referringTitle=Home....
You can find it on MSDN site here ASP.NET Model View Controller (MVC)
time.
It might be a good bet.
|
|
How can you find files by the following regex?
[^.]
The solution may be in the commands: find, perl, ls
Started by Masi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Perl -MFile::Find -le 'find sub { print if -f.
-type f -not -name \*.\*
command instead.
If it's about filename, like Greg thinks, then I'd suggest
find .
Your requirements.
|
|
I'm using the File::Find module to traverse a directory tree. Once I find a specific file, I want to stop searching. How can I do that?
find (\$processFile, $mydir); sub processFile() { if ($_ =~ /target/) { # How can I return from find here? } }
Started by MCS on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you throw custom exceptions in Perl?
Seems like you will have to die:
eval { find:
#! /usr/bin/perl -w use strict; use File::Find; my @hits = (); my $hit_lim = shift || 20; find( sub { if( scalar @hits >= $hit_lim )....
|
|
How can I find out how many rows a MySQL query returns in Java?
Started by Midday on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you out how many rows ....
Are using a scrollable result set, rs, you can call the methods rs.last and then rs.getRow to find method to find the number of rows in a result set?
No, but it is easy to find the number of rows.
|