User slashmais - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T14:09:17Zhttp://stackoverflow.com/feeds/user/15161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1844734/how-to-do-unittests-in-servlet-applet-scenario1How to do Unittests in Servlet-Applet scenarioslashmais2009-12-04T03:54:55Z2009-12-04T11:15:43Z
<p>How should I create & run unit-tests for a Java/Tomcat Servlet-Applet application?</p>
http://stackoverflow.com/questions/113423/good-secure-backups-developers-at-home23Good Secure Backups Developers at Homeslashmais2008-09-22T06:16:04Z2009-11-13T18:28:05Z
<p>What is a good, secure, method to do backups, for programmers who do research & development at home and cannot afford to lose any work?</p>
<p>Conditions:</p>
<ol>
<li><p>The backups must ALWAYS be within reasonably easy reach.</p></li>
<li><p>Internet connection cannot be guaranteed to be always available.</p></li>
<li><p>The solution must be either FREE or priced within reason, and subject to 2 above.</p></li>
</ol>
<p><hr /></p>
<h2>Status Report</h2>
<p>This is for now only considering free options.</p>
<p>The following <strong>open-source projects</strong> are suggested in the answers (here & elsewhere):</p>
<ul>
<li><a href="http://backuppc.sourceforge.net/" rel="nofollow">BackupPC</a> is a high-performance,
enterprise-grade system for backing
up Linux, WinXX and MacOSX PCs and
laptops to a server's disk.</li>
<li><a href="http://savannah.nongnu.org/projects/storebackup" rel="nofollow">Storebackup</a> is a backup utility
that stores files on other disks.</li>
<li><a href="http://deekayen.net/mybackware" rel="nofollow">mybackware</a>: These scripts were
developed to create SQL dump files
for basic disaster recovery of small
MySQL installations.</li>
<li><a href="http://www.bacula.org/en/" rel="nofollow">Bacula</a> is [...] to manage
backup, recovery, and verification
of computer data across a network of
computers of different kinds. In
technical terms, it is a network
based backup program.</li>
<li><a href="http://www.metatrontech.com/projects/" rel="nofollow">AutoDL 2 and Sec-Bk</a>: AutoDL 2
is a scalable transport independant
automated file transfer system. It
is suitable for uploading files from
a staging server to every server on
a production server farm [...]
Sec-Bk is a set of simple utilities
to securely back up files to a
remote location, even a public
storage location.</li>
<li><a href="http://www.rsnapshot.org/" rel="nofollow">rsnapshot</a> is a filesystem
snapshot utility for making backups
of local and remote systems.</li>
<li><a href="http://schapiro.org/schlomo/projects/rbme.php" rel="nofollow">rbme</a>: Using rsync for backups
[...] you get perpetual incremental
backups that appear as full backups
(for each day) and thus allow easy
restore or further copying to tape
etc.</li>
<li><a href="http://www.nongnu.org/duplicity/" rel="nofollow">Duplicity</a> backs directories by
producing encrypted tar-format
volumes and uploading them to a
remote or local file server. [...]
uses librsync, [for] incremental
archives</li>
</ul>
<p><strong>Other Possibilities:</strong></p>
<p>Using a Distributed Version Control System (DVCS) such as <a href="http://git.or.cz/" rel="nofollow">Git</a>(/<a href="http://www.gnome.org/~newren/eg/" rel="nofollow">Easy Git</a>), <a href="http://bazaar-vcs.org/" rel="nofollow">Bazaar</a>, <a href="http://www.selenic.com/mercurial/wiki/" rel="nofollow">Mercurial</a> answers the need to have the backup available locally. </p>
<p>Use free online storage space as a remote backup, e.g.: compress your work/backup directory and mail it to your gmail account.</p>
http://stackoverflow.com/questions/1486551/how-to-add-class-files-to-new-java-project1How to add class-files to new java projectslashmais2009-09-28T11:23:26Z2009-10-30T14:10:50Z
<p>I'm tasked with converting an existing Java/C++ mixed web-application to pure Java, but I'm hampered by some missing Java sources (.java files) for which only the class-files are available. Fortunately I don't need to change anything in that code, just need to continue calling the methods.</p>
<p>I created a new Java Web Application project (using Netbeans); recreated the applet by copying it's sources in and got it working in a skeletal fashion, with the calls to classes & methods not in the sources commented out, but I am now stuck on how to add the class-files (of the missing sources) to this project.</p>
<p>(I'm new to Java, obviously) Any pointers on how I should proceed will be most welcome.</p>
http://stackoverflow.com/questions/1585012/c-rpc-tutorial/1585506#15855061Answer by slashmais for C++ RPC tutorial?slashmais2009-10-18T17:31:19Z2009-10-18T17:31:19Z<p>Try this:</p>
<p><a href="http://www.cs.cf.ac.uk/Dave/C/node33.html" rel="nofollow">Overview</a></p>
<p><a href="http://technet.microsoft.com/en-us/library/cc759499%28WS.10%29.aspx" rel="nofollow">Technical Reference</a> - also describes what it is & how it works</p>
http://stackoverflow.com/questions/1478513/linux-assembler-error-impossible-constraint-in-asm1Linux assembler error "impossible constraint in ‘asm’"slashmais2009-09-25T17:11:33Z2009-10-17T08:01:55Z
<p>I'm starting with assembler under Linux. I have saved the following code as testasm.c<br>
and compiled it with: gcc testasm.c -otestasm<br>
The compiler replies: "impossible constraint in ‘asm’".</p>
<pre><code>#include <stdio.h>
int main(void)
{
int foo=10,bar=15;
__asm__ __volatile__ ("addl %%ebx,%%eax"
: "=eax"(foo)
: "eax"(foo), "ebx"(bar)
: "eax"
);
printf("foo = %d", foo);
return 0;
}
</code></pre>
<p>How can I resolve this problem?
(I've copied the example from <a href="http://asm.sourceforge.net/articles/linasm.html#InlineASM" rel="nofollow">here</a>.)</p>
<p>Debian Lenny, kernel 2.6.26-2-amd64<br>
gcc version 4.3.2 (Debian 4.3.2-1.1)</p>
<p><strong>Resolution</strong>:<br>
See the accepted answer - it seems the 'modified' clause is not supported any more.</p>
http://stackoverflow.com/questions/1550013/how-to-get-an-applet-in-a-table-row-to-size-dynamically0How to get an Applet in a table-row to size dynamicallyslashmais2009-10-11T06:25:51Z2009-10-11T08:05:39Z
<p>I need to insert an applet into a table-row and get that table-row's height to dynamically resize according to the browser's window size. If I put fixed values for width & height in the td-tag, it shows the applet fine, but I need to be able to resize this according to the client's size capabilities, so using fixed sizes is not the answer.</p>
<p>The snippet below should illustrate where my problem lies:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaAppletTest </title>
</head>
<body bgcolor="#6f6f6f" >
<table border="0" cellspacing="0" cellpadding="0" width="100%" >
<tr valign="top">
<td><img src="images/myheader.jpg" alt="myheader.jpg"></td>
<td><img src="images/mylogo.jpg" alt="mylogo.jpg"></td>
</tr>
<tr >
<td colspan="2" >
<object codetype="application/java"
classid="java:applets.MyTestApplet.class">
<param name="codebase" value="." >
<param name="archive" value="MyTestApplet.jar" >
<param name="code" value="applets.MyTestApplet" >
</object>
</td>
</tr>
</table>
</body>
</html>
</code></pre>
<p>What do I need to do to make the row-dimensions dynamic?</p>
<p>[edit]
jitter's answer indicates a possible solution. I also need to adjust the relevant sizes when the user resizes the window: what event & how do I do that?</p>
http://stackoverflow.com/questions/1535654/crappy-random-number-generator/1535721#15357211Answer by slashmais for Crappy Random Number Generatorslashmais2009-10-08T05:01:54Z2009-10-08T05:01:54Z<p>A way in which you can introduce clustering while continuing to use gcc is to randomly take two of the returned random numbers as the lower & upper brackets for a random number of iterations. Do this a few times and you should get random clustering.</p>
http://stackoverflow.com/questions/1530477/passing-data-from-one-database-to-another-database-table-access-c/1530515#15305151Answer by slashmais for passing data from one database to another database table (Access) (C#)slashmais2009-10-07T09:28:36Z2009-10-07T09:28:36Z<p>You can copy and rename Data.mdb, and then truncate all the tables in Data.mdb. Far easier than trying to copy a table at a time..</p>
http://stackoverflow.com/questions/1520982/to-init-or-to-construct/1521029#15210291Answer by slashmais for To init or to constructslashmais2009-10-05T16:20:32Z2009-10-05T16:20:32Z<p>One case where this may apply is when 'Foo' is a attribute of another class and cannot be fully constructed before the parent-class is done. Only then can 'Foo' be 'filled-in'. </p>
http://stackoverflow.com/questions/1519973/index-out-of-bounds-of-array-error-when-parsing-font-string/1520042#15200420Answer by slashmais for Index out of bounds of array error when parsing font string?slashmais2009-10-05T13:22:07Z2009-10-05T13:55:24Z<p>This regex </p>
<pre><code>(.+?)\n.?\"(.+?)\".?(\d+),\s*(\d+)\n(.+?),(\d+.?\d+)\n?
</code></pre>
<p>will get you what you want.<br>
This regex will also handle multiple descriptions like the sample you gave within one file.</p>
<p>The "out-of-bounds" error is caused by the comma being parsed out of the 'cfont' by the regex.
Like a commenter suggested, use messagebox or similar to print out what your variables actually contain - that will be just standard debug methods.</p>
http://stackoverflow.com/questions/1510221/why-am-i-getting-subscript-out-of-range-when-the-subscript-is-in-the-range/1510261#15102612Answer by slashmais for Why am I getting "subscript out of range" when the subscript IS in the range?slashmais2009-10-02T15:29:58Z2009-10-03T05:45:50Z<p>See AnthonyWJones comment)<br><em>(With VB you can set the base of arrays to start at either 0 or 1 - it should be at or near the top of a module: look for Option Base 1 or Option Base 0.)</em></p>
<p>LBound will always return 0.<em>(You can also use LBound() to check the lower boundary of the array.)</em> <br>
(Just goes to show: don't expect MS to be consistent!)</p>
<p>Although you check that the array-size is >= 1 - which will ensure that arylin(0) is valid, but not necessarily arylin(1). The index is zero-based so if one element exists, it will be at index=0, and index=1 will be out-of-bounds.</p>
<p>You must check that the array-size >= 2 in this case. If you use two entries following each other consistently, then the check must be made for (array-size) mod 2 = 0.</p>
<p>Also make sure what value UBound actually returns. I googled and got contradicting information: <a href="http://www.w3schools.com/VBScript/func%5Fubound.asp" rel="nofollow">this</a> says it returns the 'count' while <a href="http://www.empinstitute.org/caspdoc/html/vbscript%5Fubound%5Ffunction.htm" rel="nofollow">this one</a> says it returns the physical limit (= 'count' -1).</p>
<p>About the 'On Error Resume Next' thing, <a href="http://bytes.com/topic/asp-classic/answers/53760-checking-status-array" rel="nofollow">maybe it should stay there</a> ...</p>
http://stackoverflow.com/questions/1505318/c-implicitly-calling-a-function-when-and-how/1505346#15053466Answer by slashmais for C++ implicitly calling a function When? and How?slashmais2009-10-01T17:34:58Z2009-10-01T17:34:58Z<p>Read <a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">Thinking in C++ by Bruce Eckel</a>. It's an excellent, very readable e-book freely downloadable, and will answer all your questions.</p>
http://stackoverflow.com/questions/1502951/inline-assembly-in-c-dynamic-registers/1502990#15029904Answer by slashmais for Inline assembly in C: Dynamic registersslashmais2009-10-01T09:54:59Z2009-10-01T09:54:59Z<p>Use an enum and switch in the C-code:</p>
<pre><code>typedef enum
{
R_AL,
R_AH,
R_AX,
R_EAX,
...
} REGS;
...
REGS nReg;
...
switch (nReg)
{
case R_AL: __asm { mov al,val } break;
case R_AH: __asm { mov ah,val } break;
case R_AX: __asm { mov ax,val } break;
...
}
</code></pre>
http://stackoverflow.com/questions/1499939/remove-characters-from-a-string-in-c/1500019#15000191Answer by slashmais for Remove characters from a string in Cslashmais2009-09-30T18:54:54Z2009-09-30T19:36:17Z<pre><code>char *s = (char*)strBuffer;
char sClean[strlen(strBuffer) + 1]; /* +1 for null-byte */
/* if above does not work in your compiler, use:
char *sClean = (char*)malloc(sizeof(strBuffer) + 1);
*/
int i=0;
while (*s)
{
sClean[i++]= *s;
if ((*s == '&') && (!strncmp(s, "&amp;", 5)) s += 5;
else s++;
}
sClean[i] = 0;
</code></pre>
http://stackoverflow.com/questions/1499671/debugging-issues-that-work-on-one-server-but-not-another/1499925#14999251Answer by slashmais for Debugging issues that work on one server, but not another?slashmais2009-09-30T18:38:29Z2009-09-30T18:38:29Z<p>Look at:</p>
<ul>
<li>permission settings</li>
<li>config/environment settings</li>
<li>expected installed apps</li>
<li>dependencies</li>
<li>firewall settings</li>
<li>compare with development server & investigate the differences</li>
</ul>
<p>The problem could be caused by a one or more of a wide set of things.<br>
(Also maybe pop the question on SeverFault)</p>
http://stackoverflow.com/questions/1499425/over-simple-database-schema-good-and-bad-points-with-example/1499507#14995071Answer by slashmais for Over Simple Database Schema: Good and Bad points? with exampleslashmais2009-09-30T17:16:56Z2009-09-30T17:22:42Z<p>I think you're beating yourself to death with the content.<br>
If no ER-diagram of the database exists, draw one up - you seem to have a reasonable grasp of the content already, and normalize it.<br>
Using this ERD you should be able to resolve most of the problems you mention above quite easily.</p>
http://stackoverflow.com/questions/1487821/how-can-i-get-an-image-to-stick-to-the-bottom-of-a-div-as-the-height-of-the-div-c/1487854#14878541Answer by slashmais for How can I get an image to stick to the bottom of a div as the height of the div changes?slashmais2009-09-28T15:58:43Z2009-09-28T15:58:43Z<p>A thought: fake it with a borderless table with two rows: the div section in the first row, the image in the second.</p>
http://stackoverflow.com/questions/1481520/clean-x8664-assembly-output-with-gcc/1481559#14815592Answer by slashmais for Clean x86_64 assembly output with gcc?slashmais2009-09-26T16:15:42Z2009-09-26T16:15:42Z<p>You can try placing the code you want to study in a function.</p>
<p>E.g.:</p>
<pre><code>int ftest(void)
{
return 0;
}
int main(void)
{
return ftest();
}
</code></pre>
<p>If you look at the assembly-source for test it will be as clean as you need.</p>
<pre><code>..snip..
test:
.LFB2:
pushq %rbp
.LCFI0:
movq %rsp, %rbp
.LCFI1:
movl $0, %eax
leave
ret
..snip..
</code></pre>
http://stackoverflow.com/questions/1472108/hardware-recognition-in-user-space-linux/1472355#14723550Answer by slashmais for Hardware recognition in user space Linuxslashmais2009-09-24T15:13:00Z2009-09-24T15:21:04Z<p>It is mostly open-source modules that do the hardware detection. You can look at the source of those modules and cobble together your own app. </p>
<p>Look in the <a href="http://tldp.org/" rel="nofollow">Linux Documentation Project</a> for more info.</p>
<p>Whatever modules you analize, they will all initially use the BIOS to find what hardware it detected, so you could also look for info on low-level BIOS information access.</p>
http://stackoverflow.com/questions/1467449/designing-a-vector3d-class/1467500#14675009Answer by slashmais for Designing a Vector3D classslashmais2009-09-23T17:32:50Z2009-09-23T17:41:28Z<p>use </p>
<pre><code>class Vec3D
{
private:
union
{
float m_vVec[3];
struct
{
float m_fX;
float m_fY;
float m_fZ;
};
};
...
}
</code></pre>
<p>this will give you both at no extra cost</p>
http://stackoverflow.com/questions/1467177/given-normal-map-in-world-space-what-is-a-suitable-algorithm-to-find-edges/1467306#14673061Answer by slashmais for Given normal map in world space what is a suitable algorithm to find edges?slashmais2009-09-23T16:55:40Z2009-09-23T16:55:40Z<p>It will depend on how many colors your image contain, and how they merge: sharp edges, dithered, blended,...<br>
Since you say you have the vertex normals I am assuming that you can access the color-information on a single plane.<br>
I have used two techniques with varying success:<br></p>
<ol>
<li>I searched the image for local areas of the same color (RGB) and then used the highest of R, G or B to find the 'edge' - that is where the selected R,G or B is no longer the highest value;</li>
<li>the second method I used is to reduce the image to 16 colors internally, and it is easy to find the outlines in this case.</li>
</ol>
<p>To construct vectors would then depend on how fine you want the granularity of your 'wireframe'-image to be.</p>
http://stackoverflow.com/questions/1428363/what-to-do-as-jr-programmer-if-you-are-totally-stuck-but-restricted-from-communic/1428449#14284492Answer by slashmais for What to do as Jr programmer if you are totally stuck but restricted from communicating with the other devs?slashmais2009-09-15T17:08:21Z2009-09-15T17:08:21Z<p>Go talk to the project-manager and tell him exactly what you have written in your question. (It will count as a positive.) Then ask for some time to be set aside daily or weekly with one or more of the senior developers where you can discuss your coding problems and get some guidance.</p>
<p>In the <em>very</em> remote possibility of the PM reacting negatively, my opinion is that you would then be better off finding a position elsewhere. (Such a negative reaction would point to inexperience/incompetence in the PM, and will most likely have a negative impact on your career.)</p>
http://stackoverflow.com/questions/1428117/linux-ipc-multiple-writers-single-reader/1428228#14282282Answer by slashmais for Linux IPC - Multiple writers, single readerslashmais2009-09-15T16:31:40Z2009-09-15T16:31:40Z<p>A good place to get your feet wet is this <a href="http://www.linuxhowtos.org/C%5FC++/socket.htm" rel="nofollow">sockets tutorial</a>.</p>
<p>You'll then need to bone-up on <a href="http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html" rel="nofollow">threads & mutexes</a> and <a href="http://www.linuxselfhelp.com/HOWTO/C++Programming-HOWTO-18.html" rel="nofollow">here</a>.</p>
<p>With the above you're all set to start playing ;-)</p>
http://stackoverflow.com/questions/1411394/how-to-become-a-faster-programmer/1411456#14114564Answer by slashmais for How to become a "faster" programmer?slashmais2009-09-11T15:04:13Z2009-09-11T15:04:13Z<p>The technique that I use is <a href="http://en.wikipedia.org/wiki/Software%5Fprototyping#Evolutionary%5Fprototyping" rel="nofollow">evolutionary prototyping</a></p>
<p>You can google for more info - but if the need is to produce something quickly, it's about the only way to go. Plus, it has the benefit that when the users says that he likes it, your'e done (... and can start doing the documentation).</p>
http://stackoverflow.com/questions/1388125/java-beginner-web-development-toolkit-environment2Java beginner web-development toolkit/environmentslashmais2009-09-07T08:05:59Z2009-09-10T17:22:07Z
<p>I have been tasked to develop an interactive website using java & mysql: using servlets to retrieve & massage data, applets to do special handling of the data client-side, and to handle requests from the client for different data views.</p>
<p>What would you recommend as an proper general-purpose toolkit/environment for web development using java.</p>
<p>I need to know what to use for the following:</p>
<ul>
<li>Server side (tomcat?/?)</li>
<li>CMS</li>
<li>Editor / IDE</li>
<li>General tools/utilities</li>
<li>Directed (special purpose) tools/utilities</li>
<li>Testing and QA tools/utilities/techniques</li>
<li>Reference material (both on- & off-line)</li>
</ul>
<p><strong>Please evaluate the suggested solution(s) and supply alternatives/improvements/support</strong>.</p>
<p><hr /></p>
<h2>Suggested Java web-development toolkit/environment</h2>
<p>By <a href="http://stackoverflow.com/questions/1388125/java-beginner-web-development-toolkit-environment/1392286#1392286">cdb</a>:</p>
<ul>
<li><em>Server side:</em><br>
Tomcat6</li>
<li><em>CMS:</em><br>
Drupal (not necessary in preliminary phase)</li>
<li><em>Editor/IDE:</em><br>
NetBeans (good for a beginner)</li>
<li><em>General tools:</em><br>
(Almost everything is in NetBeans... go for it later)</li>
<li><em>Directed (special purpose):</em><br>
(Almost everything is in NetBeans... go for it later)</li>
<li><em>Testing and QA:</em><br>
JUNIT and use FireBug (Do manual testing first)</li>
<li><em>Reference material:</em><br>
HeadFirst Series on JSP, JavaScript, etc.<br>
SCRIBD (online)<br>
[<strong>edit</strong>]<br></li>
<li><em>Framework:</em><br>
<a href="http://static.springsource.org/spring/docs/2.5.x/reference/" rel="nofollow">Spring Web MVC 2.5</a> - (<a href="http://stackoverflow.com/questions/1404115/selecting-a-good-framework-for-web-development">this seems to contain most of the other frameworks</a>)</li>
</ul>
<p><hr /></p>
<h2>Options distilled from the answers</h2>
<p><strong><em>Server side</em></strong></p>
<ul>
<li><a href="http://tomcat.apache.org/" rel="nofollow">Apache Tomcat</a> - "HTTP web server environment for Java code to run"</li>
<li><a href="http://www.mortbay.org/jetty/" rel="nofollow">Jetty</a> - "HTTP server, HTTP client and javax.servlet container"</li>
<li><a href="https://glassfish.dev.java.net/" rel="nofollow">Glassfish</a> - application server (based on tomcat + more features)</li>
<li><a href="http://www.jboss.org/jbossas/" rel="nofollow">jboss</a> - application server ("J2EE based application server implemented in 100% Pure Java")</li>
</ul>
<p><strong><em>CMS</em></strong></p>
<ul>
<li><a href="http://drupal.org/" rel="nofollow">Drupal</a></li>
</ul>
<p><strong><em>Editor / IDE</em></strong></p>
<ul>
<li><a href="http://www.eclipse.org/" rel="nofollow">eclipse</a> - IDE</li>
<li><a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a> - IDE</li>
<li><a href="http://www.jetbrains.com/idea/" rel="nofollow">IntelliJ</a> - propriety IDE</li>
</ul>
<p><strong><em>General tools/utilities</em></strong></p>
<ul>
<li><a href="http://maven.apache.org/" rel="nofollow">Maven</a> - ".. a tool that can now be used for building and managing any Java-based project."</li>
<li><a href="http://code.google.com/p/log5j/" rel="nofollow">log5j</a> also <a href="http://sourceforge.net/projects/log5j/" rel="nofollow">here</a>[SourceForge] - "java logging library for Java versions 5 and above"</li>
</ul>
<p><strong><em>Directed (special purpose) tools/utilities</em></strong></p>
<ul>
<li><a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a> - team based "tool and an extensible framework for creating a custom continuous build process"</li>
<li><a href="http://en.wikipedia.org/wiki/Spring%5FFramework" rel="nofollow">Spring Framework</a> (- design)</li>
</ul>
<p><strong><em>Testing and QA tools/utilities/techniques</em></strong></p>
<ul>
<li><a href="http://watij.com/" rel="nofollow">Watij</a> - "Java API created to allow for the automation of web applications"</li>
<li><a href="http://htmlunit.sourceforge.net/" rel="nofollow">HtmlUnit</a> - "It models HTML documents and provides an API that allows you to invoke pages, fill out forms, click links, etc..."</li>
<li><a href="http://getfirebug.com/" rel="nofollow">Firebug</a> - (Firefox) "edit, debug, and monitor CSS, HTML, and JavaScript live in any web page"</li>
<li><a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a> - "Building/testing software projects [...] Monitoring executions of externally-run jobs"</li>
<li><a href="http://livehttpheaders.mozdev.org/" rel="nofollow">LiveHttpHeaders</a> - view & edit http request headers live</li>
<li><a href="http://junit.sourceforge.net/" rel="nofollow">JUnit</a> - "framework to write repeatable tests"</li>
</ul>
<p><strong><em>Reference material (both on- & off-line)</em></strong></p>
<ul>
<li><a href="http://www.alistapart.com/" rel="nofollow">A List Apart</a> - "For people who make websites"</li>
<li>Java - <a href="http://www.mindview.net/Books/TIJ/" rel="nofollow">TiJ</a></li>
</ul>
http://stackoverflow.com/questions/1404115/selecting-a-good-framework-for-web-development2Selecting a good Framework for web-developmentslashmais2009-09-10T08:42:03Z2009-09-10T11:12:51Z
<p>Based the accepted answer to <a href="http://stackoverflow.com/questions/1388125/java-beginner-web-development-toolkit-environment">this question</a> I've setup a NetBeans/tomcat environment.
In testing this setup I'm trying to create a Java Web/Web application, but is stumped by the a choice of frameworks for this test-app. </p>
<p>The choices are:</p>
<ul>
<li>Spring Web MVC 2.5</li>
<li>JavaServer Faces</li>
<li>Struts 1.3.8</li>
<li>Hibernate 3.2.5</li>
</ul>
<p>In my reading-up (googling & SO) and fairly quickly got lost in the woods, so I am considering just picking one and if it doesn't pan out, to later switch/migrate to a different one. Would such an approach be feasible?</p>
<p><hr /></p>
<p>Background on the project</p>
<p>(Must be Java-based due to legacy code)<br>
It uses a self-signed applet to do client-side rendering & interaction;<br>
Servlets retrieve data-sets requested from the client;<br>
Database may be on some remote server, so I intend to use JDBC for accessing it;<br><br>
The legacy system was CORBA (ACE/TAO) based with lots of C++ modules that need to be translated to Java, and the existing Java-modules (fortunately few) that make CORBA-calls need to be changed to use the newly translated Java-modules.</p>
<p>If you can come up with better approach to handle this project, please tell me.</p>
<p>(This project has all the hallmarks of what I like: it is interesting, challenging, and I learn something new)</p>
http://stackoverflow.com/questions/1398034/inline-assembly-jump-error/1398176#13981761Answer by slashmais for Inline Assembly Jump Errorslashmais2009-09-09T07:52:02Z2009-09-09T15:09:40Z<p>You shifted the stack right out from under it - the ip used by ret is now pointing somewhere really wild</p>
<p>[edit]</p>
<p>You still clobber the stack - the same one used by VC. VC pushes more stuff onto the stack than just the return IP. Do a assembler-listing of the source & you'll see.</p>
<p>A possibility is to copy the return-address off the stack before you make the changes, and at end to just jump to where it points.</p>
<p>create a labeled dw to store the address:</p>
<pre><code>_asm {
oldip dd ? ;this is in cs
pop eax ;eip into eax
push eax ;leave stack as found
mov oldip,eax
.
..your stuff
.
jmp far cs:[oldip]
}
</code></pre>
<p>I may be missing something here, but by the looks of your code you are clobbering all the segment values except cs, thereby destroying all access to previously declared variables everywhere, as well as any return address etc placed on the stack by your program ... maybe that's what you want to do, jumping off to code somewhere else, orphaning your current program ... </p>
<p>The above fragment should put you back at the instruction following the call to the function with the _asm stuff, but lord knows what's going to happen then.</p>
http://stackoverflow.com/questions/149746/open-source-analysis-design-tools2Open source Analysis & Design toolsslashmais2008-09-29T17:25:11Z2009-09-08T15:21:25Z
<p>When you move from analysis of the requirements through design, you go through a decomposition/workflow/dataflow/composition/etc process. </p>
<p>I need tools to facilitate this process. </p>
<p>The result of analysis & design would be an implementation design which I can happily document using UML. </p>
<ul>
<li><strong>I cannot use UML for analysis & design: it is a documentation
tool</strong>.</li>
</ul>
<p>What open source analysis and design tools are available?</p>
<p>Which would you recommend?</p>
<p>Examples (commercial, unfortunately), with descriptions of the type of tools I am looking for, can be found on this site: <a href="http://www.volere.co.uk/tools.htm" rel="nofollow"><strong>Volere</strong></a>. The site focusses on the requirements-phase, but most of the tools goes beyond that.</p>
http://stackoverflow.com/questions/149746/open-source-analysis-design-tools/1394620#13946200Answer by slashmais for Open source Analysis & Design toolsslashmais2009-09-08T15:21:25Z2009-09-08T15:21:25Z<h2>MindMaps</h2>
http://stackoverflow.com/questions/140224/reusable-code-class-repositories1Reusable code / class Repositoriesslashmais2008-09-26T15:28:31Z2009-09-08T15:11:28Z
<p>I've got several modules containing functions, classes and templates that I keep in a directory called (hah!) 'reuse'. I know the content reasonably well, so to find a particular class or bit of code doesn't take too long, but it is slowly growing in size and I need some sensible method to store them for easy search & retrieval.</p>
<p>How should I do this?</p>
http://stackoverflow.com/questions/171776/where-is-the-benefit-in-using-the-strategy-pattern/171782#171782Comment by slashmais on Where is the benefit in using the Strategy Pattern?slashmais2009-10-20T05:02:27Z2009-10-20T05:02:27Zjust watched the 'Totally GridBag' bit - I can relate to it. lolhttp://stackoverflow.com/questions/1590503/c-template-programming-question-expected-before-it/1590669#1590669Comment by slashmais on C++ template programming question expected `;' before ‘it’ ?slashmais2009-10-19T19:49:32Z2009-10-19T19:49:32ZThen why is it not immediately clear to anyone who reads the code?
http://stackoverflow.com/questions/1590568/programming-resources-for-non-english-speakersComment by slashmais on Programming Resources for Non-English Speakersslashmais2009-10-19T19:31:10Z2009-10-19T19:31:10ZEnglish just happen to be the de facto standard for IT. Learn it. Chinese may be the language used by the majority of humans, but it is trashed by a repressive regime (who should know that they are responsible for it's stagnation).
http://stackoverflow.com/questions/1585012/c-rpc-tutorialComment by slashmais on C++ RPC tutorial?slashmais2009-10-18T14:42:53Z2009-10-18T14:42:53ZSounds like you may really want to do socket-based comms? Google for "c++ socket client server" - this may help you decide.http://stackoverflow.com/questions/1550013/how-to-get-an-applet-in-a-table-row-to-size-dynamically/1550066#1550066Comment by slashmais on How to get an Applet in a table-row to size dynamicallyslashmais2009-10-11T08:23:43Z2009-10-11T08:23:43ZThanks - exactly what I needed. (Got the table-size fitting nicely in the meantime) :-)http://stackoverflow.com/questions/1550013/how-to-get-an-applet-in-a-table-row-to-size-dynamically/1550066#1550066Comment by slashmais on How to get an Applet in a table-row to size dynamicallyslashmais2009-10-11T07:42:05Z2009-10-11T07:42:05ZAlso: I need to adjust the sizes when the user resizes the window. Is there some kind of event I can use & how? ( I'm new to Java/web development - normally do C++, and let no-one tell you it's easy to pickup Java if you know C++, it is not: Java/web-dev is much more diverse/complex.)http://stackoverflow.com/questions/1550013/how-to-get-an-applet-in-a-table-row-to-size-dynamically/1550066#1550066Comment by slashmais on How to get an Applet in a table-row to size dynamicallyslashmais2009-10-11T07:29:58Z2009-10-11T07:29:58ZThanks, your script works 100% (on firefox). Now I need to just adjust it to make the table fit.http://stackoverflow.com/questions/1530736/how-to-print-a-string-in-gdbComment by slashmais on How to print a string in gdb?slashmais2009-10-07T10:35:40Z2009-10-07T10:35:40Zif nought else works, you can replace the '\n' with '\x0a' - this will the linefeed char directly.http://stackoverflow.com/questions/1527006/call-javascriptComment by slashmais on call javascriptslashmais2009-10-06T18:29:12Z2009-10-06T18:29:12Z@JB King: "..copy and paste.." not by me! not by a long shot! I've been in this business long enough to truly believe in c&p!http://stackoverflow.com/questions/1527006/call-javascript/1527174#1527174Comment by slashmais on call javascriptslashmais2009-10-06T18:17:49Z2009-10-06T18:17:49Zthat's about as close as i could make out as wellhttp://stackoverflow.com/questions/1527006/call-javascriptComment by slashmais on call javascriptslashmais2009-10-06T18:14:02Z2009-10-06T18:14:02Z@Can: please explain in single steps exactly what you what to do. Edit your question, with with those steps, numbered if you wish, so that the people can understand what you want. These are highly competent people, they will give you exactly the right answer!http://stackoverflow.com/questions/1527006/call-javascriptComment by slashmais on call javascriptslashmais2009-10-06T17:45:08Z2009-10-06T17:45:08ZThe question is: What is the javascript code to do what is described. Don't downvote what you may have forgotten you had to go through yourselves.http://stackoverflow.com/questions/1480081/where-is-the-source-for-nimans-13-minimally-sufficient-commandments/1503434#1503434Comment by slashmais on Where is the source for Niman's 13 Minimally Sufficient Commandments?slashmais2009-10-06T15:14:41Z2009-10-06T15:14:41Zyou forgot to look in the internet archive...http://stackoverflow.com/questions/1480081/where-is-the-source-for-nimans-13-minimally-sufficient-commandments/1480176#1480176Comment by slashmais on Where is the source for Niman's 13 Minimally Sufficient Commandments?slashmais2009-10-06T15:10:52Z2009-10-06T15:10:52Zabout pt 9: don't write documentation that CAN become outdated ...http://stackoverflow.com/questions/1480081/where-is-the-source-for-nimans-13-minimally-sufficient-commandmentsComment by slashmais on Where is the source for Niman's 13 Minimally Sufficient Commandments?slashmais2009-10-06T15:04:22Z2009-10-06T15:04:22ZA set of statements like that somehow reeks of the "Peter Principle" in action. (tidy desk, and so forth...)