If you were to build your own search engine how would you actually code one out detailed. ( I have and then I sold it ) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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.

25th Feb 2018, 8:55 PM
BroFar
BroFar - avatar
9 Answers
+ 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 -
26th Feb 2018, 3:15 AM
BroFar
BroFar - avatar
+ 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.
26th Feb 2018, 3:03 PM
BroFar
BroFar - avatar
+ 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
26th Feb 2018, 3:11 PM
BroFar
BroFar - avatar
+ 12
I created owned and operated SERP.ga for several years before selling it.
25th Feb 2018, 8:58 PM
BroFar
BroFar - avatar
+ 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.
26th Feb 2018, 3:43 PM
BroFar
BroFar - avatar
+ 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.
25th Feb 2018, 11:35 PM
Ipang
+ 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 -
26th Feb 2018, 12:17 AM
BroFar
BroFar - avatar
+ 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&amp;m=0&amp;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&amp;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="&#247;"> <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 -->
4th Mar 2018, 5:14 PM
BroFar
BroFar - avatar
5th Mar 2018, 1:43 AM
BroFar
BroFar - avatar