User Allan Wind - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:12:26Zhttp://stackoverflow.com/feeds/user/9706http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/109854/auto-format-structured-data-phone-date-using-jquery-plugin-or-failing-that-va3Auto-format structured data (phone, date) using jQuery plugin (or failing that vanilla JavaScript)Allan Wind2008-09-21T00:14:22Z2009-03-23T15:42:24Z
<p>I like jQuery and I was wondering if anyone have used a good plugin or (non-jQuery) JavaScript library that allows for auto-formatting of structured fields like phone numbers or dates. I know of the jquery-ui-datapicker plugin, and not what I am looking for here. You may type in a phone number as 123 which then becomes (123), additional numbers will be formatted as (123) 456 7890 Ext. 123456. If you press delete the auto-formatting stuff disappears automatically, and repositioning of the cursor, say, after (123) and pressing delete will remove the 3 and make the rest (124) 567 8901 Ext. 23456. The ones that I have played with appears unreliable.</p>
http://stackoverflow.com/questions/498530/open-a-new-tab-in-firefox-and-keep-ff-in-the-background/500345#5003451Answer by Allan Wind for Open a new tab in firefox and keep ff in the backgroundAllan Wind2009-02-01T06:44:10Z2009-02-01T06:44:10Z<p>If you set browser.tabs.loadDivertedInBackground to true in about:config then -new-tab will open tabs in the background and not focus the window. This does more than you (or I) want but perhaps it is a suitable work-around for you?</p>
http://stackoverflow.com/questions/475626/document-management2Document ManagementAllan Wind2009-01-24T06:30:13Z2009-01-24T07:49:24Z
<p>We looking for a simple, open source, web based document management system for Linux. With document management I mean the ability to store a set of files (minimally doc, xls and pdf) as a document. Associate meta data with the document like owner and version. Update and delete documents. Ability to index and search content. Authentication and the ability to authorize at least read, and possible write. If possible I would like to avoid implementations in Java or PHP, and as we use MySQL already that would work especially well for meta-data storage.</p>
<p>We have used Google Applications in the past but the lack of support for PDF makes it a poor fit. Other downsides include their service losing some of our spreadsheets, no concept of company owning information opposed to individual accounts, and some of our information is sensitive and we prefer keeping it in-house (passwords, contracts etc).</p>
<p>MediaWiki was not a good fit either as our documents is really a set opposed to be structured content (i.e. not looking for a content management system), and at least the version we had installed did not deal well with attachments.</p>
<p>Based on review of past questions I plan on looking into KnowledgeTree. Any other projects that we should consider?</p>
http://stackoverflow.com/questions/455932/a-b-testing-and-stats-solutions/475651#4756511Answer by Allan Wind for A/B testing and stats solutionsAllan Wind2009-01-24T06:47:24Z2009-01-24T06:47:24Z<p>You may want to partition your problem into analytics (impressions, actions, and possible in-page events, reporting of your tests), and a framework for serving up your variations (how do you manage x variations both in practical terms of preparing them, do you need to store variations for future reference, turning on and off tests, optimize the effectiveness of your test etc). There is clearly an overlap, say, Google Website Optimizer can turn off a bad variation as soon as it has data to support it, but by thinking about this as different problems you may be able to reuse perhaps the Google Analytics component.</p>
http://stackoverflow.com/questions/69539/have-you-used-any-of-the-c-interpreters-not-compilers9Have you used any of the C++ interpreters (not compilers)?Allan Wind2008-09-16T05:11:01Z2008-10-17T19:11:26Z
<p>I am curious if anyone have used UnderC, Cint, and Ch (or any other C++ interpreter) and could share their experience.</p>
<p>Thanks everyone for your valuable input.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/109861/converting-postgresql-database-to-mysql/109867#1098674Answer by Allan Wind for Converting PostgreSQL database to MySQLAllan Wind2008-09-21T00:18:52Z2008-10-15T02:28:51Z<p>One advise is to start with a current version of MySQL, otherwise you will not have sub-queries, stored procedures or views. The other obvious difference is auto-increment fields. Check out:</p>
<p><a href="http://www.lightbox.ca/pg2mysql.php" rel="nofollow">pg2mysql</a></p>
<p>/Allan</p>
http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/129576#1295760Answer by Allan Wind for When did you know it was time to leave your job?Allan Wind2008-09-24T20:09:33Z2008-09-24T20:09:33Z<p>I think it is a combination of where the the company is going, where you are going within the company, what learning and otherwise getting from being employed. The last company I worked for I was at for 8 years, and when I left it was because I did not see the company going anywhere (revenue was down 25% on the last quarter I was there), others were leaving so I did not see any management opportunity and helping lay-off people is not a lot of a fun, and while I was still early on the learning curve in the group that I had joined it did not feel like enough of a draw for me.</p>
<p>I hope that helps.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/110124/tips-for-getting-started-with-sql/110154#1101541Answer by Allan Wind for Tips for getting started with SQL?Allan Wind2008-09-21T03:22:59Z2008-09-21T03:22:59Z<p>SQLite is nice and they have really nice documentation, however you should be aware that it is not a full featured SQL database like MySQL, Postgres or the commercial variants. SQLite's API relies on callbacks which is a fine model, but not all database APIs work that way. If you are familiar with Perl, then DBI is another nice way to explore SQL.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/330/c-should-i-use-nested-classes-in-this-case/109887#1098870Answer by Allan Wind for C++: Should I use nested classes in this case?Allan Wind2008-09-21T00:39:00Z2008-09-21T00:39:00Z<p>We hit an issue with a semi-old Sun C++ compiler and visibility of nested classes which behavior changed in the standard. This is not a reason to not do your nested class, of course, just something to be aware of if you plan on compiling your software on lots of platforms including old compilers.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/98566/good-headphones-for-a-noisy-office/109031#1090311Answer by Allan Wind for Good headphones for a noisy officeAllan Wind2008-09-20T19:07:12Z2008-09-20T19:07:12Z<p>I found that semi-open headphones (like Sennheiser HD-650) is disturbing to others, and hence prefer ear buds (currently Shure SE530) in the office.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/109000/how-to-simulate-memory-allocation-errors/109005#1090053Answer by Allan Wind for How to simulate memory allocation errorsAllan Wind2008-09-20T18:59:43Z2008-09-20T18:59:43Z<p>You can write your own mock library with the same interface as your 3rd party library instead of it. You can also use LD_PRELOAD to override selected functions of the 3rd party library.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/108991/how-important-is-early-exposure-to-computers-for-a-sw-developer/109001#1090010Answer by Allan Wind for How important is early exposure to computers for a SW developer?Allan Wind2008-09-20T18:57:41Z2008-09-20T18:57:41Z<p>I do not think early exposure matters, and recently I read something like half the people in the computer field come from other backgrounds. For people that start early it is either games, or an interest and that just end up being the career choice as well. Not sure about the career path aspect, children start at a different point in the evolution, and may not be interested in the low-level stuff but instead build upon existing frameworks or components.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/87143/does-k-i-s-s-play-a-role-in-your-development-if-so-do-you-prosper-from-it/87180#871800Answer by Allan Wind for Does K.I.S.S play a role in your development, if so, do you prosper from it?Allan Wind2008-09-17T20:18:35Z2008-09-17T20:18:35Z<p>I constantly strive for simple solutions, and often refactor code with the expressed intent of simplifying it typically prior to adding new features. Simple is easier to test, and usually there is less of it. Less effort means quicker turn-around.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/85985/how-to-best-implement-simple-crash-error-reporting/86010#860100Answer by Allan Wind for How to best implement simple crash / error reporting?Allan Wind2008-09-17T18:12:08Z2008-09-17T18:12:08Z<p><a href="http://pycrash.sourceforge.net/" rel="nofollow">PyCrash</a>?</p>
http://stackoverflow.com/questions/85880/determine-if-a-function-exists-in-bash/85932#859322Answer by Allan Wind for Determine if a function exists in bashAllan Wind2008-09-17T18:04:14Z2008-09-17T18:04:14Z<pre><code>$ g() { return; }
$ declare -f g > /dev/null; echo $?
0
$ declare -f j > /dev/null; echo $?
1
</code></pre>
http://stackoverflow.com/questions/74443/managing-authorizedkeys-on-a-large-number-of-hosts/74538#745380Answer by Allan Wind for Managing authorized_keys on a large number of hosts.Allan Wind2008-09-16T16:58:45Z2008-09-16T16:58:45Z<p>Have you considered using clusterssh (or simmilar) to automate the file transfer? Another option is one of the centralized http://en.wikipedia.org/wiki/Comparison_of_open_source_configuration_management_software">configuration systems.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/74385/how-to-convert-datetime-to-varchar/74431#744310Answer by Allan Wind for How to convert DateTime to VarCharAllan Wind2008-09-16T16:49:34Z2008-09-16T16:49:34Z<p>You did not say which database, but with mysql here is an easy way to get a date from a timestamp (and the varchar type conversion should happen automatically):</p>
<pre><code>mysql> select date(now());
+-------------+
| date(now()) |
+-------------+
| 2008-09-16 |
+-------------+
1 row in set (0.00 sec)
</code></pre>
http://stackoverflow.com/questions/74116/writing-more-to-a-file-than-just-plain-text/74189#741890Answer by Allan Wind for Writing more to a file than just plain textAllan Wind2008-09-16T16:22:24Z2008-09-16T16:22:24Z<p>The general problem is usually referred to as serialization of your application state and in your case with a source/target of a file in whatever format makes sense for you. These days the preferred input/output format is XML, and you may want to look into the existing standards in this field. The problem then becomes how do I map from the state of my system to the particular schema. Boost has a serialization framework that you may want to check out.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/73971/using-javascript-how-do-i-make-sure-a-date-range-is-valid/74101#741010Answer by Allan Wind for Using Javascript, how do I make sure a date range is valid?Allan Wind2008-09-16T16:13:48Z2008-09-16T16:13:48Z<p>There is a little more to it than what Rob mentioned, at least for my definition of valid date. JavaScript converts dates so 2/31/2008 becomes 3/3/2008. The easy way to validate that is to compare the day, month and year that you get back from the data object with the day, month and year you pass to the constructor.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/73045/whats-the-best-way-to-organize-code/73112#731120Answer by Allan Wind for What's the best way to organize code?Allan Wind2008-09-16T14:44:45Z2008-09-16T14:44:45Z<p>public, protected and then private and within each section alphabetically although I often list constructor first and deconstructor last.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/72911/whats-the-best-way-to-organize-css-rules/72976#729760Answer by Allan Wind for What's the best way to organize CSS rules?Allan Wind2008-09-16T14:33:52Z2008-09-16T14:33:52Z<p>I found that selectors based on id or class is less fragile to changes and easier to maintain than the ones that I based position. Then we segment our rules into site (global), and application rules. Within each file we organize things alphabetically and from least to most specific (per css specification). We do not minimize or otherwise reduce readability of our rules, and comment them like it was code. When I refactor an HTML page the first thing I do is strip styling from the content, and move it into css files. I know this one is probably obvious.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/72677/how-to-remove-this-kind-of-symbols-junk-from-string/72844#728440Answer by Allan Wind for how to remove this kind of symbols (junk) from string?Allan Wind2008-09-16T14:23:05Z2008-09-16T14:23:05Z<p>Either use a blacklist of stuff you do not want, or preferably a white list (set). With a white list you iterate over the string and only copy the letters that are in your white list to the result string. You said remove, and the way you do that is having two pointers one you read from (R) and one you write to (W):</p>
<pre><code>I Donââ‚
W R
</code></pre>
<p>if comma is in your whitelist then you would in this case read the comma and write it where à is then advance both pointers. UTF-8 is a multi-byte encoding, so you advancing the pointer may not just be adding to the address.</p>
<p>With C an easy to way to get a white list by using one of the predefined functions (or macros): isalnum, isalpha, isascii, isblank, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper, isxdigit. In this case you send up with a white list function instead of a set of course.</p>
<p>Usually when I see data like you have I look for memory corruption, or evidence to suggest that the encoding I expect is different than the one the data was entered with.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69783/what-collaborative-electronic-system-do-you-use-for-managing-releases-features/69796#697960Answer by Allan Wind for What collaborative, electronic system do you use for managing releases, features, and tasks for developers and managers?Allan Wind2008-09-16T06:26:07Z2008-09-16T06:26:07Z<p>At a past employer we build a simple system to manage the releases. It served to communicate release dates, release notes, and defect tracking. Worked very well and it probably took someone a week to write in PHP or something.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69764/what-do-you-use-to-write-and-edit-stored-procedures-in-oracle/69774#697740Answer by Allan Wind for What do you use to write and edit stored procedures in Oracle?Allan Wind2008-09-16T06:20:30Z2008-09-16T06:20:30Z<p>I just used a standard editor (vim which then gave me syntax highlighting).</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69730/annotations-of-a-programmers-life-helping-entry-level-persons-to-comprehend/69751#697510Answer by Allan Wind for Annotation(s) of a Programmer's Life - Helping Entry-Level persons to comprehend more about real-world programming.Allan Wind2008-09-16T06:16:10Z2008-09-16T06:16:10Z<p>The best advise that I can give you is contact some of your friends to identify an opportunity for a "day" internship with at least one company. Ideally you want to see both a start-up environment and a larger company; they are very different in my experience. You may need to put more than 8 hours aside per event :-)</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69695/stringstream-manipulators-vstudio-2003/69732#697321Answer by Allan Wind for stringstream manipulators & vstudio 2003Allan Wind2008-09-16T06:11:33Z2008-09-16T06:11:33Z<p>I love this <a href="http://www.cplusplus.com/reference/" rel="nofollow">reference site</a> for stream questions like this.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/66148/is-there-a-user-friendly-xml-editor-out-there-i-cant-find-anything-good-prefer/69717#69717-1Answer by Allan Wind for Is there a user friendly XML editor out there? I can't find anything good, preferably open sourceAllan Wind2008-09-16T06:07:32Z2008-09-16T06:07:32Z<p>Give vim a try with a suitable plugin (<a href="http://www.vim.org/scripts/script.php?script_id=301" rel="nofollow">http://www.vim.org/scripts/script.php?script_id=301</a>).</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69700/what-is-a-good-regression-testing-framwork-for-software-applications/69710#697100Answer by Allan Wind for What is a good regression testing framwork for software applications?Allan Wind2008-09-16T06:04:36Z2008-09-16T06:04:36Z<p>You did not indicate what language you are working in, but the xUnit family is available for a lot of different languages.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69645/take-a-screenshot-via-a-python-script-linux/69670#69670-5Answer by Allan Wind for Take a screenshot via a python script. [Linux]Allan Wind2008-09-16T05:50:53Z2008-09-16T05:50:53Z<p>First page on google search for <a href="http://snippets.dzone.com/posts/show/398" rel="nofollow">python screen shot</a>. It assumes you have the graphics module available of of course.</p>
<p>/Allan</p>
http://stackoverflow.com/questions/69646/svn-and-renaming-the-server-its-running-on/69659#696591Answer by Allan Wind for SVN and renaming the server it's running onAllan Wind2008-09-16T05:48:15Z2008-09-16T05:48:15Z<p>First google hit:
svn sw --relocate svn://example1.com:22/name <a href="http://example2.com:24/edc" rel="nofollow">http://example2.com:24/edc</a></p>
http://stackoverflow.com/questions/109854/auto-format-structured-data-phone-date-using-jquery-plugin-or-failing-that-va/109913#109913Comment by Allan Wind on Auto-format structured data (phone, date) using jQuery plugin (or failing that vanilla JavaScript)Allan Wind2008-09-21T02:19:40Z2008-09-21T02:19:40ZVery close, thanks for the pointer. If I enter a phone number, then remove a digit and defocus the field my input is gone (argh).http://stackoverflow.com/questions/109854/auto-format-structured-data-phone-date-using-jquery-plugin-or-failing-that-va/109975#109975Comment by Allan Wind on Auto-format structured data (phone, date) using jQuery plugin (or failing that vanilla JavaScript)Allan Wind2008-09-21T02:17:07Z2008-09-21T02:17:07ZWith calendar plugin I actually meant the ui-datepicker and not suitable as far as I can tell.http://stackoverflow.com/questions/85880/determine-if-a-function-exists-in-bash/85903#85903Comment by Allan Wind on Determine if a function exists in bashAllan Wind2008-09-20T18:47:25Z2008-09-20T18:47:25ZBecause I had posted my answer using declare first :-)http://stackoverflow.com/questions/85880/determine-if-a-function-exists-in-bash/85903#85903Comment by Allan Wind on Determine if a function exists in bashAllan Wind2008-09-17T18:06:37Z2008-09-17T18:06:37Z<code>type -t $function</code> is the meal ticket.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-doComment by Allan Wind on Confessions of your worst WTF Moment. (What not to do.)Allan Wind2008-09-16T06:10:03Z2008-09-16T06:10:03ZI got dinged for posting a non-technical question. This is one as well.http://stackoverflow.com/questions/69637/how-can-i-get-a-more-compact-serialization-of-an-imageComment by Allan Wind on How can I get a more compact serialization of an image?Allan Wind2008-09-16T06:05:56Z2008-09-16T06:05:56ZHow did you observe the bye stream was 30 times bigger?http://stackoverflow.com/questions/68114/what-is-the-single-most-useful-general-purpose-javascript-library-for-rich-intern/68119#68119Comment by Allan Wind on What is the single most useful general purpose javascript library for rich internet apps?Allan Wind2008-09-16T05:57:42Z2008-09-16T05:57:42ZWhy do you think jQuery is better, and which of the others have you used?http://stackoverflow.com/questions/69576/why-are-software-requirements-always-phrased-with-shall-instead-of-will/69592#69592Comment by Allan Wind on Why are software requirements always phrased with "shall" instead of "will"?Allan Wind2008-09-16T05:56:37Z2008-09-16T05:56:37ZPerfect reference.http://stackoverflow.com/questions/69411/remote-linux-server-to-remote-linux-server-dir-copy-how/69422#69422Comment by Allan Wind on Remote Linux server to remote linux server dir copy. How?Allan Wind2008-09-16T04:40:22Z2008-09-16T04:40:22ZIf the path is different on the remote end, then:
(cd $path; tar xf -)http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68419#68419Comment by Allan Wind on What is your single most favorite command-line trick using Bash?Allan Wind2008-09-16T04:31:53Z2008-09-16T04:31:53ZDoes not work for me.http://stackoverflow.com/questions/2364/what-is-your-experience-with-unit-testing-in-practice/2390#2390Comment by Allan Wind on What is Your Experience with Unit Testing in Practice?Allan Wind2008-09-16T03:38:04Z2008-09-16T03:38:04ZTypo s/uge/huge/;