pages tagged IDE http://meng6net.localhost/tag/IDE/ <p><small>Copyright © 2005-2020 by <code>Meng Lu &lt;lumeng3@gmail.com&gt;</code></small></p> Meng Lu's home page ikiwiki Tue, 16 May 2017 23:59:39 +0000 Wolfram Language (Mathematica) package structure http://meng6net.localhost/journal/Wolfram_Language_Mathematica_package_structure/ http://meng6net.localhost/journal/Wolfram_Language_Mathematica_package_structure/ Eclipse IDE IntelliJ IDEA Mathematica Wolfram Language computing note project Tue, 16 May 2017 23:59:39 +0000 2017-05-16T23:59:39Z <p>When creating a package in Wolfram Language (Mathematica), the typical structure looks like the following:</p> <p><code>path/to/MyPackage/</code>:</p> <pre><code>. ├── Documentation │ └── English │ ├── Guides │ │ └── MyPackage.nb │ ├── ReferencePages │ │ └── Symbols │ │ ├─── MySymbol1.nb │ │ └─── MySymbol2.nb │ └── Tutorials | ├── MyTutorial1.nb │ └── MyTutorial2.nb ├── FrontEnd │ ├── Palettes │ │ ├── MyPalette1.nb │ │ └── MyPalette2.nb │ └── SystemResources │ └── Bitmaps │ └── MyPackage │ ├── XXX.png │ └── YYY.png ├── Kernel │ ├── MyPackageFile1.wl │ ├── MyPackageFile2.wl │ ├── MyPackage.wl │ └── init.m ├── PacletInfo.m └── PacletInfoTemplate.m </code></pre> Scala development environment http://meng6net.localhost/computing/development_environment/scala_development_environment/ http://meng6net.localhost/computing/development_environment/scala_development_environment/ IDE programming scala Tue, 16 May 2017 23:59:39 +0000 2017-05-16T23:59:39Z <h2>JDK</h2> <p>JDK, the Java Development Kit, version 1.6 or 1.7</p> <h2>Sbt</h2> <p>Sbt, a build tool for Scala, version 0.12.0</p> <h3>macOS</h3> <p>Install it using Macports:</p> <pre><code>$ sudo port install sbt </code></pre> <p>Verify it works:</p> <pre><code>$ sbt -h Getting org.scala-sbt sbt 0.13.0 ... </code></pre> <h2>Scala IDE for Eclipse</h2> <p>The Scala IDE for Eclipse</p> <h2>Scala worksheet</h2>