|
I'm thinking of writing an app to classify movies in an HTPC based on what the family members like.
I don't know statistics or AI, but the stuff here looks very juicy. I wouldn't know where to start do.
Here's what I want to accomplish:
Compose a set ...
Started by Ivan on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
| rating 1 1 2006 action | 5 3 2 2008 drama | 3.5 .
The inpt data looks like:
user movie year genre ...
|
|
I'm trying to remove all the .svn directories from a working directory.
I thought I would just use find and rm like this:
find . -iname .svn -exec 'rm -rf {}' \;
But the result is:
find: rm -rf ./src/.svn: No such file or directory
Obviously the file ...
Started by Sam Hoice on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
I want to avoid reinventing the wheel and would like to purchase a good question and answer script/software. Where can I find a good one?
Started by Luke101 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
It shouldn....
Perhaps you could have a look at SOClone or Shapado ( sneak peak of a site on Shapado )
It is possible and it may be good idea to create it on a Content Management System (CMS) such as Drupal .
It's not cheap though.
See www.stackexchange.com.
|
Ask your Facebook Friends
|
I don't like live with humans. I like to join aliens. How to find them and join them?
Started by Raghavendran on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at yahoo):
Most humans.
DMT Watch out, they might like you to be their lunch.
Source(s): Apollo 18 Find survivors of Heavens Gate Find the remaining menbers wearing a sign which says "PROBE ME".
Be a major problem.
|
|
Where can I find a free, lightweight YUI-like compressor for PHP?
I am sure it will decrease the file size but will compressing PHP code boost its performance?
Is this the same thing as an obfuscator?
Started by lock on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
PHP Encoder is a PHP extension to create and run compiled bytecodes for accelerated runtime performance and... .
There is a product called PHP Encoder by ionCube ( http://www.ioncube.com/sa_encoder.php ) which is enterprise grade compression and obfuscater .
|
|
I would like to find all duplicate records by name in a customer table using MySQL including those that do not match exactly.
I know I can use the query
SELECT id, name FROM customer GROUP BY name HAVING count(*) > 1;
to find all rows that match exactly...
Started by markb on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Not sure why you're needing to use the CONCAT ON t1.name LIKE '%' + t2.name....
SELECT * FROM customer WHERE name LIKE "%Mark's Widgets%";
http://www.mysqltutorial.org/sql-like-mysql.aspx should also help with the LIKE command.
|
|
How do I find out my IP address on a unix box? I've tried
ifconfig
but it doesn't exist on the system.
Started by jjujuma on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
There should be a line that looks like this:
default 192.168.2.1 0.0.0.0 UG 0 0 0 ath0
Then connect to that IP address with your browser....
First, find.
Of NAT device, that device probably has an http interface that provides this information .
|
|
Hi, I'm a novice linux user and I am trying to send a long list of files from one computer to another. The argument list is too long, so I am using find. I am having trouble setting up the expression, though. Can someone help?
Here is what I would normally...
Answer Snippets (Read the full thread at superuser):
Something like this:
tar czfv - file1 file2 dir1 dir2 | ssh phogan@computer handle filenames that include spaces....
-name "*" -exec scp and call 'scp' just once.
-name "*"`;do scp $f phogan@computer/directory;done
find .
For f in `find .
|
|
I'm tring to run a find and replace query on some sql data using Management Studio. I basically want to remove the word FREE from any content.
I tried running this query;
UPDATE Table_1 SET ContentDetails = REPLACE(ContentDetails, 'FREE', '') WHERE (ContentDetails...
Started by Neil Bradley on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
ContentDetails LIKE '%FREE%')
although it might cut the data off where the value is longer than(CAST(ContentDetails as VARCHAR(100)), 'FREE', '') WHERE ContentDetails LIKE '%FREE%'
Since you have(cast(contentdetails as varchar(max)), ....
|
|
Is there any Delphi D2010 function like PosEx that finds a sub-string inside a string starting from the end of the string?
I'm removing all the calls to the FastStrings library and one of the functions I was using was FastPosBack:
function FastPosBack...
Started by smartins on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use Pos in combination with ReverseString (from StrUtils)
Not in the standard RTL but in INDY (unit idGlobalProtocols according to the online help), which is part of recent Delphi installations:
function RPos( const ASub: String, const AIn: String... .
|