User AJ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T02:38:16Zhttp://stackoverflow.com/feeds/user/7211http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/407129/best-font-for-terminal/407178#4071782Answer by AJ for Best font for terminalAJ2009-01-02T15:44:03Z2009-11-23T10:06:53Z<p>There is a nice <strong>list of monospaced fonts</strong> <strong><a href="http://www.kuro5hin.org/story/2004/12/6/11739/5249" rel="nofollow">here</a></strong>, which might provide some inspiration. </p>
<h3>update: broken link</h3>
<p>I have updated the link above, from @jleedev's comment, but, as he points out, the links to the images appear to be broken. Appologies. </p>
<p>old link was: <a href="http://www.lowing.org/fonts/" rel="nofollow">http://www.lowing.org/fonts/</a></p>
http://stackoverflow.com/questions/1404617/retrieve-deleted-project-in-ms-visual-sourcesafe1Retrieve Deleted Project in MS Visual SourceSafe?AJ2009-09-10T11:00:43Z2009-11-06T03:35:27Z
<p>A while ago, I "tidied up" our Visual SourceSafe repository, including deleting a duplicate of one project. It now turns out that the duplicate had some code I need to see. </p>
<p>How can I get back a deleted project? </p>
<p>I can't see from any of the docs how to do this. </p>
<p>Thanks for any help. </p>
http://stackoverflow.com/questions/1679283/how-to-write-the-sql-for-the-following-problem/1679689#16796890Answer by AJ for How to write the SQL for the following problem?AJ2009-11-05T10:38:24Z2009-11-05T10:38:24Z<p>@Dave K is absolutely right.<br>
You could also do it this way.<br>
I suspect most optimisers will do exactly the same for both queries. </p>
<pre><code>SELECT *
FROM MyTable t1
( SELECT col2
FROM MyTable
GROUP BY col2
HAVING count(*) > 1
) t2
WHERE t1.col2 = t2.col2
</code></pre>
http://stackoverflow.com/questions/120662/java-could-not-find-the-main-class-program-will-exit0Java: "Could not find the main class. Program will exit"AJ2008-09-23T12:28:54Z2009-11-04T17:27:09Z
<p>I'm trying to run SQuirreL SQL.<br>
I've downloaded it and installed it, but when I try to run it I get this error message: </p>
<blockquote>
<p>Java Virtual Machine Launcher.<br>
Could not find the main class.<br>
Program will exit. </p>
</blockquote>
<p>I get the gist of this, but I have not idea how to fix it. Any help? </p>
<h3>more info:</h3>
<ul>
<li>I'm on Windows XP pro. </li>
<li>I have java 1.6 installed, and other apps are running OK. </li>
<li>The install ran OK. </li>
<li>I believe I've followed the installation instructions correctly. </li>
<li>To run it, I'm invoking the <strong>squirrel-sql.bat</strong> file. </li>
</ul>
<h3>Update</h3>
<p>This question: <a href="http://stackoverflow.com/questions/1417328/could-not-find-the-main-class">http://stackoverflow.com/questions/1417328/could-not-find-the-main-class</a> gives some background on this error from the point of view of a java developer. </p>
http://stackoverflow.com/questions/221995/ms-access-front-end-alternative8MS Access Front-End Alternative?AJ2008-10-21T14:04:46Z2009-11-03T10:19:33Z
<h3>Background</h3>
<p>I work for a large organization which has thousands of MS Access applications floating around. I didn't write any of these - in fact, most of the original authors have long since left the company - but from time to time another Access app lands on my desk for support. I would <em>soooo</em> love to replace access with a different solution. </p>
<h3>Requirement</h3>
<p>I know that there are several good alternatives for the database part of MS Access (the Jet database), such as SQLite, MySQL, VistaDB, etc. </p>
<p>What I would like to know is: Is there anything that will replace the front end part of MS Access? </p>
<p>I.e. Something which can be used to build forms, write simple scripts and queries, etc? </p>
<h3>Why?</h3>
<p>@BracC asked "why replace access?" - A fair question indeed.<br />
I want to get rid of access because: </p>
<ul>
<li>it hides logic, leading to hard-to-support applications. Logic can be in lots of different places, none of which provide or encourage any structure:
<ul>
<li>macros</li>
<li>modules</li>
<li>queries</li>
<li>forms</li>
</ul></li>
<li>its very nature encourages users to create "little" applications which become "not so little applications". Then the user leaves and I have to support a bunch of spaghetti. I know that access isn't the only culprit, but it's the leader in my organisation, and I would love to get rid of it completely. </li>
</ul>
<h3>For extra credit</h3>
<p>what I would <em>really</em> love to find is something which can read in an MDB file and output something like C# which replicates the functionality. (Or any language - not fussy). </p>
<p>I hope this is all clear. If not, please post a comment and I'll re-write/add detail. </p>
<h3>Update</h3>
<p>@GuinnessFan makes some points I find interesting. I have added my comments to discuss those points. </p>
<p>What we have done since I asked the question: </p>
<ul>
<li>Got users to give us a definitive list of access applications they use and need. (The understanding is that any MDB files not on the list can be deleted - hooray!). </li>
<li>Analysed the MDBs on the list, coming to the following conclusions:
<ul>
<li>Most of the "applications" consist of a single hard-coded query or a single linked table. </li>
<li>Many are a small number of queries with, perhaps, a date parameter or similar. </li>
<li>very few (if any) have any truly complex logic. </li>
</ul></li>
<li>We are now working through the list, converting most of the apps to SSRS (SQL Server Reporting Services) packages. </li>
<li>Anything which can't be replicated using SSRS will become a hand-crafted web application. However, there aren't many of these. </li>
</ul>
<p>May I say many thanks, to _**everybody**_ who has given me helpful answers. </p>
http://stackoverflow.com/questions/133099/sybase-developer-needs-to-learn-oracle1Sybase Developer Needs To Learn OracleAJ2008-09-25T12:45:28Z2009-10-29T15:08:56Z
<p>I am pretty much a Sybase expert, an experienced developer, and very comfortable learning new stuff.<br />
I need to write a bunch of SQL to run against an Oracle database.<br />
Can someone recommend a book, training course or other resource to give me what I need to know in the shortest possible time? </p>
<p>I don't need <em>Oracle for Dummies</em>, but something more like <em>Oracle for people who already know SQL and RDBMS</em>. </p>
<p>I know that @Martin asked <a href="http://stackoverflow.com/questions/39438/developer-moving-from-sql-server-to-oracle">a similar question </a> regarding SQL Server to Oracle, but SQL Server is (nowadays) different enough that I'd like any sybase-specific help you can give. </p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1612584/update-struct-in-foreach-loop-in-c1Update Struct in foreach loop in C#AJ2009-10-23T10:29:55Z2009-10-23T10:34:47Z
<p>I have this code (C#): </p>
<pre><code>using System.Collections.Generic;
namespace ConsoleApplication1
{
public struct Thing
{
public string Name;
}
class Program
{
static void Main(string[] args)
{
List<Thing> things = new List<Thing>();
foreach (Thing t in things) // for each file
{
t.Name = "xxx";
}
}
}
}
</code></pre>
<p>It won't compile.<br />
The error is: </p>
<pre><code>Cannot modify members of 't' because it is a 'foreach iteration variable'
</code></pre>
<p>If I change <code>Thing</code> to a <code>class</code> rather than a <code>struct</code>, however, it does compile. </p>
<p>Please can someone explain what's going on? </p>
http://stackoverflow.com/questions/134698/catching-exceptions-as-expected-program-execution-flow-control/139450#1394502Answer by AJ for Catching exceptions as expected program execution flow control?AJ2008-09-26T13:18:10Z2009-10-12T08:24:18Z<p>Nice question. However, I find the answers ... scary!<br />
An exception is a kind of GOTO.<br />
I don't like using exceptions in this way because that leads to spaghetti code.<br />
Simple as that. </p>
http://stackoverflow.com/questions/1437533/using-sqlite-with-classic-asp0Using SQLite with Classic ASPAJ2009-09-17T08:42:44Z2009-09-18T03:16:15Z
<p>I am building a "quick little" app which needs a small database.<br />
I want to use Classic ASP (i.e. not ASP.NET), and I am wondering about SQLite for the database. </p>
<p>It is possible to use SQLite from Classic ASP? </p>
<p>How do I open / create / use a SQLite database from ASP? </p>
<p>Any help / pointers gratefully recieved! </p>
http://stackoverflow.com/questions/1404617/retrieve-deleted-project-in-ms-visual-sourcesafe/1404636#14046362Answer by AJ for Retrieve Deleted Project in MS Visual SourceSafe?AJ2009-09-10T11:05:13Z2009-09-10T11:05:13Z<p>The answer is there on Microsoft's site: <a href="http://support.microsoft.com/kb/244019" rel="nofollow">http://support.microsoft.com/kb/244019</a>. </p>
<ul>
<li>Select the project which is the parent of the deleted project. </li>
<li>Right-click and select "Properties..."</li>
<li>Select the "Deleted Items" tab.
<ul>
<li>This displays all deleted files <em>and</em> projects under the specified project</li>
</ul></li>
<li>Select the project you want to get back</li>
<li>Click "Recover"</li>
<li>All Done.</li>
</ul>
http://stackoverflow.com/questions/102894/is-anyone-targeting-google-chrome-yet-web-apps-plugins6Is anyone targeting Google Chrome yet? (Web apps, plugins)AJ2008-09-19T15:30:43Z2009-08-20T11:44:33Z
<p>Is anyone writing applications specifically to take advantage of google chrome?<br />
Are there any enterprise users who are considering using it as the standard browser? </p>
http://stackoverflow.com/questions/317071/how-do-i-find-out-which-process-is-locking-a-file-c10How do I find out which process is locking a file (C#)?AJ2008-11-25T11:34:47Z2009-08-12T00:00:32Z
<p>I've seen several of answers about using <a href="http://technet.microsoft.com/en-us/sysinternals/bb896655.aspx" rel="nofollow">Handle</a> or <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a>, but I would like to be able to find out in my own code (C#)
which process is locking a file. </p>
<p>I have a nasty feeling that I'm going to have to spelunk around in the win32 API, but if anyone has already done this and can put me on the right track, I'd really appreciate the help. </p>
<p>Thanks. </p>
<h2>Update</h2>
<h3>Links to similar questions</h3>
<ul>
<li><a href="http://stackoverflow.com/questions/860656/how-does-one-figure-out-what-process-locked-a-file-using-c">How does one figure out what process locked a file using c#?</a></li>
<li><a href="http://stackoverflow.com/questions/241178/command-line-tool-for-finding-out-who-is-locking-a-file">Command line tool</a></li>
<li><a href="http://stackoverflow.com/questions/208283/is-it-possible-to-programatically-find-out-what-process-is-locking-a-file-acros">Across a Network</a></li>
<li><a href="http://stackoverflow.com/questions/23197/find-out-which-process-has-an-exclusive-lock-on-a-usb-device-handle">Locking a USB device</a></li>
<li><a href="http://stackoverflow.com/questions/305843/determining-what-process-has-a-lock-on-a-file">Unit test fails with locked file</a></li>
<li><a href="http://stackoverflow.com/questions/1040/how-do-i-delete-a-file-which-is-locked-by-another-process-in-c">deleting locked file</a></li>
</ul>
http://stackoverflow.com/questions/71682/does-anyone-remember-forest-trees2Does anyone remember "Forest & Trees"AJ2008-09-16T12:24:36Z2009-08-05T21:26:51Z
<p>In the early-mid 90's, I worked a lot with a development tool called "<strong>Forest & Trees</strong>." (it was a wierd name back then, too!)<br />
It was aimed at developers building "Executive Information" / "Business Intelligence" systems.<br />
It was really cool software because you could develop an application very quickly on top of an existing database. </p>
<p>Is anyone still using it? </p>
http://stackoverflow.com/questions/1142028/what-should-developers-have-access-to/1142195#11421951Answer by AJ for what should developers have access to?AJ2009-07-17T09:13:24Z2009-07-17T09:13:24Z<h2>It's a question of what you want</h2>
<p>There are 2 competing requirements at work: </p>
<ul>
<li>Fast turnaround for fixing problems / developing new code. </li>
<li>Ensuring that no sensitive data get leaked. </li>
</ul>
<p>Your company has decided (consciously or unconsciously) that it is better to reduce the risk of leaking sensitive data than to have the ability to fix problems and develop new code quickly. My company leans in the same direction, but is not really clued-up enough to take it to the extremes you are describing. </p>
<p>This is a <em>business</em> decision. </p>
<p>It is made because (probably unconsciously) your company puts a higher value on the downside risk (leaking data) than on the upside risk (making the software work). This is a common bias - it's known as being risk-averse (I'm sure there's a better term than that - anybody?), and it is very annoying for those of us who, trying to get our jobs done, have to overcome a bunch of obstacles put there by people who don't have a good understanding of the impact of those obstacles. </p>
<h2>To Summarise</h2>
<ul>
<li>This is a <em>business</em> decision. </li>
<li>It's a question of how different <em>risks are perceived</em>. </li>
<li>It reflects a <em>risk averse</em> position. </li>
<li>This position has probably been arrived at by the company entirely <em>unconsciously</em>. </li>
</ul>
http://stackoverflow.com/questions/165401/how-to-compare-validate-sql-schema/167208#1672083Answer by AJ for how to compare/validate sql schemaAJ2008-10-03T14:42:15Z2009-07-02T11:09:18Z<p>Try this SQL.<br />
- Run it against each database.<br />
- Save the output to text files.<br />
- Diff the text files. </p>
<pre><code>SELECT name,
type
FROM sysobjects
ORDER BY type, name
SELECT so.name,
so.type,
sc.name,
sc.number,
sc.colid,
sc.status,
sc.type,
sc.length,
sc.usertype ,
sc.scale
FROM sysobjects so ,
syscolumns sc
WHERE so.id = sc.id
ORDER BY so.type, so.name, sc.name
SELECT so.name,
so.type,
sc.number,
sc.text
FROM sysobjects so ,
syscomments sc
WHERE so.id = sc.id
ORDER BY so.type, so.name, sc.number
</code></pre>
http://stackoverflow.com/questions/824055/how-to-securely-store-database-connection-details/829164#8291641Answer by AJ for How to securely store database connection detailsAJ2009-05-06T11:32:06Z2009-05-06T11:32:06Z<p>Excellent question.<br />
It's an issue with which we've grappled - and come up with a variety of approaches. </p>
<p>The first answer is to go with 1800 INFORMATION's suggestion: </p>
<h3>put it in an area only readable by the userid running your application.</h3>
<p>I don't think you'll get a better all-round solution than this. </p>
<p>Other methods we've toyed with (and rejected): </p>
<ul>
<li>Save it in an encrypted file
<ul>
<li>this only works if the attacker can't get to your code to see how the encryption works, so not so good most of the time. </li>
</ul></li>
<li>Save it in the database and require a human to log on to start the application
<ul>
<li>this works, as long as you are in a position to have a real person start up the application all the time</li>
</ul></li>
<li>Rely on built-in security devices, such as those in .NET (see rwwilden's answer).<br />
<ul>
<li>this is a good solution if you are, e.g. a Microsoft shop. </li>
</ul></li>
</ul>
http://stackoverflow.com/questions/824931/can-there-be-a-database-agnostic-sql-query-to-fetch-top-n-rows/829129#8291291Answer by AJ for Can there be a database-agnostic SQL query to fetch top N rows?AJ2009-05-06T11:21:56Z2009-05-06T11:21:56Z<p>To get the top 5 scorers from this table: </p>
<pre><code>CREATE TABLE people
(id int,
name string,
score int)
</code></pre>
<p>try this SQL: </p>
<pre><code>SELECT id,
name,
score
FROM people p
WHERE (SELECT COUNT(*)
FROM people p2
WHERE p2.score > p.score
) <=4
</code></pre>
<p>I believe this should work in most places. </p>
http://stackoverflow.com/questions/153220/are-there-any-good-free-net-network-libraries-ftp-sftp-ssh-etc/153343#1533432Answer by AJ for Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.)AJ2008-09-30T14:37:43Z2009-05-06T09:32:28Z<ul>
<li>All-singing-all-dancing solution which looks good to me, but which I haven't tried: <a href="http://www.nsoftware.com/products/component/sftp.aspx" rel="nofollow">http://www.nsoftware.com/products/component/sftp.aspx</a></li>
<li>SSH / SFTP library which my company uses: <a href="http://www.eldos.com/sbb/net-sftp.php" rel="nofollow">http://www.eldos.com/sbb/net-sftp.php</a></li>
</ul>
<p>In practice, the only place where I currently do SFTP, I use <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow">putty's</a> bundled psftp utility, and run it from a process object. That may not be great, but it's working reliably for me. </p>
http://stackoverflow.com/questions/797142/mysql-reference-book0MySQL Reference BookAJ2009-04-28T10:03:09Z2009-04-28T17:34:42Z
<p>Can you point me to a good reference book for MySQL? </p>
<p>I'm an experienced database programmer, but I'm new to MySQL, so I need a book where I can look up specific things and get quick (short) answers (preferably with clear examples).<br />
It needs to explain MySQL-specific things, not standard SQL. </p>
<p>I don't want a wordy book explaining the ins and outs of the database engine. I'm looking for a short-ish book which clearly explains syntax, lists functions and has a good index. </p>
<p>Similar questions, which seem to point to more general (although apparently very good) books are: </p>
<ul>
<li><a href="http://stackoverflow.com/questions/220645/can-you-recommend-a-mysql-book-for-an-intermediate-developer">intermediate developer book: question 220645</a></li>
<li><a href="http://stackoverflow.com/questions/430564/what-are-the-best-books-for-mysql">best books: question 430564</a></li>
</ul>
http://stackoverflow.com/questions/173747/what-is-the-best-easiest-way-to-talk-to-sqlite-from-net2What is the best / easiest way to talk to SQLite from .NET? AJ2008-10-06T09:59:19Z2009-04-16T10:16:37Z
<p>Question says it all, really.
My application is a time tracker. It's currently written as a spreadsheet, but there's just too much data and I would like to impose a bit more structure on it. </p>
<p><a href="http://sqlite.org/" rel="nofollow">SQLite</a> seems like a neat way to go.<br />
I would be open to other suggestions, too. </p>
http://stackoverflow.com/questions/581957/getting-an-event-from-a-database-a-week-in-advancee/582008#5820080Answer by AJ for Getting an event from a database a week in advanceeAJ2009-02-24T14:46:55Z2009-02-24T14:55:42Z<h3>To get the next match for team xxx</h3>
<pre><code>SELECT *
FROM myTable
WHERE TEAM NUMBER = xxx
AND DATE = ( SELECT MIN(DATE)
FROM myTable
WHERE TEAM NUMBER = xxx
AND DATE > NOW() )
</code></pre>
<p>I suspect this is what you really want, if matches only take place at weekends (which seems to be an assumption from your question).<br />
Today + 7 days is not the same as next weekend unless today happens to be the same day of the week as the match. </p>
http://stackoverflow.com/questions/581043/sql-query-throws-not-in-aggregate-function-or-group-by-clause-exception/581293#5812932Answer by AJ for SQL query throws "not in aggregate function or group by clause" exceptionAJ2009-02-24T10:47:39Z2009-02-24T11:18:21Z<p>If you use an aggregate function (e.g. <code>AVG()</code>) in the SELECT part of the SQL query along with other non-aggregate expressions, then you must have a GROUP BY clause which should list all the non-aggregate expressions. </p>
<p>I'm not familiar with java, but looking at the code, it looks like it's going to create and run a query something like this (not quite right, but close enough, I think): </p>
<pre><code>SELECT r.id,
u.id,
u.alias,
s.id,
s.name,
r.URL,
AVG(v.rating),
r.totalCount,
r.isPrivate,
a.id,
a.name,
r.transactionId,
r.size,
u.hasPicture
FROM Thinger r
LEFT OUTER JOIN r.votes as v,
Table1S s
JOIN s.Table2A AS a, User u
WHERE r.userId = u.id
AND s.id = r.Table1SId
AND r.id = :thingId
</code></pre>
<p>... This has no <code>GROUP BY</code>, but does mix aggregate and non-aggregate expressions in the SELECT clause. The problem is that the SQL is badly formed. </p>
<p>The fix would be to add a <code>GROUP BY</code> to the end of the query. </p>
<p>I can't say why this is working in your production system, but I suspect that there is some subtle difference there. Perhaps something is adding the <code>GROUP BY</code> automatically? </p>
<p>Can you post a printout of the SQL it executes? </p>
http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/491497#4914971Answer by AJ for What is your most useful sql trick to avoid writing more code?AJ2009-01-29T12:54:33Z2009-01-29T12:54:33Z<p>I offer these suggestions, which have helped me: </p>
<h2>stored procedures and views</h2>
<p>Use stored procedures to encapsulate complex joins over many tables - both for selects and for updates/inserts.<br />
You can also use views where the joins don't involve too many tables. (where "too many" is a vague quantity between 4 and 10). </p>
<p>So, for example, if you want information on a customer, and it's spread over lots of tables, like "customer", "address", "customer status code", "order", "invoice", etc, you could create a stored procedure called "getCustomerFullDetail" which joins all those tables, and your client code can just call that and never have to worry about the table structure.<br />
For updates, you can create "updateCustomerFullDetail", which could apply updates sensibly.<br />
There will be some performance hits for this, and writing the stored procedures might be non-trivial, but you're writing the non-trivial code once, in SQL (which is typically succinct). </p>
<h2>normalisation</h2>
<p>Normalise your database.<br />
Really.<br />
This results in cleaner (simpler) update code which is easier to maintain.<br />
It may have other benefits which are not in scope here. </p>
<p>I normalise to at least 4NF.<br />
4NF is useful because in includes making all your lists of possible values explicit, so your code doesn't have to know about, e.g. all possible status codes, so you don't hard-code lists in client code.<br />
(3NF is the one which really sorts out those update anomalies.) </p>
<h2>perhaps use ORM?</h2>
<p>This is as much a question as a suggestion: would a good ORM reduce the amount of code you have to write? Or does it just remove some of the pain from moving data from the database to the client? I haven't played with one enough. </p>
http://stackoverflow.com/questions/450209/lightweight-portable-editors/450245#4502453Answer by AJ for Lightweight Portable EditorsAJ2009-01-16T12:11:52Z2009-01-16T12:50:55Z<p><a href="http://jedit.org/" rel="nofollow">JEdit</a> is a fairly lightweight text editor with all the trimmings. You can dowload loads of plugins. It's written in java, too, so you can use it cross-platform. </p>
<p>Portable version <a href="http://portableapps.com/node/11617" rel="nofollow">here</a>, thanks to <a href="http://stackoverflow.com/users/6440/redsquare">@redsquare</a> for the link. </p>
http://stackoverflow.com/questions/424348/doing-a-pivot-using-xslt2Doing a pivot using XSLTAJ2009-01-08T14:09:38Z2009-01-08T17:05:15Z
<p>I have an xml file like this: </p>
<pre><code><root>
<item>
<name>one</name>
<status>good</status>
</item>
<item>
<name>two</name>
<status>good</status>
</item>
<item>
<name>three</name>
<status>bad</status>
</item>
<item>
<name>four</name>
<status>ugly</status>
</item>
<item>
<name>five</name>
<status>bad</status>
</item>
</root>
</code></pre>
<p>I want to transform this using XSLT to get something like: </p>
<pre><code><root>
<items><status>good</status>
<name>one</name>
<name>two</name>
</items>
<items><status>bad</status>
<name>three</name>
<name>five</name>
</items>
<items><status>ugly</status>
<name>four</name>
</items>
</root>
</code></pre>
<p>In other words, I get a list of items, each with a status, and I want to turn it into a list of statuses, each with a list of items. </p>
<p>My initial thought was to do apply-templates matching each status type in turn, but that means I have to know the complete list of statuses. Is there a better way to do it? </p>
<p>Thanks for any help. </p>
http://stackoverflow.com/questions/420057/usability-tests-of-widely-used-software1Usability Tests of Widely-Used SoftwareAJ2009-01-07T12:03:51Z2009-01-07T13:36:35Z
<p>Does anyone know where I can go to find the results of usability testing of widely used software? </p>
<p>I want to be able to make informed decisions about: </p>
<ul>
<li>which bits of existing packages to copy in my software</li>
<li>how to choose between multiple packages (programs, components, etc). </li>
</ul>
<p>Really, I would be grateful for anything here.<br />
I'm interested in: websites, office software, email clients, you name it.<br />
I want objective, empirical information about what's good and what's not in specific instances. </p>
<p>This question is inspired by <a href="http://stackoverflow.com/questions/416766/is-markdown-friendly-enough-for-non-technical-users#416905">my answer</a> to <a href="http://stackoverflow.com/questions/416766/is-markdown-friendly-enough-for-non-technical-users">this question about markdown</a>. </p>
http://stackoverflow.com/questions/71336/whatever-happened-to-jedit/71642#716426Answer by AJ for Whatever happened to jEditAJ2008-09-16T12:18:11Z2009-01-07T09:24:32Z<p>I've been using jEdit for a few years now, mainly on windows, but also on Ubuntu.
I use it for: SQL, awk, batch files, html, xml, javascript...
Just about everything except .NET stuff (for which I use Visual Studio).<br />
I love it. </p>
<h2>summary</h2>
<p>I use jEdit because it has the right balance for me of <strong>ease of setting up</strong> vs. <strong>features</strong> and <strong>customisability</strong>. For me, no other editor strikes quite as good a balance. </p>
<h2>cons</h2>
<ul>
<li> It can be a bit hard to make it do the things you want. </li>
</ul>
<h2>pros</h2>
<ul>
<li> I love the <a href="http://plugins.jedit.org/list.php" rel="nofollow"> plugins </a> </li>
<li> Being able to define my own syntax highlighting etc. is just what I want from a text editor. </li>
<li> The <a href="http://prdownloads.sourceforge.net/jedit/jedit4.3pre15manual-a4.pdf" rel="nofollow">manual</a> is very good and quite readable. I strongly suggest reading it through to get an idea of what jEdit can do for you. (In fact, I suggest this for any software you use)
<li> It's cross-platform. I used it just on windows for a long time, but now I also use Ubuntu, and it works there: I can even copy the configuration files over from my windows machine, and everything works. Nice.
</ul>
<h2>other editors</h2>
<p>In the past I did take a look at <strong>Notepad++</strong>, but that was a while ago, and it didn't have a nice way to define your own syntax highlighting, which is important for me. I also paid for <strong>Textmate</strong> and <strong>UltraEdit</strong> at different times (both very good), but in the end, jEdit comes out on top for me.<br />
I also used <strong>Eclipse</strong> for a year or so. It's fantastic, and it'll do anything you want, <em>but</em> you have to be really into Eclipse to get the most out of it. </p>
<p>I hope this helps.</p>
http://stackoverflow.com/questions/416766/is-markdown-friendly-enough-for-non-technical-users/416905#4169053Answer by AJ for Is Markdown Friendly Enough for Non-Technical Users?AJ2009-01-06T15:13:12Z2009-01-07T09:20:33Z<p>I think everyone is guessing again. As brad suggests, our guesses are likely to be way off. </p>
<p>The only way to be sure is to run <strong>usability tests</strong>. </p>
<p>Does anyone have any information about usability tests which have been done to look at using markdown? </p>
<p>(Or something similar e.g. Wikimedia?)</p>
<p>The closest thing I've found is <a href="http://blip.tv/file/1170327" rel="nofollow">a screencast comparing the usability of markdown vs. a WYSIWYG editor</a>. It's not a usability test, however. </p>
http://stackoverflow.com/questions/173732/to-which-open-source-projects-do-you-contribute1To Which Open Source Projects Do You Contribute? AJ2008-10-06T09:55:53Z2009-01-06T21:29:17Z
<p>Are you regularly contributing to any open source projects?
Which ones?<br />
How many contributions have you made?
What attracted you to them? </p>
http://stackoverflow.com/questions/416625/why-does-sql-force-me-to-repeat-all-non-aggregated-fields-from-my-select-clause-i8Why does SQL force me to repeat all non-aggregated fields from my SELECT clause in my GROUP BY clause?AJ2009-01-06T13:59:34Z2009-01-06T20:25:54Z
<p>This has bugged me for a long time. </p>
<p>99% of the time, the GROUP BY clause is an exact copy of the SELECT clause, minus the aggregate functions (MAX, SUM, etc.).<br />
This breaks the Don't Repeat Yourself principle. </p>
<p>Is there a good reason for this? </p>
<h2>edit</h2>
<p>I realise that some implementations allow you to have different fields in the GROUP BY than in the SELECT (hence 99%, not 100%), but surely that's a very minor exception?<br />
Can someone explain what is supposed to be returned if you use different fields? </p>
<p>Thanks. </p>
http://stackoverflow.com/questions/416766/is-markdown-friendly-enough-for-non-technical-users/1814682#1814682Comment by AJ on Is Markdown Friendly Enough for Non-Technical Users?AJ2009-11-30T11:51:40Z2009-11-30T11:51:40ZNice to see work like this. can you publish the details? http://stackoverflow.com/questions/407129/best-font-for-terminal/407178#407178Comment by AJ on Best font for terminalAJ2009-11-23T10:07:37Z2009-11-23T10:07:37ZThanks, @jleedev. I've updated the entry. If I come across anything similar that works, I'll post it. http://stackoverflow.com/questions/1404617/retrieve-deleted-project-in-ms-visual-sourcesafe/1685259#1685259Comment by AJ on Retrieve Deleted Project in MS Visual SourceSafe?AJ2009-11-06T10:30:13Z2009-11-06T10:30:13ZThat's a pleasure :)http://stackoverflow.com/questions/221995/ms-access-front-end-alternative/1665140#1665140Comment by AJ on MS Access Front-End Alternative?AJ2009-11-03T10:24:14Z2009-11-03T10:24:14Z1) We will only have to support a small number of apps: YES, but: we don't know which ones will cause the problems. So we need to get them all into the fold where we can maintain them nicely.
2) Need a policy. YES. The policy needs to say "no access apps" and it needs to be enforced by large men with short haircuts and bad suits.
3) Quick and Dirty apps. NO. That just causes problems. What we do is to update existing apps/platforms/systems in an agile manner.
4) Teach users to develop apps. NO. We struggle to do this nicely and to commuincate as required. They haven't a chance. http://stackoverflow.com/questions/221995/ms-access-front-end-alternative/1665140#1665140Comment by AJ on MS Access Front-End Alternative?AJ2009-11-03T10:10:54Z2009-11-03T10:10:54ZYou raise thoughtful and interesting points. I agree in part. I may have to update my question. thanks! +1http://stackoverflow.com/questions/734474/how-to-store-a-collection-of-custom-objects-to-an-user-config-fileComment by AJ on How to store a collection of custom objects to an user.config file?AJ2009-10-23T13:29:05Z2009-10-23T13:29:05Zvery sensible question. I had a similar question. +1http://stackoverflow.com/questions/1612584/update-struct-in-foreach-loop-in-cComment by AJ on Update Struct in foreach loop in C#AJ2009-10-23T11:26:47Z2009-10-23T11:26:47ZThanks for the link, Brian. http://stackoverflow.com/questions/1538301/c-does-foreach-iterate-by-referenceComment by AJ on C# - Does foreach() iterate by reference?AJ2009-10-23T11:26:10Z2009-10-23T11:26:10ZRelated question: <a href="http://stackoverflow.com/questions/1612584/update-struct-in-foreach-loop-in-c" rel="nofollow" title="update struct in foreach loop in c">stackoverflow.com/questions/1612584/…</a>
http://stackoverflow.com/questions/1612584/update-struct-in-foreach-loop-in-c/1612597#1612597Comment by AJ on Update Struct in foreach loop in C#AJ2009-10-23T10:41:18Z2009-10-23T10:41:18ZThanks for explaining the differene, Johannes. Much appreciated. +1http://stackoverflow.com/questions/1612584/update-struct-in-foreach-loop-in-c/1612600#1612600Comment by AJ on Update Struct in foreach loop in C#AJ2009-10-23T10:39:55Z2009-10-23T10:39:55ZExactly what I was looking for! thanks, Henk :)http://stackoverflow.com/questions/1437533/using-sqlite-with-classic-asp/1442431#1442431Comment by AJ on Using SQLite with Classic ASPAJ2009-09-18T10:21:25Z2009-09-18T10:21:25Zthanks for this!http://stackoverflow.com/questions/45179/are-there-benefits-to-classic-asp-over-asp-net/892227#892227Comment by AJ on Are there benefits to Classic ASP over ASP.netAJ2009-09-17T10:22:37Z2009-09-17T10:22:37ZVery sensible comments. It's nice to see someone open to both the old and the new ;) http://stackoverflow.com/questions/45179/are-there-benefits-to-classic-asp-over-asp-net/45886#45886Comment by AJ on Are there benefits to Classic ASP over ASP.netAJ2009-09-17T10:21:08Z2009-09-17T10:21:08ZVoted up for actually answering the question in the title ;)http://stackoverflow.com/questions/1404617/retrieve-deleted-project-in-ms-visual-sourcesafe/1416426#1416426Comment by AJ on Retrieve Deleted Project in MS Visual SourceSafe?AJ2009-09-14T09:49:21Z2009-09-14T09:49:21ZThat's a great tip. thanks!
I don't tick that checkbox, but I agree - it's all too tempting! http://stackoverflow.com/questions/102894/is-anyone-targeting-google-chrome-yet-web-apps-plugins/1305610#1305610Comment by AJ on Is anyone targeting Google Chrome yet? (Web apps, plugins)AJ2009-09-09T09:47:20Z2009-09-09T09:47:20ZI'm always looking for a better RSS reader! top tip - I'll check it out! thanks :)