Skip to content

Instantly share code, notes, and snippets.

@aviks
Created June 24, 2017 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aviks/b55bb6f2f22cd7700084c1cbf22af124 to your computer and use it in GitHub Desktop.
Save aviks/b55bb6f2f22cd7700084c1cbf22af124 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"source": [
"## Web Scraping with Julia\n",
"\n",
"### Avik Sengupta, Julia Computing\n",
"\n",
"#### JuliaCon 2017, Berkeley CA"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"\u001b[1m\u001b[34mINFO: Nothing to be done\n",
"\u001b[0m\u001b[1m\u001b[34mINFO: METADATA is out-of-date — you may not have the latest version of Cascadia\n",
"\u001b[0m\u001b[1m\u001b[34mINFO: Use `Pkg.update()` to get the latest versions of your packages\n",
"\u001b[0m"
]
}
],
"source": [
"Pkg.add(\"Cascadia\")"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"\u001b[1m\u001b[34mINFO: Nothing to be done\n",
"\u001b[0m\u001b[1m\u001b[34mINFO: METADATA is out-of-date — you may not have the latest version of HTTP\n",
"\u001b[0m\u001b[1m\u001b[34mINFO: Use `Pkg.update()` to get the latest versions of your packages\n",
"\u001b[0m"
]
}
],
"source": [
"Pkg.add(\"HTTP\")"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [],
"source": [
"using Cascadia\n",
"using HTTP\n",
"using Gumbo"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"HTTP.Response:\n",
"\"\"\"\n",
"HTTP/1.1 200 OK\r\n",
"Connection: keep-alive\r\n",
"Via: 1.1 varnish\r\n",
"X-Served-By: cache-iad2628-IAD\r\n",
"Date: Thu, 22 Jun 2017 21:08:49 GMT\r\n",
"Age: 0\r\n",
"Accept-Ranges: bytes\r\n",
"Cache-Control: private\r\n",
"X-Cache-Hits: 0\r\n",
"Content-Length: 190269\r\n",
"Last-Modified: Thu, 22 Jun 2017 17:14:20 GMT\r\n",
"X-DNS-Prefetch-Control: off\r\n",
"Vary: Fastly-SSL\r\n",
"X-Cache: MISS\r\n",
"Strict-Transport-Security: max-age=15552000\r\n",
"Content-Type: text/html; charset=utf-8\r\n",
"X-Frame-Options: SAMEORIGIN\r\n",
"X-Request-Guid: 6a3d79ba-d856-4d41-a8d6-2a01df59aa8f\r\n",
"X-Timer: S1498165729.289008,VS0,VE31\r\n",
"\n",
"[HTTP.Response body of 190271 bytes]\n",
"\r\n",
"<!DOCTYPE html>\r\n",
"<html itemscope itemtype=\"http://schema.org/QAPage\">\r\n",
"\r\n",
"<head>\r\n",
"\r\n",
"<title>Newest &#39;julia-lang&#39; Questions - Stack Overflow</title>\r\n",
" <link rel=\"shortcut icon\" href=\"https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d\">\r\n",
" <link rel=\"apple-touch-icon image_src\" href=\"https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon.png?v=c78bd457575a\">\r\n",
" <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Stack Overflow\" href=\"/opensearch.xml\">\r\n",
" <meta property=\"og:type\" content=\"website\"/>\r\n",
" <meta name=\"twitter:card\" content=\"summary\"/>\r\n",
" <meta name=\"twitter:domain\" content=\"stackoverflow.com\"/>\r\n",
"\r\n",
" <meta property=\"og:image\" itemprop=\"image primaryImage\n",
"⋮\n",
"\"\"\""
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"r=HTTP.get(\"https://stackoverflow.com/questions/tagged/julia-lang?sort=newest&pagesize=50\")"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"HTTP.Response"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"typeof(r)"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"\"<!DOCTYPE html>\\r\\n<html itemscope itemtype=\\\"http://schema.org/QAPage\\\">\\r\\n\\r\\n<head>\\r\\n\\r\\n<title>Newest &#39;julia-lang&#39; Questions - Stack Overflow</title>\\r\\n <link rel=\\\"shortcut icon\\\" href=\\\"https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d\\\">\\r\\n <link rel=\\\"apple-touch-icon image_src\\\" href=\\\"https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon.png?v=c78bd457575a\\\">\\r\\n <link rel=\\\"search\\\" type=\\\"application/opensearchdescription+xml\\\" title=\\\"Stack Overflow\\\" href=\\\"/opensearch.xml\\\">\\r\\n <meta property=\\\"og:type\\\" content=\\\"website\\\"/>\\r\\n <meta name=\\\"twitter:card\\\" content=\\\"summary\\\"/>\\r\\n <meta name=\\\"twitter:domain\\\" content=\\\"stackoverflow.com\\\"/>\\r\\n\\r\\n <meta property=\\\"og:image\\\" itemprop=\\\"image primaryImageOfPage\\\" content=\\\"https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon@2.png?v=73d79a89bded\\\" />\\r\\n <meta name=\\\"twitter:title\\\" property=\\\"og:title\\\" itemprop=\\\"title name\\\" content=\\\"Newest &#39;julia-lang&#39; Questions\\\" />\\r\\n <meta name=\\\"twitter:description\\\" property=\\\"og:description\\\" itemprop=\\\"description\\\" content=\\\"Q&amp;A for professional and enthusiast programmers\\\" />\\r\\n <meta property=\\\"og:url\\\" content=\\\"https://stackoverflow.com/questions/tagged/julia-lang?sort%3Dnewest%26pagesize%3D50\\\"/>\\r\\n\\r\\n \\r\\n \\r\\n <script src=\\\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js\\\"></script>\\r\\n <script src=\\\"https://cdn.sstatic.net/Js/stub.en.js?v=53c68acd0985\\\"></script>\\r\\n <link rel=\\\"stylesheet\\\" type=\\\"text/css\\\" href=\\\"https://cdn.sstatic.net/Sites/stackoverflow/all.css?v=b45609624f1d\\\">\\r\\n\\r\\n <link rel=\\\"alternate\\\" type=\\\"application/atom+xml\\\" title=\\\"newest julia-lang questions feed\\\" href=\\\"/feeds/tag?tagnames=julia-lang&amp;sort=newest\\\" />\\r\\n\\r\\n\\r\\n <script>\\r\\n StackExchange.init({\\\"locale\\\":\\\"en\\\",\\\"stackAuthUrl\\\":\\\"https://stackauth.com\\\",\\\"networkMetaHostname\\\":\\\"meta.stackexchange.com\\\",\\\"serverTime\\\":1498165729,\\\"routeName\\\":\\\"Questions/ListByTag\\\",\\\"site\\\":{\\\"name\\\":\\\"Stack Overflow\\\",\\\"description\\\":\\\"Q&A for professional and enthusiast programmers\\\",\\\"isNoticesTabEnabled\\\":true,\\\"recaptchaPublicKey\\\":\\\"6LdchgIAAAAAAJwGpIzRQSOFaO0pU6s44Xt8aTwc\\\",\\\"recaptchaAudioLang\\\":\\\"en\\\",\\\"enableNewTagCreationWarning\\\":true,\\\"insertSpaceAfterNameTabCompletion\\\":false,\\\"id\\\":1,\\\"enableInsertDocLinkDialog\\\":true,\\\"childUrl\\\":\\\"https://meta.stackoverflow.com\\\",\\\"enableSocialMediaInSharePopup\\\":true,\\\"protocol\\\":\\\"https\\\"},\\\"user\\\":{\\\"fkey\\\":\\\"d63cc0b24808467f601f4758805c941c\\\",\\\"rep\\\":0,\\\"isAnonymous\\\":true,\\\"isAnonymousNetworkWide\\\":true,\\\"canSeeNewHeaderDesign\\\":true,\\\"ab\\\":{\\\"devstory_onboarding_exp\\\":{\\\"v\\\":\\\"opt_out_of_match_emails\\\",\\\"g\\\":2}}},\\\"events\\\":{\\\"postType\\\":{\\\"question\\\":1},\\\"postEditionSection\\\":{\\\"title\\\":1,\\\"body\\\":2,\\\"tags\\\":3}},\\\"story\\\":{\\\"minCompleteBodyLength\\\":75,\\\"likedTagsMaxLength\\\":300,\\\"dislikedTagsMaxLength\\\":300}}, {\\\"site\\\":{\\\"allowImageUploads\\\":true,\\\"enableUserHovercards\\\":true,\\\"styleCode\\\":true,\\\"enableNewLinkInsertDialog\\\":true,\\\"enableImgurHttps\\\":true,\\\"forceHttpsImages\\\":true},\\\"comments\\\":{},\\\"userProfile\\\":{\\\"openGraphAPIKey\\\":\\\"58740831ad23540e00c58987\\\"},\\\"tags\\\":{},\\\"accounts\\\":{\\\"currentPasswordRequiredForChangingStackIdPassword\\\":true},\\\"flags\\\":{\\\"allowRetractingFlags\\\":true},\\\"snippets\\\":{\\\"snippetsEnabled\\\":true,\\\"renderDomain\\\":\\\"stacksnippets.net\\\"},\\\"markdown\\\":{\\\"asteriskIntraWordEmphasis\\\":true},\\\"monitoring\\\":{\\\"clientTimingsAbsoluteTimeout\\\":30000,\\\"clientTimingsDebounceTimeout\\\":1000}});\\r\\n StackExchange.using.setCacheBreakers({\\\"js/prettify-full.en.js\\\":\\\"26841dfd39a3\\\",\\\"js/moderator.en.js\\\":\\\"b64645aa932f\\\",\\\"js/full-anon.en.js\\\":\\\"38de8432d970\\\",\\\"js/full.en.js\\\":\\\"f4fdc75d0be8\\\",\\\"js/wmd.en.js\\\":\\\"69f08c40e290\\\",\\\"js/third-party/jquery.autocomplete.min.js\\\":\\\"d3b8fa7fdf74\\\",\\\"js/third-party/jquery.autocomplete.min.en.js\\\":\\\"\\\",\\\"js/mobile.en.js\\\":\\\"ba2685451c38\\\",\\\"js/help.en.js\\\":\\\"118cb359bcc6\\\",\\\"js/tageditor.en.js\\\":\\\"235a2acc7d79\\\",\\\"js/tageditornew.en.js\\\":\\\"6d17281a7b52\\\",\\\"js/inline-tag-editing.en.js\\\":\\\"7581a98341e4\\\",\\\"js/revisions.en.js\\\":\\\"8f22ba768cac\\\",\\\"js/review.en.js\\\":\\\"67c1701d5500\\\",\\\"js/tagsuggestions.en.js\\\":\\\"7dfec0d2a2d7\\\",\\\"js/post-validation.en.js\\\":\\\"b867e10e83f9\\\",\\\"js/explore-qlist.en.js\\\":\\\"e71f14781288\\\",\\\"js/events.en.js\\\":\\\"e8e4561c291e\\\",\\\"js/keyboard-shortcuts.en.js\\\":\\\"cf7a95df8cd6\\\",\\\"js/external-editor.en.js\\\":\\\"b46c950d6c5a\\\",\\\"js/adops.en.js\\\":\\\"9a6a7812a212\\\",\\\"js/external-editor.en.js\\\":\\\"b46c950d6c5a\\\",\\\"js/snippet-javascript.en.js\\\":\\\"4adbf892dd3e\\\",\\\"js/snippet-javascript-codemirror.en.js\\\":\\\"579c6765e5df\\\"});\\r\\n StackExchange.using(\\\"gps\\\", function() {\\r\\n StackExchange.gps.init(true);\\r\\n });\\r\\n </script>\\r\\n \\r\\n <script>\\r\\n StackExchange.ready(function () {\\r\\n \\$('#nav-tour').click(function () {\\r\\n StackExchange.using(\\\"gps\\\", function() {\\r\\n StackExchange.gps.track(\\\"aboutpage.click\\\", { aboutclick_location: \\\"headermain\\\" }, true);\\r\\n });\\r\\n });\\r\\n });\\r\\n </script>\\r\\n <noscript id=\\\"noscript-css\\\"><style type=\\\"text/css\\\">body,.so-header{margin-top:1.9em}</style></noscript>\\r\\n</head>\\r\\n<body class=\\\"tagged-questions-page new-topbar\\\">\\r\\n <script>(function () { var old = \\$.fn.contents; \\$.fn.contents = function () { try { return old.apply(this, arguments); } catch (e) { return \\$([]); } } })()</script>\\r\\n <iframe id=\\\"adzerk-user-match\\\" width=\\\"0\\\" height=\\\"0\\\" frameborder=\\\"0\\\" scrolling=\\\"no\\\" onload=\\\"window.AUMIframeDone=true\\\"\\r\\n src=\\\"https://ssum-sec.casalemedia.com/usermatch?s=183712&amp;cb=https%3A%2F%2Fengine.adzerk.net%2Fudb%2F22%2Fsync%2Fi.gif%3FpartnerId%3D1%26userId%3D\\\"\\r\\n style=\\\"display: none;\\\" marginheight=\\\"0\\\" marginwidth=\\\"0\\\"></iframe>\\r\\n\\r\\n <div id=\\\"notify-container\\\"></div>\\r\\n <div id=\\\"custom-header\\\"></div>\\r\\n\\n\\n<header class=\\\"so-header js-so-header _fixed\\\">\\n <div class=\\\"-container\\\">\\n <div class=\\\"-main\\\"> \\n <a href=\\\"https://stackoverflow.com\\\" class=\\\"-logo js-gps-track \\\"\\n data-gps-track=\\\"top_nav.click({is_current:false, location:5, destination:8})\\\">\\n\\n <span class=\\\"-img\\\">Stack Overflow</span>\\n </a>\\n\\n <nav class=\\\"navigation\\\" role=\\\"navigation\\\" aria-label=\\\"site navigation\\\">\\n <ol class=\\\"-list\\\">\\n <li class=\\\"-item _current\\\">\\n <a id=\\\"nav-questions\\\" href=\\\"/questions\\\" class=\\\"-link js-gps-track\\\" \\n data-gps-track=\\\"top_nav.click({is_current:true, location:5, destination:1})\\\">Questions</a>\\n </li>\\n\\n <li class=\\\"-item\\\">\\n <a id=\\\"nav-jobs\\\" href=\\\"/jobs?med=site-ui&amp;ref=jobs-tab\\\" class=\\\"-link js-gps-track\\\" \\n data-gps-track=\\\"top_nav.click({is_current:false, location:5, destination:6})\\\">Developer Jobs</a>\\n </li>\\n <li class=\\\"-item\\\">\\n <a id=\\\"nav-docs\\\" href=\\\"/documentation\\\" class=\\\"-link js-gps-track\\\" \\n data-gps-track=\\\"top_nav.click({is_current:false, location:5, destination:7})\\\">Documentation <small class='beta-badge'>beta</small></a>\\n </li>\\n <li class=\\\"-item\\\">\\n <a id=\\\"nav-tags\\\" href=\\\"/tags\\\" class=\\\"-link js-gps-track\\\" \\n data-gps-track=\\\"top_nav.click({is_current:false, location:5, destination:2})\\\">Tags</a>\\n </li>\\n\\n <li class=\\\"-item\\\">\\n <a id=\\\"nav-users\\\" href=\\\"/users\\\" class=\\\"-link js-gps-track\\\" \\n data-gps-track=\\\"top_nav.click({is_current:false, location:5, destination:3})\\\">Users</a>\\n </li>\\n\\n </ol>\\n </nav>\\n\\n <form id=\\\"search\\\" action=\\\"/search\\\" method=\\\"get\\\" class=\\\"searchbar\\\" autocomplete=\\\"off\\\" role=\\\"search\\\">\\n <svg role=\\\"icon\\\" class=\\\"svg-icon iconSearch\\\" width=\\\"18\\\" height=\\\"18\\\" viewBox=\\\"0 0 18 18\\\"><path d=\\\"M12.864 11.321L18 16.5 16.5 18l-5.178-5.136v-.357a7 7 0 1 1 1.186-1.186h.356zM7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10z\\\"/></svg>\\n <input name=\\\"q\\\" type=\\\"text\\\" placeholder=\\\"Search...\\\" value=\\\"[julia-lang]\\\" tabindex=\\\"1\\\" autocomplete=\\\"off\\\" maxlength=\\\"240\\\" class=\\\"f-input js-search-field\\\" />\\n <button type=\\\"submit\\\" class=\\\"btn js-search-submit\\\">\\n <svg role=\\\"icon\\\" class=\\\"svg-icon iconSearch\\\" width=\\\"18\\\" height=\\\"18\\\" viewBox=\\\"0 0 18 18\\\"><path d=\\\"M12.864 11.321L18 16.5 16.5 18l-5.178-5.136v-.357a7 7 0 1 1 1.186-1.186h.356zM7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10z\\\"/></svg>\\n </button>\\n </form>\\n\\n </div>\\n \\n\\n\\n \\n\\n<div class=\\\"-actions\\\">\\n <nav class=\\\"secondary-nav\\\">\\n <div class=\\\"-dialog-container js-topbar-dialog-corral\\\">\\n\\r\\n\\r\\n <div class=\\\"topbar-dialog siteSwitcher-dialog dno\\\">\\r\\n <div class=\\\"header\\\">\\r\\n <h3><a href=\\\"https://stackoverflow.com\\\">current community</a>\\r\\n </h3>\\r\\n </div>\\r\\n <div class=\\\"modal-content current-site-container\\\">\\r\\n <ul class=\\\"current-site\\\">\\r\\n <li>\\r\\n <div class=\\\"related-links\\\">\\r\\n <a href=\\\"https://stackoverflow.com/help\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site_switcher.click({ item_type:14 })\\\"\\r\\n>help</a>\\r\\n <a href=\\\"https://chat.stackoverflow.com\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site_switcher.click({ item_type:6 })\\\"\\r\\n>chat</a>\\r\\n </div>\\r\\n\\r\\n <a href=\\\"https://stackoverflow.com\\\"\\r\\n class=\\\"current-site-link site-link js-gps-track\\\"\\r\\n data-id=\\\"1\\\"\\r\\n data-gps-track=\\\"site_switcher.click({ item_type:3 })\\\">\\r\\n <div class=\\\"site-icon favicon favicon-stackoverflow\\\" title=\\\"Stack Overflow\\\"></div>\\r\\n Stack Overflow\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"related-site\\\">\\r\\n <div class=\\\"L-shaped-icon-container\\\">\\r\\n <span class=\\\"L-shaped-icon\\\"></span>\\r\\n </div>\\r\\n\\r\\n \\r\\n <a href=\\\"https://meta.stackoverflow.com\\\"\\r\\n class=\\\"site-link js-gps-track\\\"\\r\\n data-id=\\\"552\\\"\\r\\n data-gps-track=\\\"site.switch({ target_site:552, item_type:3 }),site_switcher.click({ item_type:4 })\\\">\\r\\n <div class=\\\"site-icon favicon favicon-stackoverflowmeta\\\" title=\\\"Meta Stack Overflow\\\"></div>\\r\\n Meta Stack Overflow\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n </ul>\\r\\n </div>\\r\\n\\r\\n <div class=\\\"header\\\" id=\\\"your-communities-header\\\">\\r\\n <h3>\\r\\nyour communities </h3>\\r\\n\\r\\n </div>\\r\\n <div class=\\\"modal-content\\\" id=\\\"your-communities-section\\\">\\r\\n\\r\\n <div class=\\\"call-to-login\\\">\\r\\n<a href=\\\"https://stackoverflow.com/users/signup?ssrc=site_switcher&amp;returnurl=%2fusers%2fstory%2fcurrent&amp;amp;utm_source=stackoverflow.com&amp;amp;utm_medium=dev-story&amp;amp;utm_campaign=signup-redirect\\\" class=\\\"login-link js-gps-track\\\" data-gps-track=\\\"site_switcher.click({ item_type:10 })\\\"\\r\\n>Sign up</a> or <a href=\\\"https://stackoverflow.com/users/login?ssrc=site_switcher&amp;returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2fjulia-lang%3fsort%253dnewest%2526pagesize%253d50\\\" class=\\\"login-link js-gps-track\\\" data-gps-track=\\\"site_switcher.click({ item_type:11 })\\\"\\r\\n>log in</a> to customize your list.\\r\\n </div>\\r\\n </div>\\r\\n\\r\\n <div class=\\\"header\\\">\\r\\n <h3><a href=\\\"https://stackexchange.com/sites\\\">more stack exchange communities</a>\\r\\n </h3>\\r\\n <a href=\\\"https://stackoverflow.blog\\\" class=\\\"fr\\\">company blog</a>\\r\\n </div>\\r\\n <div class=\\\"modal-content\\\">\\r\\n <div class=\\\"child-content\\\"></div>\\r\\n </div> \\r\\n </div>\\r\\n <div class=\\\"topbar-dialog help-dialog js-help-dialog dno\\\">\\n <div class=\\\"modal-content\\\">\\n <ul>\\n <li>\\n <a href=\\\"/tour\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"help_popup.click({ item_type:1 })\\\">\\n Tour\\n <span class=\\\"item-summary\\\">\\n Start here for a quick overview of the site\\n </span>\\n </a>\\n </li>\\n <li>\\n <a href=\\\"/help\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"help_popup.click({ item_type:4 })\\\">\\n Help Center\\n <span class=\\\"item-summary\\\">\\n Detailed answers to any questions you might have\\n </span>\\n </a>\\n </li>\\n <li>\\n <a href=\\\"https://meta.stackoverflow.com\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"help_popup.click({ item_type:2 })\\\">\\n Meta\\n <span class=\\\"item-summary\\\">\\n Discuss the workings and policies of this site\\n </span>\\n </a>\\n </li>\\n <li>\\n <a href=\\\"https://stackoverflow.com/company/about\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"help_popup.click({ item_type:6 })\\\">\\n About Us\\n <span class=\\\"item-summary\\\">\\n Learn more about Stack Overflow the company\\n </span>\\n </a>\\n </li>\\n <li>\\n <a href=\\\"https://www.stackoverflowbusiness.com/?ref=topbar_help\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"help_popup.click({ item_type:7 })\\\">\\n Business\\n <span class=\\\"item-summary\\\">\\n Learn more about hiring developers or posting ads with us\\n </span>\\n </a>\\n </li>\\n </ul>\\n </div>\\n </div>\\n\\n </div>\\n <ol class=\\\"-list\\\">\\n\\n\\n <li class=\\\"-item\\\"><a href=\\\"#\\\" class=\\\"-link js-help-button\\\" title=\\\"Help Center and other resources\\\">\\n <svg role=\\\"icon\\\" class=\\\"svg-icon iconHelp\\\" width=\\\"18\\\" height=\\\"18\\\" viewBox=\\\"0 0 18 18\\\"><path d=\\\"M9 1a8 8 0 1 0 0 16.001A8 8 0 0 0 9 1zm.812 12.126c-.02.716-.55 1.157-1.238 1.137-.659-.02-1.177-.49-1.157-1.209.02-.715.566-1.17 1.225-1.15.691.021 1.194.507 1.17 1.222zm1.956-5.114c-.168.237-.546.542-1.02.912l-.527.361c-.257.197-.417.43-.502.695-.044.141-.076.507-.084.752-.004.048-.032.156-.181.156H7.883c-.165 0-.185-.096-.18-.144.023-.667.12-1.218.397-1.66.374-.594 1.426-1.221 1.426-1.221.161-.12.286-.25.382-.39.177-.24.321-.51.321-.8 0-.333-.08-.65-.293-.915-.249-.31-.518-.458-1.036-.458-.51 0-.808.257-1.021.594-.213.338-.177.735-.177 1.097H5.746c0-1.366.357-2.238 1.112-2.752.51-.35 1.162-.502 1.921-.502.996 0 1.788.184 2.487.715.647.49.988 1.181.988 2.113 0 .575-.2 1.057-.486 1.447z\\\"/></svg>\\n </a></li>\\n <li class=\\\"-item\\\">\\n <a href=\\\"https://stackexchange.com\\\" class=\\\"-link js-site-switcher-button js-gps-track\\\" data-gps-track=\\\"site_switcher.show\\\" title=\\\"A list of all 169 Stack Exchange sites\\\">\\n <svg role=\\\"icon\\\" class=\\\"svg-icon iconStackExchange\\\" width=\\\"18\\\" height=\\\"18\\\" viewBox=\\\"0 0 18 18\\\"><path d=\\\"M1 13a2 2 0 0 0 2 2h8v3l3-3h1a2 2 0 0 0 2-2v-2H1v2zM15 1H3a2 2 0 0 0-2 2v2h16V3a2 2 0 0 0-2-2zM1 6h16v4H1V6z\\\"/></svg>\\n </a>\\n </li>\\n\\n\\n </ol>\\n </nav>\\n <div class=\\\"-ctas\\\">\\n <a href=\\\"https://stackoverflow.com/users/login?ssrc=head&returnurl=https%3a%2f%2fstackoverflow.com%2fquestions%2ftagged%2fjulia-lang%3fsort%253dnewest%2526pagesize%253d50\\\" class=\\\"login-link btn-clear\\\" rel=\\\"nofollow\\\">Log In</a>\\n <a href=\\\"https://stackoverflow.com/users/signup?ssrc=head&returnurl=%2fusers%2fstory%2fcurrent&amp;utm_source=stackoverflow.com&amp;utm_medium=dev-story&amp;utm_campaign=signup-redirect\\\" class=\\\"login-link btn\\\" rel=\\\"nofollow\\\">Sign Up</a>\\n\\n </div>\\n</div>\\n </div>\\n</header>\\n\\n <script>\\n StackExchange.ready(function () { StackExchange.topbar.init(); });\\n StackExchange.scrollPadding.setPaddingTop(60, 10); </script>\\n\\r\\n <div class=\\\"container\\\">\\r\\n \\r\\n\\r\\n\\r\\n <div id=\\\"content\\\" class=\\\"snippet-hidden\\\">\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n\\r\\n <div id=\\\"mainbar\\\">\\r\\n <div class=\\\"subheader\\\">\\r\\n <h1>Tagged Questions</h1>\\r\\n\\r\\n<div id=\\\"tabs\\\">\\r\\n <a href=\\\"/tags/julia-lang/info\\\" data-nav-xhref=\\\"\\\" title=\\\"information about this tag\\\" data-value=\\\"\\\" data-shortcut=\\\"I\\\">\\r\\n info</a>\\r\\n <a class=\\\"youarehere\\\" href=\\\"/questions/tagged/julia-lang?sort=newest&amp;pageSize=50\\\" data-nav-xhref=\\\"\\\" title=\\\"The most recently asked questions\\\" data-value=\\\"newest\\\" data-shortcut=\\\"N\\\">\\r\\n newest</a>\\r\\n <a href=\\\"/questions/tagged/julia-lang?sort=frequent&amp;pageSize=50\\\" data-nav-xhref=\\\"\\\" title=\\\"Questions with the most links\\\" data-value=\\\"frequent\\\" data-shortcut=\\\"F\\\">\\r\\n frequent</a>\\r\\n <a href=\\\"/questions/tagged/julia-lang?sort=votes&amp;pageSize=50\\\" data-nav-xhref=\\\"\\\" title=\\\"Questions with the most votes\\\" data-value=\\\"votes\\\" data-shortcut=\\\"V\\\">\\r\\n votes</a>\\r\\n <a href=\\\"/questions/tagged/julia-lang?sort=active&amp;pageSize=50\\\" data-nav-xhref=\\\"\\\" title=\\\"Questions that have recent activity\\\" data-value=\\\"active\\\" data-shortcut=\\\"A\\\">\\r\\n active</a>\\r\\n <a id=\\\"tab-switch\\\" href=\\\"/unanswered/tagged/julia-lang\\\" data-nav-xhref=\\\"\\\" title=\\\"Switch to unanswered tabs\\\" data-value=\\\"\\\" data-shortcut=\\\"U\\\">\\r\\n unanswered</a>\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"question\\\">\\r\\n<script>\\r\\n var ados = ados || {}; ados.run = ados.run || [];\\r\\n ados.run.push(function () { ados_add_placement(22,8277,\\\"adzerk1048998876\\\",56).setZone(739); });\\r\\n </script>\\r\\n <div class=\\\"everyonelovesstackoverflow\\\" id=\\\"adzerk1048998876\\\"></div>\\r\\n\\r\\n <div class=\\\"welovestackoverflow\\\" style=\\\"margin-top: 10px;\\\">\\r\\n <div style=\\\"float: left; position: relative; width: 100%\\\">\\r\\n <p>\\r\\nJulia is a high-level, high-performance dynamic programming language for technical computing. It addresses the two language problem by combining the ease of use of languages such as R and Python with the performance of C and Fortran. </p>\\r\\n <p style=\\\"margin-bottom: 0;\\\">\\r\\n <a title=\\\"tag wiki\\\" href=\\\"/tags/julia-lang/info\\\">learn more&hellip;</a>\\r\\n <span class=\\\"lsep\\\">|</span> \\r\\n <a title=\\\"top answerers and askers in this tag\\\" href=\\\"/tags/julia-lang/topusers\\\">top users</a> \\r\\n <span class=\\\"lsep\\\">|</span> \\r\\n <a title=\\\"common, alternate spellings or phrasings for this tag\\\" href=\\\"/tags/julia-lang/synonyms\\\">synonyms (1)</a>\\r\\n </p>\\r\\n </div>\\r\\n </div>\\r\\n\\r\\n </div>\\r\\n <div id=\\\"questions\\\" class=\\\"content-padding\\\">\\r\\n<div class=\\\"question-summary\\\" id=\\\"question-summary-44705653\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"15 views\\\">\\r\\n 15 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44705653/how-to-declare-a-vector-of-vector-in-julia\\\" class=\\\"question-hyperlink\\\">How to declare a vector of vector in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I want to declare a vector of vector in Julia like the following\\n\\nV = [v1, v2, v3,...] \\nwhere v1, v2, v3... have dimension of K x 1\\n\\nWhat is the syntax to achieve this?\\r\\n </div> \\r\\n <div class=\\\"tags t-syntax t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/syntax\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;syntax&#39;\\\" rel=\\\"tag\\\">syntax</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-22 17:14:20Z\\\" class=\\\"relativetime\\\">3 hours ago</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5954627/junwei-su\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/576a801bbe7fdd6c0915e80b5fedf745?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5954627/junwei-su\\\">Junwei su</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">21</span><span title=\\\"3 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">3</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44694144\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"21 views\\\">\\r\\n 21 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44694144/how-to-create-a-dataframe-with-index-names-different-from-row-and-write-data-i\\\" class=\\\"question-hyperlink\\\">How to create a DataFrame with index names different from `row` and write data into (`index`, `column`) pairs in Julia?</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n How can I create a DataFrame with Julia with index names that are different from Row and write values into a (index,column) pair? \\n\\nI do the following in Python with pandas:\\n\\nimport pandas as pd\\ndf = ...\\r\\n </div> \\r\\n <div class=\\\"tags t-dataframe t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/dataframe\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;dataframe&#39;\\\" rel=\\\"tag\\\">dataframe</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-22 08:29:14Z\\\" class=\\\"relativetime\\\">12 hours ago</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/3906918/fabian\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/2a30818a57c11c6d808f4b9ea824e255?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/3906918/fabian\\\">fabian</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">195</span><span title=\\\"1 silver badge\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"9 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">9</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44692754\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>1</strong></span>\\r\\n <div class=\\\"viewcount\\\">vote</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"27 views\\\">\\r\\n 27 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44692754/how-to-compute-the-probability-of-poisson-distribution-in-julia\\\" class=\\\"question-hyperlink\\\">how to compute the probability of Poisson distribution in julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I have to compute the probability of Poisson distribution in Julia. I just know how to get Poisson distribution. But i have to compute the probability. also i have lambda from 20 to 100.\\n\\nusing ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-22 07:23:42Z\\\" class=\\\"relativetime\\\">13 hours ago</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/3582228/user3582228\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/eeedddba49a1d106153cc93d76ddd33d?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/3582228/user3582228\\\">user3582228</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">16</span><span title=\\\"3 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">3</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44692136\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"23 views\\\">\\r\\n 23 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44692136/julia-import-large-out-of-memory-csv-data\\\" class=\\\"question-hyperlink\\\">Julia import large out-of-memory csv data</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I was wondering if Julia has a package similar to Sparklyr in R that could handle out of memory data. My data is 11 GB in csv format. \\n\\nI installed HPAT package in Julia, but I am not sure if it ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-22 06:50:55Z\\\" class=\\\"relativetime\\\">14 hours ago</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/8198129/yifan-liu\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/88b805cf8b9f73e524b9fba4fe117b4c?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/8198129/yifan-liu\\\">Yifan Liu</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1</span><span title=\\\"2 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">2</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44689835\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"23 views\\\">\\r\\n 23 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44689835/how-to-convert-an-arrayfloat64-1-to-a-float64-in-julia\\\" class=\\\"question-hyperlink\\\">how to convert an array{Float64,1} to a Float64? in julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I just want to know how to convert an array{Float64,1} to a Float64? in julia\\n\\nutility= rand(1)*row*c*(1-x)\\r\\nit gives me error \\\"array of size (1,) passed as objective; only scalar objectives are ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-22 03:53:45Z\\\" class=\\\"relativetime\\\">17 hours ago</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/3582228/user3582228\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/eeedddba49a1d106153cc93d76ddd33d?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/3582228/user3582228\\\">user3582228</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">16</span><span title=\\\"3 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">3</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44685969\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"39 views\\\">\\r\\n 39 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44685969/julia-repl-doesnt-update-module-variable-after-modifying-modules-code\\\" class=\\\"question-hyperlink\\\">Julia - REPL doesn&#39;t update module variable after modifying module&#39;s code</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I discovered Julia a month ago and have been fascinated with it since then.\\nHowever, it seems compilation (or a variable scope) is still not clear for me.\\n\\nI have this module in plots.jl:\\n\\nmodule ...\\r\\n </div> \\r\\n <div class=\\\"tags t-compilation t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/compilation\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;compilation&#39;\\\" rel=\\\"tag\\\">compilation</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-21 20:45:55Z\\\" class=\\\"relativetime\\\">yesterday</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1850888/saxo-miko-mola\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/928b5ee72eda23c4f705a724957a653b?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1850888/saxo-miko-mola\\\">Saxo Miko Mola</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">55</span><span title=\\\"1 silver badge\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"7 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">7</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44683685\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"36 views\\\">\\r\\n 36 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44683685/reserve-array-memory-in-advance-in-julia\\\" class=\\\"question-hyperlink\\\">reserve array memory in advance in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n How can we reserve memory (or allocate memory without initialization) in Julia? In C++, a common pattern is to call reserve before calling push_back several times to avoid having to call on malloc ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-21 18:31:12Z\\\" class=\\\"relativetime\\\">yesterday</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/7186375/matt\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/497d7faacd988f3b9ed9ee0d5c6b2833?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/7186375/matt\\\">Matt</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">13</span><span title=\\\"2 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">2</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44677240\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"25 views\\\">\\r\\n 25 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44677240/plotting-with-julia-multiple-graphs-in-a-loop-or-function\\\" class=\\\"question-hyperlink\\\">Plotting with Julia multiple graphs in a loop or function</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm using Atom and Julia to plot a good number of graphs.\\nI have a code like this:\\n\\nfunction plotnetwork(A)\\n for i=1:size(A,3)\\n p,t=findn(A[:,:,i]\\n graphplot(p,t)\\n end\\nreturn\\nend\\r\\nwhere ...\\r\\n </div> \\r\\n <div class=\\\"tags t-plot t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/plot\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;plot&#39;\\\" rel=\\\"tag\\\">plot</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-21 13:15:19Z\\\" class=\\\"relativetime\\\">yesterday</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/3149593/user3149593\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/c7d7eb5b0c0f04ee3538194d9aebeb32?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/3149593/user3149593\\\">user3149593</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">106</span><span title=\\\"2 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">2</span></span><span title=\\\"11 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">11</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44675564\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"27 views\\\">\\r\\n 27 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44675564/julia-plotting-in-3d-how-to-draw-a-line-between-coordinates\\\" class=\\\"question-hyperlink\\\">Julia plotting in 3D: How to draw a line between coordinates?</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I am working on a program that a friend wrote in Julia. We have to do some work for university, especially for a course called \\\"dynamic modelling\\\".\\n\\nThe thing is to reproduce some great work of ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-21 12:02:05Z\\\" class=\\\"relativetime\\\">yesterday</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/538127/bsytkorbi\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/687246321c970cd0d61493b676d9e184?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/538127/bsytkorbi\\\">bsytKorbi</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">136</span><span title=\\\"1 gold badge\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"3 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">3</span></span><span title=\\\"4 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">4</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44668696\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>3</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"45 views\\\">\\r\\n 45 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44668696/optimizing-offsetof-down-to-a-constant-value\\\" class=\\\"question-hyperlink\\\">Optimizing offsetof() down to a constant value?</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I wrote a little function to get the byte offset of a field inside inside a struct, but to accomplish that, I'm iterating each time over the fields till I found the symbol. In C however, the offsetof()...\\r\\n </div> \\r\\n <div class=\\\"tags t-optimization t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/optimization\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;optimization&#39;\\\" rel=\\\"tag\\\">optimization</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-21 06:49:08Z\\\" class=\\\"relativetime\\\">yesterday</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1952626/lama12345\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/296ab9b124a181b2827a16b8a3f563cc?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1952626/lama12345\\\">lama12345</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1,311</span><span title=\\\"1 gold badge\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"12 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">12</span></span><span title=\\\"13 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">13</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44653301\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"40 views\\\">\\r\\n 40 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44653301/failed-to-use-julia-0-6-and-atom-1-18-0-x64\\\" class=\\\"question-hyperlink\\\">Failed to use Julia (0.6) and Atom (1.18.0 x64)</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I uninstalled Julia 0.5 and 0.52 including folders and the Atom editor.\\nThen I reinstalled Julia 0.6 and in a next step, Atom 1.18.0 x64.\\nWithin Atom, the following packages were installed afterwards:\\r...\\r\\n </div> \\r\\n <div class=\\\"tags t-installation t-julia-lang t-atom-editor\\\">\\r\\n <a href=\\\"/questions/tagged/installation\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;installation&#39;\\\" rel=\\\"tag\\\">installation</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/atom-editor\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;atom-editor&#39;\\\" rel=\\\"tag\\\">atom-editor</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-20 12:38:11Z\\\" class=\\\"relativetime\\\">2 days ago</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5293815/user5293815\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/77240c0d008d9d6fafe5fa7019a32f80?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5293815/user5293815\\\">user5293815</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1</span><span title=\\\"1 bronze badge\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">1</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44648387\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"56 views\\\">\\r\\n 56 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44648387/re-use-result-of-last-line-jupyter\\\" class=\\\"question-hyperlink\\\">Re-use result of last line Jupyter</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n In Jupyter notebook, is there any way to re-use the output the line above, within a cell? \\n\\nComing from Mathematica, I often find it useful to write things commands which work on the output of the ...\\r\\n </div> \\r\\n <div class=\\\"tags t-python t-ipython t-wolfram-mathematica t-julia-lang t-jupyter-notebook\\\">\\r\\n <a href=\\\"/questions/tagged/python\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;python&#39;\\\" rel=\\\"tag\\\">python</a> <a href=\\\"/questions/tagged/ipython\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;ipython&#39;\\\" rel=\\\"tag\\\">ipython</a> <a href=\\\"/questions/tagged/wolfram-mathematica\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;wolfram-mathematica&#39;\\\" rel=\\\"tag\\\">wolfram-mathematica</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/jupyter-notebook\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;jupyter-notebook&#39;\\\" rel=\\\"tag\\\">jupyter-notebook</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-20 08:57:14Z\\\" class=\\\"relativetime\\\">2 days ago</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/8187364/improbable\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/3e0005f3f3e0c473547d559072e4ef72?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/8187364/improbable\\\">improbable</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1</span><span title=\\\"2 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">2</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44639826\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"60 views\\\">\\r\\n 60 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44639826/complex-array-too-big-memory-error\\\" class=\\\"question-hyperlink\\\">Complex Array too big, Memory Error</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n My code uses \\n\\nzeros(Complex{Float64}, data.nuv, nx*nx)\\r\\nwhere data.nuv = 1000 and nx = 1000\\nSo, this turns out to be a complex array of 1000 by 1000000.\\nMy laptop's RAM is too small; running it on ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-19 20:56:16Z\\\" class=\\\"relativetime\\\">Jun 19 at 20:56</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/8050190/ellielinc\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/9155f77a19a934f0ee736407a6951065?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/8050190/ellielinc\\\">ellielinc</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">21</span><span title=\\\"6 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">6</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44639219\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>4</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>2</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"61 views\\\">\\r\\n 61 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44639219/read-write-struct-data-with-julia-of-memory-address-from-c\\\" class=\\\"question-hyperlink\\\">Read/write struct data with Julia of memory address from C</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I am embedding my application inside Julia and I need a good way to read/write the same structures from Julia and C++.\\n\\nIn Python I can simply do:\\n\\nffi.cdef(\\\"\\\"\\\"\\n struct keyboard_s {\\n int ...\\r\\n </div> \\r\\n <div class=\\\"tags t-cçç t-pointers t-julia-lang t-ffi\\\">\\r\\n <a href=\\\"/questions/tagged/c%2b%2b\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;c++&#39;\\\" rel=\\\"tag\\\">c++</a> <a href=\\\"/questions/tagged/pointers\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;pointers&#39;\\\" rel=\\\"tag\\\">pointers</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/ffi\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;ffi&#39;\\\" rel=\\\"tag\\\">ffi</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-19 20:17:26Z\\\" class=\\\"relativetime\\\">Jun 19 at 20:17</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1952626/lama12345\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/296ab9b124a181b2827a16b8a3f563cc?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1952626/lama12345\\\">lama12345</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1,311</span><span title=\\\"1 gold badge\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"12 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">12</span></span><span title=\\\"13 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">13</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44627435\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>-1</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"58 views\\\">\\r\\n 58 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44627435/julia-langthis-case-is-not-supported-yet\\\" class=\\\"question-hyperlink\\\">&ldquo;julia-lang:This case is not supported yet&rdquo;</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I was practicing with some exercise like P3.jl. When I run following code, it hasn't any error and the answer is correct.\\n\\nN = 10\\nA = rand(N,N)\\nSA = convert(SharedArray, A)\\nT = 100\\nJacobi_parallel(SA,...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-19 09:57:05Z\\\" class=\\\"relativetime\\\">Jun 19 at 9:57</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/7671105/armaa\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/2a2796613bf1d41c2764cdecb76aee65?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/7671105/armaa\\\">Armaa</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">15</span><span title=\\\"8 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">8</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44625182\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>5</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>2</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"57 views\\\">\\r\\n 57 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44625182/julia-programming-creating-a-tuple-from-indices-in-a-set\\\" class=\\\"question-hyperlink\\\">Julia programming - creating a tuple from indices in a set</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I have a set S={1,2,3}. I'm trying to create a tuple of the form (i,j,1) for which i and j are elements of S. When S={1,2,3}, my set of tuples (say E)should be {(1,2,1),(2,1,1),(1,3,1),(3,1,1),(3,2,1)...\\r\\n </div> \\r\\n <div class=\\\"tags t-tuples t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/tuples\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;tuples&#39;\\\" rel=\\\"tag\\\">tuples</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-19 08:02:43Z\\\" class=\\\"relativetime\\\">Jun 19 at 8:02</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/248aeda0155d57f63a76a9eeebbaf37f?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\">ccc</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">148</span><span title=\\\"6 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">6</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44623315\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>1</strong></span>\\r\\n <div class=\\\"viewcount\\\">vote</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"22 views\\\">\\r\\n 22 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44623315/julia-shell-mode-for-emacs-not-showing-prompt-or-greek-letters\\\" class=\\\"question-hyperlink\\\">Julia shell mode for emacs, not showing prompt or greek letters</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n Using Emacs 24.5.1 x64 on Windows 7, Julia 0.5.0, julia-mode-20170607.537, and julia-shell-20161125.1110\\n\\nIt appears that julia-mode works fine, as I get syntax highlighting and I can do \\\\delta &lt;...\\r\\n </div> \\r\\n <div class=\\\"tags t-emacs t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/emacs\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;emacs&#39;\\\" rel=\\\"tag\\\">emacs</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-19 06:09:42Z\\\" class=\\\"relativetime\\\">Jun 19 at 6:09</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/655802/sonicsmooth\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/d4c84231e615d393e00dd0138c0af168?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/655802/sonicsmooth\\\">Sonicsmooth</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1,135</span><span title=\\\"1 gold badge\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"11 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">11</span></span><span title=\\\"22 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">22</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44621511\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"58 views\\\">\\r\\n 58 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44621511/control-flow-if-condition-in-julia\\\" class=\\\"question-hyperlink\\\">Control Flow - if condition in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm using Julia to solve an integer program. My variables are of the form z[i,j], i in N and j in N and N=10and z[i,j] is a binary variable. \\n\\nIn the first half of the program, I have a set of ...\\r\\n </div> \\r\\n <div class=\\\"tags t-if-statement t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/if-statement\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;if-statement&#39;\\\" rel=\\\"tag\\\">if-statement</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-19 02:34:52Z\\\" class=\\\"relativetime\\\">Jun 19 at 2:34</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/248aeda0155d57f63a76a9eeebbaf37f?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\">ccc</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">148</span><span title=\\\"6 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">6</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44612542\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>1</strong></span>\\r\\n <div class=\\\"viewcount\\\">vote</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"68 views\\\">\\r\\n 68 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44612542/tips-for-improving-performance-for-the-following-code-that-calculates-softmax-de\\\" class=\\\"question-hyperlink\\\">Tips for improving performance for the following code that calculates softmax derivative</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n Edit: Added function header\\n\\nfunction backward(l::SoftMax, DLDY::Array{Float64}; kwargs...)\\n # credits: https://stats.stackexchange.com/questions/79454/softmax-layer-in-a-neural-network?newreg=...\\r\\n </div> \\r\\n <div class=\\\"tags t-optimization t-machine-learning t-neural-network t-julia-lang t-softmax\\\">\\r\\n <a href=\\\"/questions/tagged/optimization\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;optimization&#39;\\\" rel=\\\"tag\\\">optimization</a> <a href=\\\"/questions/tagged/machine-learning\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;machine-learning&#39;\\\" rel=\\\"tag\\\">machine-learning</a> <a href=\\\"/questions/tagged/neural-network\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;neural-network&#39;\\\" rel=\\\"tag\\\">neural-network</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/softmax\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;softmax&#39;\\\" rel=\\\"tag\\\">softmax</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-18 07:05:52Z\\\" class=\\\"relativetime\\\">Jun 18 at 7:05</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6531092/haonan-chen\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://lh6.googleusercontent.com/-OYuNjruepls/AAAAAAAAAAI/AAAAAAAAABY/RSNPRNvS0cQ/photo.jpg?sz=32\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6531092/haonan-chen\\\">Haonan Chen</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">38</span><span title=\\\"8 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">8</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44610418\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"34 views\\\">\\r\\n 34 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44610418/benders-decomposition-coefficients\\\" class=\\\"question-hyperlink\\\">benders decomposition coefficients</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n Is there any way or procedure to implement benders decomposition without constructing the coefficient matrix? For example, I will implement Ax&lt;=b. However, I do not prefer constructing matrix A ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-decomposition t-julia-jump\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/decomposition\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;decomposition&#39;\\\" rel=\\\"tag\\\">decomposition</a> <a href=\\\"/questions/tagged/julia-jump\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-jump&#39;\\\" rel=\\\"tag\\\">julia-jump</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-17 23:39:38Z\\\" class=\\\"relativetime\\\">Jun 17 at 23:39</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6411842/liuhan-huang\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/d02a787fdd375328a08cf5f01a912f28?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6411842/liuhan-huang\\\">Liuhan Huang</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1</span><span title=\\\"1 bronze badge\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">1</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44609951\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"44 views\\\">\\r\\n 44 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44609951/efficiently-parse-a-datafile-into-a-laplacian-matrix-in-julia\\\" class=\\\"question-hyperlink\\\">Efficiently parse a datafile into a laplacian matrix in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n Given a data file\\n\\n11616,,,6263,,,1.0\\n1429,,,5377,,,0.5\\n1429,,,7207,,,0.5\\n5377,,,7207,,,0.5\\n2713,,,1499,,,1.0\\n8598,,,1031,,,1.0\\n6166,,,1283,,,0.5\\n6166,,,12602,,,0.5\\n...\\r\\neach entries obey the ...\\r\\n </div> \\r\\n <div class=\\\"tags t-matrix t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/matrix\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;matrix&#39;\\\" rel=\\\"tag\\\">matrix</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-17 22:26:24Z\\\" class=\\\"relativetime\\\">Jun 17 at 22:26</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5954627/junwei-su\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/576a801bbe7fdd6c0915e80b5fedf745?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5954627/junwei-su\\\">Junwei su</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">21</span><span title=\\\"3 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">3</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44608878\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>4</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"26 views\\\">\\r\\n 26 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44608878/plots-jl-turn-off-axis-and-grid-lines\\\" class=\\\"question-hyperlink\\\">Plots.jl - Turn off axis and grid lines</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I am trying to make a surface plot without the axis and grid lines. I found that I can turn off the grid with grid = false but I can't find a way to remove the axis lines.\\n\\nsurface(x2d, y2d, z2d, ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-plotsûjl\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/plots.jl\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;plots.jl&#39;\\\" rel=\\\"tag\\\">plots.jl</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info user-hover\\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-17 19:59:55Z\\\" class=\\\"relativetime\\\">Jun 17 at 19:59</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1887118/nalyd88\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/a850635ea6017cb2b33c5b3b620119cd?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1887118/nalyd88\\\">nalyd88</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1,779</span><span title=\\\"12 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">12</span></span><span title=\\\"29 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">29</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44602103\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"50 views\\\">\\r\\n 50 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44602103/how-can-i-fix-julia-error\\\" class=\\\"question-hyperlink\\\">How can i fix Julia error?</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I am using Julia version 0.5.2.\\n\\njulia&gt; addprocs(4);\\njulia&gt; a=rand(8,8);\\njulia&gt; distribute(a,2)\\r\\nWhen I try to use this codes,I get the error:\\r\\n ERROR: UndefVarError: distribute not defined\\r\\n...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-distributed-computing\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/distributed-computing\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;distributed-computing&#39;\\\" rel=\\\"tag\\\">distributed-computing</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-17 07:46:51Z\\\" class=\\\"relativetime\\\">Jun 17 at 7:46</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/7671105/armaa\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/2a2796613bf1d41c2764cdecb76aee65?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/7671105/armaa\\\">Armaa</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">15</span><span title=\\\"8 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">8</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44600878\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"31 views\\\">\\r\\n 31 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44600878/plots-jl-map-surface-color-to-matrix\\\" class=\\\"question-hyperlink\\\">Plots.jl - Map surface color to matrix</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm trying to figure out how to create surface plots with Plots.jl. I can create a spherical surface from a 2-d mesh like below:\\r\\nusing Plots\\nplotlyjs()\\n# Read the theta and phi angles from file...\\n...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-plotsûjl\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/plots.jl\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;plots.jl&#39;\\\" rel=\\\"tag\\\">plots.jl</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info user-hover\\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-17 04:48:55Z\\\" class=\\\"relativetime\\\">Jun 17 at 4:48</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1887118/nalyd88\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/a850635ea6017cb2b33c5b3b620119cd?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1887118/nalyd88\\\">nalyd88</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1,779</span><span title=\\\"12 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">12</span></span><span title=\\\"29 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">29</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44597531\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>4</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"39 views\\\">\\r\\n 39 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44597531/how-can-i-generalize-a-custom-type-call-function-to-an-abstract-type\\\" class=\\\"question-hyperlink\\\">How can I generalize a custom type call function to an abstract type?</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I have the following mock setup, with an abstract type, concrete types as subtypes, and a function f which takes two arguments, the first being a Letter.\\n\\nabstract type Letter end\\n\\nstruct A &lt;: ...\\r\\n </div> \\r\\n <div class=\\\"tags t-types t-julia-lang t-abstract\\\">\\r\\n <a href=\\\"/questions/tagged/types\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;types&#39;\\\" rel=\\\"tag\\\">types</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/abstract\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;abstract&#39;\\\" rel=\\\"tag\\\">abstract</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-16 20:31:23Z\\\" class=\\\"relativetime\\\">Jun 16 at 20:31</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/7504176/harrison-grodin\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://lh3.googleusercontent.com/-wxuC76kdUuI/AAAAAAAAAAI/AAAAAAAAAA8/0RTSH-VK6Tk/photo.jpg?sz=32\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/7504176/harrison-grodin\\\">Harrison Grodin</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">770</span><span title=\\\"2 gold badges\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">2</span></span><span title=\\\"3 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">3</span></span><span title=\\\"22 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">22</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44592092\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>-1</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"60 views\\\">\\r\\n 60 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44592092/how-to-structure-scientific-computing-code\\\" class=\\\"question-hyperlink\\\">How to structure scientific computing code [closed]</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm currently doing a masters degree in Physics and I need to write some computational models and have done so before in both Python and Julia. However, I don't know the best practices when it comes ...\\r\\n </div> \\r\\n <div class=\\\"tags t-python t-julia-lang t-computer-science t-numerical-computing\\\">\\r\\n <a href=\\\"/questions/tagged/python\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;python&#39;\\\" rel=\\\"tag\\\">python</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/computer-science\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;computer-science&#39;\\\" rel=\\\"tag\\\">computer-science</a> <a href=\\\"/questions/tagged/numerical-computing\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;numerical-computing&#39;\\\" rel=\\\"tag\\\">numerical-computing</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-16 14:43:49Z\\\" class=\\\"relativetime\\\">Jun 16 at 14:43</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5609441/lars\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/82e88a2bbef8be0cc191b4a5854e8c01?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5609441/lars\\\">Lars</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">12</span><span title=\\\"3 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">3</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44591481\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>3</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"66 views\\\">\\r\\n 66 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44591481/julia-outer-product-function\\\" class=\\\"question-hyperlink\\\">julia: outer product function</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n In R, the function outer structurally allows you to take the outer product of two vectors x and y while providing a number of options for the actual function applied to each combination. For example ...\\r\\n </div> \\r\\n <div class=\\\"tags t-r t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/r\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;r&#39;\\\" rel=\\\"tag\\\">r</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-16 14:13:25Z\\\" class=\\\"relativetime\\\">Jun 16 at 14:13</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6272122/jjjjjj\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/e5e337bab9baeaada815a19322239035?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6272122/jjjjjj\\\">jjjjjj</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">127</span><span title=\\\"4 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">4</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44590882\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"113 views\\\">\\r\\n 113 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44590882/compare-speed-python3-vs-julia\\\" class=\\\"question-hyperlink\\\">Compare Speed Python3 vs Julia [closed]</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm starting to write a program doing nonlinear beam-calculations. I chose Python because of it's Matlab like code and I'm currently doing speed tests (to be sure if python is the right language to do ...\\r\\n </div> \\r\\n <div class=\\\"tags t-python t-performance t-python-3ûx t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/python\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;python&#39;\\\" rel=\\\"tag\\\">python</a> <a href=\\\"/questions/tagged/performance\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;performance&#39;\\\" rel=\\\"tag\\\">performance</a> <a href=\\\"/questions/tagged/python-3.x\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;python-3.x&#39;\\\" rel=\\\"tag\\\">python-3.x</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-16 13:46:02Z\\\" class=\\\"relativetime\\\">Jun 16 at 13:46</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/8172009/usr-g\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/f1e929668f11962eae5309e4d577df07?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/8172009/usr-g\\\">usr_g</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">4</span><span title=\\\"1 bronze badge\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">1</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44581049\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"58 views\\\">\\r\\n 58 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44581049/utilizing-ndgrid-meshgrid-functionality-in-julia\\\" class=\\\"question-hyperlink\\\">Utilizing ndgrid/meshgrid functionality in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm trying to find functionality in Julia similar to MATLAB's meshgrid or ndgrid. I know Julia has defined ndgrid in the examples but when I try to use it I get the following error.\\r\\n UndefVarError: ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info user-hover\\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-16 04:50:19Z\\\" class=\\\"relativetime\\\">Jun 16 at 4:50</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1887118/nalyd88\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/a850635ea6017cb2b33c5b3b620119cd?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1887118/nalyd88\\\">nalyd88</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1,779</span><span title=\\\"12 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">12</span></span><span title=\\\"29 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">29</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44580932\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>1</strong></span>\\r\\n <div class=\\\"viewcount\\\">vote</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"41 views\\\">\\r\\n 41 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44580932/calling-a-separation-algorithm-in-julia\\\" class=\\\"question-hyperlink\\\">Calling a separation algorithm in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm trying to solve a model using Julia-JuMP. The following is the outline of the model that I created. Here, z[i,j] is a binary variable and d[i,j] is the cost for which z[i,j]=1.\\nMy constraint ...\\r\\n </div> \\r\\n <div class=\\\"tags t-optimization t-julia-lang t-julia-jump\\\">\\r\\n <a href=\\\"/questions/tagged/optimization\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;optimization&#39;\\\" rel=\\\"tag\\\">optimization</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/julia-jump\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-jump&#39;\\\" rel=\\\"tag\\\">julia-jump</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-16 04:39:33Z\\\" class=\\\"relativetime\\\">Jun 16 at 4:39</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/248aeda0155d57f63a76a9eeebbaf37f?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\">ccc</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">148</span><span title=\\\"6 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">6</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44577152\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>1</strong></span>\\r\\n <div class=\\\"viewcount\\\">vote</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"27 views\\\">\\r\\n 27 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44577152/julia-pyplot-add-point\\\" class=\\\"question-hyperlink\\\">julia: pyplot add point</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n How can I add a single point to an existing plot with pyplot?\\n\\nFor example, I'm plotting a shifted sin curve over \\$[0,2\\\\pi]\\$ with the below\\n\\nPkg.add(\\\"PyPlot\\\")\\nusing PyPlot\\nr1 = 0; r2 = 2*pi\\nN = 100\\nt =...\\r\\n </div> \\r\\n <div class=\\\"tags t-plot t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/plot\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;plot&#39;\\\" rel=\\\"tag\\\">plot</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-15 21:15:52Z\\\" class=\\\"relativetime\\\">Jun 15 at 21:15</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6272122/jjjjjj\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/e5e337bab9baeaada815a19322239035?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6272122/jjjjjj\\\">jjjjjj</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">127</span><span title=\\\"4 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">4</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44571713\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"39 views\\\">\\r\\n 39 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44571713/julia-language-state-in-async-tasks-current-directory\\\" class=\\\"question-hyperlink\\\">Julia language - State in @async tasks :: Current-Directory</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I've noticed (read: caught a production bug) different Tasks in Julia - do not have their own working directory, but that the current directory - is shared. I realise in an OS level this is kind of ...\\r\\n </div> \\r\\n <div class=\\\"tags t-concurrency t-julia-lang t-current-working-directory\\\">\\r\\n <a href=\\\"/questions/tagged/concurrency\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;concurrency&#39;\\\" rel=\\\"tag\\\">concurrency</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/current-working-directory\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;current-working-directory&#39;\\\" rel=\\\"tag\\\">current-working-directory</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-15 15:41:52Z\\\" class=\\\"relativetime\\\">Jun 15 at 15:41</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/237493/oyd11\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/6609a0ac13ab14c8e573266fef242fc4?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/237493/oyd11\\\">oyd11</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">73</span><span title=\\\"1 silver badge\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"7 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">7</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44569840\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"45 views\\\">\\r\\n 45 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44569840/using-using-dynamically\\\" class=\\\"question-hyperlink\\\">Using using dynamically</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I want to use modules dynamically and I know their name, but creating a module and then applying using like this:\\n\\nusing PyPlot\\na = Module(:Plots)\\nusing a\\r\\nwill yield an excpetion telling me that a is ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-15 14:13:52Z\\\" class=\\\"relativetime\\\">Jun 15 at 14:13</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/2329125/nozdrum\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/7f6fe718fa680580315196e8671c65db?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/2329125/nozdrum\\\">Nozdrum</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">637</span><span title=\\\"1 gold badge\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"9 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">9</span></span><span title=\\\"23 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">23</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44564825\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"38 views\\\">\\r\\n 38 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44564825/error-with-julia-using-atom\\\" class=\\\"question-hyperlink\\\">Error with Julia using Atom</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I have a lot of problems with Julia since started. I am new in programming and new in Julia so please excuse my misunderstanding. \\nI wanted to plot in real time with Julia (This question solved it). ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-15 10:13:04Z\\\" class=\\\"relativetime\\\">Jun 15 at 10:13</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5035672/user5035672\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/430493fa0300ddb6930641c0afcd88d7?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5035672/user5035672\\\">user5035672</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">27</span><span title=\\\"5 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">5</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44558497\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"39 views\\\">\\r\\n 39 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44558497/running-a-julia-code-with-atom\\\" class=\\\"question-hyperlink\\\">Running a Julia code with Atom</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm getting the following error when running a Julia code in Atom. Can someone please help me with this?\\n\\nERROR: LoadError: Failed to precompile Atom to /Users/xxx/.julia/lib/v0.5/Atom.ji.\\r\\nin ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-15 04:21:06Z\\\" class=\\\"relativetime\\\">Jun 15 at 4:21</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/248aeda0155d57f63a76a9eeebbaf37f?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\">ccc</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">148</span><span title=\\\"6 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">6</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44550571\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>7</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>3</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"107 views\\\">\\r\\n 107 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44550571/julia-adding-anonymous-functions-together\\\" class=\\\"question-hyperlink\\\">Julia: adding anonymous functions together</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n If I define some anonymous functions a(x) and b(x) as\\n\\na = x -&gt; x^2\\nb = x -&gt; 2x\\r\\nit would be helpful for recursive problems to add them together, say over the duration of some loop:\\n\\nfor i=1:5\\n ...\\r\\n </div> \\r\\n <div class=\\\"tags t-recursion t-julia-lang t-anonymous-function\\\">\\r\\n <a href=\\\"/questions/tagged/recursion\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;recursion&#39;\\\" rel=\\\"tag\\\">recursion</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/anonymous-function\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;anonymous-function&#39;\\\" rel=\\\"tag\\\">anonymous-function</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-14 16:53:34Z\\\" class=\\\"relativetime\\\">Jun 14 at 16:53</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5150303/daniel-r-livingston\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/6ef4e86ca3c4b7a6d1a99cefcc8fa4c6?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5150303/daniel-r-livingston\\\">Daniel R. Livingston</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">176</span><span title=\\\"14 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">14</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44545564\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>3</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"35 views\\\">\\r\\n 35 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44545564/capturing-and-displaying-output-from-within-julia\\\" class=\\\"question-hyperlink\\\">Capturing and displaying output from within Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I looked everywhere for this so I am putting it here for the weary traveler;\\n\\nQuestion: How do I capture the full output of a variable to a file from within a julia script? \\n\\ni.e. :\\n\\n#script.jl\\ny = f(...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-stdio\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/stdio\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;stdio&#39;\\\" rel=\\\"tag\\\">stdio</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-14 13:00:23Z\\\" class=\\\"relativetime\\\">Jun 14 at 13:00</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1407747/ashley\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://i.stack.imgur.com/F8S5T.jpg?s=32&amp;g=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1407747/ashley\\\">ashley</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">437</span><span title=\\\"1 gold badge\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"5 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">5</span></span><span title=\\\"11 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">11</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44538634\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"47 views\\\">\\r\\n 47 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44538634/using-quoted-expressions-and-arrays-in-julia\\\" class=\\\"question-hyperlink\\\">using quoted expressions and arrays in julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I am having some trouble dealing with the differences between an array indexed at a spot and a the item at that spot in a quoted expression can be seen with this simple example:\\n\\njulia&gt; A=[:(2+3),:(...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-julia-jump\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/julia-jump\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-jump&#39;\\\" rel=\\\"tag\\\">julia-jump</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-14 07:48:54Z\\\" class=\\\"relativetime\\\">Jun 14 at 7:48</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/3784721/huckleberry-febbo\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/68ab9369830eadd2fdfb412698151b4d?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/3784721/huckleberry-febbo\\\">Huckleberry Febbo</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">108</span><span title=\\\"1 silver badge\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">1</span></span><span title=\\\"11 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">11</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44538399\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"22 views\\\">\\r\\n 22 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44538399/add-a-constraint-in-jump\\\" class=\\\"question-hyperlink\\\">add a constraint in JuMP</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm trying to add a constraint to a JuMP model in Julia as follows:\\n\\n@constraint(m, sum{z[i,j]&gt;=2, i in N, j in K})\\r\\nwhere N and K are two sets. \\n\\nBut, when I debug it, I get the following error ...\\r\\n </div> \\r\\n <div class=\\\"tags t-constraints t-julia-lang t-julia-jump\\\">\\r\\n <a href=\\\"/questions/tagged/constraints\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;constraints&#39;\\\" rel=\\\"tag\\\">constraints</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/julia-jump\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-jump&#39;\\\" rel=\\\"tag\\\">julia-jump</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-14 07:37:20Z\\\" class=\\\"relativetime\\\">Jun 14 at 7:37</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/248aeda0155d57f63a76a9eeebbaf37f?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\">ccc</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">148</span><span title=\\\"6 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">6</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44538016\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>1</strong></span>\\r\\n <div class=\\\"viewcount\\\">vote</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>2</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"63 views\\\">\\r\\n 63 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44538016/how-to-merge-elements-of-array-of-arrays-in-julia\\\" class=\\\"question-hyperlink\\\">How to merge elements of array of arrays in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I couldn't find a way to do the following in Julia:\\n\\nInput: x= [[\\\"1\\\",\\\"2\\\",\\\"3\\\"],[\\\"4\\\",\\\"5\\\",\\\"6\\\"],[\\\"7\\\",\\\"8\\\",\\\"9\\\"]]\\n\\nDesired output: [\\\"1 4 7\\\", \\\"2 5 8\\\",\\\"3 6 9\\\"]\\n\\nBasically, I want to generate n strings where n ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-14 07:18:15Z\\\" class=\\\"relativetime\\\">Jun 14 at 7:18</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5223033/zwlayer\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/bf6676f31f2155ff92b1f7ad96ab9924?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5223033/zwlayer\\\">zwlayer</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">379</span><span title=\\\"2 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">2</span></span><span title=\\\"14 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">14</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44535058\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>2</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"81 views\\\">\\r\\n 81 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44535058/understanding-a-for-loop-in-an-example\\\" class=\\\"question-hyperlink\\\">Understanding a for loop in an example</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n Please rather close or down this post try to teach and help me to understand\\n\\nAs a newbie I have a very hard time to understand the following for loop code in Julia. I am sure this should be the same ...\\r\\n </div> \\r\\n <div class=\\\"tags t-arrays t-loops t-for-loop t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/arrays\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;arrays&#39;\\\" rel=\\\"tag\\\">arrays</a> <a href=\\\"/questions/tagged/loops\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;loops&#39;\\\" rel=\\\"tag\\\">loops</a> <a href=\\\"/questions/tagged/for-loop\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;for-loop&#39;\\\" rel=\\\"tag\\\">for-loop</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-14 03:46:01Z\\\" class=\\\"relativetime\\\">Jun 14 at 3:46</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6566707/daniel\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/cf0fc50d1be9fa6977565d323d684eb2?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6566707/daniel\\\">Daniel</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">8</span><span title=\\\"1 bronze badge\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">1</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44520097\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>6</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"79 views\\\">\\r\\n 79 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44520097/method-chaining-in-julia\\\" class=\\\"question-hyperlink\\\">Method Chaining in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I read https://github.com/JuliaLang/julia/issues/5571 which made me think I could break lines like that due to some of the comments:\\n\\na = [x*5 for x in 0:20 if x&gt;4]\\n\\nscale(y) = (x)-&gt; y*x\\nfilter(...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-13 11:21:16Z\\\" class=\\\"relativetime\\\">Jun 13 at 11:21</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6216583/thomas-e\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://i.stack.imgur.com/BLFta.jpg?s=32&amp;g=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6216583/thomas-e\\\">Thomas E</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">157</span><span title=\\\"7 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">7</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44510707\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"34 views\\\">\\r\\n 34 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44510707/julia-graphplot-package-error\\\" class=\\\"question-hyperlink\\\">Julia GraphPlot package error</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm trying to run a Julia code which works with GraphPlot package. I have already added this package to Julia. But I'm getting the following error when I start running the code. Can someone please ...\\r\\n </div> \\r\\n <div class=\\\"tags t-package t-julia-lang t-precompiling\\\">\\r\\n <a href=\\\"/questions/tagged/package\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;package&#39;\\\" rel=\\\"tag\\\">package</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/precompiling\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;precompiling&#39;\\\" rel=\\\"tag\\\">precompiling</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-13 00:43:11Z\\\" class=\\\"relativetime\\\">Jun 13 at 0:43</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/248aeda0155d57f63a76a9eeebbaf37f?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6799490/ccc\\\">ccc</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">148</span><span title=\\\"6 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">6</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44509964\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>0</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>2</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"62 views\\\">\\r\\n 62 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44509964/solver-for-non-linear-least-squares-with-boundary-constraints\\\" class=\\\"question-hyperlink\\\">Solver for non-linear least squares with boundary constraints</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I'm looking for an analog to Matlab's lsqnonlin function in Julia.\\n\\nLsqFit.jl looks great, but doesn't accept the same arguments Matlab's implementation does; specifically:\\r\\nLower bounds\\nUpper bounds \\n...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-least-squares\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/least-squares\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;least-squares&#39;\\\" rel=\\\"tag\\\">least-squares</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-12 23:06:50Z\\\" class=\\\"relativetime\\\">Jun 12 at 23:06</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/5150303/daniel-r-livingston\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/6ef4e86ca3c4b7a6d1a99cefcc8fa4c6?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/5150303/daniel-r-livingston\\\">Daniel R. Livingston</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">176</span><span title=\\\"14 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">14</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44502828\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>3</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"111 views\\\">\\r\\n 111 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44502828/use-%ce%bb-%cf%86-%ce%b1-in-the-jupyter-notebook-just-as-in-julia\\\" class=\\\"question-hyperlink\\\">Use λ,φ,α,&hellip; in the jupyter notebook, just as in julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n As some of you probably know, you can use λ,φ,α,.., in any julia script. Couldnt this also be possible for python? I would use julia, but there are still some packages from python which I would have ...\\r\\n </div> \\r\\n <div class=\\\"tags t-python t-ipython t-julia-lang t-jupyter\\\">\\r\\n <a href=\\\"/questions/tagged/python\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;python&#39;\\\" rel=\\\"tag\\\">python</a> <a href=\\\"/questions/tagged/ipython\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;ipython&#39;\\\" rel=\\\"tag\\\">ipython</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/jupyter\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;jupyter&#39;\\\" rel=\\\"tag\\\">jupyter</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-12 15:10:03Z\\\" class=\\\"relativetime\\\">Jun 12 at 15:10</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1117766/varantir\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/8941d31fb100b6224f5a6f28bbce8341?s=32&amp;d=identicon&amp;r=PG\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1117766/varantir\\\">varantir</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">1,291</span><span title=\\\"3 gold badges\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">3</span></span><span title=\\\"13 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">13</span></span><span title=\\\"26 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">26</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44501423\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>1</strong></span>\\r\\n <div class=\\\"viewcount\\\">vote</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"29 views\\\">\\r\\n 29 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44501423/how-to-pass-column-name-with-function-readtable-in-julia\\\" class=\\\"question-hyperlink\\\">How to pass column name with function readtable in julia?</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n using DataFrames\\nlabel = [\\\"Data\\\", \\\"tempo\\\", \\\"RAh\\\", \\\"RAm\\\", \\\"RAs\\\", \\\"DEh\\\", \\\"DEm\\\", \\\"DEs\\\"]\\ndf = readtable(\\\"mars.dat\\\", separator = ' ',header = false, names = label)\\r\\nI get the next error\\n\\nMethodError: no ...\\r\\n </div> \\r\\n <div class=\\\"tags t-dataframe t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/dataframe\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;dataframe&#39;\\\" rel=\\\"tag\\\">dataframe</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-12 14:05:20Z\\\" class=\\\"relativetime\\\">Jun 12 at 14:05</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6078205/fredifqh\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/a60edc06c793d9ab63ad0523d0c51498?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6078205/fredifqh\\\">Fredifqh</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">30</span><span title=\\\"4 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">4</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44491282\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"45 views\\\">\\r\\n 45 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44491282/methoderror-objects-of-type-module-are-not-callable\\\" class=\\\"question-hyperlink\\\">MethodError: objects of type Module are not callable</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I am trying to duplicate a code in Julia using Jupyter Notebook.\\nand getting the error \\r\\n MethodError: objects of type Module are not callable\\r\\nWhat am i missing here?\\n\\nusing JuMP, Clp\\nm=Model(...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-julia-jump\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/julia-jump\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-jump&#39;\\\" rel=\\\"tag\\\">julia-jump</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-12 04:09:35Z\\\" class=\\\"relativetime\\\">Jun 12 at 4:09</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/8146751/prashant\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://www.gravatar.com/avatar/cf8ad512d60a854d4bdd5f39fd0d7196?s=32&amp;d=identicon&amp;r=PG&amp;f=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/8146751/prashant\\\">Prashant</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">11</span><span title=\\\"1 bronze badge\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">1</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44486180\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered-accepted\\\">\\r\\n <strong>1</strong>answer\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"50 views\\\">\\r\\n 50 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44486180/force-integral-type-parameter-in-julia\\\" class=\\\"question-hyperlink\\\">Force integral type parameter in Julia</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I would like to define a simple type to represent an n-dimensional shape, with a type parameter containing n.\\n\\njulia&gt; struct Shape{n}\\n name::String\\n end\\n\\njulia&gt; square = Shape{2}(...\\r\\n </div> \\r\\n <div class=\\\"tags t-types t-julia-lang\\\">\\r\\n <a href=\\\"/questions/tagged/types\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;types&#39;\\\" rel=\\\"tag\\\">types</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-11 16:35:41Z\\\" class=\\\"relativetime\\\">Jun 11 at 16:35</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/7504176/harrison-grodin\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://lh3.googleusercontent.com/-wxuC76kdUuI/AAAAAAAAAAI/AAAAAAAAAA8/0RTSH-VK6Tk/photo.jpg?sz=32\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/7504176/harrison-grodin\\\">Harrison Grodin</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">770</span><span title=\\\"2 gold badges\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">2</span></span><span title=\\\"3 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">3</span></span><span title=\\\"22 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">22</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44470521\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>2</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status unanswered\\\">\\r\\n <strong>0</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"65 views\\\">\\r\\n 65 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44470521/julia-delay-using-packages-until-needed\\\" class=\\\"question-hyperlink\\\">Julia: delay using packages until needed</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I have created a module (intended to become a package) which I have broken down into several files, one of which is intended to post-process results, e.g. plotting. As I work on my module, I edit some ...\\r\\n </div> \\r\\n <div class=\\\"tags t-julia-lang t-requires\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/requires\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;requires&#39;\\\" rel=\\\"tag\\\">requires</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info user-hover\\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-10 06:55:54Z\\\" class=\\\"relativetime\\\">Jun 10 at 6:55</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/1457380/patrickt\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://i.stack.imgur.com/IgFWj.png?s=32&amp;g=1\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/1457380/patrickt\\\">PatrickT</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">2,450</span><span title=\\\"4 gold badges\\\"><span class=\\\"badge1\\\"></span><span class=\\\"badgecount\\\">4</span></span><span title=\\\"26 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">26</span></span><span title=\\\"58 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">58</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div><div class=\\\"question-summary\\\" id=\\\"question-summary-44470484\\\">\\r\\n <div class=\\\"statscontainer\\\">\\r\\n <div class=\\\"statsarrow\\\"></div>\\r\\n <div class=\\\"stats\\\">\\r\\n <div class=\\\"vote\\\">\\r\\n <div class=\\\"votes\\\">\\r\\n <span class=\\\"vote-count-post \\\"><strong>3</strong></span>\\r\\n <div class=\\\"viewcount\\\">votes</div>\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"status answered\\\">\\r\\n <strong>2</strong>answers\\r\\n </div>\\r\\n </div>\\r\\n <div class=\\\"views \\\" title=\\\"50 views\\\">\\r\\n 50 views\\r\\n</div>\\r\\n </div>\\r\\n <div class=\\\"summary\\\">\\r\\n <h3><a href=\\\"/questions/44470484/what-is-the-command-to-get-the-command-history-in-atom-editor-console-window\\\" class=\\\"question-hyperlink\\\">What is the Command to get the command history in Atom editor console window?</a></h3>\\r\\n <div class=\\\"excerpt\\\">\\r\\n I am using Atom editor with uber-juno package installed as Julia IDE. I would like to know if there is any way to get all the list of commands typed in console window instead of going through it using ...\\r\\n </div> \\r\\n <div class=\\\"tags t-console t-julia-lang t-atom-editor\\\">\\r\\n <a href=\\\"/questions/tagged/console\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;console&#39;\\\" rel=\\\"tag\\\">console</a> <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> <a href=\\\"/questions/tagged/atom-editor\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;atom-editor&#39;\\\" rel=\\\"tag\\\">atom-editor</a> \\r\\n </div>\\r\\n <div class=\\\"started fr\\\">\\r\\n <div class=\\\"user-info \\\">\\r\\n <div class=\\\"user-action-time\\\">\\r\\n asked <span title=\\\"2017-06-10 06:49:42Z\\\" class=\\\"relativetime\\\">Jun 10 at 6:49</span>\\r\\n </div>\\r\\n <div class=\\\"user-gravatar32\\\">\\r\\n <a href=\\\"/users/6039151/vanquish\\\"><div class=\\\"gravatar-wrapper-32\\\"><img src=\\\"https://lh6.googleusercontent.com/-B9R7FULFKw0/AAAAAAAAAAI/AAAAAAAAATU/1MOCjqrSNx0/photo.jpg?sz=32\\\" alt=\\\"\\\" width=\\\"32\\\" height=\\\"32\\\"></div></a>\\r\\n </div>\\r\\n <div class=\\\"user-details\\\">\\r\\n <a href=\\\"/users/6039151/vanquish\\\">vanquish</a>\\r\\n <div class=\\\"-flair\\\">\\r\\n <span class=\\\"reputation-score\\\" title=\\\"reputation score \\\" dir=\\\"ltr\\\">101</span><span title=\\\"2 silver badges\\\"><span class=\\\"badge2\\\"></span><span class=\\\"badgecount\\\">2</span></span><span title=\\\"12 bronze badges\\\"><span class=\\\"badge3\\\"></span><span class=\\\"badgecount\\\">12</span></span>\\r\\n </div>\\r\\n </div>\\r\\n</div>\\r\\n </div> \\r\\n </div>\\r\\n</div>\\r\\n </div>\\r\\n\\r\\n <br class=\\\"cbt\\\" />\\r\\n <div class=\\\"pager fl\\\">\\r\\n \\r\\n\\r\\n\\r\\n\\r\\n\\r\\n <span class=\\\"page-numbers current\\\">1</span> <a href=\\\"/questions/tagged/julia-lang?page=2&amp;sort=newest\\\" title=\\\"go to page 2\\\"> <span class=\\\"page-numbers\\\">2</span> </a> \\r\\n <a href=\\\"/questions/tagged/julia-lang?page=3&amp;sort=newest\\\" title=\\\"go to page 3\\\"> <span class=\\\"page-numbers\\\">3</span> </a> \\r\\n <a href=\\\"/questions/tagged/julia-lang?page=4&amp;sort=newest\\\" title=\\\"go to page 4\\\"> <span class=\\\"page-numbers\\\">4</span> </a> \\r\\n <a href=\\\"/questions/tagged/julia-lang?page=5&amp;sort=newest\\\" title=\\\"go to page 5\\\"> <span class=\\\"page-numbers\\\">5</span> </a> \\r\\n <span class=\\\"page-numbers dots\\\">…</span> <a href=\\\"/questions/tagged/julia-lang?page=62&amp;sort=newest\\\" title=\\\"go to page 62\\\"> <span class=\\\"page-numbers\\\">62</span> </a> \\r\\n <a href=\\\"/questions/tagged/julia-lang?page=2&amp;sort=newest\\\" rel=\\\"next\\\" title=\\\"go to page 2\\\"> <span class=\\\"page-numbers next\\\"> next</span> </a> \\r\\n\\r\\n </div>\\r\\n\\r\\n \\r\\n<div id=\\\"feed-link\\\">\\r\\n <div id=\\\"feed-link-text\\\">\\r\\n <a href=\\\"/feeds/tag?tagnames=julia-lang&amp;sort=newest\\\" title=\\\"the 30 newest julia-lang questions\\\">\\r\\n <span class=\\\"feed-icon\\\"></span>newest julia-lang questions feed\\r\\n </a>\\r\\n </div>\\r\\n</div>\\r\\n </div>\\r\\n <div id=\\\"sidebar\\\">\\r\\n <div class=\\\"module\\\" id=\\\"questions-count\\\">\\r\\n <div class=\\\"-details\\\">\\r\\n <div class=\\\"summarycount al\\\">3,056</div>\\r\\n <p>questions tagged</p>\\r\\n <div class=\\\"tagged\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang\\\" class=\\\"post-tag\\\" title=\\\"show questions tagged &#39;julia-lang&#39;\\\" rel=\\\"tag\\\">julia-lang</a> \\r\\n <a style=\\\"margin-left: 10px;\\\" title=\\\"tag wiki, stats and faq\\\" href=\\\"/tags/julia-lang/info\\\">about&nbsp;&raquo;</a>\\r\\n </div>\\r\\n </div>\\r\\n \\n<div class=\\\"aside-cta\\\" role=\\\"navigation\\\" aria-label=\\\"ask new question\\\">\\n <a href=\\\"/questions/ask\\\" class=\\\"btn-outlined\\\">Ask Question</a>\\n</div>\\r\\n </div>\\r\\n\\r\\n \\r\\n<div class=\\\"doctag-link-sidebar\\\">\\n\\t<div class=\\\"doctag-link-title\\\">\\n\\t <h4 class=\\\"tag\\\">\\n <a href=\\\"/documentation/julia-lang/topics\\\">Julia Language</a>\\n </h4>\\n\\t <div class=\\\"label-uppercase\\\">Documentation</div>\\n\\t</div>\\n\\n <div class=\\\"cta-wrapper\\\">\\n<a href=\\\"/documentation/julia-lang/topics?tab=requests\\\">Find a request to handle</a> or <a href=\\\"/documentation/julia-lang/topics\\\">browse 38 topics</a>. </div>\\n</div>\\n \\r\\n \\r\\n \\r\\n <script>\\r\\n var ados = ados || {}; ados.run = ados.run || [];\\r\\n ados.run.push(function () { ados_add_placement(22,8277,\\\"adzerk455099491\\\",[5,17,2221,1129,43]).setZone(45); });\\r\\n </script>\\r\\n <div class=\\\"everyonelovesstackoverflow\\\" id=\\\"adzerk455099491\\\"></div>\\r\\n <div id=\\\"hireme\\\"></div>\\r\\n <script>\\r\\nwindow.clc_request = 'Au4TxOCyudQIAAAAAAAAAAACAAAAAQAAAAAMAAAAfGp1bGlhLWxhbmd8AA5_KGnTDbB01HA';;!function load(n){var u,r;try{if(\\\"function\\\"!=typeof[].indexOf)return;if(!window.addEventListener)return;if(!n.allowed)return;if(!RegExp(n.allowed).test(location.hostname))return;var t=window,i=t.document,f=n.wv;if(i.hidden&&f)return void i.addEventListener(\\\"visibilitychange\\\",function e(){i.hidden||(load(n),i.removeEventListener(\\\"visibilitychange\\\",e))});if(t.clc=t.clc||{},t.clc.init=t.clc.init||[],n.autoload&&t.clc.init.push(function(n){return n.load()}),t.clc.options){for(u in t.clc.options)n[u]=t.clc.options[u];t.clc.options=n}else t.clc.options=n;r=i.createElement(\\\"script\\\");r.async=!0;r.src=n.lib;i.body.appendChild(r)}catch(o){}}.call(null, {\\\"lib\\\":\\\"https://cdn.sstatic.net/clc/clc.min.js?v=15f527bc6c30\\\",\\\"u\\\":\\\"https://clc.stackoverflow.com/markup.js\\\",\\\"azw\\\":true,\\\"kt\\\":2000,\\\"tto\\\":true,\\\"d\\\":{\\\"sb\\\":[\\\"hireme\\\",\\\"clc-sb\\\"],\\\"tlb\\\":[\\\"careers1\\\",\\\"clc-tlb\\\"],\\\"mlb\\\":[\\\"careers3\\\",\\\"clc-mlb\\\"]},\\\"h\\\":\\\"clc.stackoverflow.com\\\",\\\"autoload\\\":true,\\\"allowed\\\":\\\"^(((talent\\\\\\\\.)?stackoverflow)|(blog\\\\\\\\.codinghorror)|(serverfault|askubuntu)|([^\\\\\\\\.]+\\\\\\\\.stackexchange))\\\\\\\\.com\\$\\\",\\\"wv\\\":true}); </script>\\r\\n \\r\\n\\r\\n <div class=\\\"module js-gps-related-tags\\\">\\r\\n \\r\\n<h4 id=\\\"h-related-tags\\\">Related Tags</h4>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+arrays\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang arrays&#39;\\\" rel=\\\"tag\\\">arrays</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">198</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+parallel-processing\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang parallel-processing&#39;\\\" rel=\\\"tag\\\">parallel-processing</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">122</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+python\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang python&#39;\\\" rel=\\\"tag\\\">python</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">108</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+dataframe\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang dataframe&#39;\\\" rel=\\\"tag\\\">dataframe</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">102</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+types\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang types&#39;\\\" rel=\\\"tag\\\">types</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">101</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+matrix\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang matrix&#39;\\\" rel=\\\"tag\\\">matrix</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">71</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+matplotlib\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang matplotlib&#39;\\\" rel=\\\"tag\\\">matplotlib</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">68</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+plot\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang plot&#39;\\\" rel=\\\"tag\\\">plot</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">64</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+gadfly\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang gadfly&#39;\\\" rel=\\\"tag\\\">gadfly</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">60</span></span>\\r\\n </div>\\r\\n <div>\\r\\n <a href=\\\"/questions/tagged/julia-lang+ijulia-notebook\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang ijulia-notebook&#39;\\\" rel=\\\"tag\\\">ijulia-notebook</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">56</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+performance\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang performance&#39;\\\" rel=\\\"tag\\\">performance</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">55</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+julia-jump\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang julia-jump&#39;\\\" rel=\\\"tag\\\">julia-jump</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">55</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+dictionary\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang dictionary&#39;\\\" rel=\\\"tag\\\">dictionary</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">47</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+r\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang r&#39;\\\" rel=\\\"tag\\\">r</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">45</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+function\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang function&#39;\\\" rel=\\\"tag\\\">function</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">45</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+macros\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang macros&#39;\\\" rel=\\\"tag\\\">macros</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">43</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+multidimensional-array\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang multidimensional-array&#39;\\\" rel=\\\"tag\\\">multidimensional-array</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">42</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+metaprogramming\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang metaprogramming&#39;\\\" rel=\\\"tag\\\">metaprogramming</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">42</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+matlab\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang matlab&#39;\\\" rel=\\\"tag\\\">matlab</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">37</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+optimization\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang optimization&#39;\\\" rel=\\\"tag\\\">optimization</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">37</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+string\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang string&#39;\\\" rel=\\\"tag\\\">string</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">36</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+module\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang module&#39;\\\" rel=\\\"tag\\\">module</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">35</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+c\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang c&#39;\\\" rel=\\\"tag\\\">c</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">32</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+plots.jl\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang plots.jl&#39;\\\" rel=\\\"tag\\\">plots.jl</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">30</span></span>\\r\\n </div>\\r\\n <div class=\\\"dno js-hidden\\\">\\r\\n <a href=\\\"/questions/tagged/julia-lang+julia-studio\\\" class=\\\"post-tag no-tag-menu\\\" title=\\\"show questions tagged &#39;julia-lang julia-studio&#39;\\\" rel=\\\"tag\\\">julia-studio</a>&nbsp;<span class=\\\"item-multiplier\\\"><span class=\\\"item-multiplier-x\\\">&times;</span>&nbsp;<span class=\\\"item-multiplier-count\\\">24</span></span>\\r\\n </div>\\r\\n <a href=\\\"#\\\"\\r\\n class=\\\"show-more js-show-more js-gps-track\\\"\\r\\n data-gps-track=\\\"related_tags.click({ item_type:2 })\\\">\\r\\n more related tags\\r\\n </a>\\r\\n <script>\\r\\n StackExchange.ready(function () {\\r\\n var \\$div = \\$('#h-related-tags').parent();\\r\\n \\$div.find('.js-show-more').click(function () {\\r\\n \\$div.find('.js-hidden').show();\\r\\n \\$(this).remove();\\r\\n return false;\\r\\n });\\r\\n });\\r\\n </script>\\r\\n\\r\\n </div>\\r\\n\\r\\n<div id=\\\"hot-network-questions\\\" class=\\\"module tex2jax_ignore\\\">\\r\\n <h4>\\r\\n <a href=\\\"https://stackexchange.com/questions?tab=hot\\\"\\r\\n class=\\\"js-gps-track\\\" \\r\\n data-gps-track=\\\"posts_hot_network.click({ item_type:1, location:9 })\\\">\\r\\n Hot Network Questions\\r\\n </a>\\r\\n </h4>\\r\\n <ul>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-stackoverflow\\\" title=\\\"Stack Overflow\\\"></div><a href=\\\"https://stackoverflow.com/questions/44706935/how-can-i-take-two-tuples-to-produce-a-dictionary\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:1 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n How can I take two tuples to produce a dictionary?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-scifi\\\" title=\\\"Science Fiction &amp; Fantasy Stack Exchange\\\"></div><a href=\\\"https://scifi.stackexchange.com/questions/162134/why-was-tom-riddle-in-the-slug-club\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:186 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Why was Tom Riddle in the Slug Club?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-writers\\\" title=\\\"Writers Stack Exchange\\\"></div><a href=\\\"https://writers.stackexchange.com/questions/28858/what-combination-of-had-and-d-makes-prose-flow-better\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:166 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n What combination of had and &#39;d makes prose flow better?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-politics\\\" title=\\\"Politics Stack Exchange\\\"></div><a href=\\\"https://politics.stackexchange.com/questions/20087/why-is-greeces-debt-considered-a-problem-but-not-us-debt-which-is-much-larger\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:475 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Why is Greece&#39;s debt considered a problem but not US debt, which is much larger?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-chemistry\\\" title=\\\"Chemistry Stack Exchange\\\"></div><a href=\\\"https://chemistry.stackexchange.com/questions/76631/leaving-group-as-a-weak-base-or-weak-nucleophile\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:431 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Leaving group as a weak base or weak nucleophile\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-skeptics\\\" title=\\\"Skeptics Stack Exchange\\\"></div><a href=\\\"https://skeptics.stackexchange.com/questions/38729/did-wonder-womans-gal-gadot-earn-1-40th-of-man-of-steels-henry-cavill\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:212 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Did Wonder Woman&#39;s Gal Gadot earn ~1/40th of Man of Steel&#39;s Henry Cavill?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-outdoors\\\" title=\\\"The Great Outdoors Stack Exchange\\\"></div><a href=\\\"https://outdoors.stackexchange.com/questions/16367/how-does-water-depth-affect-swimming-safety-why-those-signs-that-say-danger-de\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:395 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n How does water depth affect swimming safety? Why those signs that say DANGER: deep water?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-english\\\" title=\\\"English Language &amp; Usage Stack Exchange\\\"></div><a href=\\\"https://english.stackexchange.com/questions/395138/term-for-type-of-fast-food-restaurant\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:97 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Term for type of fast food restaurant\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-academia\\\" title=\\\"Academia Stack Exchange\\\"></div><a href=\\\"https://academia.stackexchange.com/questions/91134/where-can-i-do-a-research-paper-or-thesis-without-enrolling-in-a-college-or-univ\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:415 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Where can I do a research paper or thesis without enrolling in a college or university?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-codegolf\\\" title=\\\"Programming Puzzles &amp; Code Golf Stack Exchange\\\"></div><a href=\\\"https://codegolf.stackexchange.com/questions/127889/spin-the-calculator\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:200 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Spin the Calculator\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-english\\\" title=\\\"English Language &amp; Usage Stack Exchange\\\"></div><a href=\\\"https://english.stackexchange.com/questions/395033/why-is-you-ve-brought-a-knife-to-a-gun-fight-considered-to-be-a-mixed-metaphor\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:97 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Why is &quot;You’ve brought a knife to a gun fight&quot; considered to be a mixed metaphor?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li >\\r\\n <div class=\\\"favicon favicon-workplace\\\" title=\\\"The Workplace Stack Exchange\\\"></div><a href=\\\"https://workplace.stackexchange.com/questions/93284/what-to-say-instead-of-calm-down-if-you-see-the-other-person-getting-angry-dur\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:423 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n What to say instead of &quot;calm down&quot; if you see the other person getting angry during the discussion?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-chemistry\\\" title=\\\"Chemistry Stack Exchange\\\"></div><a href=\\\"https://chemistry.stackexchange.com/questions/76633/what-term-should-i-use-when-i-am-quantifying-the-amount-of-matter-mass-or-weigh\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:431 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n What term should I use when I am quantifying the amount of matter, mass or weight?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-sitecore\\\" title=\\\"Sitecore Stack Exchange\\\"></div><a href=\\\"https://sitecore.stackexchange.com/questions/6298/can-v7-and-v8-coexist-on-the-same-server\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:664 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Can v7 and v8 coexist on the same server\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-workplace\\\" title=\\\"The Workplace Stack Exchange\\\"></div><a href=\\\"https://workplace.stackexchange.com/questions/93146/appropriate-to-ask-a-recruiter-to-go-back-and-negotiate-salary-again\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:423 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Appropriate to ask a recruiter to go back and negotiate salary again?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-blender\\\" title=\\\"Blender Stack Exchange\\\"></div><a href=\\\"https://blender.stackexchange.com/questions/81916/why-cant-i-use-gpu-rendering-in-blender\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:502 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Why cant I use GPU rendering in Blender?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-workplace\\\" title=\\\"The Workplace Stack Exchange\\\"></div><a href=\\\"https://workplace.stackexchange.com/questions/93327/how-representative-of-a-company-is-a-bad-interview-process\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:423 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n How representative of a company is a bad interview process?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-dba\\\" title=\\\"Database Administrators Stack Exchange\\\"></div><a href=\\\"https://dba.stackexchange.com/questions/177032/temp-table-clustered-key-not-being-honored-bug-or-expected-functionality\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:182 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Temp Table Clustered Key Not Being Honored: Bug or Expected Functionality?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-biology\\\" title=\\\"Biology Stack Exchange\\\"></div><a href=\\\"https://biology.stackexchange.com/questions/61020/why-does-it-hurt-the-next-day-after-doing-significant-exercise\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:375 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Why does it hurt the next day after doing significant exercise?\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-ux\\\" title=\\\"User Experience Stack Exchange\\\"></div><a href=\\\"https://ux.stackexchange.com/questions/109231/new-users-choose-sign-in-over-app-try-out-in-first-use-screen\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:102 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n New users choose sign in over app try-out in first use screen\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-tex\\\" title=\\\"TeX - LaTeX Stack Exchange\\\"></div><a href=\\\"https://tex.stackexchange.com/questions/376281/superimpose-two-images-in-an-article\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:85 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Superimpose two images in an article\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-english\\\" title=\\\"English Language &amp; Usage Stack Exchange\\\"></div><a href=\\\"https://english.stackexchange.com/questions/395166/word-or-expression-for-a-convenient-and-unsupported-answer\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:97 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Word or expression for a convenient and unsupported answer\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-money\\\" title=\\\"Personal Finance &amp; Money Stack Exchange\\\"></div><a href=\\\"https://money.stackexchange.com/questions/81030/car-insurance-uk-excludes-commute-to-and-from-work-will-not-pay-on-claim-duri\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:93 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n Car insurance (UK) excludes commute to and from work, will not pay on claim during non-commute\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n <li class=\\\"dno js-hidden\\\">\\r\\n <div class=\\\"favicon favicon-sitecore\\\" title=\\\"Sitecore Stack Exchange\\\"></div><a href=\\\"https://sitecore.stackexchange.com/questions/6297/combobox-issue-with-sheer-ui\\\" class=\\\"js-gps-track\\\" data-gps-track=\\\"site.switch({ item_type:9, target_site:664 }); posts_hot_network.click({ item_type:2, location:9 })\\\">\\r\\n ComboBox issue with Sheer UI\\r\\n </a>\\r\\n\\r\\n </li>\\r\\n </ul>\\r\\n\\r\\n <a href=\\\"#\\\" \\r\\n class=\\\"show-more js-show-more js-gps-track\\\" \\r\\n data-gps-track=\\\"posts_hot_network.click({ item_type:3, location:9 })\\\">\\r\\n more hot questions\\r\\n </a>\\r\\n</div>\\r\\n </div>\\r\\n\\r\\n </div>\\r\\n </div>\\r\\n\\r\\n <footer id=\\\"footer\\\" class=\\\"s-footer categories\\\" role=\\\"contentinfo\\\">\\r\\n <div class=\\\"-container g-column\\\">\\r\\n <ul class=\\\"-menu g-row\\\">\\r\\n\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 1 })\\\" href=\\\"https://stackoverflow.com/company/about\\\">about us</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 2 })\\\" href=\\\"/tour\\\">tour</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 3 })\\\" href=\\\"/help\\\">help</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 4 })\\\" href=\\\"https://stackoverflow.blog?blb=1\\\">blog</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 5 })\\\" href=\\\"https://chat.stackoverflow.com\\\">chat</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 6 })\\\" href=\\\"https://data.stackexchange.com\\\">data</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 7 })\\\" href=\\\"https://stackexchange.com/legal\\\">legal</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 8 })\\\" href=\\\"https://stackexchange.com/legal/privacy-policy\\\">privacy policy</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 9 })\\\" href=\\\"https://stackoverflow.com/company/work-here\\\">work here</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 10 })\\\" href=\\\"https://www.stackoverflowbusiness.com/advertise\\\">advertising info</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 11 })\\\" href=\\\"https://stackoverflow.com/jobs/directory/developer-jobs\\\">developer jobs directory</a></li>\\r\\n\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 12 })\\\" onclick='StackExchange.switchMobile(\\\"on\\\")'>mobile</a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 13 })\\\" href=\\\"/contact\\\"><strong>contact us</strong></a></li>\\r\\n <li class=\\\"-item g-col\\\"><a class=\\\"js-gps-track -link\\\" data-gps-track=\\\"footer.click({ location: 5, link: 14 })\\\" href=\\\"https://meta.stackoverflow.com\\\"><strong>feedback</strong></a></li>\\r\\n <li class=\\\"-item g-col\\\">\\r\\n \\r\\n </li>\\r\\n </ul>\\r\\n <div class=\\\"-toc g-row\\\" id=\\\"footer-sites\\\">\\r\\n <table>\\n <tr>\\n <th colspan=3>\\n <strong>Technology</strong>\\n </th>\\n <th >\\n <strong>Life / Arts</strong>\\n </th>\\n <th >\\n <strong>Culture / Recreation</strong>\\n </th>\\n <th >\\n <strong>Science</strong>\\n </th>\\n <th >\\n <strong>Other</strong>\\n </th>\\n </tr>\\n <tr>\\n <td>\\n <ol>\\n <li><a href=\\\"//stackoverflow.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"professional and enthusiast programmers\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Stack Overflow</a></li>\\n <li><a href=\\\"//serverfault.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"system and network administrators\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Server Fault</a></li>\\n <li><a href=\\\"//superuser.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"computer enthusiasts and power users\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Super User</a></li>\\n <li><a href=\\\"//webapps.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"power users of web applications\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Web Applications</a></li>\\n <li><a href=\\\"//askubuntu.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"Ubuntu users and developers\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Ask Ubuntu</a></li>\\n <li><a href=\\\"//webmasters.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"pro webmasters\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Webmasters</a></li>\\n <li><a href=\\\"//gamedev.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"professional and independent game developers\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Game Development</a></li>\\n <li><a href=\\\"//tex.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"users of TeX, LaTeX, ConTeXt, and related typesetting systems\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">TeX - LaTeX</a></li>\\n <li><a href=\\\"//softwareengineering.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"professionals, academics, and students working within the systems development life cycle\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Software Engineering</a></li>\\n <li><a href=\\\"//unix.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"users of Linux, FreeBSD and other Un*x-like operating systems\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Unix &amp; Linux</a></li>\\n <li><a href=\\\"//apple.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"power users of Apple hardware and software\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Ask Different (Apple)</a></li>\\n <li><a href=\\\"//wordpress.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"WordPress developers and administrators\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">WordPress Development</a></li>\\n </ol></td><td><ol>\\n <li><a href=\\\"//gis.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"cartographers, geographers and GIS professionals\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Geographic Information Systems</a></li>\\n <li><a href=\\\"//electronics.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"electronics and electrical engineering professionals, students, and enthusiasts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Electrical Engineering</a></li>\\n <li><a href=\\\"//android.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"enthusiasts and power users of the Android operating system\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Android Enthusiasts</a></li>\\n <li><a href=\\\"//security.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"information security professionals\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Information Security</a></li>\\n <li><a href=\\\"//dba.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"database professionals who wish to improve their database skills and learn from others in the community\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Database Administrators</a></li>\\n <li><a href=\\\"//drupal.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"Drupal developers and administrators\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Drupal Answers</a></li>\\n <li><a href=\\\"//sharepoint.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"SharePoint enthusiasts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">SharePoint</a></li>\\n <li><a href=\\\"//ux.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"user experience researchers and experts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">User Experience</a></li>\\n <li><a href=\\\"//mathematica.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"users of Wolfram Mathematica\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Mathematica</a></li>\\n <li><a href=\\\"//salesforce.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"Salesforce administrators, implementation experts, developers and anybody in-between\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Salesforce</a></li>\\n <li><a href=\\\"//expressionengine.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"administrators, end users, developers and designers for ExpressionEngine&#174; CMS\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">ExpressionEngine&#174; Answers</a></li>\\n <li><a href=\\\"//crypto.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"software developers, mathematicians and others interested in cryptography\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Cryptography</a></li>\\n </ol></td><td><ol>\\n <li><a href=\\\"//codereview.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"peer programmer code reviews\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Code Review</a></li>\\n <li><a href=\\\"//magento.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"users of the Magento e-Commerce platform\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Magento</a></li>\\n <li><a href=\\\"//dsp.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"practitioners of the art and science of signal, image and video processing\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Signal Processing</a></li>\\n <li><a href=\\\"//raspberrypi.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"users and developers of hardware and software for Raspberry Pi\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Raspberry Pi</a></li>\\n <li><a href=\\\"//codegolf.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"programming puzzle enthusiasts and code golfers\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Programming Puzzles &amp; Code Golf</a></li>\\n <li>\\n <a href=\\\"https://stackexchange.com/sites#technology\\\" class=\\\"more js-gps-track\\\" data-gps-track=\\\"footer.click({ location: 2, link: 26 })\\\">\\n more (7)\\n </a>\\n </li>\\n </ol>\\n </td>\\n <td>\\n <ol>\\n <li><a href=\\\"//photo.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"professional, enthusiast and amateur photographers\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Photography</a></li>\\n <li><a href=\\\"//scifi.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"science fiction and fantasy enthusiasts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Science Fiction &amp; Fantasy</a></li>\\n <li><a href=\\\"//graphicdesign.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"Graphic Design professionals, students, and enthusiasts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Graphic Design</a></li>\\n <li><a href=\\\"//movies.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"movie and tv enthusiasts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Movies &amp; TV</a></li>\\n <li><a href=\\\"//music.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"musicians, students, and enthusiasts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Music: Practice &amp; Theory</a></li>\\n <li><a href=\\\"//cooking.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"professional and amateur chefs\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Seasoned Advice (cooking)</a></li>\\n <li><a href=\\\"//diy.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"contractors and serious DIYers\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Home Improvement</a></li>\\n <li><a href=\\\"//money.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"people who want to be financially literate\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Personal Finance &amp; Money</a></li>\\n <li><a href=\\\"//academia.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"academics and those enrolled in higher education\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Academia</a></li>\\n <li>\\n <a href=\\\"https://stackexchange.com/sites#lifearts\\\" class=\\\"more js-gps-track\\\" data-gps-track=\\\"footer.click({ location: 2, link: 26 })\\\">\\n more (8)\\n </a>\\n </li>\\n </ol>\\n </td>\\n <td>\\n <ol>\\n <li><a href=\\\"//english.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"linguists, etymologists, and serious English language enthusiasts\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">English Language &amp; Usage</a></li>\\n <li><a href=\\\"//skeptics.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"scientific skepticism\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Skeptics</a></li>\\n <li><a href=\\\"//judaism.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"those who base their lives on Jewish law and tradition and anyone interested in learning more\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Mi Yodeya (Judaism)</a></li>\\n <li><a href=\\\"//travel.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"road warriors and seasoned travelers\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Travel</a></li>\\n <li><a href=\\\"//christianity.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"committed Christians, experts in Christianity and those interested in learning more\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Christianity</a></li>\\n <li><a href=\\\"//ell.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"speakers of other languages learning English\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">English Language Learners</a></li>\\n <li><a href=\\\"//japanese.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"students, teachers, and linguists wanting to discuss the finer points of the Japanese language\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Japanese Language</a></li>\\n <li><a href=\\\"//gaming.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"passionate videogamers on all platforms\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Arqade (gaming)</a></li>\\n <li><a href=\\\"//bicycles.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"people who build and repair bicycles, people who train cycling, or commute on bicycles\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Bicycles</a></li>\\n <li><a href=\\\"//rpg.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"gamemasters and players of tabletop, paper-and-pencil role-playing games\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Role-playing Games</a></li>\\n <li><a href=\\\"//anime.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"anime and manga fans\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Anime &amp; Manga</a></li>\\n <li><a href=\\\"//mechanics.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"mechanics and DIY enthusiast owners of cars, trucks, and motorcycles\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Motor Vehicle Maintenance &amp; Repair</a></li>\\n <li>\\n <a href=\\\"https://stackexchange.com/sites#culturerecreation\\\" class=\\\"more js-gps-track\\\" data-gps-track=\\\"footer.click({ location: 2, link: 26 })\\\">\\n more (17)\\n </a>\\n </li>\\n </ol>\\n </td>\\n <td>\\n <ol>\\n <li><a href=\\\"//mathoverflow.net\\\" class=\\\"-link js-gps-track\\\" title=\\\"professional mathematicians\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">MathOverflow</a></li>\\n <li><a href=\\\"//math.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"people studying math at any level and professionals in related fields\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Mathematics</a></li>\\n <li><a href=\\\"//stats.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"people interested in statistics, machine learning, data analysis, data mining, and data visualization\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Cross Validated (stats)</a></li>\\n <li><a href=\\\"//cstheory.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"theoretical computer scientists and researchers in related fields\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Theoretical Computer Science</a></li>\\n <li><a href=\\\"//physics.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"active researchers, academics and students of physics\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Physics</a></li>\\n <li><a href=\\\"//chemistry.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"scientists, academics, teachers and students\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Chemistry</a></li>\\n <li><a href=\\\"//biology.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"biology researchers, academics, and students\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Biology</a></li>\\n <li><a href=\\\"//cs.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"students, researchers and practitioners of computer science\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Computer Science</a></li>\\n <li><a href=\\\"//philosophy.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"those interested in the study of the fundamental nature of knowledge, reality, and existence\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Philosophy</a></li>\\n <li>\\n <a href=\\\"https://stackexchange.com/sites#science\\\" class=\\\"more js-gps-track\\\" data-gps-track=\\\"footer.click({ location: 2, link: 26 })\\\">\\n more (3)\\n </a>\\n </li>\\n </ol>\\n </td>\\n <td>\\n <ol>\\n <li><a href=\\\"//meta.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"meta-discussion of the Stack Exchange family of Q&amp;A websites\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Meta Stack Exchange</a></li>\\n <li><a href=\\\"//stackapps.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"apps, scripts, and development with the Stack Exchange API\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Stack Apps</a></li>\\n <li><a href=\\\"//area51.stackexchange.com\\\" class=\\\"-link js-gps-track\\\" title=\\\"proposing new sites in the Stack Exchange network\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Area 51</a></li>\\n <li><a href=\\\"https://www.stackoverflowbusiness.com/talent\\\" class=\\\"-link js-gps-track\\\" data-gps-track=\\\"footer.click({ location: 2, link: 25 })\\\">Stack Overflow Talent</a></li>\\n </ol>\\n </td>\\n </tr>\\n</table>\\r\\n </div>\\r\\n <div class=\\\"g-col -copyright\\\" id=\\\"copyright\\\">\\r\\n site design / logo &#169; 2017 Stack Exchange Inc; user contributions licensed under <a class=\\\"-link\\\" href=\\\"https://creativecommons.org/licenses/by-sa/3.0/\\\" rel=\\\"license\\\">cc by-sa 3.0</a>\\r\\n with <a class=\\\"-link\\\" href=\\\"https://stackoverflow.blog/2009/06/25/attribution-required/\\\" rel=\\\"license\\\">attribution required</a>\\r\\n </div>\\r\\n <div class=\\\"g-col -copyright _muted\\\" id=\\\"svnrev\\\">\\r\\n rev 2017.6.22.26293\\r\\n </div>\\r\\n\\r\\n </div>\\r\\n </footer>\\r\\n\\r\\n <noscript>\\r\\n <div id=\\\"noscript-warning\\\">Stack Overflow works best with JavaScript enabled\\r\\n <img src=\\\"https://pixel.quantserve.com/pixel/p-c1rF4kxgLUzNc.gif\\\" alt=\\\"\\\" class=\\\"dno\\\">\\r\\n </div>\\r\\n </noscript>\\r\\n<script>var z=document.createElement(\\\"script\\\");z.type=\\\"text/javascript\\\",z.async=!0,z.src=\\\"https://static.adzerk.net/ados.js\\\";var s=document.getElementsByTagName(\\\"script\\\")[0];s.parentNode.insertBefore(z,s);</script>\\r\\n<script>\\r\\nvar ados = ados || {};\\r\\nados.run = ados.run || [];\\r\\n\\r\\n\\r\\nados.run.push(function () {\\r\\n setTimeout(function () { \\$(\\\"#adzerk-user-match\\\").remove(); }, window.AUMIframeDone ? 0 : 2000);\\r\\n ados_setKeywords('julia-lang');; ados_load();\\r\\n}); \\r\\n\\r\\n</script>\\r\\n\\r\\n <script>\\r\\n (function(i, s, o, g, r, a, m) {\\r\\n i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function() { (i[r].q = i[r].q || []).push(arguments) }, i[r].l = 1 * new Date(); a = s.createElement(o),\\r\\n m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m);\\r\\n })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');\\r\\n ga('create', 'UA-5620270-1');\\r\\n ga('create', 'UA-5620270-60', {name: 'pageData', sampleRate: 100 });\\r\\n ga('set', 'dimension2', '|julia-lang|');\\r\\n ga('pageData.set', 'dimension2', '|julia-lang|');\\r\\n ga('send', 'pageview');\\r\\n ga('pageData.send', 'pageview');\\r\\n var _qevents = _qevents || [],\\r\\n _comscore = _comscore || [];\\r\\n (function () {\\r\\n var ssl='https:'==document.location.protocol,\\r\\n s=document.getElementsByTagName('script')[0],\\r\\n qc=document.createElement('script');\\r\\n qc.async = true;\\r\\n qc.src = (ssl ? 'https://secure' : 'http://edge') + '.quantserve.com/quant.js';\\r\\n s.parentNode.insertBefore(qc, s);\\r\\n _qevents.push({ qacct: \\\"p-c1rF4kxgLUzNc\\\" });\\r\\n var sc=document.createElement('script');\\r\\n sc.async=true;\\r\\n sc.src=(ssl?'https://sb':'http://b') + '.scorecardresearch.com/beacon.js';\\r\\n s.parentNode.insertBefore(sc, s);\\r\\n _comscore.push({ c1: \\\"2\\\", c2: \\\"17440561\\\" });\\r\\n })();\\r\\n\\r\\n </script>\\r\\n \\r\\n \\r\\n <script type=\\\"text/javascript\\\">\\r\\n \\r\\n (function(appendChild) {\\r\\n Node.prototype.appendChild = function() {\\r\\n var parent = this;\\r\\n var newNode = arguments[0];\\r\\n if (parent.nodeName === 'HEAD'\\r\\n && newNode\\r\\n && newNode.nodeName === 'SCRIPT'\\r\\n && newNode.src) {\\r\\n \\r\\n window.setTimeout(function() {\\r\\n var result = newNode.src.match(/^https:\\\\/\\\\/maps\\\\.googleapis\\\\.com\\\\/maps\\\\/api\\\\/place\\\\/js\\\\/(\\\\w+)Service\\\\./i) || [];\\r\\n var service = result[1];\\r\\n if (service) {\\r\\n if (service === 'Autocompletion') service = 2;\\r\\n else if (service === 'Place') service = 1;\\r\\n else service = 0;\\r\\n StackExchange.using('gps', function() {\\r\\n StackExchange.gps.track('google_maps_places_api.call', { service: service });\\r\\n });\\r\\n }\\r\\n }, 0);\\r\\n }\\r\\n return appendChild.apply(this, arguments);\\r\\n };\\r\\n })(Node.prototype.appendChild);\\r\\n </script>\\r\\n </body>\\r\\n</html>\\r\\n\""
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"strResponse = String(take!(r))"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"HTML Document:\n",
"<!DOCTYPE html>\n",
"Gumbo.HTMLElement{:HTML}:\n",
"<HTML itemscope=\"\"itemtype=\"http://schema.org/QAPage\">\n",
" <head>\n",
" <title>Newest 'julia-lang' Questions - Stack Overflow</title>\n",
" <link rel=\"shortcut icon\"href=\"https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d\"></link>\n",
" <link rel=\"apple-touch-icon image_src\"href=\"https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon.png?v=c78bd457575a\"></link>\n",
" <link rel=\"search\"href=\"/opensearch.xml\"title=\"Stack Overflow\"type=\"application/opensearchdescription+xml\"></link>\n",
" <meta property=\"og:type\"content=\"website\"></meta>\n",
" <meta name=\"twitter:card\"content=\"summary\"></meta>\n",
" <meta name=\"twitter:domain\"content=\"stackoverflow.com\"></meta>\n",
" <meta property=\"og:image\"content=\"https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon@2.png?v=73d79a89bded\"itemprop=\"image primaryImageOfPage\"></meta>\n",
" <meta name=\"twitter:title\"property=\"og:title\"content=\"Newest 'julia-lang' Questions\"itemprop=\"title name\"></meta>\n",
" <meta name=\"twitter:description\"property=\"og:description\"content=\"Q&A for professional and enthusiast programmers\"itemprop=\"description\"></meta>\n",
" <meta property=\"og:url\"content=\"https://stackoverflow.com/questions/tagged/julia-lang?sort%3Dnewest%26pagesize%3D50\"></meta>\n",
" <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js\"></script>\n",
" <script src=\"https://cdn.sstatic.net/Js/stub.en.js?v=53c68acd0985\"></script>\n",
" <link rel=\"stylesheet\"href=\"https://cdn.sstatic.net/Sites/stackoverflow/all.css?v=b45609624f1d\"type=\"text/css\"></link>\n",
" <link rel=\"alternate\"href=\"/feeds/tag?tagnames=julia-lang&sort=newest\"title=\"newest julia-lang questions feed\"type=\"application/atom+xml\"></link>\n",
" <script>\n",
" StackExchange.init({\"locale\":\"en\",\"stackAuthUrl\":\"https://stackauth.com\",\"networkMetaHostname\":\"meta.stackexchange.com\",\"serverTime\":1498165729,\"routeName\":\"Questions/ListByTag\",\"site\":{\"name\":\"Stack Overflow\",\"description\":\"Q&A for professional and enthusiast programmers\",\"isNoticesTabEnabled\":true,\"recaptchaPublicKey\":\"6LdchgIAAAAAAJwGpIzRQSOFaO0pU6s44Xt8aTwc\",\"recaptchaAudioLang\":\"en\",\"enableNewTagCreationWarning\":true,\"insertSpaceAfterNameTabCompletion\":false,\"id\":1,\"enableInsertDocLinkDialog\":true,\"childUrl\":\"https://meta.stackoverflow.com\",\"enableSocialMediaInSharePopup\":true,\"protocol\":\"https\"},\"user\":{\"fkey\":\"d63cc0b24808467f601f4758805c941c\",\"rep\":0,\"isAnonymous\":true,\"isAnonymousNetworkWide\":true,\"canSeeNewHeaderDesign\":true,\"ab\":{\"devstory_onboarding_exp\":{\"v\":\"opt_out_of_match_emails\",\"g\":2}}},\"events\":{\"postType\":{\"question\":1},\"postEditionSection\":{\"title\":1,\"body\":2,\"tags\":3}},\"story\":{\"minCompleteBodyLength\":75,\"likedTagsMaxLength\":300,\"dislikedTagsMaxLength\":300}}, {\"site\":{\"allowImageUploads\":true,\"enableUserHovercards\":true,\"styleCode\":true,\"enableNewLinkInsertDialog\":true,\"enableImgurHttps\":true,\"forceHttpsImages\":true},\"comments\":{},\"userProfile\":{\"openGraphAPIKey\":\"58740831ad23540e00c58987\"},\"tags\":{},\"accounts\":{\"currentPasswordRequiredForChangingStackIdPassword\":true},\"flags\":{\"allowRetractingFlags\":true},\"snippets\":{\"snippetsEnabled\":true,\"renderDomain\":\"stacksnippets.net\"},\"markdown\":{\"asteriskIntraWordEmphasis\":true},\"monitoring\":{\"clientTimingsAbsoluteTimeout\":30000,\"clientTimingsDebounceTimeout\":1000}});\n",
" StackExchange.using.setCacheBreakers({\"js/prettify-full.en.js\":\"26841dfd39a3\",\"js/moderator.en.js\":\"b64645aa932f\",\"js/full-anon.en.js\":\"38de8432d970\",\"js/full.en.js\":\"f4fdc75d0be8\",\"js/wmd.en.js\":\"69f08c40e290\",\"js/third-party/jquery.autocomplete.min.js\":\"d3b8fa7fdf74\",\"js/third-party/jquery.autocomplete.min.en.js\":\"\",\"js/mobile.en.js\":\"ba2685451c38\",\"js/help.en.js\":\"118cb359bcc6\",\"js/tageditor.en.js\":\"235a2acc7d79\",\"js/tageditornew.en.js\":\"6d17281a7b52\",\"js/inline-tag-editing.en.js\":\"7581a98341e4\",\"js/revisions.en.js\":\"8f22ba768cac\",\"js/review.en.js\":\"67c1701d5500\",\"js/tagsuggestions.en.js\":\"7dfec0d2a2d7\",\"js/post-validation.en.js\":\"b867e10e83f9\",\"js/explore-qlist.en.js\":\"e71f14781288\",\"js/events.en.js\":\"e8e4561c291e\",\"js/keyboard-shortcuts.en.js\":\"cf7a95df8cd6\",\"js/external-editor.en.js\":\"b46c950d6c5a\",\"js/adops.en.js\":\"9a6a7812a212\",\"js/external-editor.en.js\":\"b46c950d6c5a\",\"js/snippet-javascript.en.js\":\"4adbf892dd3e\",\"js/snippet-javascript-codemirror.en.js\":\"579c6765e5df\"});\n",
" StackExchange.using(\"gps\", function() {\n",
" StackExchange.gps.init(true);\n",
" });\n",
" </script>\n",
" <script>\n",
" StackExchange.ready(function () {\n",
" $('#nav-tour').click(function () {\n",
" StackExchange.using(\"gps\", function() {\n",
" StackExchange.gps.track(\"aboutpage.click\", { aboutclick_location: \"headermain\" }, true);\n",
" });\n",
" });\n",
" });\n",
" </script>\n",
". . . \n"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"h = parsehtml(strResponse)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"Gumbo.HTMLDocument"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"typeof(h)"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"Gumbo.HTMLElement{:title}:\n",
"<title>Newest 'julia-lang' Questions - Stack Overflow</title>\n"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"h.root.children[1].children[1]"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"Cascadia.Selector(Cascadia.#7)"
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"s=Selector(\".question-summary\")"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"50-element Array{Gumbo.HTMLNode,1}:\n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44705653\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"15 views\">\n",
" 15 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44694144\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"21 views\">\n",
" 21 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44692754\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>1</strong>\n",
" </span>\n",
" <div class=\"viewcount\">vote</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"27 views\">\n",
" 27 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44692136\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"23 views\">\n",
" 23 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44689835\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"23 views\">\n",
" 23 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44685969\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"39 views\">\n",
" 39 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44683685\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>2</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"36 views\">\n",
" 36 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44677240\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"25 views\">\n",
" 25 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44675564\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"27 views\">\n",
" 27 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44668696\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>2</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>3</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"45 views\">\n",
" 45 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44653301\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"40 views\">\n",
" 40 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44648387\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"56 views\">\n",
" 56 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44639826\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"60 views\">\n",
" 60 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" ⋮ \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44538399\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>2</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"22 views\">\n",
" 22 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44538016\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>1</strong>\n",
" </span>\n",
" <div class=\"viewcount\">vote</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>2</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"63 views\">\n",
" 63 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44535058\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>2</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"81 views\">\n",
" 81 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44520097\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>6</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"79 views\">\n",
" 79 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44510707\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"34 views\">\n",
" 34 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44509964\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>0</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>2</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"62 views\">\n",
" 62 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44502828\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>3</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"111 views\">\n",
" 111 views\n",
"</div>\n",
" </div>\n",
". . . \n",
"\n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44501423\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>1</strong>\n",
" </span>\n",
" <div class=\"viewcount\">vote</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"29 views\">\n",
" 29 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44491282\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>2</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"45 views\">\n",
" 45 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44486180\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>2</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered-accepted\">\n",
" <strong>1</strong>\n",
" answer\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"50 views\">\n",
" 50 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44470521\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>2</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status unanswered\">\n",
" <strong>0</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"65 views\">\n",
" 65 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" \n",
" Gumbo.HTMLElement{:div}:\n",
"<div class=\"question-summary\"id=\"question-summary-44470484\">\n",
" <div class=\"statscontainer\">\n",
" <div class=\"statsarrow\"></div>\n",
" <div class=\"stats\">\n",
" <div class=\"vote\">\n",
" <div class=\"votes\">\n",
" <span class=\"vote-count-post \">\n",
" <strong>3</strong>\n",
" </span>\n",
" <div class=\"viewcount\">votes</div>\n",
" </div>\n",
" </div>\n",
" <div class=\"status answered\">\n",
" <strong>2</strong>\n",
" answers\n",
" \n",
" </div>\n",
" </div>\n",
" <div class=\"views \"title=\"50 views\">\n",
" 50 views\n",
"</div>\n",
" </div>\n",
". . . \n",
" "
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"qs = matchall(s, h.root)"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"1-element Array{Gumbo.HTMLNode,1}:\n",
" Gumbo.HTMLElement{:a}:\n",
"<a href=\"/users/5954627/junwei-su\">Junwei su</a>\n"
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"author_elem = matchall(sel\".user-details a\",qs[1])"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"HTML Text: Junwei su"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"author_elem[1].children[1]"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"\"Junwei su\""
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"text(author_elem[1].children[1])"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"Cascadia.Selector(Cascadia.#7)"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"s=sel\"[rel=\\\"next\\\"]\""
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"1-element Array{Gumbo.HTMLNode,1}:\n",
" Gumbo.HTMLElement{:a}:\n",
"<a href=\"/questions/tagged/julia-lang?page=2&sort=newest\"rel=\"next\"title=\"go to page 2\">\n",
" <span class=\"page-numbers next\"> next</span>\n",
"</a>\n"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"matchall(s, h.root)"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"Gumbo.HTMLElement{:a}:\n",
"<a href=\"/questions/tagged/julia-lang?page=2&sort=newest\"rel=\"next\"title=\"go to page 2\">\n",
" <span class=\"page-numbers next\"> next</span>\n",
"</a>\n"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"matchall(s, h.root)[1]"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"\"/questions/tagged/julia-lang?page=2&sort=newest\""
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"nxt = getattr(matchall(s, h.root)[1], \"href\")"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"\"https://stackoverflow.com\""
]
},
"execution_count": 32,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"const baseURL = \"https://stackoverflow.com\""
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"HTTP.Response:\n",
"\"\"\"\n",
"HTTP/1.1 200 OK\r\n",
"Connection: keep-alive\r\n",
"Via: 1.1 varnish\r\n",
"X-Served-By: cache-iad2628-IAD\r\n",
"Date: Thu, 22 Jun 2017 21:09:25 GMT\r\n",
"Age: 0\r\n",
"Accept-Ranges: bytes\r\n",
"Cache-Control: private\r\n",
"X-Cache-Hits: 0\r\n",
"Content-Length: 192886\r\n",
"Last-Modified: Sat, 10 Jun 2017 02:57:05 GMT\r\n",
"X-DNS-Prefetch-Control: off\r\n",
"Vary: Fastly-SSL\r\n",
"X-Cache: MISS\r\n",
"Strict-Transport-Security: max-age=15552000\r\n",
"Set-Cookie: usr=p=[2|2]; expires=Fri, 22-Dec-2017 21:09:25 GMT; path=/; HttpOnly\r\n",
"Content-Type: text/html; charset=utf-8\r\n",
"X-Frame-Options: SAMEORIGIN\r\n",
"X-Request-Guid: 7682cb59-1f84-4214-8fef-3882d563461a\r\n",
"X-Timer: S1498165766.569114,VS0,VE24\r\n",
"\n",
"[HTTP.Response body of 192888 bytes]\n",
"\r\n",
"<!DOCTYPE html>\r\n",
"<html itemscope itemtype=\"http://schema.org/QAPage\">\r\n",
"\r\n",
"<head>\r\n",
"\r\n",
"<title>Newest &#39;julia-lang&#39; Questions - Page 2 - Stack Overflow</title>\r\n",
" <link rel=\"shortcut icon\" href=\"https://cdn.sstatic.net/Sites/stackoverflow/img/favicon.ico?v=4f32ecc8f43d\">\r\n",
" <link rel=\"apple-touch-icon image_src\" href=\"https://cdn.sstatic.net/Sites/stackoverflow/img/apple-touch-icon.png?v=c78bd457575a\">\r\n",
" <link rel=\"search\" type=\"application/opensearchdescription+xml\" title=\"Stack Overflow\" href=\"/opensearch.xml\">\r\n",
" <meta property=\"og:type\" content=\"website\"/>\r\n",
" <meta name=\"twitter:card\" content=\"summary\"/>\r\n",
" <meta name=\"twitter:domain\" content=\"stackoverflow.com\"/>\r\n",
"\r\n",
" <meta property=\"og:image\" itemprop=\"image pri\n",
"⋮\n",
"\"\"\""
]
},
"execution_count": 33,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"HTTP.get(\"$baseURL$nxt\")"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"0-element Array{Gumbo.HTMLNode,1}"
]
},
"execution_count": 34,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"matchall(sel\"blah\", h.root)"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Total number of Julia Questions: 3056\n",
" 28.544241 seconds (15.34 M allocations: 1.076 GB, 2.22% gc time)\n"
]
}
],
"source": [
"function count_julia_q()\n",
" h = parsehtml(String(take!(HTTP.get(\"$baseURL/questions/tagged/julia-lang?sort=newest&pagesize=50\"))));\n",
" s1=sel\".question-summary\"\n",
" s2=sel\"[rel=\\\"next\\\"]\"\n",
" count = 0\n",
" while true\n",
" q = matchall(s1, h.root)\n",
" count = count + length(q)\n",
" elem = matchall(s2, h.root)\n",
" if length(elem) > 0\n",
" nxt = getattr(elem[1], \"href\")\n",
" h = parsehtml(String(take!(HTTP.get(\"$baseURL$nxt\"))))\n",
" else\n",
" break\n",
" end\n",
" end\n",
" println(\"Total number of Julia Questions: $count\")\n",
"end\n",
"\n",
"@time count_julia_q()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"WARNING: redefining constant queue\n",
"WARNING: redefining constant count2\n",
"WARNING: Method definition count_julia_q_async() in module Main at In[21]:7 overwritten at In[23]:7.\n"
]
}
],
"source": [
"const queue = Channel(10)\n",
"const count2 = Ref{Int}()\n",
"\n",
"put!(queue, \"$baseURL/questions/tagged/julia-lang?sort=newest&pagesize=50\")\n",
"\n",
"function count_julia_q_async()\n",
" s1=sel\".question-summary\"\n",
" s2=sel\"[rel=\\\"next\\\"]\"\n",
" @sync while true\n",
" u = take!(queue)\n",
" if u == nothing; break; end\n",
" @async begin \n",
" h = parsehtml(String(take!(HTTP.get(u))));\n",
" q = matchall(s1, h.root)\n",
" count2[] = count2[] + length(q)\n",
" elem = matchall(s2, h.root)\n",
" if length(elem) > 0\n",
" nx = getattr(elem[1], \"href\")\n",
" put!(queue, \"$baseURL$nx\")\n",
" else\n",
" put!(queue, nothing)\n",
" end\n",
" end\n",
" end\n",
"\n",
"end\n",
"\n",
"@time count_julia_q_async()"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"count_q (generic function with 1 method)"
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function count_q(tag)\n",
" client = HTTP.Client()\n",
" h1 = parsehtml(String(take!(HTTP.get(client, \"$baseURL/questions/tagged/$tag?sort=newest&pagesize=50\"))));\n",
" s1=sel\".question-summary\"\n",
" s2=sel\"[rel=\\\"next\\\"]\"\n",
" count = 0\n",
" client = HTTP.Client()\n",
" while true\n",
" q = matchall(s1, h1.root)\n",
" count = count + length(q)\n",
" elem = matchall(s2, h1.root)\n",
" if length(elem) > 0\n",
" nx = getattr(elem[1], \"href\")\n",
" h1 = parsehtml(String(take!(HTTP.get(client, \"$baseURL$nx\"))))\n",
" else\n",
" break\n",
" end\n",
" end\n",
" println(\"Total number of $tag Questions: $count\")\n",
"end\n"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Total number of julia-lang Questions: 3056\n",
"Total number of jni Questions: 2850\n",
"Total number of sencha-touch Questions: 3000\n",
" 37.987761 seconds (45.78 M allocations: 3.217 GB, 7.87% gc time)\n"
]
}
],
"source": [
"@time @sync for i in [\"julia-lang\", \"sencha-touch\", \"jni\"]\n",
" @async count_q(i)\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 39,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [
{
"ename": "LoadError",
"evalue": "TimeoutException: server did not respond for more than 15.0 seconds. ",
"output_type": "error",
"traceback": [
"TimeoutException: server did not respond for more than 15.0 seconds. ",
"",
" in process!(::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Connection{MbedTLS.SSLContext}, ::HTTP.RequestOptions, ::String, ::HTTP.Method, ::HTTP.Response, ::Base.RefValue{Float64}, ::Int64, ::Bool, ::Bool) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:309",
" in request(::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions, ::HTTP.Connection{MbedTLS.SSLContext}, ::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:226",
" in #request#34(::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool, ::Function, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:116",
" in (::HTTP.#kw##request)(::Array{Any,1}, ::HTTP.#request, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at ./<missing>:0",
" in request(::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions, ::HTTP.Connection{MbedTLS.SSLContext}, ::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:230",
" in #request#34(::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool, ::Function, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:116",
" in (::HTTP.#kw##request)(::Array{Any,1}, ::HTTP.#request, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at ./<missing>:0",
" in request(::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions, ::HTTP.Connection{MbedTLS.SSLContext}, ::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:230",
" in #request#34(::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool, ::Function, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:116",
" in (::HTTP.#kw##request)(::Array{Any,1}, ::HTTP.#request, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at ./<missing>:0",
" in request(::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions, ::HTTP.Connection{MbedTLS.SSLContext}, ::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:230",
" in #request#34(::Array{HTTP.Response,1}, ::Int64, ::Bool, ::Bool, ::Function, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:116",
" in (::HTTP.#kw##request)(::Array{Any,1}, ::HTTP.#request, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Request, ::HTTP.RequestOptions) at ./<missing>:0",
" in #request#32(::Dict{String,String}, ::HTTP.FIFOBuffer, ::Bool, ::Bool, ::Array{Any,1}, ::Function, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Method, ::HTTP.URI) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:98",
" in (::HTTP.#kw##request)(::Array{Any,1}, ::HTTP.#request, ::HTTP.Client{Base.PipeEndpoint}, ::HTTP.Method, ::HTTP.URI) at ./<missing>:0",
" in #get#51(::Bool, ::String, ::Array{Any,1}, ::Function, ::String) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:435",
" in get(::String) at /home/jrun/.julia/v0.5/HTTP/src/client.jl:435"
]
}
],
"source": [
"h = parsehtml(String(take!(HTTP.get(\"$baseURL/questions/tagged/sencha-touch?sort=newest&pagesize=50\"))))"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [],
"source": [
"matchall(sel\".question-summary\", h.root)"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [
{
"data": {
"text/plain": [
"4"
]
},
"execution_count": 37,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"2+2"
]
},
{
"cell_type": "code",
"execution_count": 41,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"WARNING: Method definition count_qs(Any) in module Main at In[40]:2 overwritten at In[41]:2.\n"
]
},
{
"data": {
"text/plain": [
"count_qs (generic function with 1 method)"
]
},
"execution_count": 41,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function count_qs(tag)\n",
" client = HTTP.Client()\n",
" h1 = parsehtml(String(take!(HTTP.get(client, \"$baseURL/questions/tagged/$tag?sort=newest&pagesize=50\"))));\n",
" s1=sel\".question-summary\"\n",
" s2=sel\"[rel=\\\"next\\\"]\"\n",
" count = 0\n",
" client = HTTP.Client()\n",
" while true\n",
" sleep(1)\n",
" q = matchall(s1, h1.root)\n",
" count = count + length(q)\n",
" elem = matchall(s2, h1.root)\n",
" if length(elem) > 0\n",
" nx = getattr(elem[1], \"href\")\n",
" h1 = parsehtml(String(take!(HTTP.get(client, \"$baseURL$nx\"))))\n",
" else\n",
" break\n",
" end\n",
" end\n",
" println(\"Total number of $tag Questions: $count\")\n",
"end\n"
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"count_qs_async (generic function with 1 method)"
]
},
"execution_count": 42,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function count_qs_async(tags)\n",
" @sync for i in tags\n",
" @async count_qs(i)\n",
" end\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"9-element Array{String,1}:\n",
" \"julia-lang\" \n",
" \"sencha-touch\"\n",
" \"jni\" \n",
" \"popen\" \n",
" \"chromecast\" \n",
" \"freebsd\" \n",
" \"spree\" \n",
" \"eigen\" \n",
" \"thrift\" "
]
},
"execution_count": 44,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"alltags = [\"julia-lang\", \"sencha-touch\", \"jni\", \"popen\", \"chromecast\", \"freebsd\", \"spree\", \"eigen\", \"thrift\" ]"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"3×3 Array{String,2}:\n",
" \"julia-lang\" \"popen\" \"spree\" \n",
" \"sencha-touch\" \"chromecast\" \"eigen\" \n",
" \"jni\" \"freebsd\" \"thrift\""
]
},
"execution_count": 45,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"alltags = reshape(alltags, 3, 3)"
]
},
{
"cell_type": "code",
"execution_count": 50,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [
{
"data": {
"text/plain": [
"3-element Array{Array{String,1},1}:\n",
" String[\"julia-lang\",\"sencha-touch\",\"jni\"]\n",
" String[\"popen\",\"chromecast\",\"freebsd\"] \n",
" String[\"spree\",\"eigen\",\"thrift\"] "
]
},
"execution_count": 50,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"alltags = [alltags[:, i] for i in 1:size(alltags, 2)]"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"WARNING: Method definition warn(Any...) in module Base at util.jl:354 overwritten in module Logging at /home/jrun/.julia/v0.5/Logging/src/Logging.jl:115.\n",
"WARNING: Method definition info(Any...) in module Base at util.jl:324 overwritten in module Logging at /home/jrun/.julia/v0.5/Logging/src/Logging.jl:115.\n",
"23-Jun 16:43:39:INFO:root:Compute cluster: 6896259441217669969 at https://kubernetes.default:443/\n",
"23-Jun 16:43:40:INFO:root:changing scale of nb-6896259441217669969 to 3\n",
"23-Jun 16:43:42:INFO:root:unsupported projectcalico.org/v1\n"
]
}
],
"source": [
"using JuliaRun\n",
"ctx = JuliaRun.init()\n",
"init_parallel()\n",
"nb=self()\n",
"scale!(ctx, nb, 3)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [
{
"data": {
"text/plain": [
"1"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"nworkers()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false,
"deletable": true,
"editable": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [
{
"data": {
"text/plain": [
"(3,3)"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"scale(ctx,nb)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true,
"slideshow": {
"slide_type": "skip"
}
},
"outputs": [],
"source": [
"@everywhere Pkg.add(\"Cascadia\")\n",
"@everywhere Pkg.add(\"HTTP\")\n",
"@everywhere using Cascadia\n",
"@everywhere using Gumbo\n",
"@everywhere using HTTP"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true,
"slideshow": {
"slide_type": "slide"
}
},
"outputs": [],
"source": [
"pmap(count_qs_async, alltags)"
]
}
],
"metadata": {
"celltoolbar": "Slideshow",
"kernelspec": {
"display_name": "Julia 0.5.2",
"language": "julia",
"name": "julia-0.5"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "0.5.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment