|
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.
|
|
How It Works: Smarter Commerce
Started by IBM on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at pinterest):
|
|
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.
|
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.
|
|
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 .
|
|
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, .
|
|
Do some become smarter with age
Started by oneinam on
, 21 posts
by 1 people.
Answer Snippets (Read the full thread at theanswerbank):
Very profound clanad - definite smarter ....
That's supposed to be smarter ...
(most actually) seem[i[smarter[i] as they age but a lot of that is due, which translates to the observer as "smarter"...
In what way? Many people...
|
|
Which are smarter dogs or cats?
Started by badrbrigade33 on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at yahoo):
Look at the dog question above.
However, it's generally thought that dogs are smarter.
On the criteria you use.
|
|
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.
|