<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing any discussions tagged with Operating System and Network Access sorted by most replies.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2118125" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1097940" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1664758" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/868933" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1025102" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2112731" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1479746" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1667335" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/973618" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1202244" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/902846" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1310073" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/861654" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/917616" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1669257" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1639163" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1349489" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1855244" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1034002" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/928500" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2118125">
    <title>Mathematica benchmarks for new M1 MacBooks?</title>
    <link>https://community.wolfram.com/groups/-/m/t/2118125</link>
    <description>Are there any benchmarks yet for Mathematica 12.1 on the new (13&amp;#034;) M1 MacBook Air or (13&amp;#034;) M1 MacBook Pro?</description>
    <dc:creator>Murray Eisenberg</dc:creator>
    <dc:date>2020-11-18T20:19:23Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1097940">
    <title>Get FinancialData price history?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1097940</link>
    <description>Since 16 may 2017, why am I not able to get the price history of US stock market tickers?  Please see output below!   Has anything changed?&#xD;
&#xD;
    In[9]:= FinancialData[&amp;#034;GE&amp;#034;, {{2017, 1, 3}, {2017, 5, 15}}]&#xD;
    &#xD;
    Out[9]= Missing[&amp;#034;NotAvailable&amp;#034;]&#xD;
    &#xD;
    In[10]:= FinancialData[&amp;#034;IBM&amp;#034;, {{2017, 1, 3}, {2017, 5, 15}}]&#xD;
    &#xD;
    Out[10]= Missing[&amp;#034;NotAvailable&amp;#034;]</description>
    <dc:creator>sridev ramaswamy</dc:creator>
    <dc:date>2017-05-18T12:09:48Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1664758">
    <title>Roadmap to Mathematica 12 on Raspberry Pi?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1664758</link>
    <description>Great to see Mathematica 12 released and I can&amp;#039;t wait to try the new functionality!&#xD;
&#xD;
What is the timeline and roadmap to get Mathematica 12 to the Pi?  Thanks!</description>
    <dc:creator>Michael Byczkowski</dc:creator>
    <dc:date>2019-04-20T08:40:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/868933">
    <title>Performance reduction of FindMinimum in version 10</title>
    <link>https://community.wolfram.com/groups/-/m/t/868933</link>
    <description>When working on [this question][1] dedicated to what I believe is a significant limitation/defect of the current implementation of the `&amp;#034;LevenbergMarquardt&amp;#034;` algorithm in `FindMinimum`, I found that the same code evaluates 15 - 25 times slower in version 10.4.1 as compared to version 8.0.4 on the same machine! &#xD;
&#xD;
At the bottom of this post a Notebook containing the complete setup reproducing the issue is attached. &#xD;
&#xD;
The following is a comparison of absolute timings of the same `FindMinimum` code evaluated with the two versions along with the number of steps taken by `FindMinimum`, achieved minimum and obtained new values of parameters of the model. The setup can be found in the attached Notebook.&#xD;
&#xD;
With version 8.0.4 on Windows 7 x64 I get the following:&#xD;
&#xD;
    findMinimum[init, MaxIterations -&amp;gt; 500, WorkingPrecision -&amp;gt; 20, PrecisionGoal -&amp;gt; 3, &#xD;
     StepMonitor :&amp;gt; ++steps, Method -&amp;gt; {&amp;#034;LevenbergMarquardt&amp;#034;, &amp;#034;Residual&amp;#034; -&amp;gt; residualVect}]&#xD;
&#xD;
&amp;gt;     {&amp;#034;00:06:35&amp;#034;, 220, 0.00405321003823167,&#xD;
&amp;gt;     {?0[1]-&amp;gt;406.18, ?[1]-&amp;gt;346.16, ?[2]-&amp;gt;0.22879, ?0[2]-&amp;gt;666.41, ?[2]-&amp;gt;239.54, ?[3]-&amp;gt;0.20278}}&#xD;
&#xD;
The output means that the evaluation has taken 6 min 35 sec and finished in 220 steps, obtained minimum is `0.00405321003823167`, the obtained new values of the parameters follow.&#xD;
&#xD;
And this is what I get with version 10.4.1 installed on the same machine:&#xD;
&#xD;
    findMinimum[init, MaxIterations -&amp;gt; 500, WorkingPrecision -&amp;gt; 20, PrecisionGoal -&amp;gt; 3, &#xD;
     StepMonitor :&amp;gt; ++steps, Method -&amp;gt; {&amp;#034;LevenbergMarquardt&amp;#034;, &amp;#034;Residual&amp;#034; -&amp;gt; residualVect}]&#xD;
&#xD;
&amp;gt;     {&amp;#034;02:37:07&amp;#034;, 220, 0.00405321003823167,&#xD;
&amp;gt;     {?0[1]-&amp;gt;406.18, ?[1]-&amp;gt;346.16, ?[2]-&amp;gt;0.22879, ?0[2]-&amp;gt;666.41, ?[2]-&amp;gt;239.54, ?[3]-&amp;gt;0.20278}}&#xD;
&#xD;
As you see, the only difference is that now the evaluation has taken 2 hours 37 min 7 sec! **It is more than 23 times slower than with version 8.0.4!**&#xD;
&#xD;
----------&#xD;
&#xD;
Do you experience the same problem? Is it possible to get `FindMinimum` of version 10.4.1 working as fast as `FindMinimum` of version 8.0.4?&#xD;
&#xD;
&#xD;
&#xD;
&#xD;
  [1]: http://mathematica.stackexchange.com/q/116295/280</description>
    <dc:creator>Alexey Popkov</dc:creator>
    <dc:date>2016-06-07T09:49:31Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1025102">
    <title>Avoid crashing the Mathematica kernel while calling to Audio[] ?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1025102</link>
    <description>I&amp;#039;m attaching a Notebook. The full contents are:&#xD;
&#xD;
    mySampleRate = 48000;&#xD;
    &#xD;
    testSeries = {0, 1, 0}&#xD;
    &#xD;
    testAudio = &#xD;
     Audio[{testSeries, testSeries}, SampleRate -&amp;gt; mySampleRate]&#xD;
&#xD;
When I evaluate the Notebook, Mathematica beeps 4 times, and it reports:&#xD;
&#xD;
&amp;gt; An unknown box name (ToBoxes) was sent as the BoxForm for the&#xD;
&amp;gt; expression. Check the format rules for the expression.&#xD;
&#xD;
and when I go to Help -&amp;gt; Why The Beep, Mathematica reports:&#xD;
&#xD;
&amp;gt; The kernel Local has quit (exited) during the course of an evaluation.&#xD;
&#xD;
Actually, Mathematica&amp;#039;s behavior on this Notebook is non-deterministic. Sometimes it beeps 4 times, sometimes it beeps just once, sometimes it gives me different messages when I ask it why the beep.</description>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2017-03-04T06:11:02Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2112731">
    <title>Mathematica on Mac OS Big Sur</title>
    <link>https://community.wolfram.com/groups/-/m/t/2112731</link>
    <description>Has anyone tested Mathematica 12.1 on the new Mac OS?  Is it safe to upgrade to Mac OS 11 yet?</description>
    <dc:creator>Erik Mahieu</dc:creator>
    <dc:date>2020-11-11T16:38:00Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1479746">
    <title>Is Mathematica 11 compatible with Mac OS Mojave</title>
    <link>https://community.wolfram.com/groups/-/m/t/1479746</link>
    <description>any problem with Mojave before I switch to it?</description>
    <dc:creator>michel</dc:creator>
    <dc:date>2018-09-26T02:01:06Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1667335">
    <title>Use ParallelTable to improve calculation speed?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1667335</link>
    <description>**Mathematica V12**:&#xD;
&#xD;
The snapshot is based on a notebook. I want to improve the calculation speed of my notebook by changing the function **Table** to **ParallelTable**. Unfortunately ParallelTable does not come to an end in appropriate time.&#xD;
![enter image description here][1]&#xD;
&#xD;
Mathematica told me that 4 Kernels have been launched, but after more than 30 minutes I aborted the calculation.&#xD;
Why does it take so much time to create the table with several kernels?&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=52542019-04-2314_23_39-Window.png&amp;amp;userId=1369267</description>
    <dc:creator>Jürgen Kanz</dc:creator>
    <dc:date>2019-04-23T12:37:59Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/973618">
    <title>Lost a Notebook with 11.0.1. How to get it again?</title>
    <link>https://community.wolfram.com/groups/-/m/t/973618</link>
    <description>I use Wolfram Programming Lab (Standard License). Normally from the Desktop version on an up-to-date Win10 PC. Last Thursday I updated to version 11.0.1 from 11.0.0. This worked with no problem.&#xD;
&#xD;
I was developing a pretty large and tricky notebook (.nb) for two weeks. It was stored within the Wolfram cloud and is still there. I worked with it last Friday after the update and saved it to the cloud. No problem. &#xD;
&#xD;
Since Saturday I cannot reopen that notebook. The ProgLab-Desktop says: *&amp;#034;There was a syntax error in the file being read. Do you want to open it as plain text? ... If you are able to fix the error, save the file and open it again&amp;#034;*. &#xD;
&#xD;
Let aside that my notebook had no syntax error when last saved on Friday evening, it&amp;#039;s somewhat ridiculous that a program with a syntax error cannot be reopened. &#xD;
&#xD;
When I answer YES to open the file as plain text, I get another error message: *&amp;#034;There was a syntax error on line ... The error was: &amp;lt;lots of zeros&amp;gt;&amp;#034;*. Then the file opens empty as white space. No notebook, no plain text. Just one header line *&amp;#034;Notebook[{},...&amp;#034;*.&#xD;
&#xD;
When I try to open that notebook directly from the website (https://lab.wolframcloud.com/app/. Not the desktop version), it opens completely empty with no error message at all.&#xD;
&#xD;
I&amp;#039;m afraid, I lost that program and have no idea, why. It is still in the cloud, 1MB large, saved last Friday evening, which is correct.&#xD;
&#xD;
**Does anyone have an idea how I could regain that notebook-file?**</description>
    <dc:creator>Werner Geiger</dc:creator>
    <dc:date>2016-12-03T15:00:35Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1202244">
    <title>Make Mathematica&amp;#039;s interface less blurry?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1202244</link>
    <description>I run Mathematica 11.2 in Windows 10. I have a 4k monitor (resolution 3840x2160) at work and another at home running at recommended 150% scale. The Mathematica interface looks really blurry and it is painful to read (see attached image, the window behind Mathematica is the browser window where this message was being composed. Browser text is very sharp, as is the rest of Windows. Mathematica text is blurry). &#xD;
&#xD;
My laptop (Surface book) runs at a resolution of 3000x2000 and 200% scale and Mathematica there looks even blurrier.&#xD;
&#xD;
High dpi monitors have been out for many years and Mathematica has always been blurry for me on them. Is there a way of making it give good text? Am I missing some non-obvious setting that improves this?&#xD;
&#xD;
Luis.</description>
    <dc:creator>Luis Rademacher</dc:creator>
    <dc:date>2017-10-13T02:23:21Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/902846">
    <title>Flickering desktop when working on OSX with MMA 11.0.0</title>
    <link>https://community.wolfram.com/groups/-/m/t/902846</link>
    <description>Hi everyone,&#xD;
&#xD;
I just wonder whether anyone else experiences some artefacts such as a flickering desktop when using MMA 11.0.0. It is not very easy to see on this gif&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
but one I rotate for example a 3D anatomical structure &#xD;
&#xD;
    AnatomyPlot3D[Entity[&amp;#034;AnatomicalStructure&amp;#034;, &amp;#034;Head&amp;#034;]]&#xD;
&#xD;
or use certain documentation pages such as Spectrogram on my MacBook &#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
I get weird horizontal lines flickering all over the screen. Also part of the main menu on top of the desktop (not captured in the animation above) goes black. On MacPros (non-retina) I do not observe this issue. I can check some retina MacPros tomorrow and other hardware. &#xD;
&#xD;
![enter image description here][3]&#xD;
&#xD;
Can anyone reproduce this?&#xD;
&#xD;
Cheers,&#xD;
Marco&#xD;
&#xD;
&#xD;
  [1]: http://community.wolfram.com//c/portal/getImageAttachment?filename=flickering.gif&amp;amp;userId=48754&#xD;
  [2]: http://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2016-08-11at00.23.49.png&amp;amp;userId=48754&#xD;
  [3]: http://community.wolfram.com//c/portal/getImageAttachment?filename=ScreenShot2016-08-11at00.23.28.png&amp;amp;userId=48754</description>
    <dc:creator>Marco Thiel</dc:creator>
    <dc:date>2016-08-10T23:29:27Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1310073">
    <title>Avoid instability of Mathematica 11.3?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1310073</link>
    <description>Following a recent upgrade from 11.2 to 11.3 I have found that Mathematica repeatedly crashes (black rather than coloured code) when using some custom functions that I have developed. It is not my Mac as similar problems occur on Macs belonging to my colleagues. Reverting to 11.2 or earlier solves the problem completely. I am still trying to isolate some trigger code examples that I can send to Wolfram support. Are others experiencing such crashes?</description>
    <dc:creator>Rudolph Kalveks</dc:creator>
    <dc:date>2018-03-27T12:44:55Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/861654">
    <title>Loading packages in Mathematica 10?</title>
    <link>https://community.wolfram.com/groups/-/m/t/861654</link>
    <description>For years now I have occasionally made use of packages. I have always found that the directions don&amp;#039;t work for me, even though I have tried time and again to follow them closely and to try different ways of loading them. I have always had to resort to opening the package and executing it before I could use the package functions in a Mathematica notebook. I am making another try now. The first file is a package. The second file is a notebook that should load the package. It appears that the names of the symbols load into the second script, but they do not function as they should. Any ideas? The following two files should illustrate my problem.&#xD;
&#xD;
    (* filename: Development.m *)&#xD;
    &#xD;
    BeginPackage[&amp;#034;Development`&amp;#034;]&#xD;
    &#xD;
    v::usage = &amp;#034;v[z] converts x+iy to {x, y}.&amp;#034;&#xD;
    &#xD;
    hello::usage = &amp;#034;Says hello.&amp;#034;&#xD;
    &#xD;
    Begin[&amp;#034;Private`&amp;#034;]&#xD;
    &#xD;
    hello = Print[&amp;#034;Hello from hello&amp;#034;];&#xD;
    &#xD;
    v[z_] := {Re @ z, Im @ z};&#xD;
    &#xD;
    End[]&#xD;
    &#xD;
    EndPackage[]&#xD;
    &#xD;
    &#xD;
    (* filename: testPackage.nb *)&#xD;
    &#xD;
    SetDirectory[$UserBaseDirectory &amp;lt;&amp;gt; &amp;#034;/Applications&amp;#034;]&#xD;
    &#xD;
    (* returns &amp;#034;/Users/myusername/Library/Mathematica/Applications&amp;#034; *)&#xD;
    &#xD;
    FileNames[]    (* returns {Development.m} *)&#xD;
    &#xD;
    &amp;lt;&amp;lt; Development`&#xD;
    &#xD;
    hello        (* returns &amp;#034;hello&amp;#034;, which is a failure *)&#xD;
    &#xD;
    v[2 + 3 I]  (* returns &amp;#034;v[2+3I]&amp;#034; which is a failure *)&#xD;
    &#xD;
    ?&amp;#034;Global`*&amp;#034;     (* returns panel with hello and v, but no variables are listed *)</description>
    <dc:creator>Gary Palmer</dc:creator>
    <dc:date>2016-05-25T03:19:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/917616">
    <title>Training loss goes to 0 when specifying TargetDevice = GPU</title>
    <link>https://community.wolfram.com/groups/-/m/t/917616</link>
    <description>HI -- The neural network package is really cool. I&amp;#039;m learning a lot from experimenting with it. I have noticed one odd thing I can&amp;#039;t explain. I have a fairly simple CNN that I train on some images. It trains (although super-slowly) on my CPU, with a more or less reasonable loss getting smaller on each training round. But when I set TargetDevice = &amp;#034;GPU&amp;#034; it instantly reports 0 loss and finishes in just a couple seconds. As one clue, I had an Nvidia 970 with the latest Nvidia drivers and this didn&amp;#039;t happen. I just upgraded to a new 1080 (partially for faster network training!), and that is when this started happening. &#xD;
&#xD;
I&amp;#039;ve attached a Notebook that demonstrates this behavior and has SystemInformation[] in it. (It does use images that aren&amp;#039;t included, but I don&amp;#039;t think there is anything special about them, they are just a bunch of JPEGs). I&amp;#039;m running Nvidia driver 372.70. If there is a different driver I should be using instead, please let me know. Thanks!</description>
    <dc:creator>David Cardinal</dc:creator>
    <dc:date>2016-09-01T21:46:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1669257">
    <title>Find gcc compiler using Mathematica V12?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1669257</link>
    <description>I installed gcc but Mathematica (12) cannot seem to find it.&#xD;
&#xD;
I installed gcc two ways: (i) via MinGW and (ii) CodeBlocks.  A windows command line check confirms the compilers are installed.&#xD;
&#xD;
I updated my Windows Environments.  GetEnvironment[] now shows Path -&amp;gt; ..... C:\\ Program Files (x86)\\ CodeBlocks \\ MinGW \\ bin;C:\\ MinGW \\ \ ....&#xD;
&#xD;
Still Mathematica does not find it.  Executing&#xD;
&#xD;
    Needs[&amp;#034;CCompilerDriver`&amp;#034;]&#xD;
    CCompilers[]&#xD;
    CCompilers[Full]&#xD;
&#xD;
yields&#xD;
&#xD;
    {}&#xD;
    {{&amp;#034;Name&amp;#034; -&amp;gt; &amp;#034;Intel Compiler&amp;#034;, &#xD;
      &amp;#034;Compiler&amp;#034; -&amp;gt; CCompilerDriver`IntelCompiler`IntelCompiler, &#xD;
      &amp;#034;CompilerInstallation&amp;#034; -&amp;gt; None, &#xD;
      &amp;#034;CompilerName&amp;#034; -&amp;gt; Automatic}, {&amp;#034;Name&amp;#034; -&amp;gt; &amp;#034;Generic C Compiler&amp;#034;, &#xD;
      &amp;#034;Compiler&amp;#034; -&amp;gt; CCompilerDriver`GenericCCompiler`GenericCCompiler, &#xD;
      &amp;#034;CompilerInstallation&amp;#034; -&amp;gt; None, &amp;#034;CompilerName&amp;#034; -&amp;gt; Automatic}}&#xD;
&#xD;
Attempting to Compile using CompilationTarget -&amp;gt; &amp;#034;C&amp;#034; produces the errors&#xD;
&#xD;
    - CreateLibrary::nocomp: A C compiler cannot be found on your system. Please consult the documentation to learn how to set up suitable compilers.&#xD;
    - Compile::nogen: A library could not be generated from the compiled function.&#xD;
&#xD;
I consulted the documentation, but don&amp;#039;t get anywhere. &#xD;
&#xD;
PS: tried compiling using the new FunctionCompile but this produces much slower code than Compile without CompilationTarget -&amp;gt; &amp;#034;C&amp;#034;&#xD;
&#xD;
Thanks,&#xD;
Eric</description>
    <dc:creator>Eric Michielssen</dc:creator>
    <dc:date>2019-04-25T17:18:09Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1639163">
    <title>Mathematica speedup from 2019 iMac over late 2015 iMac?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1639163</link>
    <description>My current computer, a late 2015 iMac 27 has a 4 GHz Core i7 processor, 32 GB RAM, 3 TB Fusion drive, and Radeon R9 M395X with 4 GB VRAM, Retina display.&#xD;
&#xD;
What kind of speedup with Mathematica, if any, might I expect from a new, 2019, iMac 27 with the following configuration?&#xD;
&#xD;
 - 3.6 GHz Core i9 processor (8-core)&#xD;
 - 64GB RAM&#xD;
 - 3 TB Fusion drive&#xD;
 - Radeon Pro Vega 48 with 8GB HBM2 memory&#xD;
&#xD;
Although this new CPU has Turbo Boost up to 5 GHz, Im concerned that the default of only 3.6 GHZ, being below my current 4 GHz, might impede perfornance.&#xD;
&#xD;
Presumably the graphics rendering will be faster, right?&#xD;
&#xD;
Or do the additional cores make up for that difference? In fact, can Mathematica take advantage of those additional cores (without my explicitly coding for parallel kernels)?</description>
    <dc:creator>Murray Eisenberg</dc:creator>
    <dc:date>2019-03-24T16:24:32Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1349489">
    <title>Which version of Mathematica is available on Raspberry Pi ?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1349489</link>
    <description>Hello, &#xD;
&#xD;
I recently added Mathematica on my Raspberry 3 (originally with Raspbian Lite), and got the 11.0.1. &#xD;
Any attempt to get the 11.2 version by a classical upgrade process&#xD;
&#xD;
    sudo apt-get dist-upgrade wolfram-engine &#xD;
&#xD;
just answers that I am up-to-date... However I can read in the group lot of posts concerning 11.2 !&#xD;
How can I get it ? I wouldn&amp;#039;t like to reinstall Raspbian, as it is a special image.&#xD;
&#xD;
Thank you for your help,&#xD;
&#xD;
Yves</description>
    <dc:creator>yves papegay</dc:creator>
    <dc:date>2018-05-31T13:46:34Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1855244">
    <title>The Most Convenient Keyboard Shortcuts Ever</title>
    <link>https://community.wolfram.com/groups/-/m/t/1855244</link>
    <description>Here are two simple but extremely convenient keyboard shortcuts that I&amp;#039;ve used for years. &#xD;
&#xD;
 - This post is a favor to all my friends who type slowly (like me)&#xD;
 - These shortcuts simply create a pair of brackets containing a template placeholder as the current new selection&#xD;
 - Essentially, it&amp;#039;s just a stripped-down version of the bulky (Command + Shift + K + Up/Down Arrow + Enter) completion&#xD;
&#xD;
**Favorite Shortcut #1:** &#xD;
Autocomplete single brackets by pressing `CommandKey + [`&#xD;
&#xD;
![enter image description here][1]&#xD;
&#xD;
**Favorite Shortcut #2:** Autocomplete part brackets by pressing `CommandKey + ]`&#xD;
&#xD;
![enter image description here][2]&#xD;
&#xD;
## How to set them up ##&#xD;
&#xD;
On MacOS, first make a backup of the following file, in case you break it:&#xD;
&#xD;
    FileNameJoin[{$InstallationDirectory, &amp;#034;SystemFiles/FrontEnd/TextResources/Macintosh/KeyEventTranslations.tr&amp;#034;}];&#xD;
&#xD;
On my machine this path resolves to: *&amp;#034;/Applications/Mathematica.app/Contents/SystemFiles/FrontEnd/TextResources/Macintosh/KeyEventTranslations.tr&amp;#034;*&#xD;
&#xD;
Then, preferably in a non-Mathematica editor (e.g. Sublime), open the above file and copy-and-paste these following code into the list inside `EventTranslations`. For the first shortcut:&#xD;
&#xD;
    Item[KeyEvent[&amp;#034;[&amp;#034;,Modifiers-&amp;gt;{Command}],FrontEndExecute[{FrontEnd`NotebookWrite[FrontEnd`InputNotebook[],&amp;#034;[\[SelectionPlaceholder]]&amp;#034;],FrontEndToken[&amp;#034;MovePreviousPlaceHolder&amp;#034;]}]]&#xD;
    &#xD;
And for the second (of course making sure they are separated by a comma):&#xD;
&#xD;
    Item[KeyEvent[&amp;#034;]&amp;#034;,Modifiers-&amp;gt;{Command}],FrontEndExecute[{FrontEnd`NotebookWrite[FrontEnd`InputNotebook[],&amp;#034;\[LeftDoubleBracket]\[SelectionPlaceholder]\[RightDoubleBracket]&amp;#034;],FrontEndToken[&amp;#034;MovePreviousPlaceHolder&amp;#034;],FrontEndToken[&amp;#034;MovePreviousPlaceHolder&amp;#034;]}]]&#xD;
    &#xD;
Finally, restart Mathematica, and presto, they should both be working. And to remove the shortcuts, simply remove those items or replace the .tr file with the backup.&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=own.gif&amp;amp;userId=900170&#xD;
  [2]: https://community.wolfram.com//c/portal/getImageAttachment?filename=part.gif&amp;amp;userId=900170</description>
    <dc:creator>Michael Sollami</dc:creator>
    <dc:date>2020-01-08T20:42:08Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1034002">
    <title>Avoid error in Suggestions bar (Mathematica 11.1)?</title>
    <link>https://community.wolfram.com/groups/-/m/t/1034002</link>
    <description>I have just updated Mathematica to version 11.1 (Windows 10 Home 64-bit) and the suggestions bar is not working properly. I receive this error message when I use one of the options of one arrow of the suggestions bar:&#xD;
![Error using the suggestions bar][1]&#xD;
&#xD;
    INTERNAL SELF-TEST ERROR: EventTracker|c|521&#xD;
    Click here to find out if this problem is known, and to help improve&#xD;
    the Wolfram System by reporting it to Wolfram Research.&#xD;
&#xD;
The error happens after installing the software and running it, with the default configurations.&#xD;
&#xD;
Does anyone know what is the problem?&#xD;
&#xD;
&#xD;
  [1]: http://community.wolfram.com//c/portal/getImageAttachment?filename=Errorsuggestionsbar.PNG&amp;amp;userId=410040&#xD;
  [2]: https://www.wolfram.com/support/error-report/?Version=11.1.0&amp;amp;SystemID=Windows-x86-64&amp;amp;LicenseID=L4968-1451&amp;amp;location=EventTracker-c-521</description>
    <dc:creator>RorriNator 7</dc:creator>
    <dc:date>2017-03-17T23:52:17Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/928500">
    <title>Reproducible crash on macOS 10.12 Sierra</title>
    <link>https://community.wolfram.com/groups/-/m/t/928500</link>
    <description>In Mathematica 11.0.0.0 on macOS 10.12 Sierra:&#xD;
&#xD;
1. load attached file &amp;#034;macOS bug.nb&amp;#034;&#xD;
2. scroll to bottom of notebook&#xD;
3. with mouse, click and drag on the graphic, attempting to rotate it&#xD;
&#xD;
Keep doing #3 until you see random graphic bits in horizontal streaks on your monitor, or your computer seizes up or kernel panics.&#xD;
&#xD;
While there is certainly a macOS bug here that allows the kernel panic, Mathematica may be writing to bad memory locations which the OS fails to trap. This repros 100% for me.&#xD;
&#xD;
I&amp;#039;m reporting this here in hope Staff will pass it to your QA team (my 30 days support expired long ago).</description>
    <dc:creator>hugh winkler</dc:creator>
    <dc:date>2016-09-23T21:27:02Z</dc:date>
  </item>
</rdf:RDF>

