active questions tagged utilities - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T15:47:41Z http://stackoverflow.com/feeds/tag/utilities http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/110065/must-have-tools-for-an-os-x-switcher 19 Must have tools for an OS X switcher Mac 2008-09-21T02:32:15Z 2009-12-10T14:00:00Z <p>What must have tools/apps/utilities are recommended for OS X in general, and for a developer using that platform specifically?</p> http://stackoverflow.com/questions/1880609/what-utilies-you-like-of-fxcop 0 What utilies you like of FxCop demokritos 2009-12-10T12:19:23Z 2009-12-10T12:19:23Z <p>I love Resharper, but Fxcop is free, and does some bits Resharper does. My question is what can do more to get best out of Fxcop? I am using VS2008, and planning to upgrade to VS2010 next March hopefully.</p> http://stackoverflow.com/questions/1866566/useful-wpf-utilities 4 Useful WPF utilities luvieere 2009-12-08T12:09:24Z 2009-12-08T16:13:32Z <p>What are some useful utilities that help you when writing WPF applications? I know about <a href="http://blois.us/Snoop/" rel="nofollow">Snoop</a> for visual debugging of WPF applications at runtime, and <a href="http://blog.wpfwonderland.com/2008/10/08/shazzam-wpf-pixel-shader-effect-testing-tool-now-available/" rel="nofollow">Shazzam</a> - a WPF pixel shader effect testing tool.</p> <p>I'd like to know about other such applications and what are they useful at.</p> http://stackoverflow.com/questions/173328/whats-in-your-utility-toolkit 8 What's in your Utility Toolkit? Rob Sanders 2008-10-06T06:27:23Z 2009-12-03T11:27:02Z <p>Some of the most efficient engineers, developers and IT professionals I know usually carry around a common "toolkit" of useful programs, add-ins or utilities which help them for day-to-day debugging, developing or designing.</p> <p>The question is:<br> <i>What is in your utility toolkit.. What tools couldn't you live without?</i></p> http://stackoverflow.com/questions/1655372/longest-line-in-a-file 3 Longest line in a file drewster 2009-10-31T19:34:36Z 2009-11-20T22:19:15Z <p>I'm looking for a simple way to find the longest line in a file. Ideally, it would be a simple bash shell command instead of a script.</p> http://stackoverflow.com/questions/1766042/utilities-file-in-php 3 Utilities file in php? keithjgrant 2009-11-19T19:48:19Z 2009-11-19T19:54:22Z <p>What is the best way to deal with "utility" functions in a OOP PHP framework? Right now, we just have a file with several functions that are needed throughout the system. (For example, a <code>distribute()</code> function which accepts a value and an array, and returns an array with the value distributed in the same proportions and same keys as the input array.)</p> <p>I have always felt "dirty" using that because it's not object-oriented at all. Is it better practice to move these into various classes as static methods, or is that just a semantic workaround? Or is there just going to be a level in a framework where some stuff is going to fall outside of the OOP structure?</p> http://stackoverflow.com/questions/1751844/java-convert-liststring-to-a-joind-string 3 Java: convert List<String> to a join()d string Jason S 2009-11-17T21:15:14Z 2009-11-18T03:00:40Z <p>Javascript has <code>Array.join()</code></p> <pre><code>js&gt;["Bill","Bob","Steve"].join(" and ") Bill and Bob and Steve </code></pre> <p>Does Java have anything like this? I know I can cobble something up myself with StringBuilder:</p> <pre><code>static public String join(List&lt;String&gt; list, String conjunction) { StringBuilder sb = new StringBuilder(); boolean first = true; for (String item : list) { if (first) first = false; else sb.append(conjunction); sb.append(item); } return sb.toString(); } </code></pre> <p>...but there's no point in doing this if something like it is already part of the JDK.</p> http://stackoverflow.com/questions/521382/command-line-tool-to-delete-folder-with-a-specified-name-recursively-in-windows 11 Command line tool to delete folder with a specified name recursively in Windows? opensas 2009-02-06T17:52:18Z 2009-11-13T09:29:18Z <p>I want to delete every "_svn" in every folder and subfolder...</p> <p>For example</p> <pre> c:\ proyect1 _svn images _svn banner _svn buttons _svn </pre> <p>Then I run something like </p> <pre><code>rm-recurse c:\proyect1 _svn </code></pre> <p>And I should get:</p> <pre> c:\ proyect1 images banner buttons </pre> <p>The ideal thing would be a tiny stand-alone EXE or something like that.</p> <p>-- Thanks Grant, as soon as I posted the question I saw <a href="http://en.wikipedia.org/wiki/Subversion%5F%28software%29" rel="nofollow">SVN</a> documentation about the SVN export command, but I also want to delete the _vti_* folders stuff Visual Studio creates, so I'll also explore the <code>for</code> solution.</p> http://stackoverflow.com/questions/528152/which-freeware-apps-utilities-do-you-use-to-boost-your-productivity 10 Which freeware apps / utilities do you use to boost your productivity? Barry 2009-02-09T13:34:29Z 2009-11-07T04:12:01Z <p>Which freeware / open source apps and utilities make your development life a little more enjoyable? Please provide URLs for anything you recommend. </p> <p>Here's a brief list of some of my favorites:</p> <p><a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> is my text editor of choice, it has to be installed on any PC I work on.</p> <p><a href="http://ditto-cp.sourceforge.net/" rel="nofollow">Ditto</a> is a lightweight and highly-configurable clipboard manager that I love.</p> <p><a href="http://www.7-zip.org/" rel="nofollow">7-zip</a> for file compression, with command line support.</p> <p><a href="http://winmerge.org/" rel="nofollow">WinMerge</a> is a fantastic file diff tool with plugin support. I even found a plugin to support Visual FoxPro's .VCX class libraries.</p> http://stackoverflow.com/questions/1645549/following-a-log-file-over-http 0 following a log file over http kurosch 2009-10-29T18:07:32Z 2009-11-02T09:24:07Z <p>For security reasons (I'm a developer) I do not have command line access to our Production servers where log files are written. I <em>can</em>, however access those log files over HTTP. Is there a utility in the manner of "tail -f" that can "follow" a plain text file using only HTTP?</p> http://stackoverflow.com/questions/1641631/windows-utility-for-consuming-cpu 1 Windows utility for consuming CPU Phillip Ngan 2009-10-29T04:35:15Z 2009-10-29T22:09:26Z <p>I'm looking for a windows utility to consume CPU at a specified percentage so that I can test my app under conditions of restricted processor resources.</p> <p>I googled around and saw a reference to CPUGRAB.exe, but can't find a download location.</p> http://stackoverflow.com/questions/521827/unlocker-equivalent-for-vista64 4 "Unlocker" equivalent for Vista64? Schnapple 2009-02-06T19:35:00Z 2009-10-27T20:51:16Z <p>Cedrick Collomb's <a href="http://ccollomb.free.fr/unlocker/" rel="nofollow">Unlocker</a> is one of the most useful utilities I've ever come across - when I come across an issue in compiling that some file is locked I can just right click on the file, click "Unlocker", and it will tell me what has the file (similar to Who Lock Me?) and I can remove the handles, kill the process, whatever. It's really nice.</p> <p>However it doesn't work in Vista64. I'm not sure if it works in Vista32 but I'm currently running Vista64 at home and soon will be using it at work, too. </p> <p>Does anyone know of a comparable utility that works in Vista64?</p> http://stackoverflow.com/questions/1624916/report-generation-tabbing-error -2 Report Generation Tabbing error anand 2009-10-26T13:51:23Z 2009-10-26T13:51:23Z <p>I have a procedure using a util file and cursor where i have to generate a report for the table cl_masd_payments in the format given in the code</p> <p>I have written the procedure but its still giving errors...don know what is the problem</p> <p>Any help will be highly appreciated.</p> <p>Anand</p> <p>The procedure i have written is such:</p> <pre><code> CREATE OR REPLACE PROCEDURE p_Anand_REP IS pnum_id varchar2(12); p_labmat_acc varchar2(30); p_pmt_dt date; p_tot_amt number(9,2); p_sd_amt number(10); p_labmat_amt number(15); p_add varchar2(100); p_util_rec utl_file.file_type; CURSOR cur_pmt_anand IS select rpad(ma_cons,10,' ')||rpad(ma_cons_chk_dgt,10,' '), rpad(ma_ac_lab,10,' ')||rpad(ma_ac_mat,10,' '), ma_pmt_dt, ma_pmt_amt, ma_sd_amt, rpad(ma_sc_amt_lab,10,' ')||rpad(ma_sc_amt_mat,10,' '), rpad(ma_add_one,40,' ')||rpad(ma_add_two,40,' ')||rpad(ma_add_three,40,' ')||rpad(ma_add_four,40,' ')||rpad(ma_add_five,40,' ')||rpad(ma_add_six,40,' ') from cl_masd_payments where ma_cons=9600100100; order by ma_pmt_dt; BEGIN p_util_rec:=utl_file.fopen('/san3/work/test1/ananda/plsql','PAY_REP','w'); OPEN cur_pmt_anand; utl_file.put_line(p_util_rec,'CONS_NO/CD LAB/MAT_ACC PMT_DT PMT_AMT SD_AMT LAB/MAT_AMT NAME_ADDR '); LOOP fetch cur_pmt_anand into pnum_id,p_labmat_acc,p_pmt_dt,p_tot_amt,p_sd_amt,p_labmat_amt,p_add; BEGIN utl_file.put_line(p_util_rec,rpad(pnum_id,15,' ')||rpad(p_labmat_acc,15,' ')||rpad(p_pmt_dt,15,' ')||rpad(p_tot_amt,15,' ')||rpad(p_sd_amt,15,' ')||rpad(p_labmat_amt,15,' ')||rpad(p_add,15,' ')); exit when cur_pmt_anand%NOTFOUND; END LOOP; utl_file.fclose(p_util_rec); CLOSE cur_pmt_anand; END p_Anand_REP; / </code></pre> http://stackoverflow.com/questions/1594359/mailer-utlity-in-java 0 Mailer utlity in java balakrishna 2009-10-20T12:47:26Z 2009-10-20T12:55:28Z <p>hello guys,</p> <p>I am using java mailer utility to send mails in my application. When ever there is any invalid mail id we are getting deliver failure notice. Is there any way to stop that failure notice?</p> <p>Please help in this.</p> http://stackoverflow.com/questions/1578718/where-can-i-find-windows-versions-of-commonly-used-unix-command-line-utilities 1 Where can I find Windows versions of commonly used Unix command line utilities? [closed] Raj More 2009-10-16T15:16:42Z 2009-10-16T18:54:37Z <p>I am used to some Unix utilites for simple things like line counts, word counts, and the like. </p> <p>Are there any utilities available for Windows where we can use *nix functionality?</p> http://stackoverflow.com/questions/1094841/reusable-library-to-get-human-readable-version-of-file-size 1 Reusable library to get human readable version of file size? Sridhar Ratnakumar 2009-07-07T20:59:32Z 2009-10-16T08:30:27Z <p>There are various snippets on the web that would give you a function to return human readable size from bytes size:</p> <pre><code>&gt;&gt;&gt; human_readable(2048) '2 bytes' &gt;&gt;&gt; </code></pre> <p>But is there a Python library that provides this?</p> http://stackoverflow.com/questions/1550740/what-other-alternatives-to-log4net-logging-exist 2 What other alternatives to log4net logging exist? csharptest.net 2009-10-11T13:50:23Z 2009-10-12T09:45:38Z <p>(subjective)</p> <p>I'm looking for what your using to perform logging in your application. This log4net thing is giving me headaches. Is there a better answer out there or is everone just homebrewing a solution? I know the System.Diagnostics.Trace subsystem is quite capable should I layer on this? </p> http://stackoverflow.com/questions/601543/command-line-command-to-auto-kill-a-command-after-a-certain-amount-of-time 4 Command line command to auto-kill a command after a certain amount of time. dreeves 2009-03-02T07:41:07Z 2009-10-11T17:45:37Z <p>I'd like to automatically kill a command after a certain amount of time. I have in mind an interface like this:</p> <pre><code>% constrain 300 ./foo args </code></pre> <p>Which would run "./foo" with "args" but automatically kill it if it's still running after 5 minutes.</p> <p>It might be useful to generalize the idea to other constraints, such as autokilling a process if it uses too much memory.</p> <p>Are there any existing tools that do that, or has anyone written such a thing?</p> <p>ADDED: Jonathan's solution is precisely what I had in mind and it works like a charm on linux, but I can't get it to work on Mac OSX. I got rid of the SIGRTMIN which lets it compile fine, but the signal just doesn't get sent to the child process. Anyone know how to make this work on Mac?</p> <p>[Added: Note that an update is available from Jonathan that works on Mac and elsewhere.]</p> http://stackoverflow.com/questions/1525928/what-add-ons-utilities-are-available-for-tfs 1 What Add-Ons / Utilities are available for TFS? Mark Heath 2009-10-06T14:27:15Z 2009-10-09T02:37:01Z <p>I'm interested in knowing what high quality and useful add-ons or utilities are available for TFS. They can be commercial or open source. Of particular interest are any tools allowing visualisation of branches and tracking changesets as they are merged across branches (yes I know that the next version of TFS will be better in this area). A lot of the lists of TFS add-ins I found via google are quite dated and link to non-existent / abandoned projects.</p> <p>I'll start the ball rolling with two we've found very useful:</p> <ul> <li><a href="http://www.codeplex.com/TFSBranchHistory" rel="nofollow">TFS Branch History</a> is an add-in for Visual Studio allows you to view the history of an item going back before the last branch</li> <li><a href="http://msdn.microsoft.com/en-us/teamsystem/bb980963.aspx" rel="nofollow">TFS Power Tools</a> is a collection of TFS utilities from Microsoft including a command line tool that provides several useful features</li> </ul> http://stackoverflow.com/questions/171506/make-and-build-utilities-on-centos-rhel 1 Make and build utilities on CentOS/RHEL? DV 2008-10-05T04:45:39Z 2009-10-08T17:13:37Z <p>Hello,</p> <p>I've been unsuccessfully searching for a way to install <code>make</code> utility on my CentOS 5.2. I've looked through some RPM repositories and online, with no avail. Installing <code>gcc</code>, <code>gcc-c++</code> didn't help! Package <code>build-essential</code> is not made for CentOS/RHEL. I have RPMFORGE repo enabled in YUM.</p> http://stackoverflow.com/questions/222853/notepad-replacement-for-viewing-very-large-text-files 13 Notepad replacement for viewing very large text files Aheho 2008-10-21T18:08:24Z 2009-10-01T18:15:28Z <p>I have a program that creates daily log files that are 30-60MBs in size. I often need to open these files and search for various events. Notepad.exe takes a very long time to open a file that large. I've tried various shareware programs, some are better than notepad, but they all take a while to load these log files. I'm guessing part of the problem is these programs are designed as text-editors. If a program was designed strictly as a text viewer, it could probably handle large files more gracefully (i.e. not have to load the whole file on startup).</p> <p>Does anybody have any recommendations for a notepad replacement that will allow me to view these files quickly?</p> http://stackoverflow.com/questions/747367/iebgener-help 2 IEBGENER Help Enyalius 2009-04-14T12:44:43Z 2009-09-28T13:15:47Z <p>Ok, so I am having some trouble figuring out how to get IEBGENER working in the way that I want it to. I should preface all this by saying that I am running IEBGENER in a z/OS environment on an academic mainframe.</p> <p>Now, I have three JCL procedures (PROC) inline to some COBOL code that I am working with, and I need to stick IEBGENER in as one of the first steps to put my PROC into a "permanent procedure library under [my] MVS ID" as well as put my COBOL source "into a permanent sequential data set under [my] MVS ID".</p> <p>The instructor mentions to "remember to code the correct LRECL and BLKSIZE information for these data sets."</p> <p>I am not very familiar with IEBGENER and haven't found anything that really explains to me how to do what I am trying to do.</p> <p>Any "Big Iron" people able to help?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1477098/query-tool-for-oracle-9 1 Query tool for Oracle 9 simon 2009-09-25T12:47:06Z 2009-09-25T13:26:01Z <p>I'm used to the comfort of working with MSSQL and the Enterprise Manager and Query Analyzer. Now working with Oracle 9.2 and having to suffer using SQL Plus for making queries, I'm looking for some better alternatives. Are there any free or low-cost tools for this purpose? </p> http://stackoverflow.com/questions/1446477/equivalent-of-defined-in-mathematica 1 Equivalent of "defined" in Mathematica. dreeves 2009-09-18T19:39:41Z 2009-09-20T03:09:25Z <p>I need a function that takes the name of a symbol as a string and returns whether that symbol is already defined. The function <code>ValueQ</code> is close but it returns False for function names. Also, it takes symbols rather than strings.</p> <p>Examples:</p> <pre><code>defined["N"] --&gt; True (predefined function N) defined["x"] --&gt; False x = 7; defined["x"] --&gt; True (x is now defined) defined["7"] --&gt; True (7 is a number) f[x_] := 2x defined["f"] --&gt; True (f has DownValues) g[x_][y_] := x+y defined["g"] --&gt; True (g has SubValues) </code></pre> <p>PS: Thanks to Pillsy for pointing out the need to check for both DownValues and SubValues.</p> http://stackoverflow.com/questions/687948/timeout-a-command-in-bash-without-unnecessary-delay 6 Timeout a command in bash without unnecessary delay system PAUSE 2009-03-26T23:32:49Z 2009-09-18T05:27:21Z <p><a href="http://stackoverflow.com/questions/601543#637753">This answer</a> to a <a href="http://stackoverflow.com/questions/601543">similar question</a> proposes a 1-line method to timeout a long-running command from the bash command line:</p> <pre><code>( /path/to/slow command with options ) &amp; sleep 5 ; kill $! </code></pre> <p>But it's possible that a given "long-running" command may finish earlier than the timeout. (Let's call it a "typically-long-running-but-sometimes-fast" command, or <em>tlrbsf</em> for fun.)</p> <p>So this nifty 1-liner approach has a couple of problems. First, the <code>sleep</code> isn't conditional, so that sets an undesirable lower bound on the time taken for the sequence to finish. Consider 30s or 2m or even 5m for the sleep, when the <em>tlrbsf</em> command finishes in 2 seconds &mdash; highly undesirable. Second, the <code>kill</code> is unconditional, so this sequence will attempt to kill a non-running process and whine about it.</p> <p>So...</p> <p><strong>Is there a way</strong> to timeout a typically-long-running-but-sometimes-fast (<em>"tlrbsf"</em>) command that</p> <ul> <li>has a bash implementation (the other question already has Perl and C answers)</li> <li>will terminate at the earlier of the two: <em>tlrbsf</em> program termination, or timeout elapsed</li> <li>will not kill non-existing/non-running processes (or, optionally: will not <em>complain</em> about a bad kill)</li> <li>doesn't have to be a 1-liner</li> <li>can run under Cygwin or Linux</li> </ul> <p>... and, for bonus points, runs the <em>tlrbsf</em> command in the foreground and any 'sleep' or extra process in the background, such that the stdin/stdout/stderr of the <em>tlrbsf</em> command can be redirected, same as if it had been run directly?</p> <p>If so, please share your code. If not, please explain why.</p> <p>I have spent awhile trying to hack the aforementioned example but I'm hitting the limit of my bash skills.</p> http://stackoverflow.com/questions/1387052/what-are-your-favorite-programmers-utilities-for-windows-and-mac 1 What are your favorite programmer's utilities for Windows and Mac? [closed] Supertux 2009-09-06T23:55:46Z 2009-09-07T00:33:22Z <p>For example, I like <a href="http://kdiff3.sourceforge.net/" rel="nofollow">KDiff</a>, <a href="http://sourceforge.net/projects/console/" rel="nofollow">Console</a> and of course <a href="http://macromates.com/" rel="nofollow">TextMate</a> for Mac.</p> http://stackoverflow.com/questions/1024632/rtmp-is-there-such-a-linux-command-line-tool 0 RTMP: Is there such a linux command line tool? Abs 2009-06-21T19:56:13Z 2009-09-02T18:49:50Z <p>Hello all,</p> <p>I have looked everywhere to find a linux utility that will allow me to download rtmp streams. Not flv video but MP3 streams. The location of the streams I want to download are in this format.</p> <pre><code>rtmp://live.site.com/loc/45/std_fc74a6b7f79c70a5f60.mp3 </code></pre> <p>Anyone know of such a command line tool? Or even anything close to what I am asking for?</p> <p>I do not want full software applications and it would be great if it worked on Linux via Shell or something.</p> <p>Thanks all</p> http://stackoverflow.com/questions/1357126/is-there-a-java-library-that-performs-a-message-digest-on-a-tree-of-objects 0 Is there a Java library that performs a message digest on a tree of objects? dpb 2009-08-31T12:00:29Z 2009-08-31T14:44:55Z <p>I am looking for a library that, given a tree of objects, performs a message digest or hashing on the entire structure. </p> <p>I want to see if an object passed to a method gets modified or not (this object contains other objects, who contain objects and so on – none are immutable). </p> <p>Is there a way to check if the state of any object in the structure changes during the call? </p> http://stackoverflow.com/questions/1255599/how-do-i-reload-the-mainview-when-coming-back-from-the-flipview-using-utilities-t 0 How do I reload the mainview when coming back from the flipview using Utilities template? RyeMAC3 2009-08-10T15:35:16Z 2009-08-10T15:35:16Z <p>I'm using the Utilities Xcode template for my iPhone app. I am trying to find out how to reload the mainview after I come back from the flipview. Seems like the searches I've done come back with the older version of the Utilities template that I do not have. Apple seems to have redone it for 3.0. </p> <p>What I tried to do was put a method in the mainview that reloads the table view on the mainview, and call that method when I come back from the flipview. I must be missing something, because it does not work.</p> <p>I placed in MainViewController.h</p> <pre><code>- (void) reloadMainView; </code></pre> <p>I placed in MainViewController.m</p> <pre><code>- (void) reloadMainView { [tableView reloadData]; } </code></pre> <p>In FlipViewControlller.m I added </p> <pre><code>[MainViewController reloadMainView]; </code></pre> <p>to the "done" method like this:</p> <pre><code>- (IBAction)done { [self.delegate flipsideViewControllerDidFinish:self]; UIViewAnimationTransition transition; transition = UIViewAnimationTransitionFlipFromLeft; [MainViewController reloadMainView]; } </code></pre> <p>The app still builds and runs. It still flips, but the MainView never reloads and I get the error in FlipsideViewContrller.m:</p> <p>'MainViewController' may not respond to '+reloadMainView' (Methods without a matching method signature will be assumed to return 'id' and accept '...' as arguments.)</p> <p>Then someone told me to try this:</p> <p>I put this in mainviewcontroller.h</p> <pre><code>- (void)viewWillAppear:(BOOL)animated; </code></pre> <p>and this in mainviewcontroller.m</p> <pre><code>- (void)viewWillAppear:(BOOL)animated { [tableView reloadData]; } </code></pre> <p>But what goes in my flipviewcontrolller to call it when you flip back to the mainview?</p> <p>I'm stuck, please help. Thanks</p> http://stackoverflow.com/questions/1242051/best-language-for-a-personal-code-library 0 Best language for a personal code library? jparker 2009-08-06T23:22:16Z 2009-08-07T00:35:53Z <p>I'd like to begin a personal code library to contain all the small utility functions I use on a daily basis but can't find elsewhere on the 'net (I work in a specialized field). In my work, I switch pretty often between different products, so I want something flexible enough that I won't need to recode it over and over again.</p> <p>My parameters: I work solely in Windows, and I do it remotely with very little in the way of integrated communication. I send little programs, graphics, charts, etc. off to colleagues by email.</p> <p>Here's what I've come up with so far:</p> <ul> <li><strong>.NET</strong>: This seems like a good default choice, but several of the tools I use (MATLAB, MS Office VBA) don't integrate with it, so I couldn't use my library with those tools.</li> <li><strong>MATLAB/Python/interpreted language</strong>: Very flexible, easy to write new tools, but bad in integration. Can't call programs directly from any other tool without going through the OS.</li> <li><strong>Java</strong>: Better integrated than above, but still not great.</li> <li><strong>Compiled language (C++?)</strong>: Maybe the best option, if written with COM interoperability. I haven't seen anything yet that can't call a COM routine, but the ease-of-use isn't great.</li> </ul> <p>And one interesting idea I might need to give more though to:</p> <ul> <li><strong>Shell scripts</strong>: Dead simple, can stuff everything into a directory, pull out the ones you need for a specific project; but inflexible on Windows (.bat files?), if any helper tools are used they require system-level changes (installing things, changing %PATH%)</li> </ul> <p>So if you were creating your own personal utility library that you hope will last for years and would like to remain as flexible as possible, what would you choose?</p>