|
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
|
Do you sometimes feel like the guns that you find actually find you? It doesn't happen often but at certain times I have noticed that I end up getting some really uncommon guns at our local gun shows after hundreds of people have passed it by.
Started by MilitaryTorch on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at gunboards):
Bore was perfect....
My Royal, then would put it back.
Gary
***WARNING*** Military surplus rifles multiply like rabbits! Yeah, now that you mention it.
The gun (owner) found me, and it is now mine .
It they would like to buy, they sent him to me.
|
|
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 .
|
|
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... .
|
|
I can't find official documentation for this command, help please! i look already in:
latex wikibook Latex: Structured document for TEX, 2008 beginLatex...a book that comes with ProTex in the files that comes with miktex in the folder "doc" and google...
Started by voodoomsr on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See This discussion on the texhax mailing list for where to find the definition in the LaTeX.
|