User tovare - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T01:30:31Zhttp://stackoverflow.com/feeds/user/12677http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1389428/dealing-with-time-periods-such-as-5-minutes-and-30-seconds-in-r1Dealing with time-periods such as 5 minutes and 30 seconds in Rtovare2009-09-07T13:27:53Z2009-09-15T18:49:53Z
<p>Hi,</p>
<p>Is there a good way to deal with time periods such as 05:30 (5 minutes, 30 seconds) in R?</p>
<p>Alternatively what's the fastest way to convert it into an integer with just seconds?</p>
<p>I can only convert to dates and can't really find a data type for time.</p>
<p>I'm using R with zoo.</p>
<p>Thanks a lot ! </p>
http://stackoverflow.com/questions/495744/how-do-i-deal-with-time-intervals-like-0800-08152How do i deal with time intervals like 08:00-08:15tovare2009-01-30T14:48:19Z2009-08-03T05:39:57Z
<p>Hi,</p>
<p>I would like to import a time-series where the first field indicates a period:</p>
<pre><code>08:00-08:15
08:15-08:30
08:30-08:45
</code></pre>
<p>Does R have any features to do this neatly?</p>
<p>Thanks!</p>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>The most promising solution I found, as suggested by Godeke was the cron package and using substring() to extract the start of the interval.</p>
<p>I'm still working on related issues, so I'll update with the solution when I get there.</p>
http://stackoverflow.com/questions/476342/converting-a-localized-date-of-the-form-12-okt-20071Converting a localized date of the form 12-okt-2007tovare2009-01-24T17:09:29Z2009-07-23T22:59:23Z
<p>Hi,</p>
<p>I have imported a time series with dates of the following format:</p>
<pre><code> test = c("11-Feb-01","12-Feb-01","01-Mai-08")
</code></pre>
<p>This yields:</p>
<pre><code>> as.Date(test, "%d-%b-%y")
[1] NA NA "2008-05-01"
</code></pre>
<p>Since, May was translated it obviously takes locale into account.</p>
<p>According to the docs, the %b should be the abbreviated month name, but I guess there's might be some issue there.</p>
<p>How would I go about fixing this?</p>
<p>I'm running R under Linux t2.6.27-9-generic #1 SMP</p>
<p><hr /></p>
<p>Update: Digging a bit deeper i find that the issue is in the LC_TIME definition, where the appropriate abbrivations are of the form:</p>
<pre><code>"jan.","feb.","mars", "apr", "mai", "juni", "juli", "aug.","sep.","okt.","nov.", "des."
</code></pre>
<p>while my data contains:</p>
<pre><code>"Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"
</code></pre>
<p>I guess I could consider pre-processing the data, but a smooth way of doing this in R would be most welcome.</p>
<p><hr /></p>
<p>This works sort-of, but not so elegant:</p>
<pre><code>> as.Date(gsub("Feb","feb.",test), "%d-%b-%y")
[1] "2001-02-11" "2008-02-12" "2008-05-01"
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/509595/csv-file-with-multiple-time-series1csv file with multiple time-seriestovare2009-02-04T00:23:09Z2009-07-23T22:58:34Z
<p>Hi</p>
<p>I've imported a csv file with lots of columns and sections of data.</p>
<pre><code>v <- read.csv2("200109.csv", header=TRUE, sep=",", skip="6", na.strings=c(""))
</code></pre>
<p>The layout of the file is something like this:</p>
<pre><code>Dataset1
time, data, .....
0 0
0 <NA>
0 0
Dataset2
time, data, .....
00:00 0
0 <NA>
0 0
</code></pre>
<p>(The headers of the different datasets is exactly the same.</p>
<p>Now, I can plot the first dataset with:</p>
<pre><code>plot(as.numeric(as.character(v$Calls.served.by.agent[1:30])), type="l")
</code></pre>
<p>I am curious if there is a better way to:</p>
<ol>
<li><p>Get all the numbers read as numbers, without having to convert.</p></li>
<li><p>Address the different datasets in the file, in some meaningfull way.</p></li>
</ol>
<p>Any hints would be appreciated. Thank you.</p>
<p><hr /></p>
<p>Status update:</p>
<p>I haven't really found a good solution yet in R, but I've started writing a script in Lua to seperate each individual time-series into a seperate file. I'm leaving this open for now, because I'm curious how well R will deal with all these files. I'll get 8 files per day.</p>
http://stackoverflow.com/questions/81260/java-easiest-way-to-merge-a-release-into-one-jar-file13Java: Easiest way to merge a release into one jar-filetovare2008-09-17T08:54:50Z2009-07-09T10:37:29Z
<p>Hi,</p>
<p>I wonder if someone knows of a tool or script which easily merges a bunch of jar-files into one .jar. A bonus would be to easily set the main-file manifest and make it executable.</p>
<p>The concrete case is a java restructured text tool:
<a href="http://jrst.labs.libre-entreprise.org/en/user/functionality.html" rel="nofollow">http://jrst.labs.libre-entreprise.org/en/user/functionality.html</a></p>
<p>I would like to run it with something like</p>
<pre>
java -jar rst.jar
</pre>
<p>As far as I can tell it no dependencies which indicates that it shouldn't be an easy single-file tool, but the downloaded zip-file contains a lot of libs.</p>
<pre>
0 11-30-07 10:01 jrst-0.8.1/
922 11-30-07 09:53 jrst-0.8.1/jrst.bat
898 11-30-07 09:53 jrst-0.8.1/jrst.sh
2675 11-30-07 09:42 jrst-0.8.1/readmeEN.txt
108821 11-30-07 09:59 jrst-0.8.1/jrst-0.8.1.jar
2675 11-30-07 09:42 jrst-0.8.1/readme.txt
0 11-30-07 10:01 jrst-0.8.1/lib/
81508 11-30-07 09:49 jrst-0.8.1/lib/batik-util-1.6-1.jar
2450757 11-30-07 09:49 jrst-0.8.1/lib/icu4j-2.6.1.jar
559366 11-30-07 09:49 jrst-0.8.1/lib/commons-collections-3.1.jar
83613 11-30-07 09:49 jrst-0.8.1/lib/commons-io-1.3.1.jar
207723 11-30-07 09:49 jrst-0.8.1/lib/commons-lang-2.1.jar
52915 11-30-07 09:49 jrst-0.8.1/lib/commons-logging-1.1.jar
260172 11-30-07 09:49 jrst-0.8.1/lib/commons-primitives-1.0.jar
313898 11-30-07 09:49 jrst-0.8.1/lib/dom4j-1.6.1.jar
1994150 11-30-07 09:49 jrst-0.8.1/lib/fop-0.93-jdk15.jar
55147 11-30-07 09:49 jrst-0.8.1/lib/activation-1.0.2.jar
355030 11-30-07 09:49 jrst-0.8.1/lib/mail-1.3.3.jar
77977 11-30-07 09:49 jrst-0.8.1/lib/servlet-api-2.3.jar
226915 11-30-07 09:49 jrst-0.8.1/lib/jaxen-1.1.1.jar
153253 11-30-07 09:49 jrst-0.8.1/lib/jdom-1.0.jar
50789 11-30-07 09:49 jrst-0.8.1/lib/jewelcli-0.41.jar
324952 11-30-07 09:49 jrst-0.8.1/lib/looks-1.2.2.jar
121070 11-30-07 09:49 jrst-0.8.1/lib/junit-3.8.1.jar
358085 11-30-07 09:49 jrst-0.8.1/lib/log4j-1.2.12.jar
72150 11-30-07 09:49 jrst-0.8.1/lib/logkit-1.0.1.jar
342897 11-30-07 09:49 jrst-0.8.1/lib/lutinwidget-0.9.jar
2160934 11-30-07 09:49 jrst-0.8.1/lib/docbook-xsl-nwalsh-1.71.1.jar
301249 11-30-07 09:49 jrst-0.8.1/lib/xmlgraphics-commons-1.1.jar
68610 11-30-07 09:49 jrst-0.8.1/lib/sdoc-0.5.0-beta.jar
3149655 11-30-07 09:49 jrst-0.8.1/lib/xalan-2.6.0.jar
1010675 11-30-07 09:49 jrst-0.8.1/lib/xercesImpl-2.6.2.jar
194205 11-30-07 09:49 jrst-0.8.1/lib/xml-apis-1.3.02.jar
78440 11-30-07 09:49 jrst-0.8.1/lib/xmlParserAPIs-2.0.2.jar
86249 11-30-07 09:49 jrst-0.8.1/lib/xmlunit-1.1.jar
108874 11-30-07 09:49 jrst-0.8.1/lib/xom-1.0.jar
63966 11-30-07 09:49 jrst-0.8.1/lib/avalon-framework-4.1.3.jar
138228 11-30-07 09:49 jrst-0.8.1/lib/batik-gui-util-1.6-1.jar
216394 11-30-07 09:49 jrst-0.8.1/lib/l2fprod-common-0.1.jar
121689 11-30-07 09:49 jrst-0.8.1/lib/lutinutil-0.26.jar
76687 11-30-07 09:49 jrst-0.8.1/lib/batik-ext-1.6-1.jar
124724 11-30-07 09:49 jrst-0.8.1/lib/xmlParserAPIs-2.6.2.jar
</pre>
<p>As you can see, it somewhat desirable, not having to dothis manually.</p>
<p>Thank you.</p>
<p><hr /></p>
<p>Thanks for all the answers. So far I've only tried AutoJar and ProGuard so far, both of which was fairly easy to get running. It appears that there's some issue with the constant pool in the jars.</p>
<p>I'll investigate further :-)</p>
<p><hr /></p>
<p>Apparently jrst is slightly broken, so I'll make a go of fixing it. The maven pom.xml was apparently broken too, so I'll have to fix that before fixing jrst ... I feel like a bug-magnet :-)</p>
<p><hr /></p>
<p>I never got around to fixing this application, but i checked out Eclipse's "Runnable JAR export wizard" which is based on fat jar. I found this very easy to use for deploying my own code.</p>
<p>Some of the other excellent suggestions might be better for builds in a non-eclipse enviroment, oss probably should make a nice build using ant. (Maven, so far has just given me pain, but others love it)</p>
<p>Thanks all.</p>
http://stackoverflow.com/questions/504562/how-would-you-use-design-patterns-to-educate-and-share-design-experiences/504970#5049700Answer by tovare for How would you use design patterns to educate and share design experiences?tovare2009-02-02T21:19:27Z2009-02-02T21:19:27Z<p>There's a ton of patterns in C-software, but the 'patterns' developed with Smalltalk in mind probably won't make that much sense.</p>
<p>The most basic pattern teached in introductory CS classes is the following:</p>
<pre><code>input data
process data
output data
</code></pre>
<p>You can make ton's of apps cleanly by following that master-plan. Most discrete simulation applications, games and strategic simulations can also be patternized.</p>
<p>Forcing C to be OO, tends to turn everything into unreadable spaghetti-code with sluggish performance.</p>
<p>Before the OO hype, you had lots of good thinking around encapsulation and modularity. Use that as a basis for your work instead of the Patterns / OO related material.</p>
http://stackoverflow.com/questions/497658/ramifications-of-using-a-css-stylesheet-under-the-gpl/503478#5034781Answer by tovare for Ramifications of using a CSS stylesheet under the GPL?tovare2009-02-02T15:01:31Z2009-02-02T15:01:31Z<p>In terms of the question from an academic/legal perspective (not a practical one).</p>
<p>You really need to talk to an academic legal person. Many GPL-related issues doesn't have a percedence in court, so some bordler-line issues might me anyones guess.</p>
<p>The Free Software Foundation has on-staff lawyers who advice on GPL related issues.</p>
<p>You can find them here: <a href="http://www.fsf.org/" rel="nofollow">http://www.fsf.org/</a></p>
<p>You can forward your question to: licensing@fsf.org</p>
http://stackoverflow.com/questions/497658/ramifications-of-using-a-css-stylesheet-under-the-gpl/498906#4989060Answer by tovare for Ramifications of using a CSS stylesheet under the GPL?tovare2009-01-31T14:32:53Z2009-01-31T14:32:53Z<p>As a rule of thumb, don't use GPL'ed code or material in closed apps, unless there's a specific licence exception or permission allowing linkage.</p>
<p>If the CSS is GPL the author probably wanted it to be used solely for free software.</p>
<p>Just make your own CSS or ask the author for permission. That way you don't need any lawyers to resolve things for you.</p>
http://stackoverflow.com/questions/481209/beautiful-charting-graphing-scientific-plotting/481551#4815510Answer by tovare for Beautiful charting/graphing/scientific plottingtovare2009-01-26T21:59:15Z2009-01-26T21:59:15Z<p>The chars in Open Office 3 can be configured to look exceptionally good, altough the default settings when you make a chart is not that impressive.</p>
<p>All the API's are open so you can dynamicly create all sorts of documents programmaticly.</p>
<p>Tasty error bars:</p>
<p><a href="http://wiki.services.openoffice.org/wiki/Chart2/Features3.0" rel="nofollow">http://wiki.services.openoffice.org/wiki/Chart2/Features3.0</a></p>
<p>More examples:</p>
<p><a href="http://wiki.services.openoffice.org/wiki/Chart2/ChartTypes" rel="nofollow">http://wiki.services.openoffice.org/wiki/Chart2/ChartTypes</a></p>
http://stackoverflow.com/questions/481335/calculating-persons-time-zone-gmt-offset-based-on-phone-number/481390#4813900Answer by tovare for Calculating person's time zone (GMT offset) based on phone number?tovare2009-01-26T21:18:37Z2009-01-26T21:18:37Z<p>Some nations are easy, since they are in a single time-zone. Look at Europe and add millions of people by just using the internation dialing code. +47 for Norway etc.</p>
<p>Phone-number allocations are usually done by a national telecom authority, so you could probably get the information for free.</p>
<p>As you allready know this would only take into account default-timezone, since they might be anywhere on the planet at the time. Also number-allocation might not distingish at all between timezones, so the approach is buggy but potentially usefull to provide default settings.</p>
<p>Regards</p>
http://stackoverflow.com/questions/476342/converting-a-localized-date-of-the-form-12-okt-2007/476820#4768201Answer by tovare for Converting a localized date of the form 12-okt-2007tovare2009-01-24T22:47:41Z2009-01-24T22:47:41Z<p>The closest thing I've found to a solution is to make multiple iterations over the data to replace the names of the months with something that can be parsed.</p>
<p>I'm not sure if this is the best solution.</p>
<pre><code>setwd("/home/tovare/Data")
v <- read.csv2("valuta_dag.sdv",
na.strings = c("NA","ND"),
header = TRUE, sep=";", skip=2)
v$Dato <- gsub("Jan","01",v$Dato)
v$Dato <- gsub("Feb","02",v$Dato)
v$Dato <- gsub("Mar","03",v$Dato)
v$Dato <- gsub("Apr","04",v$Dato)
v$Dato <- gsub("Mai","05",v$Dato)
v$Dato <- gsub("Jun","06",v$Dato)
v$Dato <- gsub("Jul","07",v$Dato)
v$Dato <- gsub("Aug","08",v$Dato)
v$Dato <- gsub("Sep","09",v$Dato)
v$Dato <- gsub("Okt","10",v$Dato)
v$Dato <- gsub("Nov","11",v$Dato)
v$Dato <- gsub("Des","12",v$Dato)
v$Dato <- as.Date(v$Dato,"%d-%m-%y")
</code></pre>
http://stackoverflow.com/questions/383757/ok-programming-language-from-usb-stick-with-no-installation7OK Programming language from USB stick with no installationtovare2008-12-20T21:26:58Z2009-01-16T18:54:05Z
<p>I'm looking for a compiler or interpreter for a language with basic math support and File IO which can be executed directly from a memorystick in either Linux or Windows. Built in functionality for basic datastructures and sorting/searching would be a plus.</p>
<p>(I've read about movable python, but it only supports windows)</p>
<p>Thank you</p>
http://stackoverflow.com/questions/237914/redirectstandardoutput-is-buffering-lines-instead-of-being-instantaneous/237956#2379560Answer by tovare for RedirectStandardOutput is buffering lines instead of being instantaneous?tovare2008-10-26T12:27:48Z2008-10-26T12:27:48Z<p>In most languages and operating systems the standard stream is usually buffered, but the error stream is not.</p>
<p>Try using:
<code>
System.Console.Error
</code></p>
http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/202950#20295056Answer by tovare for Is there a human readable programming language?tovare2008-10-14T21:38:31Z2008-10-14T21:38:31Z<p><strong>Inform 7</strong></p>
<p>Inform 7 is perhaps the language I feel is most appropriately designed in a human language fashion. It is quite application specific for writing adventure games.</p>
<p>It is based on rule-based semantics, where you write a lot defining rules describing the relationship between objects and their location. For instance, the section below is an Inform 7 program:</p>
<pre><code>
"Hello World" by I.F. Author
The story headline is "An Interactive Example".
The Living Room is a room. "A comfortably furnished living room."
The Kitchen is north of the Living Room.
The Front Door is south of the Living Room.
The Front Door is a door. The Front Door is closed. The Front Door is locked.
The insurance salesman is a man in the Living Room.
"An insurance salesman in a tacky polyester suit. He seems eager to speak to you."
Understand "man" as the insurance salesman.
A briefcase is carried by the insurance salesman.
The description is "A slightly worn, black briefcase."
Understand "case" as the briefcase.
The insurance paperwork is in the briefcase.
The description is "Page after page of small legalese." Understand "papers"
or "documents" or "forms" as the paperwork.
Instead of listening to the insurance salesman:
say "The salesman bores you with a discussion of life insurance policies. From his briefcase he pulls some paperwork which he hands to you.";
move the insurance paperwork to the player.
</code></pre>
<p>Example cited from WikiPedia
<a href="http://en.wikipedia.org/wiki/Inform" rel="nofollow">http://en.wikipedia.org/wiki/Inform</a></p>
http://stackoverflow.com/questions/118401/how-to-prevent-multiple-classes-for-the-same-business-object/118479#1184792Answer by tovare for How to prevent multiple classes for the same business object?tovare2008-09-23T00:48:29Z2008-09-23T00:48:29Z<p><strong>The façade pattern.</strong></p>
<p>I think your approach, creating a façade pattern to abstract the complexities with multiple datasources is often appropriate, and will make your code easy to understand. </p>
<p>Care should be taken to create too many layers of abstractions, because the level of indirection will ruin the initial attempt at making the code easier to read. Especially, if you feel you just write classes to match what you've done in other places. For intance if you have a myLoanView, doesn't necessarily you need to create a myView for every single dialogue in the system. Take 10-steps back from the code, and maybe make a façade which is a reusable and intuitive abstraction, you can use in several places.</p>
<p>Feel free to elaborate on the exact nature of your challenge.</p>
http://stackoverflow.com/questions/112234/sorting-matched-arrays-in-java/118259#1182591Answer by tovare for Sorting matched arrays in Javatovare2008-09-22T23:44:16Z2008-09-22T23:57:52Z<p>An example illustrating using a third index array. Not sure if this is the best implementation.</p>
<p><code><pre><br />
import java.util.*;</p>
<pre><code>public class Sort {
private static void printTable(String caption, Integer[] numbers,
Integer[] colors, Integer[] sortOrder){
System.out.println(caption+
"\nNo Num Color"+
"\n----------------");
for(int i=0;i<sortOrder.length;i++){
System.out.printf("%x %d %d\n",
i,numbers[sortOrder[i]],colors[sortOrder[i]]);
}
}
public static void main(String[] args) {
final Integer[] numbers = {1,4,3,4,2,6};
final Integer[] colors = {0x50,0x34,0x00,0xfe,0xff,0xff};
Integer[] sortOrder = new Integer[numbers.length];
// Create index array.
for(int i=0; i<sortOrder.length; i++){
sortOrder[i] = i;
}
printTable("\nNot sorted",numbers, colors, sortOrder);
Arrays.sort(sortOrder,new Comparator<Integer>() {
public int compare(Integer a, Integer b){
return numbers[b]-numbers[a];
}});
printTable("\nSorted by numbers",numbers, colors, sortOrder);
Arrays.sort(sortOrder,new Comparator<Integer>() {
public int compare(Integer a, Integer b){
return colors[b]-colors[a];
}});
printTable("\nSorted by colors",numbers, colors, sortOrder);
}
}
</code></pre>
<p></pre></code></p>
<p>The output should look like this:</p>
<pre>
Not sorted
No Num Color
----------------
0 1 80
1 4 52
2 3 0
3 4 254
4 2 255
5 6 255
Sorted by numbers
No Num Color
----------------
0 6 255
1 4 52
2 4 254
3 3 0
4 2 255
5 1 80
Sorted by colors
No Num Color
----------------
0 6 255
1 2 255
2 4 254
3 1 80
4 4 52
5 3 0
</pre>
http://stackoverflow.com/questions/112234/sorting-matched-arrays-in-java/112259#1122595Answer by tovare for Sorting matched arrays in Javatovare2008-09-21T21:43:49Z2008-09-21T21:43:49Z<p>You could use sort() with a custom comparator if you kept a third array with the index, and sorted on that, leaving the data intact.</p>
http://stackoverflow.com/questions/81346/most-efficient-way-to-increment-a-map-value-in-java/81417#81417-2Answer by tovare for Most efficient way to increment a Map value in Javatovare2008-09-17T09:19:50Z2008-09-21T21:28:46Z<p>Hi,</p>
<p>There are a couple of approaches:</p>
<ol>
<li><p>Use a Bag alorithm like the sets contained in Google Collections.</p></li>
<li><p>Create mutable container which you can use in the Map:</p></li>
</ol>
<pre>
<code>
class My{
String word;
int count;
}
</code>
</pre>
<p>And use put("word", new My("Word") ); Then you can check if it exists and increment when adding.</p>
<p>Avoid rolling your own solution using lists, because if you get innerloop searching and sorting, your performance will stink. The first HashMap solution is actually quite fast, but a proper like that found in Google Collections is probably better.</p>
<p>Counting words using Google Collections, looks something like this:</p>
<pre>
<code>
HashMultiset s = new HashMultiset();
s.add("word");
s.add("word");
System.out.println(""+s.count("word") );
</code>
</pre>
<p>Using the HashMultiset is quite elegent, because a bag-algorithm is just what you need when counting words.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/98010#980103Answer by tovare for Learning to write a compilertovare2008-09-18T23:31:14Z2008-09-18T23:36:55Z<p>There's a lot of good answers here, so i thought I'd just add one more to the list:</p>
<p>I got a book called Project Oberon more than a decade ago, which has some very well written text on the compiler. The book really stands out in the sense that the source and explanations is very hands on and readable. The complete text (the 2005 edition) has been made available in pdf, so you can download right now. The compiler is discussed in chapter 12:</p>
<p><a href="http://www-old.oberon.ethz.ch/WirthPubl/ProjectOberon.pdf" rel="nofollow">http://www-old.oberon.ethz.ch/WirthPubl/ProjectOberon.pdf</a></p>
<p>Niklaus Wirth, Jürg Gutknecht</p>
<p>(The treatment is not as extensive as his book on compilers)</p>
<p>I've read several books on compilers, and i can second the dragon book, time spent on this book is very worthwhile.</p>
http://stackoverflow.com/questions/93049/are-java-6s-performance-improvements-in-the-jdk-jvm-or-both/93132#931321Answer by tovare for Are Java 6's performance improvements in the JDK, JVM, or both?tovare2008-09-18T14:38:26Z2008-09-18T14:38:26Z<p>Hi</p>
<p>I have not heard about improvements in the compiler, but extensive information has been published on the runtime performance improvements.</p>
<p><strong>Migration guide:</strong></p>
<p>[<a href="http://java.sun.com/javase/6/webnotes/adoption/adoptionguide.html" rel="nofollow">http://java.sun.com/javase/6/webnotes/adoption/adoptionguide.html</a>]</p>
<p><strong>Performance whitepaper:</strong></p>
<p>[<a href="http://java.sun.com/performance/reference/whitepapers/6_performance.html" rel="nofollow">http://java.sun.com/performance/reference/whitepapers/6_performance.html</a>]</p>
http://stackoverflow.com/questions/85993/i-need-an-algorithm-for-rendering-soft-paint-brush-strokes/86514#865141Answer by tovare for I need an algorithm for rendering soft paint brush strokes.tovare2008-09-17T19:09:58Z2008-09-17T19:09:58Z<p>I think maybe you're looking for a spline algorithm.</p>
<p>Here is a spline tutorial, which you might find helpfull:</p>
<p>[<a href="http://www.doc.ic.ac.uk/~dfg/AndysSplineTutorial/index.html" rel="nofollow">http://www.doc.ic.ac.uk/~dfg/AndysSplineTutorial/index.html</a>]</p>
<p>The subject is also covered in most books on graphics programming.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/73580/how-do-i-send-an-smtp-message-from-java/73649#736495Answer by tovare for How do I send an SMTP Message from Java?tovare2008-09-16T15:34:30Z2008-09-17T14:05:57Z<p>Here's an example for Gmail smtp:</p>
<p><a href="http://tovare.com/articles/learnhowtosendemailviagmailfromjavain120seconds/" rel="nofollow">http://tovare.com/articles/learnhowtosendemailviagmailfromjavain120seconds/</a></p>
<pre><code>/*
*
*/
import java.io.*;
import java.net.InetAddress;
import java.util.Properties;
import java.util.Date;
import javax.mail.*;
import javax.mail.internet.*;
import com.sun.mail.smtp.*;
public class Distribution {
public static void main(String args[]) throws Exception {
Properties props = System.getProperties();
props.put("mail.smtps.host","smtp.gmail.com");
props.put("mail.smtps.auth","true");
Session session = Session.getInstance(props, null);
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress("mail@tovare.com"));;
msg.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("tov.are.jacobsen@iss.no", false));
msg.setSubject("Heisann "+System.currentTimeMillis());
msg.setText("Med vennlig hilsennTov Are Jacobsen");
msg.setHeader("X-Mailer", "Tov Are's program");
msg.setSentDate(new Date());
SMTPTransport t =
(SMTPTransport)session.getTransport("smtps");
t.connect("smtp.gmail.com", "admin@tovare.com", "<insert password here>");
t.sendMessage(msg, msg.getAllRecipients());
System.out.println("Response: " + t.getLastServerResponse());
t.close();
}
}
</code></pre>
<p>Now, do it this way only if you would like to keep your project dependencies to a minimum, otherwise i can warmly recommend using classes from apache</p>
<p><a href="http://commons.apache.org/email/" rel="nofollow">http://commons.apache.org/email/</a> </p>
<p>Regards</p>
<p>Tov Are Jacobsen</p>
http://stackoverflow.com/questions/77507/what-are-your-favourite-zx-spectrum-development-tools/77864#778641Answer by tovare for What are your favourite ZX Spectrum development tools?tovare2008-09-16T22:18:14Z2008-09-16T22:18:14Z<p>Just programming in BASIC, the commands are right there on those rubbery keys. Now if only PC's could have key-legends with while, case, switch etc. on them :-)</p>
http://stackoverflow.com/questions/73781/sending-mail-via-sendmail-from-python/73807#738071Answer by tovare for Sending mail via sendmail from pythontovare2008-09-16T15:49:06Z2008-09-16T15:49:06Z<p>It's quite common to just use the sendmail command from Python using os.popen</p>
<p>Personally, for scripts i didn't write myself, I thin just using the smtp protocol is better, since it wouldn't require installing say an sendmail clone to run on windows.</p>
<p><a href="http://docs.python.org/lib/module-smtplib.html" rel="nofollow">http://docs.python.org/lib/module-smtplib.html</a></p>
http://stackoverflow.com/questions/495744/how-do-i-deal-with-time-intervals-like-0800-0815/495862#495862Comment by tovare on How do i deal with time intervals like 08:00-08:15tovare2009-09-07T13:31:32Z2009-09-07T13:31:32Zzoo was easy :)http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/529980#529980Comment by tovare on Are there any famous one-man-army programmers?tovare2009-02-09T21:54:00Z2009-02-09T21:54:00ZThe Morpheus diary: <a href="http://www.zzap64.co.uk/mentalprocre.html" rel="nofollow">zzap64.co.uk/mentalprocre.html</a>http://stackoverflow.com/questions/497658/ramifications-of-using-a-css-stylesheet-under-the-gpl/498854#498854Comment by tovare on Ramifications of using a CSS stylesheet under the GPL?tovare2009-02-02T19:48:38Z2009-02-02T19:48:38ZCSS is not necessarily basic, considering the capability of various platforms, flexibility of use etc. You can write a CRUD app, much faster than a really good CSS.http://stackoverflow.com/questions/497658/ramifications-of-using-a-css-stylesheet-under-the-gpl/497675#497675Comment by tovare on Ramifications of using a CSS stylesheet under the GPL?tovare2009-02-02T18:40:02Z2009-02-02T18:40:02ZI used a set of icons licenced as GPL once.http://stackoverflow.com/questions/383757/ok-programming-language-from-usb-stick-with-no-installation/446111#446111Comment by tovare on OK Programming language from USB stick with no installationtovare2009-01-31T01:58:18Z2009-01-31T01:58:18ZLooks like a fun BASIC implementation, it appears to require installation.http://stackoverflow.com/questions/207512/staff-rostering-algorithms/237261#237261Comment by tovare on Staff Rostering algorithmstovare2009-01-30T10:43:56Z2009-01-30T10:43:56ZYeah, as penalty you need to find some good GA sample-code and post the link ;-)http://stackoverflow.com/questions/207512/staff-rostering-algorithms/237261#237261Comment by tovare on Staff Rostering algorithmstovare2009-01-28T11:39:06Z2009-01-28T11:39:06Z-1 Although issues schduling algorithms would be relevant to Operation Research, just mentioning OR without elaborating is not an answer. It's like saying Why not use AI, mathematics or alorithmshttp://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/212910#212910Comment by tovare on What is the strangest programming language you have used?tovare2009-01-25T21:08:33Z2009-01-25T21:08:33ZI liked rexx, i missed better math support in it.http://stackoverflow.com/questions/441198/has-anyone-learned-how-to-program-in-21-days/441225#441225Comment by tovare on Has anyone "learned how to program in 21 days?"tovare2009-01-14T00:32:09Z2009-01-14T00:32:09ZWhen I hit the language ref, and start coding it's easy to try to force Python/Java to become C++.http://stackoverflow.com/questions/441198/has-anyone-learned-how-to-program-in-21-days/441218#441218Comment by tovare on Has anyone "learned how to program in 21 days?"tovare2009-01-14T00:29:51Z2009-01-14T00:29:51ZYes, it's great for familiarizing yourself with a new language. http://stackoverflow.com/questions/383757/ok-programming-language-from-usb-stick-with-no-installation/383878#383878Comment by tovare on OK Programming language from USB stick with no installationtovare2008-12-20T23:38:08Z2008-12-20T23:38:08ZThanks that would work as well. I'll give Lua a shot first though :-)http://stackoverflow.com/questions/383757/ok-programming-language-from-usb-stick-with-no-installation/383806#383806Comment by tovare on OK Programming language from USB stick with no installationtovare2008-12-20T22:32:37Z2008-12-20T22:32:37ZThanks, I didn't know this. I though java required registry access. http://stackoverflow.com/questions/383757/ok-programming-language-from-usb-stick-with-no-installation/383761#383761Comment by tovare on OK Programming language from USB stick with no installationtovare2008-12-20T22:26:35Z2008-12-20T22:26:35ZYes, it is perfect for my requirements :-) Thanks man.http://stackoverflow.com/questions/383757/ok-programming-language-from-usb-stick-with-no-installation/383769#383769Comment by tovare on OK Programming language from USB stick with no installationtovare2008-12-20T22:21:26Z2008-12-20T22:21:26ZThanks for the suggestion.http://stackoverflow.com/questions/383757/ok-programming-language-from-usb-stick-with-no-installation/383802#383802Comment by tovare on OK Programming language from USB stick with no installationtovare2008-12-20T22:20:31Z2008-12-20T22:20:31ZThat would be like creating software capable of running on a memorystick. The use case is write,run and revise my own code anywhere.