fork download
  1. Imports System
  2.  
  3. Public Class SocialMedium
  4. Public title As String
  5. Public url As String
  6. Public desc As String
  7. Public image As String
  8. Public app_id As String
  9. Public redirect_url As String
  10. Public via As String
  11. Public hash_tags As String
  12. Public provider As String
  13. Public language As String
  14. Public category As String
  15. Public user_id As String
  16. Public phone_number As String
  17. Public email_address As String
  18. Public cc_email_address As String
  19. Public bcc_email_address As String
  20.  
  21. Public urls(37) As String
  22. Public urlsOrderedByPopularity As String() = {
  23. "google.plus",
  24. "google.bookmarks",
  25. "facebook",
  26. "reddit",
  27. "twitter",
  28. "linkedin",
  29. "tumblr",
  30. "pinterest",
  31. "blogger",
  32. "livejournal",
  33. "evernote",
  34. "add.this",
  35. "getpocket",
  36. "hacker.news",
  37. "stumbleupon",
  38. "digg",
  39. "buffer",
  40. "flipboard",
  41. "instapaper",
  42. "surfingbird.ru",
  43. "flattr",
  44. "diaspora",
  45. "qzone",
  46. "vk",
  47. "weibo",
  48. "ok.ru",
  49. "douban",
  50. "xing",
  51. "renren",
  52. "threema",
  53. "sms",
  54. "line.me",
  55. "skype",
  56. "telegram.me",
  57. "email",
  58. "gmail",
  59. "yahoo",
  60. }
  61.  
  62. Public Sub New(
  63. ByVal argTitle As String,
  64. ByVal argUrl As String,
  65. ByVal argDesc As String,
  66. ByVal argImage As String,
  67. ByVal argApp_id As String,
  68. ByVal argRedirect_url As String,
  69. ByVal argVia As String,
  70. ByVal argHash_tags As String,
  71. ByVal argProvider As String,
  72. ByVal argLanguage As String,
  73. ByVal argUser_id As String,
  74. ByVal argCategory As String,
  75. ByVal argPhone_number As String,
  76. ByVal argEmail_address As String,
  77. ByVal argCc_email_address As String,
  78. ByVal argBcc_email_address As String
  79. )
  80. title = argTitle
  81. url = argUrl
  82. desc = argDesc
  83. image = argImage
  84. app_id = argApp_id
  85. redirect_url = argRedirect_url
  86. via = argVia
  87. hash_tags = argHash_tags
  88. provider = argProvider
  89. language = argLanguage
  90. user_id = argUser_id
  91. category = argCategory
  92. phone_number = argPhone_number
  93. email_address = argEmail_address
  94. cc_email_address = argCc_email_address
  95. bcc_email_address = argBcc_email_address
  96.  
  97. Dim text As String = title
  98.  
  99. If(desc.Length > 0)
  100. text += "%20%3A%20"
  101. text += desc
  102. End If
  103.  
  104. Dim addthis As String = "http://w...content-available-to-author-only...s.com/bookmark.php?url=" + url
  105. Dim blogger As String = "https://w...content-available-to-author-only...r.com/blog-this.g?u=" + url + "&n=" + title + "&t=" + desc
  106. Dim buffer As String = "https://b...content-available-to-author-only...r.com/add?text=" + text + "&url=" + url
  107. Dim diaspora As String = "https://s...content-available-to-author-only...n.org/?title=" + title + "&url=" + url
  108. Dim digg As String = "http://d...content-available-to-author-only...g.com/submit?url=" + url + "&title=" + text
  109. Dim douban As String = "http://w...content-available-to-author-only...n.com/recommend/?url=" + url + "&title=" + title
  110. Dim email As String = "mailto:" + email_address + "?subject=" + title + "&body=" + desc
  111. Dim evernote As String = "http://w...content-available-to-author-only...e.com/clip.action?url=" + url + "&title=" + text
  112. Dim getpocket As String = "https://g...content-available-to-author-only...t.com/edit?url=" + url
  113. Dim facebook As String = "http://w...content-available-to-author-only...k.com/sharer.php?u=" + url
  114. Dim flattr As String = "https://f...content-available-to-author-only...r.com/submit/auto?user_id=" + user_id + "&url=" + url + "&title=" + title + "&description=" + text + "&language=" + language + "&tags=" + hash_tags + "&hidden=HIDDEN&category=" + category
  115. Dim flipboard As String = "https://s...content-available-to-author-only...d.com/bookmarklet/popout?v=2&title=" + text + "&url=" + url
  116. Dim gmail As String = "https://mail.google.com/mail/?view=cm&to=" + email_address + "&su=" + title + "&body=" + url + "&bcc=" + bcc_email_address + "&cc=" + cc_email_address
  117. Dim googlebookmarks As String = "https://www.google.com/bookmarks/mark?op=edit&bkmk=" + url + "&title=" + title + "&annotation=" + text + "&labels=" + hash_tags
  118. Dim instapaper As String = "http://w...content-available-to-author-only...r.com/edit?url=" + url + "&title=" + title + "&description=" + desc
  119. Dim lineme As String = "https://l...content-available-to-author-only...e.me/share/ui?url=" + url + "&text=" + text
  120. Dim linkedin As String = "https://w...content-available-to-author-only...n.com/shareArticle?mini=true&url=" + url + "&title=" + title + "&summary=" + text + "&source=" + provider
  121. Dim livejournal As String = "http://w...content-available-to-author-only...l.com/update.bml?subject=" + text + "&event=" + url
  122. Dim hackernews As String = "https://n...content-available-to-author-only...r.com/submitlink?u=" + url + "&t=" + title
  123. Dim okru As String = "https://c...content-available-to-author-only...k.ru/dk?st.cmd=WidgetSharePreview&st.shareUrl=" + url
  124. Dim pinterest As String = "http://p...content-available-to-author-only...t.com/pin/create/button/?url=" + url
  125. Dim googleplus As String = "https://plus.google.com/share?url=" + url + "&text=" + text + "&hl=" + language
  126. Dim qzone As String = "http://s...content-available-to-author-only...q.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=" + url
  127. Dim reddit As String = "https://r...content-available-to-author-only...t.com/submit?url=" + url + "&title=" + title
  128. Dim renren As String = "http://w...content-available-to-author-only...n.com/dialog/share?resourceUrl=" + url + "&srcUrl=" + url + "&title=" + text + "&description=" + desc
  129. Dim skype As String = "https://w...content-available-to-author-only...e.com/share?url=" + url + "&text=" + text
  130. Dim sms As String = "sms:" + phone_number + "?body=" + text
  131. Dim stumbleupon As String = "http://w...content-available-to-author-only...n.com/submit?url=" + url + "&title=" + text
  132. Dim surfingbird As String = "http://s...content-available-to-author-only...d.ru/share?url=" + url + "&description=" + desc + "&screenshot=" + image + "&title=" + title
  133. Dim telegramme As String = "https://content-available-to-author-only.me/share/url?url=" + url + "&text=" + text + "&to=" + phone_number
  134. Dim threema As String = "threema://compose?text=" + text + "&id=" + user_id
  135. Dim tumblr As String = "https://w...content-available-to-author-only...r.com/widgets/share/tool?canonicalUrl=" + url + "&title=" + title + "&caption=" + desc + "&tags=" + hash_tags
  136. Dim twitter As String = "https://t...content-available-to-author-only...r.com/intent/tweet?url=" + url + "&text=" + text + "&via=" + via + "&hashtags=" + hash_tags
  137. Dim vk As String = "http://content-available-to-author-only.com/share.php?url=" + url + "&title=" + title + "&comment=" + desc
  138. Dim weibo As String = "http://s...content-available-to-author-only...o.com/share/share.php?url=" + url + "&appkey=&title=" + title + "&pic=&ralateUid="
  139. Dim xing As String = "https://w...content-available-to-author-only...g.com/app/user?op=share&url=" + url
  140. Dim yahoo As String = "http://c...content-available-to-author-only...o.com/?to=" + email_address + "&subject=" + title + "&body=" + text
  141.  
  142. Dim index As Integer = 0
  143.  
  144. urls(index) = googleplus
  145. index = index + 1
  146.  
  147. urls(index) = googlebookmarks
  148. index = index + 1
  149.  
  150. urls(index) = facebook
  151. index = index + 1
  152.  
  153. urls(index) = reddit
  154. index = index + 1
  155.  
  156. urls(index) = twitter
  157. index = index + 1
  158.  
  159. urls(index) = linkedin
  160. index = index + 1
  161.  
  162. urls(index) = tumblr
  163. index = index + 1
  164.  
  165. urls(index) = pinterest
  166. index = index + 1
  167.  
  168. urls(index) = blogger
  169. index = index + 1
  170.  
  171. urls(index) = livejournal
  172. index = index + 1
  173.  
  174. urls(index) = evernote
  175. index = index + 1
  176.  
  177. urls(index) = addthis
  178. index = index + 1
  179.  
  180. urls(index) = getpocket
  181. index = index + 1
  182.  
  183. urls(index) = hackernews
  184. index = index + 1
  185.  
  186. urls(index) = stumbleupon
  187. index = index + 1
  188.  
  189. urls(index) = digg
  190. index = index + 1
  191.  
  192. urls(index) = buffer
  193. index = index + 1
  194.  
  195. urls(index) = flipboard
  196. index = index + 1
  197.  
  198. urls(index) = instapaper
  199. index = index + 1
  200.  
  201. urls(index) = surfingbird
  202. index = index + 1
  203.  
  204. urls(index) = flattr
  205. index = index + 1
  206.  
  207. urls(index) = diaspora
  208. index = index + 1
  209.  
  210. urls(index) = qzone
  211. index = index + 1
  212.  
  213. urls(index) = vk
  214. index = index + 1
  215.  
  216. urls(index) = weibo
  217. index = index + 1
  218.  
  219. urls(index) = okru
  220. index = index + 1
  221.  
  222. urls(index) = douban
  223. index = index + 1
  224.  
  225. urls(index) = xing
  226. index = index + 1
  227.  
  228. urls(index) = renren
  229. index = index + 1
  230.  
  231. urls(index) = threema
  232. index = index + 1
  233.  
  234. urls(index) = sms
  235. index = index + 1
  236.  
  237. urls(index) = lineme
  238. index = index + 1
  239.  
  240. urls(index) = skype
  241. index = index + 1
  242.  
  243. urls(index) = telegramme
  244. index = index + 1
  245.  
  246. urls(index) = email
  247. index = index + 1
  248.  
  249. urls(index) = gmail
  250. index = index + 1
  251.  
  252. urls(index) = yahoo
  253. End Sub
  254. End Class
  255.  
  256. Public Class App
  257. Public Shared Sub Main()
  258. Dim sm As New SocialMedium(
  259. "EarthFluent",
  260. "http%3A%2F%2Fwww.earthfluent.com%2F",
  261. "Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21",
  262. "",
  263. "",
  264. "",
  265. "",
  266. "",
  267. "",
  268. "",
  269. "",
  270. "",
  271. "",
  272. "",
  273. "",
  274. ""
  275. )
  276. For index As Integer = 0 To 36
  277. Console.WriteLine(sm.urlsOrderedByPopularity(index) + " : " + sm.urls(index))
  278. Next
  279. Console.WriteLine(sm.urlsOrderedByPopularity(0))
  280. End Sub
  281. End Class
Success #stdin #stdout 0.03s 14880KB
stdin
Standard input is empty
stdout
google.plus : https://plus.google.com/share?url=http%3A%2F%2Fwww.earthfluent.com%2F&text=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&hl=
google.bookmarks : https://www.google.com/bookmarks/mark?op=edit&bkmk=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent&annotation=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&labels=
facebook : http://w...content-available-to-author-only...k.com/sharer.php?u=http%3A%2F%2Fwww.earthfluent.com%2F
reddit : https://r...content-available-to-author-only...t.com/submit?url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent
twitter : https://t...content-available-to-author-only...r.com/intent/tweet?url=http%3A%2F%2Fwww.earthfluent.com%2F&text=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&via=&hashtags=
linkedin : https://w...content-available-to-author-only...n.com/shareArticle?mini=true&url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent&summary=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&source=
tumblr : https://w...content-available-to-author-only...r.com/widgets/share/tool?canonicalUrl=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent&caption=Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&tags=
pinterest : http://p...content-available-to-author-only...t.com/pin/create/button/?url=http%3A%2F%2Fwww.earthfluent.com%2F
blogger : https://w...content-available-to-author-only...r.com/blog-this.g?u=http%3A%2F%2Fwww.earthfluent.com%2F&n=EarthFluent&t=Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
livejournal : http://w...content-available-to-author-only...l.com/update.bml?subject=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&event=http%3A%2F%2Fwww.earthfluent.com%2F
evernote : http://w...content-available-to-author-only...e.com/clip.action?url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
add.this : http://w...content-available-to-author-only...s.com/bookmark.php?url=http%3A%2F%2Fwww.earthfluent.com%2F
getpocket : https://g...content-available-to-author-only...t.com/edit?url=http%3A%2F%2Fwww.earthfluent.com%2F
hacker.news : https://n...content-available-to-author-only...r.com/submitlink?u=http%3A%2F%2Fwww.earthfluent.com%2F&t=EarthFluent
stumbleupon : http://w...content-available-to-author-only...n.com/submit?url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
digg : http://d...content-available-to-author-only...g.com/submit?url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
buffer : https://b...content-available-to-author-only...r.com/add?text=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&url=http%3A%2F%2Fwww.earthfluent.com%2F
flipboard : https://s...content-available-to-author-only...d.com/bookmarklet/popout?v=2&title=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&url=http%3A%2F%2Fwww.earthfluent.com%2F
instapaper : http://w...content-available-to-author-only...r.com/edit?url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent&description=Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
surfingbird.ru : http://s...content-available-to-author-only...d.ru/share?url=http%3A%2F%2Fwww.earthfluent.com%2F&description=Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&screenshot=&title=EarthFluent
flattr : https://f...content-available-to-author-only...r.com/submit/auto?user_id=&url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent&description=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&language=&tags=&hidden=HIDDEN&category=
diaspora : https://s...content-available-to-author-only...n.org/?title=EarthFluent&url=http%3A%2F%2Fwww.earthfluent.com%2F
qzone : http://s...content-available-to-author-only...q.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http%3A%2F%2Fwww.earthfluent.com%2F
vk : http://content-available-to-author-only.com/share.php?url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent&comment=Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
weibo : http://s...content-available-to-author-only...o.com/share/share.php?url=http%3A%2F%2Fwww.earthfluent.com%2F&appkey=&title=EarthFluent&pic=&ralateUid=
ok.ru : https://c...content-available-to-author-only...k.ru/dk?st.cmd=WidgetSharePreview&st.shareUrl=http%3A%2F%2Fwww.earthfluent.com%2F
douban : http://w...content-available-to-author-only...n.com/recommend/?url=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent
xing : https://w...content-available-to-author-only...g.com/app/user?op=share&url=http%3A%2F%2Fwww.earthfluent.com%2F
renren : http://w...content-available-to-author-only...n.com/dialog/share?resourceUrl=http%3A%2F%2Fwww.earthfluent.com%2F&srcUrl=http%3A%2F%2Fwww.earthfluent.com%2F&title=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&description=Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
threema : threema://compose?text=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&id=
sms : sms:?body=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
line.me : https://l...content-available-to-author-only...e.me/share/ui?url=http%3A%2F%2Fwww.earthfluent.com%2F&text=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
skype : https://w...content-available-to-author-only...e.com/share?url=http%3A%2F%2Fwww.earthfluent.com%2F&text=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
telegram.me : https://content-available-to-author-only.me/share/url?url=http%3A%2F%2Fwww.earthfluent.com%2F&text=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21&to=
email : mailto:?subject=EarthFluent&body=Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
gmail : https://mail.google.com/mail/?view=cm&to=&su=EarthFluent&body=http%3A%2F%2Fwww.earthfluent.com%2F&bcc=&cc=
yahoo : http://c...content-available-to-author-only...o.com/?to=&subject=EarthFluent&body=EarthFluent%20%3A%20Want%20to%20learn%20another%20language%3F%20%20Learn%20Spanish%2C%20French%2C%20Italian%2C%20German%2C%20Japanese%2C%20Chinese%2C%20Hindi%2C%20Indonesian%2C%20Dutch%2C%20Polish%2C%20Portuguese%2C%20or%20Russian%21
google.plus