+ 20
If you were to build your own search engine how would you actually code one out detailed. ( I have and then I sold it )
Please provide full line by line details.
9 Respuestas
+ 14
Okay for some of the younger developers the awesome search engine, "Google" was written using 3 primary languages: python, c, and c++ ( but it was not originally written in these and eventually was overhauled and is presently being rewritten / upgraded for security reasons )
There are 3 primary types of search engines
1) Dynamic 2)Static and 3) Meta and there are numerous variations that fall in between each -
+ 13
Here is a short list of search engines BUT there are many many more...
https://www.wordstream.com/articles/internet-search-engines-history
I, myself, have written codes specific for Yandex, Naver, and numerous others.
+ 13
Here is a somewhat complete list of all the computer languages to date:
https://medium.com/web-development-zone/a-complete-list-of-computer-programming-languages-1d8bc5a891f
Don't just limit your learning to the ones used here on Sololearn
+ 12
I created owned and operated SERP.ga for several years before selling it.
+ 12
As one mentioned one must understand not only the objective but the history and backbone workings as well as the tools ( languages ) available to create.
+ 11
As a person with experience don't you think it's better for you to share your experience instead of asking others here? this is a community of learners and beginners. Although there are pro people here too, your experience should make a valuable asset to learners, I suppose.
+ 8
I could agree with you BUT here is a thought Larry Page and Sergey Bin ( both friends ) were how old when they created ( 1994 ) "Back Rub" and two years later founded the biggest search engine to date... ? ( Reach for the brass ring and it may turn into gold or platinum )
In April 1974 Microsoft was launched -
+ 8
Here is an example of a workable search engine modle: ( to properly use this however you would need to copy and paste this on a template )
<!-- start of freefind search box html -->
<table cellpadding=0 cellspacing=0 border=0 >
<tr>
<td style="font-family: Arial, Helvetica, sans-serif; font-size: 7.5pt;">
<center><table width="90%" cellpadding=0 cellspacing=0 border=0 style="font-family: Arial, Helvetica, sans-serif; font-size: 7.5pt;">
<tr>
<td style="font-family: Arial, Helvetica, sans-serif; font-size: 7.5pt;" align=left ><a href="https://search.freefind.com/siteindex.html?si=94910339">index</a></td>
<td style="font-family: Arial, Helvetica, sans-serif; font-size: 7.5pt;" align=center><a href="https://search.freefind.com/find.html?si=94910339&m=0&p=0">sitemap</a></td>
<td style="font-family: Arial, Helvetica, sans-serif; font-size: 7.5pt;" align=right><a href="https://search.freefind.com/find.html?si=94910339&pid=a">advanced</a></td>
</tr>
</table></center>
<form style="margin:0px; margin-top:4px;" action="https://search.freefind.com/find.html" method="get" accept-charset="utf-8" target="_self">
<input type="hidden" name="si" value="94910339">
<input type="hidden" name="pid" value="r">
<input type="hidden" name="n" value="0">
<input type="hidden" name="_charset_" value="">
<input type="hidden" name="bcd" value="÷">
<input type="text" name="query" size="15">
<input type="submit" value="search">
</form>
</td>
</tr>
<tr>
<td style="text-align:center; font-family: Arial, Helvetica, sans-serif; font-size: 7.5pt; padding-top:4px;">
<a style="text-decoration:none; color:gray;" href="https://www.freefind.com" >search engine</a><a style="text-decoration:none; color:gray;" href="https://www.freefind.com" > by
<span style="color: #606060;">freefind</span></a>
</td>
</tr>
</table>
<!-- end of freefind search box html -->
+ 5
Try this link:
https://code.sololearn.com/WEeS3V8mZJcB/?ref=app