User GKelly - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T17:42:26Zhttp://stackoverflow.com/feeds/user/18744http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1636473/is-it-possible-to-programmatically-close-a-java-process-through-jmx3Is it possible to programmatically close a Java process through JMXGKelly2009-10-28T10:45:50Z2009-10-28T11:43:21Z
<p>Hi</p>
<p>I'm currently writing an app to monitor another Java process and take specific actions when certain targets are hit. For example, if a thread deadlocks for a certain time, kill the thread, if the memory usage goes over a specific amount, send email alerts and kill the process, etc.</p>
<p>My app will run as a stand-alone app, monitoring specific other apps (locally, though from what I can see remote or local makes no difference here). </p>
<p>I'm monitoring the external JVMs via MXBeans, but cannot see a clean way to kill the external process short of a system call like 'kill -9 ' (I'm working in UNIX by the way).</p>
<p>Is there any way to kill a JVM through the MXBean interfaces?</p>
<p>Graham</p>
http://stackoverflow.com/questions/1613963/some-d-template-questions4Some D template questionsGKelly2009-10-23T14:48:54Z2009-10-26T21:33:07Z
<p>Hi, I've been playing around recently with the D language and I have a quick question about templates.</p>
<p>I'm inserting characters and strings into an existing string in code and came up with this function:</p>
<pre><code>string insert(T)(string s1, T s2, uint position) {
return s1[0 .. position] ~ s2 ~ s1[position .. $];
}
</code></pre>
<p>Now, I have several questions.</p>
<ol>
<li><p>Can I limit the types allowed for the s2 argument (I only want char, wchar, dchar, etc. and their respective array values)? </p></li>
<li><p>Is there some way to define the template to automatically know to prepend if the position arg is 0? Something like this (which does not compile, but gives the general idea):</p>
<pre><code>string insert(T)(string s1, T s2, uint position) {
static if (position == 0)
return "" ~ s2 ~ s1;
else
return s1[0 .. position] ~ s2 ~ s1[position .. $];
}
</code></pre></li>
</ol>
<p>Thanks</p>
http://stackoverflow.com/questions/1613875/how-do-you-go-about-asking-a-question-at-digitalmars-com2How do you go about asking a question at digitalmars.com? [closed]GKelly2009-10-23T14:33:46Z2009-10-23T14:42:31Z
<p>I've been playing around with D recently and came across a problem using the templates. As far as I can see, the Digital mars site is the best place to ask questions on learning this language, but I can't see any 'post a question' (or similar) links, nor a register/login option (in case the newsgroups are member only).</p>
<p>Does anyone know how to post a query to the digitalmars.D.learn forum?</p>
http://stackoverflow.com/questions/1180059/wix-msbuild-automation-help-solution-best-practices/1327009#13270090Answer by GKelly for WIX MSBuild automation help - solution best practicesGKelly2009-08-25T09:03:11Z2009-08-25T09:03:11Z<p>Similar to dkackman's answer, you should seperate your build into several components, isolating build components to be built seperately. </p>
<p>I come from a mainly Java background, however for building MSIs and NET executables we use maven; with the 'maven-wix-plugin' plugin for building the installers, and using the NMaven plugin for compiling any NET code. However, as we're only performing very basic development in NET, with most development in Java, we don't need too much complexity from the NMaven plugin (which is probably a 'good thing' (TM) as it's only at version 0.17).</p>
<p>If you're a purely NET house, you could also look into Blydan (<a href="http://www.codeplex.com/byldan" rel="nofollow">http://www.codeplex.com/byldan</a>), which seems to be the focus of development there at the moment (it's the same team for NMaven and Byldan).</p>
<p>If you <em>do</em> want more information on NMaven or Byldan raise another question and I'll give as much info as I can (which is not a huge amount, as stated I only do very limited NET development).</p>
http://stackoverflow.com/questions/1259448/sorting-based-on-associative-arrays-in-d2Sorting based on associative arrays in DGKelly2009-08-11T10:04:01Z2009-08-11T16:54:22Z
<p>Hi</p>
<p>I am trying to follow examples given in various places for D apps. Generally when learning a language I start on example apps and change them myself, purely to test stuff out.</p>
<p>One app that caught my eye was to count the frequency of words in a block of text passed in. As the dictionary was built up in an associative array (with the elements storing the frequency, and the keys being the words themselves), the output was not in any particular order. So, I attempted to sort the array based on examples given on the site.</p>
<p>Anyway, the example showed a lambda 'sort!(...)(array);' but when I attempt the code dmd won't compile it.</p>
<p>Here's the boiled down code:</p>
<pre><code>import std.stdio;
import std.string;
void main() {
uint[string] freqs;
freqs["the"] = 51;
freqs["programming"] = 3;
freqs["hello"] = 10;
freqs["world"] = 10;
/*...You get the point...*/
//This is the actual example given, but it doesn't
//seem to work, old D version???
//string[] words = array(freqs.keys);
//This seemed to work
string[] words = freqs.keys;
//Example given for how to sort the 'words' array based on
//external criteria (i.e. the frequency of the words from
//another array). This is the line where the compilor craps out!
sort!((a,b) {return freqs[a] < freqs[b];})(words);
//Should output in frequency order now!
foreach(word; words) {
writefln("%s -> %s", word, freqs[word]);
}
}
</code></pre>
<p>When I try to compile this code, I get the following</p>
<pre>
s1.d(24): Error: undefined identifier sort
s1.d(24): Error: function expected before (), not sort of type int
</pre>
<p>Can anyone tell me what I need to do here?</p>
<p>I use DMD v2.031, I've tried installing the gdc but this only seems to support the v1 language spec. I've only started looking at dil, so I can't comment on whether this supports the code above.</p>
http://stackoverflow.com/questions/743319/why-isnt-the-d-language-picking-up/1255556#12555561Answer by GKelly for Why isn't the 'D' language picking up?GKelly2009-08-10T15:26:09Z2009-08-10T15:26:09Z<p>I'm in the process of looking into it at the moment, and by far the greatest impediment to my evaluation is the lack of a clear guide to the language.</p>
<p>In the past, languages had books that came along with them (in the time when you needed about 80 floppy disks to install a language), then along came interpretted languages, java and C#. These all had good web based guides, clear easily accessible documentation, or an IDE with some form of intellisense. All of these resources (or even just 1 of them) could point you in the direction you needed for any simple questions you have (and it's always the simplest things that trip you up).</p>
<p>There's no easily referenced guide to the D language. As mentioned in one of the other posts, you can't google it easily (though 'D programming' or 'd language' sometimes work).</p>
<p>An example I had was how to strip punctuation from a string, what methods are exposed for the 'string' object (no resource like javadocs for D, so need to google it). It turned out I needed to import and use std.regex and was fairly simple, but I still don't have any docs telling me exactly what 'string' exposes (or any other object for that matter).</p>
<p>On a related note, not specifically about D though (BTW, this could only be me). In the beginning, I relied on actually knowing the syntax and libraries I used inside out, now, I've found that I generally just know the summaries of the libraries I use and use the intellisense or javadocs (or whatever for other languages) for details. Any language without an easily referenced documentation system will be at a disadvantage.</p>
http://stackoverflow.com/questions/1239627/do-final-members-assigned-constants-on-declaration-get-optimized-at-run-time-to1Do final members assigned constants on declaration get optimized at run-time to 'static final's?GKelly2009-08-06T15:19:47Z2009-08-07T07:38:03Z
<p>When I define constant values in my Java code, I generally declare them 'private static final', but recently I've been maintaining code where the constants are defined 'private final'.</p>
<p>I'm optimizing at the moment and was wondering whether to 'static'ize these.</p>
<p>For example</p>
<pre><code>public class X {
private final String SOME_CONST = "Whatever";
}
</code></pre>
<p>Is the above code equivalent (at run-time) to the following, so only 1 copy of 'SOME_CONST' is held?</p>
<pre><code>public class X {
private static final String SOME_CONST = "Whatever";
}
</code></pre>
<p>I would have thought this was fairly basic, but I can't find the answer anywhere.</p>
<p>[Edit]
Some people have answered on the String instance being interned. Sorry, I should have picked a better example, in the case I'm looking at, it's not just Strings, but a lot of different types (some standard, some user defined). </p>
<p>I'm more interested in the effects of the 'private final' versus a 'private static final' declaration.</p>
http://stackoverflow.com/questions/378346/enable-disable-editing-of-a-form-field-from-code0Enable/disable editing of a form field from codeGKelly2008-12-18T16:11:59Z2008-12-19T10:09:14Z
<p>Hi</p>
<p>I'm not a Notes programmer, however, for my sins, have been working on some Notes features for an in-house project recently. I need to enable/disable editing of a field depending on circumstances. It seems to me to be a fairly standard feature, I need, but I can't find any information on how to do this anywhere.</p>
<p>In form setup (and other field's <code>onchange</code>) code, something like the following:</p>
<pre><code>if some requirement = true then
textField.enable = true
else
textField.enable = false
end if
</code></pre>
<p>I've seen other places where there's a work-around of conditionally hiding paragraphs based on some code, having 2 paragraphs with opposite hiding conditions, one with an editable field, the other with a computed field. However, I don't know enough about Notes to see how this is implemented (I can see it done on other forms, but there seem to be some 'magic' steps within Notes which I either can't see or don't get).</p>
<p>[EDIT]
The reply from kerr seems to be what I'm looking for, but I still can't find out where the InputEnabled property is located. Should have said in the initial question, I'm using Notes 7.0.3.</p>
<p>In fairness, it doesn't matter what the circumstances are for when to enable/disable the field, it's just some boolean condition that is set, in my case only on form loading so I don't even have to worry about this changing dynamically while the form is displayed.</p>
<p>I've a few issues with Notes, my largest bugbear being that it's so tied so tightly to the Designer UI, which is utter shite. I can do this sort of thing programmatically in most GUI languages (C#, Java, Delphi, even VB), but I need to open property boxes in Notes and set them correctly. </p>
<p>This would be OK as an <em>optional</em> method, but <em>forcing</em> you to go this way means you can only work as well as the IDE lets you in this case, and the IDE here seems to actively work against you. You can't open multiple functions/scripts, you can't swap from one script to another without going back to the menus on the left, you can't easily search the codebase for occurences of variables/fields (and believe me, this is a major failing for me because either Notes or the internal codebase in my case seems to make a lot of use of global variables!), you can only work with fields though the property boxes that get displayed, you can't edit code in Designer while debugging through the main Notes client. </p>
<p>While the Java side of the coding is better than lotusscripts, it's still fairly crappy (why can't you debug INTO Java code?? Why do you need to re-import JAR files for each Java class, does each class have a different CLASSPATH???). Possibly this was improved in Notes 8, I hear it's based on Eclipse. Anyone know whether this is true or not?</p>
http://stackoverflow.com/questions/173025/would-you-take-a-pay-cut-to-get-a-higher-position/174342#1743420Answer by GKelly for Would you take a pay-cut to get a higher position?GKelly2008-10-06T13:46:01Z2008-10-06T13:52:42Z<p>Personally, I'd go for the permanent position, but that's my preference. In the past, I've taken pay cuts when transferring jobs, but always made it back to or higher than the original salary before the end of the first year.</p>
<p>My criteria is how much the new job interests/engages me. Will I be getting new experience, more responsibility, etc.</p>
<p>Regarding contracting vs. permanent, I'd have to say that at the moment I'd opt for a secure job for the next year or so at least. </p>
<p>Also, as a contractor you're solely responsible for your career progression. Training is taken at your own expense and on your own time, but you have full discretion on which direction you want to go. As a permanent employee, it's a shared responsibility, you don't get as much choice in the direction, but mainly the employee pays (at least partially) for training and it's conducted on work time (i.e. you get paid to be trained). It depends on how you feel, which side this weighs in, do you want help in your training or do you want control over it?</p>
<p>I'm based in Ireland and I've seen, in the last 2-3 years, a swing from the contractors having the power to the employers. At the start of the decade, contractors here were deciding how much they would accept, and employers had to live with that. Contract rates rose about 15-25% a year from 2000 until about 2004 (for the same roles we were paying about €60 an hour in 2001, we paid €100 to €140 an hour in 2004/5). After that they stabilised, then fell. I seen the employers getting nasty with contractors after this point (to the point of penalising them if there was too many short contracts on their CV even if they were transferring to a permanent role). </p>
<p>I'm not saying that's how things will go in the States, just that this is how it panned out here.</p>
http://stackoverflow.com/questions/70846/developers-bill-of-rights/173908#17390813Answer by GKelly for Developers' Bill Of RightsGKelly2008-10-06T11:11:42Z2008-10-06T11:11:42Z<p>Support from your Boss.</p>
<p>I was lucky enough to work for a superb boss in a large company a few years ago. The company valued development at roughly the level of facilities management (there to serve the company in whatever manner required). She shielded and defended her team fully. If you were in the wrong you got a bolloxing, but if you were in the right or could support your opinions she defended you fully (even where we disagreed) to the outside teams.</p>
<p>Having seen the results from ourselves as opposed to other teams (the interruptions they received and the blame they received for failed projects, mostly due to scope creep or business interuptions), I'd say this should be a self-evident right!</p>
http://stackoverflow.com/questions/157027/good-guide-to-corba/157133#1571332Answer by GKelly for Good guide to CORBA?GKelly2008-10-01T11:07:35Z2008-10-01T11:07:35Z<p>You can use the SUN CORBA tutorial on <a href="http://java.sun.com/developer/onlineTraining/corba/corba.html" rel="nofollow">http://java.sun.com/developer/onlineTraining/corba/corba.html</a>. It's based on the Java ORB implementation, which has a lot of shortcomings, but is usable. It gives a good overview of the whole technology too. If you just want to dive into the coding, try some of the tutorials on the web. They can be fairly specific to the ORB you're using though.</p>
<p>Until you're sure of yourself, I'd recommend using the plain Java ORB. It's about the most basic one available, so any concepts you pick up using this ORB will carry to other ORBs. I'd avoid it for anything other than test/toy apps though.</p>
<p>You could also try logging onto a community website (or here!) with any specific questions you have. Try <a href="http://www.orbzone.org/" rel="nofollow">http://www.orbzone.org/</a>, it's run by Iona, but they try to be impartial.</p>
http://stackoverflow.com/questions/101267/is-there-any-way-to-define-a-constant-value-to-java-at-compile-time4Is there any way to define a constant value to Java at compile timeGKelly2008-09-19T11:50:35Z2008-09-25T08:19:12Z
<p>When I used to write libraries in C/C++ I got into the habit of having a method to return the compile date/time. This was always a compiled into the library so would differentiate builds of the library. I got this by returning a #define in the code:</p>
<p>C++:</p>
<pre><code>#ifdef _BuildDateTime_
char* SomeClass::getBuildDateTime() {
return _BuildDateTime_;
}
#else
char* SomeClass::getBuildDateTime() {
return "Undefined";
}
#endif
</code></pre>
<p>Then on the compile I had a '-D_BuildDateTime_=<code>Date</code>' in the build script.</p>
<p>Is there any way to achieve this or similar in Java without needing to remember to edit any files manually or distributing any seperate files.</p>
<p>One suggestion I got from a co-worker was to get the ant file to create a file on the classpath and to package that into the JAR and have it read by the method. </p>
<p>Something like (assuming the file created was called 'DateTime.dat'):</p>
<pre><code>// I know Exceptions and proper open/closing
// of the file are not done. This is just
// to explain the point!
String getBuildDateTime() {
return new BufferedReader(getClass()
.getResourceAsStream("DateTime.dat")).readLine();
}
</code></pre>
<p>To my mind that's a hack and could be circumvented/broken by someone having a similarly named file <em>outside</em> the JAR, but on the classpath.</p>
<p>Anyway, my question is whether there is any way to inject a constant into a class at compile time</p>
<p>EDIT</p>
<p>The reason I consider using an externally generated file in the JAR a hack is because this <em>is</em>) a library and will be embedded in client apps. These client apps may define their own classloaders meaning I can't rely on the standard JVM class loading rules.</p>
<p>My personal preference would be to go with using the date from the JAR file as suggested by serg10.</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/130322/how-do-you-pass-a-member-function-pointer/132073#1320730Answer by GKelly for How do you pass a member function pointer?GKelly2008-09-25T08:11:18Z2008-09-25T08:11:18Z<p>Would you not be better served to use standard OO. Define a contract (virtual class) and implement that in your own class, then just pass a reference to your own class and let the receiver call the contract function.</p>
<p>Using your example (I've renamed the 'test2' method to 'buttonAction'):</p>
<pre><code>class ButtonContract
{
public:
virtual void buttonAction();
}
class testMenu : public MenuScreen, public virtual ButtonContract
{
public:
bool draw;
MenuButton<testMenu> x;
testMenu():MenuScreen("testMenu")
{
x.SetButton(100,100,TEXT("buttonNormal.png"),
TEXT("buttonHover.png"),
TEXT("buttonPressed.png"),
100, 40, &this);
draw = false;
}
//Implementation of the ButtonContract method!
void buttonAction()
{
draw = true;
}
};
</code></pre>
<p>In the receiver method, you store the reference to a ButtonContract, then when you want to perform the button's action just call the 'buttonAction' method of that stored ButtonContract object.</p>
http://stackoverflow.com/questions/94331/eclipse-memory-use/101995#1019954Answer by GKelly for Eclipse memory useGKelly2008-09-19T13:55:15Z2008-09-19T13:55:15Z<p>I don't know about Eclipse specifically, I use IntelliJ which also suffers from memory growth (whether you're actively using it or not!). Anyway, in IntelliJ, I couldn't eliminate the problem, but I did slow down the memory growth by playing with the runtime VM options. You could try resetting these in Eclipse and see if they make a difference.</p>
<p>You can edit the VM options in the eclipse.ini file in your eclipse folder.</p>
<p>I found that (in IntelliJ) the garbage collector settings had the most effect on how fast the memory grows. </p>
<p>My settings are:</p>
<pre><code>-Xms128m
-Xmx512m
-XX:MaxPermSize=120m
-XX:MaxGCPauseMillis=10
-XX:MaxHeapFreeRatio=70
-XX:+UseConcMarkSweepGC
-XX:+CMSIncrementalMode
-XX:+CMSIncrementalPacing
</code></pre>
<p>(See <a href="http://piotrga.wordpress.com/2006/12/12/intellij-and-garbage-collection/" rel="nofollow">http://piotrga.wordpress.com/2006/12/12/intellij-and-garbage-collection/</a> for an explanation of the individual settings). As you can see, I'm more concerned with avoiding long pauses during editting than actuial memory usage but you could use this as a start.</p>
http://stackoverflow.com/questions/1613963/some-d-template-questions/1614327#1614327Comment by GKelly on Some D template questionsGKelly2009-10-28T10:32:18Z2009-10-28T10:32:18ZEssentially, I'm looking for a way to avoid as much run-time decisions as possible here, so I'm trying to see if I can avoid a 'normal' if. To be honest, I'm just exploring the language, I'd normally be happy enough with the non-static if, but I'm just exploring what's possible. http://stackoverflow.com/questions/1613963/some-d-template-questions/1614327#1614327Comment by GKelly on Some D template questionsGKelly2009-10-28T10:28:44Z2009-10-28T10:28:44ZHow do you go about making 'position' a template parameter? Something like the following?
string insert(T, uint Position)(...) {
static if (Position == 0) ...
else ...
}
http://stackoverflow.com/questions/1239627/do-final-members-assigned-constants-on-declaration-get-optimized-at-run-time-to/1241806#1241806Comment by GKelly on Do final members assigned constants on declaration get optimized at run-time to 'static final's?GKelly2009-10-23T15:00:19Z2009-10-23T15:00:19ZThat's what I thought. Thankshttp://stackoverflow.com/questions/1613875/how-do-you-go-about-asking-a-question-at-digitalmars-comComment by GKelly on How do you go about asking a question at digitalmars.com?GKelly2009-10-23T14:55:52Z2009-10-23T14:55:52ZSorry for posting incorrectly. Also, thanks for the answers, I was not in the correct place, there is no link to the pnews section of the site easily seen. Once in there, it's obvious.http://stackoverflow.com/questions/1259448/sorting-based-on-associative-arrays-in-d/1259574#1259574Comment by GKelly on Sorting based on associative arrays in DGKelly2009-08-13T10:35:02Z2009-08-13T10:35:02ZDoh! Thanks, that works. It's always the simple stuff that's the hardest to find info on!http://stackoverflow.com/questions/1239627/do-final-members-assigned-constants-on-declaration-get-optimized-at-run-time-to/1239835#1239835Comment by GKelly on Do final members assigned constants on declaration get optimized at run-time to 'static final's?GKelly2009-08-07T06:38:34Z2009-08-07T06:38:34ZNope, the point of the question was that the members are set to constant values on declaration, not set dynamicallyhttp://stackoverflow.com/questions/378346/enable-disable-editing-of-a-form-field-from-code/378816#378816Comment by GKelly on Enable/disable editing of a form field from codeGKelly2008-12-19T09:42:17Z2008-12-19T09:42:17ZThis looks like it would be what I'm looking for. Where do I find the InputEnabled section? I'm coding for Notes 7.0.3 and can't find this on any of the field property tabs.
See, this is my major problem with notes. I can do this in code in Java, C#, Delphi, even VB, but only via the UI in Notes???