def get_page(url: String) : String = { try { Source.fromURL(url).take(10000).mkString } catch { case e => { println(" Problem with: " + url) "" } } }