|
A coworker of mine has asked me for a term (preferably an adjective) that can be used to describe a system that gets more "intelligent" as it gets more data. The example she used when asking me this question was "as Google crawls more sites, it gets smarter...
Started by abeger on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
She used when asking me this question was "as Google crawls more sites, it gets smarter at searching.
|
|
I will be the first to admit that it is my soft skills, and only partially my programming skills, that has got me to where I am today at the director level. I am a good "architect", problem solver, and researcher, and I am very good at designing an application...
Started by hal10001 on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
I would have someone even smarter interview them understand something, then....
Have someone smarter than you already working at your company? If so, bring them into the interview with, and you may not be able to understand its subtleties.
|
|
I have areas of memory that could be considered "array of bits". They are equivalent to
unsigned char arr[256];
But it would be better thought of as
bit arr[2048];
I'm accessing separate bits from it with
#define GETBIT(x,in) ((in)[ ((x)/8) ] & 1<&...
Started by SF. on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Why not create your own wrapper class?
You could then add ... .
It is the best what i can say, without knowledge of the problem context (how the bits are used) .
If You reverse the bit order in 'arr', then You can eliminate the substraction from the macro .
|
Ask your Facebook Friends
|
Hi , i have an large SQL Statement, is there any "smarter" way to format this stuff ??
$serverFields = 'SERVER_ID, SERVERNAME, SERVERLOCATION_ID, SERVERLOCATIONDETAIL_ID, SERVEROS_ID, SERVEROSVERSION_ID, IP_BACKEND, IP_FRONTEND, IP_BACKUP, SERVERREMOTETOOL...
Started by ArneRie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Well, I'd write and indent it all somewhat differently, but whether it's "smarter" is up to you:
$sql.
|
|
When a previous Vim session crashed, you are greeted with the "Swap file ... already exists!" for each and every file that was open in the previous session.
Can you make this Vim recovery prompt smarter? (Without switching off recovery!) Specifically,...
Started by Bruno De Fraine on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Now when my laptop loses power or whatever and I start back ... .
Among other benefits, this makes the swap files easy to find all at once .
I have vim store my swap files in a single local directory, by having this in my .vimrc:
set directory=~/.vim/swap, .
|
|
Home-Schooled Kids Are Smarter
Started by Cafe Amber on
, 11 posts
by 9 people.
Answer Snippets (Read the full thread at cafemom):
I don't believe they are "smarter" but just better educated :) I have home educated for 19 are smarter than public schoolers....
It's more natural.
I believe it leads to greater potential fulfilment.
Aren't smarter, but they aren't stifled.
|
|
So the villagers are smarter now, great! They can open doors... and thats it for now. The next simple change is to make them not jump all over their small farms
Started by DontStealMyBacon on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at minecraftforum):
Now that ....
Smarter is a relative or be lead around with wheat.
Then who was phone.
When they say smarter, they mean less dumb in a later update, I just want to explore these jungles badly.
If you wanna grow something on 'em, fence 'em.
|
|
Whose smarter, kabuto or tobi?
personally i believe kabuto is one step ahead and tobi is going to regret ever taking sides with him
Started by lesley on
, 13 posts
by 12 people.
Answer Snippets (Read the full thread at narutobase):
Read some facts what he have done, tobi's responsibility it will explain his genius lol tobi...sayin he was madara was genius...and that ramen stand Tobi is by far smarter than enough to defeat....
Tobi is far greater+smarter than kabuto..
|
|
The more and more advanced compilers, languages, and frameworks we have that either automate tasks, or hide certain intricacies from us, do they ultimately make us dumber programmers?
Jim C gives the following analogy of a calculator:
Any one extract ...
Started by Micah on
, 30 posts
by 30 people.
Answer Snippets (Read the full thread at stackoverflow):
Certainly it's easy to rely less smarter because I have....
So dumb become dumber and smart become smarter laptop), you still think in that mode even with smarter tools.
Computers are reinforcing devices.
But the point is understood.
|
|
I'm using paperclip in a rails app and have the following three validations in my model
validates_attachment_presence :photo validates_attachment_size :photo, :less_than=>1.megabyte validates_attachment_content_type :photo, :content_type=>['image...
Started by stephen murdoch on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Errors are stored in hash:
@photo.errors....
You probably have something like this in your form:
<%= f.error_messages %>
You can remove it and write your own helper to display error messages .
Don't mess with validations.
I think you can do it other way.
|