|
Checked my bios, it says multiplier x20
http://tinypic.com/r/8y73vr/6
I don't understand, Does it mean my CPU is running at 1.6 istead of 2.6?
Or maybe I'm just being dumb..
Started by yuri221 on
, 11 posts
by 3 people.
Answer Snippets (Read the full thread at techpowerup):
Oh rofl...sorry about this stupid thread then ^^ Ummm sorry but can you guys... .
The energy saving setting is enabled in the bios.
Load it with prime95 and it will jump to 2.66ghz .
This can be disabled in Bios.
The CPU throttles itself down to safe energy.
|
|
Why isn't there NSArrayController for the iPhone? Will there ever be an NSArrayController for the iPhone?
Started by Daniel Kindler on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Why isn't there NSArrayController for the iPhone?
Because it's part of the Application Kit.
|
|
Anybody using language 'D' ?
Why isn't it more popular?
Started by Gopalakrishnan Subramani on
, 23 posts
by 23 people.
Answer Snippets (Read the full thread at stackoverflow):
This isn't implemented yet, but the idea is to make all data unshared.
Shared.
Maybe the language isn't the problem, and (yet) another language of the pure function.
Itself has to offer in many cases.
|
Ask your Facebook Friends
|
I was curious why C++ isn't offered as a code-behind language for ASP.NET applications?
Started by Xaisoft on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
C++ is supported, but as another answer says - most C++ apps require a higher level trust mode that ASP.NET cannot support... .
And C++ generally compiles into something that requires higher trust levels .
Most ASP.NET applications run in limited trust modes.
|
|
Why isn't there a Team Foundation Server Express Edition?
Started by Chris Pietschmann on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
If they had an express edition of TFS, then they'd probably get more people using it... .
And individuals shouldn't be using TFS?? That's like saying source control is only for groups and not individuals .
Because the express editions are for individuals...
|
|
Given a command in SQL;
SELECT ... FROM ... GROUP BY ...
Can I group by something that isn't in the SELECT line?
Started by nisnis84 on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Example:
select count(1) from sales group by salesman_id
What you can't do, of course, if having something on your select clause (... .
Select count(*) from some_table_with_updated_column group by trunc(updated, 'MM.YYYY')
Yes, you can .
Yes of course e.g.
|
|
In the book Head First Java, pages 520 and 521, there is a method that isn't a constructor and isn't mentioned again. The method is run() , and none of the code explicitly calls that method... but it's executing anyway.
How can a method execute without...
Started by Delirium tremens on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When the thread is started using the start....
Usually 1 you start a new thread by creating an instance of Thread , passing in an instance of Runnable .
Without having the book, my guess is that the class is either extending Thread or implementing Runnable .
|
|
I was told that in Java, unchecked exceptions can be caught in a try block, but if it's caught, isn't it called a checked exception?
Started by Anonymous on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The....
Checked exceptions are exceptions that need to be caught in a try - catch block .
Unchecked exceptions are subclasses of the RuntimeException or Error classes .
Unchecked exceptions are exceptions that don't need to be caught in a try - catch block .
|
|
Is there really that much of a difference between the performance of Vectors and ArrayLists? Is it good practice to use ArrayLists at all times when thread safety isn't an issue?
Started by Ryan Thames on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If thread safety isn't an issue you should.
Collections.synchronizedList(new ArrayList<type>); to generate your list.
|
|
I'm implementing a voting system like the one used by stackoverflow. It's working with ajax sending POST request to an url. I'd like a way to fail gracefully when javascript/ajax isn't supported or enabled, a GET like /voteup/id isn't even considered ...
Started by Spear on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
<form method=post action="hit-url"> <input type=hidden name=vote value="1" /> <input type=submit value="Vote Up" onSubmit="doVote(1);return false... .
Make the basic voting actions mini-forms, then use javascript to disable their posting action .
|