<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Kogics - new forum posts</title>
		<link>http://kogics.wikidot.com/forum/start</link>
		<description>Posts in forums of the site &quot;Kogics&quot;</description>
				<copyright></copyright>
		<lastBuildDate>Sat, 06 Jun 2026 11:25:46 +0000</lastBuildDate>
		
					<item>
				<guid>http://kogics.wikidot.com/forum/t-384743#post-6805013</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-384743/contribute-to-kojo#post-6805013</link>
				<description></description>
				<pubDate>Mon, 03 Feb 2025 22:29:57 +0000</pubDate>
				<wikidot:authorName>hgfhgfgfgfgfj</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>shfhfhdfh</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-57764">Hidden / Per page discussions</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-384743/contribute-to-kojo">Contribute to Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-5473886</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-5473886</link>
				<description></description>
				<pubDate>Thu, 21 Jul 2022 12:23:51 +0000</pubDate>
				<wikidot:authorName>Alessia</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello,<br /> I have just downloaded and installed Kojo (2.9.22) on my Macbook pro (Mac Os Monterey 12.5). No problems in installation.</p> <p>I am trying to open the app, but it keeps loading without opening.<br /> What can I do?</p> <p>Thank you very much!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-14392493#post-5228475</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-14392493/penrose-tilings#post-5228475</link>
				<description></description>
				<pubDate>Fri, 11 Mar 2022 05:11:51 +0000</pubDate>
				<wikidot:authorName>Kevin</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Nice work!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109808">Kojo / Code Exchange</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-14392493/penrose-tilings">Penrose tilings</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-14392493#post-5163672</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-14392493/penrose-tilings#post-5163672</link>
				<description></description>
				<pubDate>Sat, 25 Dec 2021 03:40:51 +0000</pubDate>
				<wikidot:authorName>Joost Winter</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>After the P1 and P3 tilings, I now also have a program for P2 tilings, that is, the kite and dart type. This little program draws them together in a sun pattern (which is composed of five darts).</p> <p>I hope this code here will be a bit easier on the eye. :) I also added some comments to make it more readable.</p> <div class="code"> <pre><code>/* Penrose tilings of the P2 type. There are two functions in this program that call themselves and each other recursively: halfKite and halfDart. Note that each function draws an equilateral triangle from the top, and that both functions always exit with the turtle having the same heading as when they entered. */ val Phi = (1 + math.sqrt(5)) / 2 // The golden ratio var kiteColor = green var dartColor = blue def halfKite(depth: Int, length: Double, mirrored: Int): Unit = { if(depth == 0) { // Base case: setFillColor(kiteColor) right(mirrored * 162) forward(length) right(mirrored * 108) forward(length / Phi) right(mirrored * 108) hop(length) left(mirrored * 18) } else { // Recursive case: we draw a half kite by means of // drawing two smaller half kites and a half dart. // // Move the turtle to the right position for the // half dart... right(mirrored * 162) hop(length / (Phi + 1)) left(mirrored * 54) // And draw it! halfDart(depth - 1, length / (Phi + 1), mirrored) right(mirrored * 54) hop(length / Phi) left(mirrored * 54) halfKite(depth - 1, length / Phi, mirrored) right(mirrored * 36) // Note that this half kite is mirrored with // respect to the larger one it is a part of. halfKite(depth - 1, length / Phi, -mirrored) left(mirrored * 162) hop(length) right(mirrored * 18) } } def halfDart(depth: Int, length: Double, mirrored: Int): Unit = { // As in the case of the half kite, we again // distinguish between a base case and a recursive // case. The recursive half dart is composed of one // half kite (mirrored) and a half dart (not mirrored). if(depth == 0) { setFillColor(dartColor) right(mirrored * 126) forward(length) right(mirrored * 144) forward(length * Phi) right(mirrored * 144) hop(length) left(mirrored * 54) } else { left(mirrored * 126) hop(length) right(mirrored * 18) halfKite(depth - 1, length, -mirrored) left(mirrored * 162) hop(length) right(mirrored * 126) halfDart(depth - 1, length / Phi, mirrored) right(mirrored * 126) hop(length / Phi) right(mirrored * 18) } } // The sun pattern can be drawn by drawing 10 half kites, // half of which are mirrored. def sun(depth: Int, length: Double): Unit = { repeat(5) { halfKite(depth, length, -1) right(36) halfKite(depth, length, 1) right(36) } } // Some scripting to call the sun function six times, // with a depth ranging from 1 to 6. // // After each call, a spin is given to the color of // both kite and dart. toggleFullScreenCanvas() repeatFor(1 to 6) { i =&gt; cleari() setBackground(black) setPenColor(black) setPenThickness(6 - i) setSpeed(superFast) right(18) sun(i, 300) kiteColor = kiteColor.spin(60) dartColor = dartColor.spin(60) Thread.sleep(2500) } toggleFullScreenCanvas()</code></pre></div> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109808">Kojo / Code Exchange</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-14392493/penrose-tilings">Penrose tilings</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-14392493#post-5163671</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-14392493/penrose-tilings#post-5163671</link>
				<description></description>
				<pubDate>Sat, 25 Dec 2021 03:38:22 +0000</pubDate>
				<wikidot:authorName>Joost Winter</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>After the P1 and P3 tilings, I have now also coded the P2 tilings, the kite and dart type.</p> <p>I think the program below should be easy to understand, well, at least considering that Penrose tilings are not the simplest recursive programs imaginable. But Kojo allows for doing this in a way that it is, algorithmically, completely transparent without the code 'getting in the way' at all.</p> <div class="code"> <pre><code>/* Penrose tilings of the P2 type. There are two functions in this program that call themselves and each other recursively: halfKite and halfDart. Note that each function draws an equilateral triangle from the top, and that both functions always exit with the turtle having the same heading as when they entered. */ val Phi = (1 + math.sqrt(5)) / 2 // The golden ratio var kiteColor = green var dartColor = blue def halfKite(depth: Int, length: Double, mirrored: Int): Unit = { if(depth == 0) { // Base case: setFillColor(kiteColor) right(mirrored * 162) forward(length) right(mirrored * 108) forward(length / Phi) right(mirrored * 108) hop(length) left(mirrored * 18) } else { // Recursive case: we draw a half kite by means of // drawing two smaller half kites and a half dart. // // Move the turtle to the right position for the // half dart... right(mirrored * 162) hop(length / (Phi + 1)) left(mirrored * 54) // And draw it! halfDart(depth - 1, length / (Phi + 1), mirrored) right(mirrored * 54) hop(length / Phi) left(mirrored * 54) halfKite(depth - 1, length / Phi, mirrored) right(mirrored * 36) // Note that this half kite is mirrored with // respect to the larger one it is a part of. halfKite(depth - 1, length / Phi, -mirrored) left(mirrored * 162) hop(length) right(mirrored * 18) } } def halfDart(depth: Int, length: Double, mirrored: Int): Unit = { // As in the case of the half kite, we again // distinguish between a base case and a recursive // case. The recursive half dart is composed of one // half kite (mirrored) and a half dart (not mirrored). if(depth == 0) { setFillColor(dartColor) right(mirrored * 126) forward(length) right(mirrored * 144) forward(length * Phi) right(mirrored * 144) hop(length) left(mirrored * 54) } else { left(mirrored * 126) hop(length) right(mirrored * 18) halfKite(depth - 1, length, -mirrored) left(mirrored * 162) hop(length) right(mirrored * 126) halfDart(depth - 1, length / Phi, mirrored) right(mirrored * 126) hop(length / Phi) right(mirrored * 18) } } // The sun pattern can be drawn by drawing 10 half kites, // half of which are mirrored. def sun(depth: Int, length: Double): Unit = { repeat(5) { halfKite(depth, length, -1) right(36) halfKite(depth, length, 1) right(36) } } // Some scripting to call the sun function six times, // with a depth ranging from 1 to 6. // // After each call, a spin is given to the color of // both kite and dart. toggleFullScreenCanvas() repeatFor(1 to 6) { i =&gt; cleari() setBackground(black) setPenColor(black) setPenThickness(6 - i) setSpeed(superFast) right(18) sun(i, 300) kiteColor = kiteColor.spin(60) dartColor = dartColor.spin(60) Thread.sleep(2500) } toggleFullScreenCanvas()</code></pre></div> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109808">Kojo / Code Exchange</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-14392493/penrose-tilings">Penrose tilings</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-14392493#post-5163515</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-14392493/penrose-tilings#post-5163515</link>
				<description></description>
				<pubDate>Fri, 24 Dec 2021 20:10:43 +0000</pubDate>
				<wikidot:authorName>Joost Winter</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>After a few more days of Kojo coding, I managed to also create the original P1 set of tiles.</p> <p>I made a little demo out of it, called Roger.</p> <p>You can download the demo here (my apologies, the source code is still much less elegant than it ought to be): <a href="http://joostwinter.net/crazywizardsoftware/roger/">http://joostwinter.net/crazywizardsoftware/roger/</a></p> <p>&#8230;or alternately watch the video on Youtube: <a href="https://www.youtube.com/watch?v=FrruqBlXbcM">https://www.youtube.com/watch?v=FrruqBlXbcM</a></p> <p>Enjoy!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109808">Kojo / Code Exchange</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-14392493/penrose-tilings">Penrose tilings</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-14392493#post-5161158</guid>
				<title>Penrose tilings</title>
				<link>http://kogics.wikidot.com/forum/t-14392493/penrose-tilings#post-5161158</link>
				<description></description>
				<pubDate>Tue, 21 Dec 2021 15:46:26 +0000</pubDate>
				<wikidot:authorName>Joost Winter</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Congratulations to the devs for this awesome project! I am just getting started in Kojo and wrote a little small program to draw some rhombus-type Penrose tilings. So this here is really my first program using Kojo (and in fact, also my first program ever in Scala):</p> <div class="code"> <pre><code>var baseOne = 2 * math.sin(math.Pi * 54 / 180) var baseTwo = 2 * math.sin(math.Pi * 18 / 180) def triangleOne(depth: Int, length: Double, mirrored: Int): Unit = { if(depth == 0) { setFillColor(cm.green) forward(length) right(mirrored * 72) forward(length) right(mirrored * 144) hop(length * baseOne) right(mirrored * 144) } else { right(mirrored * 36) hop(length) left(mirrored * 144) triangleOne(depth - 1, length / baseOne, -mirrored) hop(length / baseOne) right(180) triangleTwo(depth - 1, length / baseOne, -mirrored) hop(length / baseOne) right(-mirrored * 36) hop(length / baseOne) right(180) triangleOne(depth - 1, length / baseOne, mirrored) hop(length * baseOne) right(mirrored * 144) } } def triangleTwo(depth: Int, length: Double, mirrored: Int): Unit = { if(depth == 0) { setFillColor(cm.blue) forward(length) right(mirrored * 144) forward(length) right(mirrored * 108) hop(length * baseTwo) right(mirrored * 108) } else { hop(length * baseTwo * baseTwo) right(mirrored * 108) triangleTwo(depth - 1, length * baseTwo, mirrored) hop(length * baseTwo) right(mirrored * 180) triangleOne(depth - 1, length * baseTwo, mirrored) left(mirrored * 36) hop(length * baseTwo) right(mirrored * 108) } } def decagon(depth: Int, length: Double) { clear() setBackground(cm.black) setSpeed(superFast) invisible() setPenColor(cm.black) left(90) hop(length) right(180) repeat(5) { triangleTwo(depth, length, 1) triangleTwo(depth, length, -1) right(72) hop(length * baseTwo) left(36) hop(length * baseTwo) left(108) } } clear() toggleFullScreenCanvas() var depth = 0 repeat(7) { decagon(depth, 400) depth = depth + 1 Thread.sleep(3000) }</code></pre></div> <img src="http://joostwinter.net/penrose.png" alt="penrose.png" class="image" /> <p>My compliments to the Kojo devs for creating an environment that makes it surprisingly easy to do things like this&#8230;</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109808">Kojo / Code Exchange</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-14392493/penrose-tilings">Penrose tilings</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-13338235#post-4653702</guid>
				<title>The Best Hobbies to Pick Up During Quarantine</title>
				<link>http://kogics.wikidot.com/forum/t-13338235/the-best-hobbies-to-pick-up-during-quarantine#post-4653702</link>
				<description></description>
				<pubDate>Tue, 19 May 2020 14:12:25 +0000</pubDate>
				<wikidot:authorName>Amanda</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <h1><span>The Best Hobbies to Pick Up During Quarantine</span></h1> <p>In today's age, lots of us believe there is nothing else but contemporary technology that may ensure the general evolution of the youngsters, but it is not at all true. A drawing item called the Coloring pages may also ensure the evolution of the kids and that too quite easily.</p> <p>As an adult, there are a lot of anxieties and thoughts in the brain of an individual. There are many and could have a negative effect on your own life. The coloring pages make out the child in an adult, and it helps in creating the things as favorable. With positive thinking, unwanted ideas are taken from the mind of an adult.</p> <p>Child development is composed of developmental stages or milestones. Among the most crucial developmental activities is to form a personality which means to be stable and prepared to handle the challenges. While kid is engaging <a href="https://www.coloringpages4kids.com/coloring-pages/">coloring activity</a> he or she is concentrated and relaxed. This gives a child a chance to calm the mind, put aside all the burdening thoughts and make some space for pleasant emotions. If a child uses coloring pages frequently, this coloring task can become a self - soothing technique which is quite essential for challenging situations. Among other approaches coloring books are fun and imaginative way yourself comforting.</p> <p>While coloring in the pages, the grasp of these children will be improved on the writing tool. There should be a holding of the tool in their children's hands. There will be routine practice through the kids before going to school. It will improve the strength of the hand and enhances their children's focus. There ought to be an involvement of habits among preschoolers.</p> <p>It's perfect for your kids to make them engage in coloring sheets for creating them understand about the leaning. It is possible to <a href="https://www.hellomagazine.com/healthandbeauty/health-and-fitness/2020040387445/best-adult-colouring-books/">create them</a> color different alphabets and pictures of things and creatures; this is going to enable them to get familiarized with things that are unique in a simpler way. Making children learn about various things is necessary as they might fall short in studying. Coloring sheets can come to create them learn about items in a way that is lively.</p> <p>Every person has a fixed sequence or colors set in his thoughts; it will create the feeling of creating his own sort of color arrangement. Thus, the child will certainly get to learn concerning the color schemes used in a variety of items such as the amount of colors in the rainbow and others.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-979648">Kojo / Kojo-Teaching-Sweden</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-13338235/the-best-hobbies-to-pick-up-during-quarantine">The Best Hobbies to Pick Up During Quarantine</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-985853#post-4399683</guid>
				<title>Re: advantages over python/kivy?</title>
				<link>http://kogics.wikidot.com/forum/t-985853/advantages-over-python-kivy#post-4399683</link>
				<description></description>
				<pubDate>Wed, 16 Oct 2019 06:34:14 +0000</pubDate>
				<wikidot:authorName>Bjorn Regnell</wikidot:authorName>				<wikidot:authorUserId>1972470</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have been teaching programming to beginners for many years using Scala both with kids of various ages and with beginner adults at university level. I have also also seen Python in action in teaching to some extent and here are some issues with Python that forms my rationale for choosing Scala over Python:</p> <ul> <li>Dynamic typing means less help in finding bugs; risk of lower ambition</li> <li>No ''typing dialog'' with a compiler means less conceptual learning</li> <li>Non-explicit types in function defs is less efficient when learning abstract thinking</li> <li>Indentation syntax with silent begin-end can make nested blocks obscure to beginners</li> <li>No explicit variable declaration can lead to very hard bugs also for non-beginners</li> <li>Refactoring is more risky, hence discouraging -&gt; bad for step-wise problem solving</li> <li>Not excellent at object orientation</li> <li>Not excellent at functional programming</li> </ul> <p>I have no systematic empiricism behind the above hypotheses but I have some anecdotal evidence that suggest that the above list might be important to address when considering Python.</p> <p>//Bjorn</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-110283">Kojo / Kojo-Dev</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-985853/advantages-over-python-kivy">advantages over python/kivy?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-985853#post-4399612</guid>
				<title>Re: advantages over python/kivy?</title>
				<link>http://kogics.wikidot.com/forum/t-985853/advantages-over-python-kivy#post-4399612</link>
				<description></description>
				<pubDate>Wed, 16 Oct 2019 04:55:40 +0000</pubDate>
				<wikidot:authorName>irvinborder</wikidot:authorName>				<wikidot:authorUserId>5732751</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I am not a <a href="http://net-informations.com/python/default.htm">Python</a> person, but from what I have learnt from experimenting with both the GUI frameworks, Kivy seems to be a better one. Tkinter is quite old and based on Tcl/Tk, which itself is ancient. Newer UI frameworks need to be versatile, theme oriented and easily customizable. Also, more importantly they should support development for the mobile platforms as well, which I believe, Kivy does.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-110283">Kojo / Kojo-Dev</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-985853/advantages-over-python-kivy">advantages over python/kivy?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-10659967#post-4187227</guid>
				<title>Accessibility of the product and documentation</title>
				<link>http://kogics.wikidot.com/forum/t-10659967/accessibility-of-the-product-and-documentation#post-4187227</link>
				<description></description>
				<pubDate>Sun, 17 Mar 2019 01:43:07 +0000</pubDate>
				<wikidot:authorName>Rajakavitha Kodhandapani</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi,<br /> Accessibility is a requirement and not just a nice to have feature. Organizations and open source projects alike realize that they could be unintentionally locking people with different abilities out of their products. We need to think about how we program our product and the documentation so that we can optimize for others success.<br /> Business case<br /> 1. Better SEO, and usability<br /> 2. Positive coding practices<br /> 3. Comply with any legal standards or regulations</p> <p>PS: Would like to quote stackoverflow survey One out of every 200 is hard of sight.</p> <p>Please let me know if this is something that interests you.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-501940">Kojo / Potential Contributions</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-10659967/accessibility-of-the-product-and-documentation">Accessibility of the product and documentation</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-3822423</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-3822423</link>
				<description></description>
				<pubDate>Sun, 03 Jun 2018 09:15:45 +0000</pubDate>
				<wikidot:authorName>Alain Bélanger</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Wow merci beaucoup</p> <p>Tout fonctionne à merveille.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-3821884</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-3821884</link>
				<description></description>
				<pubDate>Sun, 03 Jun 2018 00:10:47 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Ah, please run Kojo with Java 8. To do so, just modify the java line in $KOJO_HOME/bin/kojo to point to your java 8 install.</p> <p>You can get Java 8 from Oracle, IntelliJ, or from Ubuntu repos.</p> <p>/L</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-3821876</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-3821876</link>
				<description></description>
				<pubDate>Sat, 02 Jun 2018 23:55:00 +0000</pubDate>
				<wikidot:authorName>Alain Bélanger</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello<br /> I got this message when i try to lunch kojo2 on kubuntu 18.04.</p> <p>Exception in thread &quot;main&quot; java.lang.ExceptionInInitializerError<br /> at net.kogics.kojo.lite.DesktopMain.main(DesktopMain.scala)<br /> Caused by: java.lang.RuntimeException: classloader (jdk.internal.loader.ClassLoaders$AppClassLoader@255316f2) is not a URLClassLoader<br /> at scala.sys.package$.error(package.scala:27)<br /> at net.kogics.kojo.lite.DesktopMain$.&lt;init&gt;(DesktopMain.scala:23)<br /> at net.kogics.kojo.lite.DesktopMain$.&lt;clinit&gt;(DesktopMain.scala)<br /> &#8230; 1 more</p> <p>Thank you for your hard work.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-982922#post-3780170</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-982922/beginning-on-kojo#post-3780170</link>
				<description></description>
				<pubDate>Wed, 25 Apr 2018 09:16:15 +0000</pubDate>
				<wikidot:authorName>jackyworne</wikidot:authorName>				<wikidot:authorUserId>3988235</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>PSD conversion plays a vital role in building a handsome WordPress based site. We have tried to give you the basic ideas to have to regard in mind when you convert any PSD to WordPress theme. Hopefully you will like it. If you liked this blog please feel free to share it with your dearest ones.<br /> <a href="https://psdtowpservice.com">PSD to Wordpress Expert</a></p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109808">Kojo / Code Exchange</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-982922/beginning-on-kojo">Beginning on Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-4918438#post-3684256</guid>
				<title>Contributing to kojo - translations</title>
				<link>http://kogics.wikidot.com/forum/t-4918438/contributing-to-kojo-translations#post-3684256</link>
				<description></description>
				<pubDate>Wed, 17 Jan 2018 08:44:30 +0000</pubDate>
				<wikidot:authorName>Carloo Dormeletti</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I'm considering how to I could contribute to Kojo, maybe translatingo some examples in italian, but I'm wondering how to find the underlying code to traslate.</p> <p>I see that the interface is translated in Italian but the exaples not.</p> <p>I'm using kojo 2.4.12 for Linux - and have access to a not blleding edge computer.</p> <p>TIA and Regards</p> <p>Carlo D.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-501940">Kojo / Potential Contributions</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-4918438/contributing-to-kojo-translations">Contributing to kojo - translations</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-3672410#post-3598224</guid>
				<title>Thanks to Lalit</title>
				<link>http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo#post-3598224</link>
				<description></description>
				<pubDate>Wed, 20 Sep 2017 17:21:57 +0000</pubDate>
				<wikidot:authorName>lotol</wikidot:authorName>				<wikidot:authorUserId>3351042</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You need to reply for the previous post.</p> <p>I am impressed by your project. I would wish Kojo to be used in every school.</p> <p>Thanks to Lalit.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-110283">Kojo / Kojo-Dev</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo">geogebra with kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-3672410#post-3598104</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo#post-3598104</link>
				<description></description>
				<pubDate>Wed, 20 Sep 2017 14:34:24 +0000</pubDate>
				<wikidot:authorName>weonkyoung yu</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Thank you for your prompt reply.</p> <p>I have another question.</p> <p>I am a math teacher in senior high school. In Kojo, Would it be possible to script number theory, mathematical modeling and so on?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-110283">Kojo / Kojo-Dev</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo">geogebra with kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-3672410#post-3598063</guid>
				<title>Re: geogebra with kojo</title>
				<link>http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo#post-3598063</link>
				<description></description>
				<pubDate>Wed, 20 Sep 2017 13:36:13 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yes, you can programatically control geogebra from Kojo via scala scripts. The bridge is the Mw object in Kojo.</p> <p>For example, try this script:</p> <blockquote> <p>Mw.clear()<br /> Mw.hideAlgebraView()<br /> Mw.showAxes()<br /> Mw.variable(&quot;m&quot;, 1, -5, 5, 0.1, 50, 50)<br /> Mw.variable(&quot;c&quot;, 0, -2, 2, 0.1, 50, 80)<br /> Mw.evaluate(&quot;y = m x + c&quot;)</p> </blockquote> <p>To see more examples, look (in the script editor) at the scripts for <em>Help -&gt; Kojo Overview</em> and <em>Samples -&gt; Math Learning Modules -&gt; Solving Linear Equations</em> (run these scripts, and then search for Mw. in the script editor)</p> <p>Code completion on the Mw object (type Mw. and then Ctrl+Space) will show you what's available for geogebra interaction.</p> <p>Or you can look at the Mathworld class (of which the above Mw is an instance) to see what's inside in more detail:<br /> <a href="https://github.com/litan/kojo/blob/master/src/main/scala/net/kogics/kojo/mathworld/MathWorld.scala">https://github.com/litan/kojo/blob/master/src/main/scala/net/kogics/kojo/mathworld/MathWorld.scala</a></p> <p>Hope that helps. Feel free to ask more questions.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-110283">Kojo / Kojo-Dev</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo">geogebra with kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-3672410#post-3598031</guid>
				<title>geogebra with kojo</title>
				<link>http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo#post-3598031</link>
				<description></description>
				<pubDate>Wed, 20 Sep 2017 12:21:58 +0000</pubDate>
				<wikidot:authorName>weonkyoung Yu</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>In gegogebra, constructions and computations can be done using input filed command, ggbscript and javascript.<br /> Can I do the same thing with kojo script</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-110283">Kojo / Kojo-Dev</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-3672410/geogebra-with-kojo">geogebra with kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-3432345#post-3577413</guid>
				<title>Re: Kojo och chrombooks IN ENGLISH Kojo and Chromebooks with ChromeOS</title>
				<link>http://kogics.wikidot.com/forum/t-3432345/kojo-och-chrombooks#post-3577413</link>
				<description></description>
				<pubDate>Thu, 24 Aug 2017 10:18:45 +0000</pubDate>
				<wikidot:authorName>Bjorn Regnell</wikidot:authorName>				<wikidot:authorUserId>1972470</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yes you can, after liberating your student's machines: ChromeOS is actually prepared for running a Linux Ubuntu subsystem! Programming is all about controlling your computer so when teaching programming it makes perfect sense to unlock your Chromebook and use developer mode and then install what is called &quot;Crouton&quot; on your Chromebook.</p> <p>Here is one of many guides on the net on how to do that:<br /> <a href="http://www.androidauthority.com/crouton-turn-your-chromebook-into-far-more-than-a-glorified-web-browser-663044">http://www.androidauthority.com/crouton-turn-your-chromebook-into-far-more-than-a-glorified-web-browser-663044</a></p> <p>The you install Java with this terminal command in your Ubuntu subsystem:</p> <div class="code"> <pre><code>sudo apt-get install default-jdk</code></pre></div> <p>And then install Kojo as described for Linux on the <a href="http://www.kogics.net/kojo-download">Kojo download page</a>. And ready to go!</p> <p>BTW: This means that the sysadmin of your school should support your very important pedagogical ambitions in allowing your students to do &quot;real&quot; programing! :)</p> <p>Hope this helped?</p> <p>Good luck!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-3432345/kojo-och-chrombooks">Kojo och chrombooks</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-3432345#post-3577323</guid>
				<title>Kojo och chrombooks</title>
				<link>http://kogics.wikidot.com/forum/t-3432345/kojo-och-chrombooks#post-3577323</link>
				<description></description>
				<pubDate>Thu, 24 Aug 2017 06:50:23 +0000</pubDate>
				<wikidot:authorName>Annamaria Kadir</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Mina elever har chromebooks. Går det att jobba med Kojo?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-3432345/kojo-och-chrombooks">Kojo och chrombooks</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-2275620#post-2818537</guid>
				<title>Re: Kojo på en chromebook</title>
				<link>http://kogics.wikidot.com/forum/t-2275620/kojo-pa-en-chromebook#post-2818537</link>
				<description></description>
				<pubDate>Fri, 12 May 2017 13:31:21 +0000</pubDate>
				<wikidot:authorName>Bjorn Regnell</wikidot:authorName>				<wikidot:authorUserId>1972470</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>The question in English: &quot;Is it possible to run Kojo on a Chromebook with ChromeOS, and if so how to do it?&quot;</p> <p>Yes, it is possible but requires that you enable developer mode, and you then can install crouton via commands in a terminal window as explained here:</p> <p><a href="https://www.howtogeek.com/162120/how-to-install-ubuntu-linux-on-your-chromebook-with-crouton/">https://www.howtogeek.com/162120/how-to-install-ubuntu-linux-on-your-chromebook-with-crouton/</a></p> <p>After that you can install openjdk using this command in terminal:</p> <p>sudo apt-get install openjdk-8-jre</p> <p>and then download and run the kojo jar-file from terminal using this command:</p> <p>java -jar xxx.jar</p> <p>where xxx.jar is replaced by the name of the downloaded kojo jar-file from here:<br /> <a href="http://www.kogics.net/kojo-download">http://www.kogics.net/kojo-download</a></p> <p>If you have problems, your IT-department should be able to help you with the installation.<br /> Good luck!<br /> /B</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-979147">Kojo / Kojo-User-Sweden</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-2275620/kojo-pa-en-chromebook">Kojo på en chromebook</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-2275620#post-2818262</guid>
				<title>Kojo på en chromebook</title>
				<link>http://kogics.wikidot.com/forum/t-2275620/kojo-pa-en-chromebook#post-2818262</link>
				<description></description>
				<pubDate>Fri, 12 May 2017 06:55:20 +0000</pubDate>
				<wikidot:authorName>Ann-Catherine Sjöberg</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Kojo ska kunna köras på web, men är det överhuvudtaget möjligt på en chromebook.<br /> Om det går isåfall hur går man tillväga?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-979147">Kojo / Kojo-User-Sweden</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-2275620/kojo-pa-en-chromebook">Kojo på en chromebook</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1399088#post-2452221</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor#post-2452221</link>
				<description></description>
				<pubDate>Fri, 05 Feb 2016 18:31:23 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have started to play with this, and I have a new Kojo-Web build out there (<a href="http://www.kogics.net/webkojo">http://www.kogics.net/webkojo</a>). Let me know if you see any font size improvements with this build.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor">Kojo in DiDPI monitor</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1454733#post-2412724</guid>
				<title>Re: Msi-file</title>
				<link>http://kogics.wikidot.com/forum/t-1454733/msi-file#post-2412724</link>
				<description></description>
				<pubDate>Tue, 24 Nov 2015 05:50:38 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Sorry, we currently only have an exe installer. Is there a problem with using the exe installer? Or is it an IT policy thing?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1454733/msi-file">Msi-file</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1454733#post-2412384</guid>
				<title>Msi-file</title>
				<link>http://kogics.wikidot.com/forum/t-1454733/msi-file#post-2412384</link>
				<description></description>
				<pubDate>Mon, 23 Nov 2015 17:33:29 +0000</pubDate>
				<wikidot:authorName>AnnP</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I would like to use Kojo with my pupils at school. Our IT-support wants a msi-file so that they can install Kojo with UpKeeper. Can anyone help me to find a msi-file?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1454733/msi-file">Msi-file</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1418175#post-2395383</guid>
				<title>Re: javax.swing question</title>
				<link>http://kogics.wikidot.com/forum/t-1418175/javax-swing-question#post-2395383</link>
				<description></description>
				<pubDate>Thu, 22 Oct 2015 15:45:53 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Try:<br /> import javax.swing.WindowConstants<br /> frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE)</p> <p>DISPOSE_ON_CLOSE is defined in WindowConstants. JFrame implements WindowConstants, but DISPOSE_ON_CLOSE is not visible via JFrame in Scala (can't remember why off the top of my head).</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1418175/javax-swing-question">javax.swing question</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1418175#post-2395310</guid>
				<title>javax.swing question</title>
				<link>http://kogics.wikidot.com/forum/t-1418175/javax-swing-question#post-2395310</link>
				<description></description>
				<pubDate>Thu, 22 Oct 2015 13:35:31 +0000</pubDate>
				<wikidot:authorName>Anthony</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>hi<br /> I'm goofing around using Kojo to explore different things, and wanted to explore Swing. Having a problem because Frame.DISPOSE_ON_CLOSE is claimed not to be a member of java.swing.JFrame? No problem with EXIT_ON_CLOSE but I don't want to use that, because Kojo gets killed every time I close the window.</p> <div class="code"> <pre><code>import java.awt.Graphics import java.awt.image.BufferedImage import javax.swing.JComponent import javax.swing.JFrame val frame: JFrame = new JFrame(&quot;Fractal&quot;) frame.setSize(640,320) frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE) frame.setVisible(true)</code></pre></div> <p>Results in:</p> <div class="code"> <pre><code>Error[9,39]: value DISPOSE_ON_CLOSE is not a member of object javax.swing.JFrame</code></pre></div> <p>I realise Kojo isn't necessarily meant to be used in this way, but for my better understanding, I am curious why DISPOSE_ON_CLOSE doesn't show up!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1418175/javax-swing-question">javax.swing question</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1399088#post-2394306</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor#post-2394306</link>
				<description></description>
				<pubDate>Tue, 20 Oct 2015 12:48:15 +0000</pubDate>
				<wikidot:authorName>samyem</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Both of these IDEs have customized themes; netbeans is closer to the default windows look and feel but it is not the standard one that ships with Swing.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor">Kojo in DiDPI monitor</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1399088#post-2392984</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor#post-2392984</link>
				<description></description>
				<pubDate>Sat, 17 Oct 2015 14:22:10 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Does Netbeans use the 'Windows Look and Feel' on Surface Pro? And Intellij IDEA?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor">Kojo in DiDPI monitor</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1399088#post-2391790</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor#post-2391790</link>
				<description></description>
				<pubDate>Thu, 15 Oct 2015 01:41:21 +0000</pubDate>
				<wikidot:authorName>samyem</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Surface Pro 3 is 216 PPI, while the new Surface Pro 4 and Surface Book are 267 PPI. I noticed that the newer Netbeans is a bit better at handling high DPI, so Kojo may be able to leverage some of it perhaps?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor">Kojo in DiDPI monitor</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1399088#post-2390433</guid>
				<title>Re: Kojo in DiDPI monitor</title>
				<link>http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor#post-2390433</link>
				<description></description>
				<pubDate>Mon, 12 Oct 2015 17:44:29 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Noted:<br /> <a href="https://bitbucket.org/lalit_pant/kojo/issues/4/kojo-in-didpi-monitor">https://bitbucket.org/lalit_pant/kojo/issues/4/kojo-in-didpi-monitor</a></p> <p>Will investigate as soon as I get access to a high DPI monitor. What's the DPI/Resolution on Surface Pro 3?</p> <p>- Lalit</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor">Kojo in DiDPI monitor</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1399088#post-2389420</guid>
				<title>Kojo in DiDPI monitor</title>
				<link>http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor#post-2389420</link>
				<description></description>
				<pubDate>Sat, 10 Oct 2015 13:09:50 +0000</pubDate>
				<wikidot:authorName>samyem</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Running Kojo under high DPI monitors like Surface Pro 3, the UI appears too small to be usable and the text size used in the editor and menu are tiny and unusable. Other Java programs like IntelliJ appears to respect the system text scale better; is it possible for Kojo to adapt the UI for the high DPI screens?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1399088/kojo-in-didpi-monitor">Kojo in DiDPI monitor</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1305918#post-2350292</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1305918/problem-with-the-scala-tutorial-and-perhaps-kojo-itself#post-2350292</link>
				<description></description>
				<pubDate>Sun, 02 Aug 2015 05:13:41 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>FYI, Scala uses <em>integer division</em> from the Java world.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1305918/problem-with-the-scala-tutorial-and-perhaps-kojo-itself">Problem with the Scala Tutorial and perhaps Kojo itself.</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1305918#post-2350140</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1305918/problem-with-the-scala-tutorial-and-perhaps-kojo-itself#post-2350140</link>
				<description></description>
				<pubDate>Sat, 01 Aug 2015 21:13:10 +0000</pubDate>
				<wikidot:authorName>Darin Lee Murphy</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>This is an update on the above issue. I think I figured out what's wrong with Kojo/Scala. In the expression 3.5*9.4+7/5 the 7/5 isn't being converted into a floating point or real number before it is added to product of 3.5*9.4. This can be illustrated in the following script:</p> <p>println(3.5*9.4+7/5) // Returns 33.9<br /> println(3.5*9.4+7.0/5) // Returns 34.3 which is the correct product!<br /> println(3.5*9.4+7/5.0) // Also returns 34.3 which is also correct!</p> <p>So it appears that the 7 isn't being converted into a float. I can live with this bug, but just wanted to let everyone know that to be on the safe bet not to mix floats with integers until this gets correct. Take care now and have a good day!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1305918/problem-with-the-scala-tutorial-and-perhaps-kojo-itself">Problem with the Scala Tutorial and perhaps Kojo itself.</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1305918#post-2350089</guid>
				<title>Problem with the Scala Tutorial and perhaps Kojo itself.</title>
				<link>http://kogics.wikidot.com/forum/t-1305918/problem-with-the-scala-tutorial-and-perhaps-kojo-itself#post-2350089</link>
				<description></description>
				<pubDate>Sat, 01 Aug 2015 18:33:11 +0000</pubDate>
				<wikidot:authorName>Darin Lee Murphy</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Kojo 2.4 Beta Version: 2.4.06 r41 Build date: 20 Apr 2015 Java version: 1.8.0_51-64bit. Scala version: 2.11.6</p> <p>Following &quot;Expressions&quot; section under the Scala tutorial, which is under Kojo's Help menu and ran the expression 3.5*9.4+7/5, which returned 33.9, I've repeated tried this expression using both Windows 7 calculator and Google search and the number I am getting from them is 34.3, which means either Kojo has a problem or the world as a problem. I have also tried just running it like this: println((3.5*9.4)+(7/5)), but again the result Kojo returns is 33.9. Perhaps I do not understand how the &quot;order of operation&quot; Kojo is performing, but I've tried it several ways got different results of course, but never got 33.9. Please look into this issue and let me know whether I am not understanding something or if there is a bug in Kojo. I really think Kojo is a great system overall, but if it's a calculation bug then it needs to be address. Thanks and have a great day!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1305918/problem-with-the-scala-tutorial-and-perhaps-kojo-itself">Problem with the Scala Tutorial and perhaps Kojo itself.</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1277900#post-2336369</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1277900/kojo-hangs-on-loading-screen-in-ubuntu-15-04#post-2336369</link>
				<description></description>
				<pubDate>Sun, 12 Jul 2015 03:09:19 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Good to know.</p> <p>A similar looking problem was reported here: <a href="https://groups.google.com/forum/#!topic/kojo-dev/u1jbahCiu-0">https://groups.google.com/forum/#!topic/kojo-dev/u1jbahCiu-0</a></p> <p>I will update that thread.</p> <p>Thanks,<br /> - Lalit</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1277900/kojo-hangs-on-loading-screen-in-ubuntu-15-04">Kojo hangs on loading screen in Ubuntu 15.04</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1277900#post-2336368</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1277900/kojo-hangs-on-loading-screen-in-ubuntu-15-04#post-2336368</link>
				<description></description>
				<pubDate>Sun, 12 Jul 2015 03:05:08 +0000</pubDate>
				<wikidot:authorName>Richard Eggert</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I solved the mystery on my own.</p> <p>The hang was caused by Java Ayatana (evidenced by the &quot;Picked up JAVA_TOOLS_OPTIONS&quot; line above).</p> <p>Adding this to the Kojo launch script corrected the problem:</p> <blockquote> <p>unset JAVA_TOOL_OPTIONS</p> </blockquote> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1277900/kojo-hangs-on-loading-screen-in-ubuntu-15-04">Kojo hangs on loading screen in Ubuntu 15.04</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1277900#post-2336363</guid>
				<title>Kojo hangs on loading screen in Ubuntu 15.04</title>
				<link>http://kogics.wikidot.com/forum/t-1277900/kojo-hangs-on-loading-screen-in-ubuntu-15-04#post-2336363</link>
				<description></description>
				<pubDate>Sun, 12 Jul 2015 02:44:18 +0000</pubDate>
				<wikidot:authorName>Richard Eggert</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>When I try to run Kojo from the command line on Ubuntu 15.04, it hangs forever on the loading splash screen. I've tried it with Java 8 and Java 7, and with OpenJDK and the Oracle JRE.</p> <p>On the console, I see this:</p> <blockquote> <p>./kojo<br /> Picked up JAVA_TOOL_OPTIONS: -javaagent:/usr/share/java/jayatanaag.jar<br /> [INFO] Running first Kojo instance with args: []<br /> [INFO] Java Home: /opt/jre1.8.0_45<br /> Picked up JAVA_TOOL_OPTIONS: -javaagent:/usr/share/java/jayatanaag.jar<br /> Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=32m; support was removed in 8.0<br /> Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0<br /> [INFO] Logging has been redirected to: /home/daddy/.kojo/lite/log/kojo0.log</p> <p>Exception: java.lang.NullPointerException thrown from the UncaughtExceptionHandler in thread &quot;AWT-EventQueue-0&quot;</p> </blockquote> <p>The above is for the Oracle JRE for Java 8, but there are only slight variations with other versions. The NPE at the bottom appears in all cases, and I suspect that it's at the root of the problem.</p> <p>In the log, I see only a listing of the system properties, followed by this, which mirrors what I saw in the console:</p> <blockquote> <p>[Sat Jul 11&#160;22:33:53 EDT 2015, CodeExecutionSupport] SEVERE: stderr&gt; Exception in thread &quot;AWT-EventQueue-0&quot;<br /> [Sat Jul 11&#160;22:33:53 EDT 2015, CodeExecutionSupport] SEVERE: stderr&gt; Exception in thread &quot;AWT-EventQueue-0&quot;</p> </blockquote> <p>Since there is no stack trace attached to the exception, I can't even venture a guess as to what the problem could be.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1277900/kojo-hangs-on-loading-screen-in-ubuntu-15-04">Kojo hangs on loading screen in Ubuntu 15.04</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2267808</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2267808</link>
				<description></description>
				<pubDate>Fri, 10 Apr 2015 06:42:23 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>And, do keep us updated on how things work out for you.</p> <p>PS. From now on, messages on this forum will be cross-posted to the <a href="https://groups.google.com/forum/#!forum/kojo-user">Kojo-User</a> or <a href="https://groups.google.com/forum/#!forum/kojo-dev">Kojo-Dev</a> google group.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2267771</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2267771</link>
				<description></description>
				<pubDate>Fri, 10 Apr 2015 04:47:53 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <blockquote> <p>Thanks for your concrete answers.</p> </blockquote> <p>You're welcome.<br /> So, things look under control now?</p> <p>Good to know about your plans!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2267563</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2267563</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2015 19:40:49 +0000</pubDate>
				<wikidot:authorName>Christoph Knabe</wikidot:authorName>				<wikidot:authorUserId>2120917</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks for your concrete answers.</p> <p>I will use the english version of Kojo during the first weeks in the first programming course in our media informatics program for teaching imperative programming.<br /> Besides that we will use the german Kojo variant on 13th of june for short kids programming courses during the Berlin &quot;Long Night of Sciences&quot;.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2267213</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2267213</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2015 10:24:16 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <blockquote> <p>as from monday I will teach a full student group of 48 persons using Kojo.</p> </blockquote> <p>What kind of class will this be? Computer science? Software engineering? Kojo visual programming stuff?</p> <blockquote> <p>1) For what do we need the ~/.kojo/lite/libk directory?</p> </blockquote> <p>Any jar in that directory will be on the classpath for scripts run within Kojo. So if you want to play with a third-party lib in Kojo, you can put its jar in the libk directory. By default the libk directory is empty.</p> <blockquote> <p>2) As we don't have a ~ directory on Windows, is it taken from the environment variable<br /> USERPROFILE (Windows user home directory) or the Java system property -Duser.home?</p> </blockquote> <p>def homeDir = System.getProperty(&quot;user.home&quot;)</p> <blockquote> <p>3) Would it work to collect the files from ${user.home}\.kojo\lite\libk by the same batch<br /> script?</p> </blockquote> <p>Yeah, that should work fine.</p> <blockquote> <p>4) If so should I collect only .jar files from this directory?</p> </blockquote> <p>Yes.</p> <blockquote> <p>BTW: Where should I report issues? Here or on <a href="https://code.google.com/p/kojo/issues/list">https://code.google.com/p/kojo/issues/list</a></p> </blockquote> <p>Google code is getting phased out. Please report issues here:<br /> <a href="https://bitbucket.org/lalit_pant/kojo/issues">https://bitbucket.org/lalit_pant/kojo/issues</a></p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2267207</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2267207</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2015 09:58:49 +0000</pubDate>
				<wikidot:authorName>Christoph Knabe</wikidot:authorName>				<wikidot:authorUserId>2120917</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Thanks for your answers.<br /> We urgently need to run Kojo on Windows server, as from monday I will teach a full student group of 48 persons using Kojo. So still some questions:</p> <p>1) For what do we need the ~/.kojo/lite/libk directory?</p> <p>2) As we don't have a ~ directory on Windows, is it taken from the environment variable USERPROFILE (Windows user home directory) or the Java system property -Duser.home?<br /> This is important as on our installation we have a separate area for each user, to which points only -Duser.home.</p> <p>3) Would it work to collect the files from ${user.home}\.kojo\lite\libk by the same batch script?</p> <p>4) If so should I collect only .jar files from this directory?</p> <p>BTW: Where should I report issues? Here or on <a href="https://code.google.com/p/kojo/issues/list">https://code.google.com/p/kojo/issues/list</a></p> <p>Thanks again,<br /> Christoph</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2266772</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2266772</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2015 18:01:45 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Also, if you want to avoid the classpath limitations, you can use net.kogics.kojo.lite.NewKojoInstance (but this will result in two Kojo related processes for every Kojo launch - the actual Kojo instance and a stub that launches it with the extended classpath).</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2266742</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2266742</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2015 17:26:56 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi Christoph,</p> <p>Indeed, net.kogics.kojo.lite.DesktopMain actively works to disallow multiple instances. You can use net.kogics.kojo.lite.Main. That should work fine, other than a couple of limitations (the environment variable KOJO_CLASSPATH and the jars in the ~/.kojo/lite/libk directory will not be on the Kojo instance's classpath). You can ignore the connection exception.</p> <p>Let me know if you run into any problems with this approach.</p> <p>/L</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2266712</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2266712</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2015 16:37:25 +0000</pubDate>
				<wikidot:authorName>Christoph Knabe</wikidot:authorName>				<wikidot:authorUserId>2120917</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Having started instead class <strong>net.kogics.kojo.lite.Main</strong> it seems to work. Is this the recommended way?<br /> But still issues a message about connection error.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2266687</guid>
				<title>Re: Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2266687</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2015 15:58:57 +0000</pubDate>
				<wikidot:authorName>Christoph Knabe</wikidot:authorName>				<wikidot:authorUserId>2120917</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Having compiled a batch file to start the class <strong>net.kogics.kojo.lite.DesktopMain</strong> directly I get some more detailed message:</p> <p>C:\Program Files (x86)\Kojo2\lib&gt;java -cp ;AppleJavaExtensions.jar;autocomplete.jar;docking-frames-common.jar;docking-frames-core.jar;geogebra.jar;geogebra_algo<br /> s.jar;geogebra_cas.jar;geogebra_export.jar;geogebra_gui.jar;geogebra_javascript.<br /> jar;geogebra_main.jar;geogebra_properties.jar;group-panel.jar;h2.jar;httpunit.ja<br /> r;image-filters.jar;jdi.jar;jfugue.jar;jl1.0.1.jar;jlatexmath.jar;js-1.6R5.jar;j<br /> ssc.jar;jtidy-4aug2000r7-dev.jar;jts.jar;kojo2.jar;piccolo2d-core.jar;piccolo2d-<br /> extras.jar;rithica.jar;rstaui.jar;rsyntaxtextarea.jar;scala-actors.jar;scala-com<br /> piler.jar;scala-library.jar;scala-parser-combinators.jar;scala-reflect.jar;scala<br /> -swing.jar;scala-xml.jar;scalariform.jar;table-layout.jar net.kogics.kojo.lite.D<br /> esktopMain<br /> [INFO] Running &gt; first Kojo instance with args: []<br /> [INFO] Connecting (via RMI) with args: [] to already running Kojo instance<br /> [INFO] Kojo Launcher Done.</p> <p>Is there perhaps a command line option for Kojo to avoid connecting to an already running instance?<br /> In our lab all students have their own account, but as they are running on the same server there could be a port conflict.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1166057#post-2266646</guid>
				<title>Cannot run multiple Kojo instances on Windows server</title>
				<link>http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server#post-2266646</link>
				<description></description>
				<pubDate>Wed, 08 Apr 2015 14:59:16 +0000</pubDate>
				<wikidot:authorName>Christoph Knabe</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hi Lalit,</p> <p>we have a Windows Terminal Server at Beuth University of Applied Sciences. Students log into it from client computers.<br /> Only the first one starting Kojo by the Start menu succeeds. For all subsequent trials we only see a second-lasting hourglass, which diappears without a message. After exiting the first Kojo instance, another instance can be started.<br /> As we do not know this behavior from other Java applications we suppose the little kojo.exe to be guilty.<br /> In the Kojo2\bin directory there is a shell script for starting Kojo. It collects all .jar files from Kojo2/lib.<br /> Do you have an equivalent script as Windows batch file for trying a workaround?<br /> Or how could we diagnose, why only the first Kojo instance can start?</p> <p>Thank you very much,<br /> Christoph</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1166057/cannot-run-multiple-kojo-instances-on-windows-server">Cannot run multiple Kojo instances on Windows server</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-383980#post-2236841</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-383980/contributing-stories#post-2236841</link>
				<description></description>
				<pubDate>Sat, 21 Feb 2015 00:08:39 +0000</pubDate>
				<wikidot:authorName>Pharmk957</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Very nice site!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-57764">Hidden / Per page discussions</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-383980/contributing-stories">Contributing Stories</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-383980#post-2234990</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-383980/contributing-stories#post-2234990</link>
				<description></description>
				<pubDate>Wed, 18 Feb 2015 11:49:47 +0000</pubDate>
				<wikidot:authorName>Pharma49</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Very nice site!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-57764">Hidden / Per page discussions</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-383980/contributing-stories">Contributing Stories</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1084939#post-2211073</guid>
				<title>Re: Where to put new sprites?</title>
				<link>http://kogics.wikidot.com/forum/t-1084939/where-to-put-new-sprites#post-2211073</link>
				<description></description>
				<pubDate>Mon, 19 Jan 2015 15:19:50 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You can put them anywhere, and access them using absolute or relative paths. This link has more info: <a href="http://wiki.kogics.net/sf:media-notes">http://wiki.kogics.net/sf:media-notes</a></p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1084939/where-to-put-new-sprites">Where to put new sprites?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1084939#post-2211057</guid>
				<title>Where to put new sprites?</title>
				<link>http://kogics.wikidot.com/forum/t-1084939/where-to-put-new-sprites#post-2211057</link>
				<description></description>
				<pubDate>Mon, 19 Jan 2015 14:48:45 +0000</pubDate>
				<wikidot:authorName>Markus Stoor</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>If i want to create my own sprites and my own sounds, where do I put them to be able to use them?</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1084939/where-to-put-new-sprites">Where to put new sprites?</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-2181116</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-2181116</link>
				<description></description>
				<pubDate>Tue, 16 Dec 2014 03:51:04 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Good to know its working for you now. Thanks for pointing out the old link (I have fixed it).</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-2180800</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-2180800</link>
				<description></description>
				<pubDate>Mon, 15 Dec 2014 19:21:19 +0000</pubDate>
				<wikidot:authorName>Leanh</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hey cool, it's done well, thank you so much (y) i really appreciate your help :)<br /> by the way, here's the link from which i downloaded kojo:<br /> <a href="http://wiki.kogics.net/sf:kojo-download">http://wiki.kogics.net/sf:kojo-download</a></p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-2179406</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-2179406</link>
				<description></description>
				<pubDate>Sun, 14 Dec 2014 09:09:35 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>That's a very old version of Kojo. Please get the latest version (2.4.03) from here:<br /> <a href="http://www.kogics.net/kojo-download">http://www.kogics.net/kojo-download</a></p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-2179335</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-2179335</link>
				<description></description>
				<pubDate>Sun, 14 Dec 2014 08:11:14 +0000</pubDate>
				<wikidot:authorName>Leanh</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I dont have any folder named Kojo2. it's &quot;Kojo&quot;. In Kojo/bin i have 2 files, a File which my computer cannot read and an Application. Beta-160710-3 is the version.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1061717#post-2175201</guid>
				<title></title>
				<link>http://kogics.wikidot.com/forum/t-1061717/repl-user-options#post-2175201</link>
				<description></description>
				<pubDate>Tue, 09 Dec 2014 03:54:20 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You have access to the following in Kojo:</p> <p><tt>kojoInterp</tt> - the scala interpreter<br /> <tt>pcompiler</tt> - the scala presentation compiler<br /> <tt>compiler</tt> - the scala compiler</p> <p>You can use these to interpret code, and do reflection etc. These should be used from the default Kojo thread (and not from threads that you create in your script). Kojo also has a builtin <tt>interpret</tt> command that can be used from any thread.</p> <p>All of this is meant to be used only by <em>power</em> users!</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1061717/repl-user-options">repl user options</a>
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://kogics.wikidot.com/forum/t-1062001#post-2175188</guid>
				<title>Re: Cannot run Kojo</title>
				<link>http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo#post-2175188</link>
				<description></description>
				<pubDate>Tue, 09 Dec 2014 03:27:20 +0000</pubDate>
				<wikidot:authorName>lalitp</wikidot:authorName>				<wikidot:authorUserId>66813</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Do the following to troubleshoot the problem:</p> <p>1. Check your Kojo version. The file used to install Kojo should have been <tt>KojoInstall-2.4.03.exe</tt></p> <p>2. Open up a command prompt, go to <tt>C:\Program Files\Kojo2\bin</tt>, and run <tt>kojo.exe</tt>. See what error message you get.</p> <p>Let me know what you find.</p> <br/>Forum category: <a href="http://kogics.wikidot.com/forum/c-109807">Kojo / Support</a><br/>Forum thread: <a href="http://kogics.wikidot.com/forum/t-1062001/cannot-run-kojo">Cannot run Kojo</a>
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>