User Zoredache - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:06:36Z http://stackoverflow.com/feeds/user/20267 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/241269/method-for-email-testing 8 Method for email testing Zoredache 2008-10-27T20:26:54Z 2009-11-30T20:55:29Z <p>I am writing a program that will be emailing reports out many (~100) clients which I want to test before I spam everyone.</p> <p>I want to do a test run against my production data and actually send the messages to a SMTP server, but I don't want the SMTP server to actually deliver the messages. I want the server to act like a real SMTP server from the perspective of my application, but instead of delivering messages, I just want it to store the messages, and log what happened.</p> <p>Is there a SMTP server specifically designed for testing purposes?</p> <p>Does anyone know of a way to configure exim or postfix to behave like I have described above</p> <p>What do you use to test a mass-email delivery?</p> http://stackoverflow.com/questions/1535925/get-e-mail-contacts-from-exchange-2007-in-c/1535926#1535926 0 Answer by Zoredache for Get e-mail Contacts from exchange 2007 in C# Zoredache 2009-10-07T20:04:32Z 2009-10-08T06:25:11Z <p>Probably the best way to do this would be through <a href="http://msdn.microsoft.com/en-us/library/bb204119.aspx" rel="nofollow">Exchange Web Services</a>.</p> http://stackoverflow.com/questions/383944/what-is-a-python-equivalent-of-phps-vardump 8 What is a python equivalent of PHP's var_dump() Zoredache 2008-12-21T00:43:36Z 2009-09-18T09:08:37Z <p>When debugging in PHP I frequently find it useful to simply stick a <a href="http://us2.php.net/var-dump" rel="nofollow">var_dump</a>($foo, $bar, ...) in my code to show me the the what a variable is, what is value is, and the same for anything that it contains.</p> <p>What is a good python equivalent for this?</p> <p>I have seen several things in my Google searching that are somewhat equivalent, but nothing that is the same or better.</p> http://stackoverflow.com/questions/1425458/does-web-2-0-actually-exist/1425469#1425469 5 Answer by Zoredache for Does web 2.0 actually exist ? Zoredache 2009-09-15T06:32:53Z 2009-09-15T06:32:53Z <blockquote> <p>Then why this term exist?</p> </blockquote> <p>Tim O'Reilly wanted to come up with an interesting name for a <a href="http://oreilly.com/web2/archive/what-is-web-20.html" rel="nofollow">conference</a>.</p> http://stackoverflow.com/questions/227279/how-do-you-create-a-simple-google-talk-client-using-the-twisted-words-python-libr/228941#228941 1 Answer by Zoredache for How do you create a simple Google Talk Client using the Twisted Words Python library? Zoredache 2008-10-23T08:24:24Z 2009-09-09T20:31:00Z <p>I was looking building an XMPP client in python a while ago. I haven't gotten around to working on the project I was looking at it for. I didn't see anything that used twisted but are a couple XMPP libraries I found.</p> <ul> <li><a href="https://launchpad.net/python-xmpp/" rel="nofollow">https://launchpad.net/python-xmpp/</a></li> <li><a href="http://xmpppy.sourceforge.net/" rel="nofollow">http://xmpppy.sourceforge.net/</a></li> <li><a href="http://pyxmpp.jajcus.net/" rel="nofollow">http://pyxmpp.jajcus.net/</a></li> </ul> <p>I also found a python program, under the GPL, that acts multi-point conference system using XMPP.</p> <p><a href="http://coders.meta.net.nz/~perry/jabber/confbot.php" rel="nofollow">http://coders.meta.net.nz/~perry/jabber/confbot.php</a></p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/129370#129370 6 Answer by Zoredache for When do I use the PHP constant "PHP_EOL"? Zoredache 2008-09-24T19:35:52Z 2009-08-10T13:44:01Z <p>You use PHP_EOL when you want a new line, and you want to be cross-platform.</p> <p>This could be when you are writing files to the filesystem (logs, exports, other). </p> <p>You could use it if you want your generated HTML to be readable. So you might follow your <code>&lt;br&gt;</code> with a PHP_EOL.</p> <p>You would use it if you where running php as a script from cron and you needed to output something and have it be formated for a screen.</p> <p>You might use it if you where building up anemail to send that needed some formatting.</p> http://stackoverflow.com/questions/613396/how-do-you-find-a-lawyer-who-is-able-to-answer-software-development-questions 34 How do you find a lawyer who is able to answer software development questions? Zoredache 2009-03-05T02:28:08Z 2009-05-26T16:54:28Z <p>Many answers to questions on stackoverflow about issues related to <a href="http://stackoverflow.com/questions/tagged/contracts">contracts</a>, <a href="http://stackoverflow.com/questions/tagged/copyright">copyright</a>, <a href="http://stackoverflow.com/questions/tagged/patents">patents</a>, <a href="http://stackoverflow.com/questions/tagged/licensing">licensing</a>, advise the questioner to consult a lawyer.</p> <p>This sounds like good advice, but I believe the advice would be a lot more useful if there was more detail to the 'ask a lawyer' answer.</p> <p>Where can I find a list of lawyers that are experts in software development issues? How do I select a good lawyer? What should I know before talking to a lawyer? How can I test if the lawyer is giving me good advice? Should I get a second opinion on issues I believe are important? What else?</p> http://stackoverflow.com/questions/878715/checking-string-for-illegal-characters-using-regular-expression/878739#878739 1 Answer by Zoredache for Checking String for illegal characters using regular expression Zoredache 2009-05-18T17:03:47Z 2009-05-18T17:03:47Z <p>Your expression matches only 1 character. Try <strong>/^[-a-z0-9_]+$/i</strong> the '+' matches more then 1 character and the '$' is the end of line anchor</p> http://stackoverflow.com/questions/771194/are-bdb-files-portable-from-one-system-architecture-to-another 0 Are BDB files portable from one system architecture to another Zoredache 2009-04-21T05:52:46Z 2009-04-21T06:03:13Z <p>My googlefu is lacking tonight and I can't find an answer to this.</p> <p>Will databases I create on a amd64/emt64 system be usable on a x86 system?</p> http://stackoverflow.com/questions/758831/what-set-of-access-permissions-on-content-in-usb-hdds-will-ensure-portability-in/758963#758963 0 Answer by Zoredache for What set of access permissions on content in USB HDDs will ensure portability in Windows? Zoredache 2009-04-17T03:59:46Z 2009-04-17T03:59:46Z <p>Why are you using permissions at all? If someone gets the drive then they have access. Instead, just use something like truecrypt to protect everything, and give everyone permissions to everything in the truecrypt volume.</p> http://stackoverflow.com/questions/749544/pipe-to-from-clipboard/749599#749599 3 Answer by Zoredache for Pipe to/from Clipboard Zoredache 2009-04-14T22:33:14Z 2009-04-14T22:33:14Z <p>Try <a href="http://packages.debian.org/lenny/xclip" rel="nofollow">xclip</a>, (<a href="http://linux.die.net/man/1/xclip" rel="nofollow">man</a>).</p> http://stackoverflow.com/questions/733023/is-it-bad-to-put-a-mysql-query-in-a-php-loop/741495#741495 0 Answer by Zoredache for Is it bad to put a MySQL query in a PHP loop? Zoredache 2009-04-12T09:10:26Z 2009-04-12T09:20:11Z <p>I was inspired by jerebear's answer to build something like his second option for one of my current projects. Because of the shear volume of records I couldn't save and do all the data at once. So I built <a href="http://sites.google.com/site/francyci/Home/developmentproject/dataimport-class/DataImport.php" rel="nofollow">this</a> to do imports. You add your data, and then call a method when each record is done. After a certain, configurable, number of records the data in memory will be saved with a mass insert like jerebear's second option.</p> <pre><code>// CREATE TABLE example ( Id INT, Field1 INT, Field2 INT, Field3 INT); $import=new DataImport($dbh, 'example', 'Id, Field1, Field2, Field3'); foreach ($whatever as $row) { // add data in the order of your column definition $import-&gt;addValue($Id); $import-&gt;addValue($Field1); $import-&gt;addValue($Field2); $import-&gt;addValue($Field3); $import-&gt;nextRow(); } $import-&gt;lastRow(); </code></pre> http://stackoverflow.com/questions/693498/what-subversion-clients-for-windows-are-there-that-do-not-need-installation/693553#693553 0 Answer by Zoredache for What subversion clients for Windows are there that do not need installation? Zoredache 2009-03-28T21:24:04Z 2009-03-28T21:24:04Z <p>I was able to use the command line client that I had installed onto a usb stick. I then whipped up a couple batch files that did the basic checkout, checkin stuff, and one batch file that gave me a command prompt with a PATH set.</p> <p>It doesn't have all the integration of something like tortoise, but I don't think you would be able to easily do that from a usb stick.</p> http://stackoverflow.com/questions/688491/database-efficiency/688726#688726 2 Answer by Zoredache for Database efficiency Zoredache 2009-03-27T06:23:32Z 2009-03-27T06:23:32Z <p>My answer isn't directly related, but as you are designing your database structures you might want to take at some of the the objects in the <a href="http://specification.sifinfo.org/Implementation/2.3/IndexOfObjects.html#IndexOfObjects" rel="nofollow">SIF specification</a> in particular look at the Assignment and GradingAssignment objects.</p> <p>As for how to store the data, you could use a rdbms (sqlite, mysql) or perhaps key-value database (zodb, <a href="http://stackoverflow.com/questions/639545/is-there-a-business-proven-cloud-store-keyvalue-database-open-source">link</a>).</p> <p>Of course, if this is just a small personal project you could just serialize the data to something like xml, json, csv or whatever and storing it as a file. It might be better in the long run to use a database though. A database format will probably scale a lot easier.</p> http://stackoverflow.com/questions/686539/problems-with-sending-a-multipart-alternative-email-with-php/687432#687432 0 Answer by Zoredache for Problems with sending a multipart/alternative email with PHP Zoredache 2009-03-26T20:22:14Z 2009-03-26T20:22:14Z <p>Just a thought, but it might be a lot easier to simply worth with something like <a href="http://sourceforge.net/projects/phpmailer" rel="nofollow">phpmailer</a> or <a href="http://framework.zend.com/manual/en/zend.mail.html" rel="nofollow">Zend_Mail</a>.</p> http://stackoverflow.com/questions/683776/how-to-use-xargs-properly-when-argument-list-is-too-long/683816#683816 3 Answer by Zoredache for How to use "xargs" properly when argument list is too long Zoredache 2009-03-25T22:42:08Z 2009-03-25T22:42:08Z <p>Perhaps you want something like this?</p> <pre><code>find $dir/temp/ -name '*.parse' -print0 | tar --null -T - -c | lzma -9 &gt; $dir/backup/$(date '+%Y-%m-%d')-archive.tar.lzma </code></pre> http://stackoverflow.com/questions/679198/outlook-spell-check-outbound-only/679645#679645 1 Answer by Zoredache for outlook spell check outbound only Zoredache 2009-03-24T23:20:19Z 2009-03-24T23:20:19Z <p>The setting comes you are seeing probably comes from the standard Outlook group policy which toggles the outlook setting (tools->options->spelling->always check before sending).</p> <p>Group policies are applied per computer, or per users. Outlook doesn't appear to offer anything in its configuration pages, and there is nothing in the group policy to make that setting depend on the recipient.</p> <p>I guess, that it may be possible to build some kind of add-on to accomplish this, but the functionality doesn't appear to exist right now.</p> http://stackoverflow.com/questions/670540/mac-10-4-sync-files/670574#670574 0 Answer by Zoredache for Mac 10.4 Sync Files Zoredache 2009-03-22T05:00:13Z 2009-03-22T05:00:13Z <p>What you may want is to setup <a href="http://svnbook.red-bean.com/en/1.0/ch07s03.html" rel="nofollow">svn:externals</a>, or you may also want to take a look at something like <a href="http://piston.rubyforge.org/index.html" rel="nofollow">Piston</a>.</p> http://stackoverflow.com/questions/664758/does-all-smtp-communication-happen-over-25/665184#665184 1 Answer by Zoredache for Does all SMTP communication happen over 25? Zoredache 2009-03-20T06:35:31Z 2009-03-20T06:35:31Z <p>Almost all communication between mail servers on the Internet is done on port 25. This the well known port.</p> <p>See <a href="http://www.ietf.org/rfc/rfc4409.txt" rel="nofollow">rfc4409</a>, it reserves tcp/587 as an alternate submission port for SMTP. Port 25 and 587 are reserved for SMTP, and Submission through IANA <a href="http://www.iana.org/assignments/port-numbers" rel="nofollow">http://www.iana.org/assignments/port-numbers</a>. </p> <p>SMTP can be secured via TLS over port 25, but this doesn't seem to be widely used for Internet email, but I know it is used for some internal communication on some networks.</p> <p>Many ISPs seem to also accept submission on tcp/465, but this port isn't officially registered for this purpose.</p> <p>Of course, any mail server could listen for SMTP on any port, but a sending server won't have any method to discover the alternate port and must assume that it is on port 25. </p> <p>I know some organizations accept submissions from mail clients on other unusual ports like 2525 and others.</p> http://stackoverflow.com/questions/665014/my-script-wont-run-under-the-task-scheduler-why/665154#665154 0 Answer by Zoredache for My script won't run under the task scheduler. Why? Zoredache 2009-03-20T06:16:48Z 2009-03-20T06:16:48Z <p>Where are you trying to write too? Hopefully not any network drives which wouldn't be present for the administrator.</p> <p>Are you able to simply login as administrator and trying to run the script to see what errors you get?</p> <p>Are you depending on any path or other environment settings that wouldn't be present for the administrator?</p> http://stackoverflow.com/questions/663442/php-session-variables-not-preserved/663467#663467 0 Answer by Zoredache for PHP Session Variables Not Preserved Zoredache 2009-03-19T18:36:15Z 2009-03-19T18:36:15Z <p>Use some kind of tool and check the http headers so you can see how the cookie is being sent. Perhaps your web-server is miss-configured and sending out cookies with an invalid different domain.</p> <p>You might want to look at doing session_set_cookie_params() on each request and making sure the correct domain, path, and such are set.</p> http://stackoverflow.com/questions/655149/i-want-to-make-a-conditional-cronjob/655187#655187 0 Answer by Zoredache for I want to make a conditional cronjob Zoredache 2009-03-17T17:10:39Z 2009-03-17T17:10:39Z <p>Why not have your set your script touch a status file when it has successfully completed. Have it run every 5 minutes, and have the first check of the script be to see if the status file is less then 60 minutes old, and if it is young, then quit, if it is old, then fetch.</p> http://stackoverflow.com/questions/654898/problem-with-lucene-search-not-indexing-numeric-values/655091#655091 1 Answer by Zoredache for Problem with Lucene- search not indexing numeric values? Zoredache 2009-03-17T16:49:55Z 2009-03-17T16:49:55Z <p>The find() method tokenizes the query, and with the default Analzer your numbers will be pretty much ignored. If you want to search for a number you have to <a href="http://framework.zend.com/manual/en/zend.search.lucene.query-api.html" rel="nofollow">construct the query</a> or use an alternate <a href="http://framework.zend.com/manual/en/zend.search.lucene.extending.html#zend.search.lucene.extending.analysis" rel="nofollow">analyzer</a> that includes numeric values..</p> <p><a href="http://framework.zend.com/manual/en/zend.search.lucene.searching.html" rel="nofollow">http://framework.zend.com/manual/en/zend.search.lucene.searching.html</a></p> <blockquote> <p>It is important to note that the query parser uses the standard analyzer to tokenize separate parts of query string. Thus all transformations which are applied to indexed text are also applied to query strings.</p> <p>The standard analyzer may transform the query string to lower case for case-insensitivity, remove stop-words, and stem among other transformations.</p> <p>The API method doesn't transform or filter input terms in any way. It's therefore more suitable for computer generated or untokenized fields.</p> </blockquote> http://stackoverflow.com/questions/652517/whats-the-deal-with-the-banner-command/652603#652603 4 Answer by Zoredache for What's the deal with the banner command? Zoredache 2009-03-16T23:59:34Z 2009-03-17T00:17:42Z <p>It isn't really essential to a unix system, I am not sure why it would be part of the standard. There are a many other things that are arguably more important that the standard setting bodies should be focused on.</p> <p>If it isn't available on the system you could simply install it or build a equivalent.</p> <p>There is a banner clone on debian it has a single c file with 155 lines of code, and most of that is just the glyphs. The source can be found on the package page. <a href="http://packages.debian.org/testing/misc/sysvbanner" rel="nofollow">http://packages.debian.org/testing/misc/sysvbanner</a></p> <p>It shouldn't be too difficult to even build another clone in the scripting language of your choice.</p> http://stackoverflow.com/questions/647274/good-wiki-software-for-internal-company-use/647363#647363 2 Answer by Zoredache for Good wiki software for internal company use? Zoredache 2009-03-15T05:53:05Z 2009-03-15T05:53:05Z <p>We have found that <a href="http://wiki.developer.mindtouch.com/" rel="nofollow">DekiWiki</a> works well for us, and we had a very similar set of requirements.</p> http://stackoverflow.com/questions/647210/just-what-is-a-big-database/647225#647225 0 Answer by Zoredache for Just what is 'A big database'? Zoredache 2009-03-15T03:27:30Z 2009-03-15T03:27:30Z <p>I think something like wikipedia, or the US census data is a 'big' database. My personal address lists or todos is a small database. A middle sized database is something in between.</p> <p>You could try and define the sizes by how many servers you needed. A small database is a component of an application you run on your desktop, a mid-sized database would be a single mysql (whatever) server somewhere, and a large database is going to require multiple servers with some kind of replication/failover support.</p> http://stackoverflow.com/questions/647172/what-are-the-pros-and-cons-of-using-an-email-address-as-a-user-id/647212#647212 1 Answer by Zoredache for What are the pros and cons of using an email address as a user id? Zoredache 2009-03-15T03:20:13Z 2009-03-15T03:20:13Z <p>I tend to not prefer pro/con lists, and instead try to think of benefits and challenges.</p> <p>Challenge:</p> <p>Some users will be tempted to use their email address from their ISP. Linking to an email alone, may be difficult for the users who forget to update their email in all the web sites they have signed up for before they change ISPs.</p> <p>Instead:</p> <p>You should consider allowing a user to provide multiple addresses, as well user-selected id and then let the user decide what they want they wish to do. Perhaps also consider allowing the user to provide an OpenID account.</p> http://stackoverflow.com/questions/636084/dns-do-the-ns-names-set-for-a-zone-have-to-match-the-ns-names-reported-by-the-up/636390#636390 2 Answer by Zoredache for DNS: Do the NS names set for a zone have to match the NS names reported by the upstream TLD servers? Zoredache 2009-03-11T21:10:50Z 2009-03-11T21:10:50Z <p>If the parent has valid records referring to DNS servers that are authoritative for the zone then resolution should mostly work.</p> <p>I can think of at least one case where their might be an issue if you had different records and a couple other miss-configurations.</p> <p>The issue would be related to how the name server sends out notifies when the zone updated. For example when you are using bind on the primary dns server, you update the zone and then reload, bind will send out update notifications to all the servers that are listed in the zone. If their was another authoritative server didn't have an NS record in the primary zone then it wouldn't get the notify and would have older data. If the parents where pointing at this server that isn't getting updates, then you could have problems because that server would be providing out of data results.</p> <p>Also, keep in mind that there is such a thing as 'split-horizon' DNS. Sometimes you need to provide a different view of your zone to your internal hosts that are inside your network versues what you display to the public. When you are comparing the name server records make sure you viewing the zone from the same perspective.</p> http://stackoverflow.com/questions/635363/what-are-best-practices-for-permissions-on-apache-writable-directories/635412#635412 0 Answer by Zoredache for What are best practices for permissions on Apache-writable directories? Zoredache 2009-03-11T16:51:56Z 2009-03-11T16:51:56Z <p>If the system is being used for other purposes you should probably avoid giving permissions via the 'others'. Allowing permissions here would basically mean anything else running on that computer, or with access to that computer would have rights to those files.</p> <p>Also, you could create an additional group, and make apache a group member, and whoever is in admin, and change the group ownership to that group, and give permissions to that group. If you use a group, you will probably also need set the 'setgid' bit on the directory. When the setgid bit is set any files created will get the same group membership of the parent directory.</p> http://stackoverflow.com/questions/632861/where-should-i-sell-my-website/632878#632878 0 Answer by Zoredache for Where should I sell my website? Zoredache 2009-03-11T00:37:33Z 2009-03-11T00:37:33Z <p>You would probably need to find someone who is interested in the content / function of the site and try to sell it to them. Without specifics I doubt anyone can provide more information.</p> http://stackoverflow.com/questions/1535925/get-e-mail-contacts-from-exchange-2007-in-c Comment by Zoredache on Get e-mail Contacts from exchange 2007 in C# Zoredache 2009-10-07T20:03:29Z 2009-10-07T20:03:29Z This would be a better fit on stackoverflow. http://stackoverflow.com/questions/807095/what-is-the-optimal-mysql-query-number-in-php-sript Comment by Zoredache on What is the optimal MYSQL query number in php sript? Zoredache 2009-04-30T16:46:36Z 2009-04-30T16:46:36Z Duplicates <a href="http://stackoverflow.com/questions/561900/how-many-mysql-queries-should-i-limit-myself-to-on-a-page-php-mysql/562106" rel="nofollow" title="how many mysql queries should i limit myself to on a page php mysql">stackoverflow.com/questions/561900/&hellip;</a> http://stackoverflow.com/questions/771194/are-bdb-files-portable-from-one-system-architecture-to-another/771215#771215 Comment by Zoredache on Are BDB files portable from one system architecture to another Zoredache 2009-04-21T07:26:27Z 2009-04-21T07:26:27Z Excellent! Thanks. http://stackoverflow.com/questions/764010/php-get-text-separated-by-commas/764019#764019 Comment by Zoredache on PHP: Get text separated by commas Zoredache 2009-04-19T21:06:21Z 2009-04-19T21:06:21Z @htw, what happens when one record has no spaces, and the next record has multiple spaces? The preg_split will work with both 'a,b' and 'a, b'. http://stackoverflow.com/questions/733023/is-it-bad-to-put-a-mysql-query-in-a-php-loop/735347#735347 Comment by Zoredache on Is it bad to put a MySQL query in a PHP loop? Zoredache 2009-04-12T09:13:57Z 2009-04-12T09:13:57Z Of course, you can hide all the implosion and the other uglier bits behind a function or class to make it easier to read and still get the benefit. http://stackoverflow.com/questions/733023/is-it-bad-to-put-a-mysql-query-in-a-php-loop/733029#733029 Comment by Zoredache on Is it bad to put a MySQL query in a PHP loop? Zoredache 2009-04-12T08:14:26Z 2009-04-12T08:14:26Z This answer (opt 2) was very helpful for me. For an import I was doing one insert per record for a huge set of data. I spent an hour re factoring to use something based on your second idea and it changed the runtime for the import from 10 hours to 2 hours. http://stackoverflow.com/questions/690632/how-do-i-update-a-row-in-a-table-or-insert-it-if-it-doesnt-exist/690665#690665 Comment by Zoredache on How do I UPDATE a row in a table or INSERT it if it doesn't exist? Zoredache 2009-03-28T07:39:39Z 2009-03-28T07:39:39Z It is important to understand that it is an insert+delete and never and update. The consequence of this, is that you will always want to make sure when you do a replace, you should always include data for all the fields. http://stackoverflow.com/questions/690897/what-happens-to-a-file-when-the-connection-through-sftp-is-interrupted Comment by Zoredache on What happens to a file when the connection through SFTP is interrupted? Zoredache 2009-03-27T18:41:57Z 2009-03-27T18:41:57Z what sftp server are you using? The answer could be different in each implementation. http://stackoverflow.com/questions/682719/what-does-the-9th-commandment-mean Comment by Zoredache on What does the 9th commandment mean? Zoredache 2009-03-25T17:54:50Z 2009-03-25T17:54:50Z You might want to add a link to the 10 commandments, so we have some context. http://stackoverflow.com/questions/682562/can-anybody-explain-the-structure-of-the-apache-server Comment by Zoredache on Can anybody explain the structure of the Apache server? Zoredache 2009-03-25T17:52:19Z 2009-03-25T17:52:19Z Can you refine your question a bit? You seem to be looking for something, but your question is too vague to give anything more useful then just pointing you at the docs/svn. http://stackoverflow.com/questions/642266/fetch-the-list-of-shared-drives-using-php-on-windows/654047#654047 Comment by Zoredache on Fetch the list of shared drives using PHP on Windows? Zoredache 2009-03-24T05:16:26Z 2009-03-24T05:16:26Z @sakthiopr, as a better question please. He wasn't asking who assigned the task. We need to know what you are trying to do. You need to tell us the context of your question. PHP usually runs on a web server. Asking about mapped drives doesn't make any sense. http://stackoverflow.com/questions/642266/fetch-the-list-of-shared-drives-using-php-on-windows Comment by Zoredache on Fetch the list of shared drives using PHP on Windows? Zoredache 2009-03-24T05:13:16Z 2009-03-24T05:13:16Z Your question isn't clear. Are you expecting to find the drives connected on the web server? Do you want to find the mapped drives on someone's computer connected with a web browser? Are you doing php-gtk? What is the context. http://stackoverflow.com/questions/673964/should-i-learn-ruby-or-python/673986#673986 Comment by Zoredache on Should I learn Ruby or Python? Zoredache 2009-03-23T16:24:23Z 2009-03-23T16:24:23Z If you want a list of python packages see PyPI (<a href="http://pypi.python.org/pypi" rel="nofollow">pypi.python.org/pypi</a>) http://stackoverflow.com/questions/670540/mac-10-4-sync-files Comment by Zoredache on Mac 10.4 Sync Files Zoredache 2009-03-22T04:53:08Z 2009-03-22T04:53:08Z Your title seems almost completely unrelated to your question. http://stackoverflow.com/questions/664771/grab-most-recently-played-itunes-song-using-java/665087#665087 Comment by Zoredache on Grab most recently played iTunes song using Java Zoredache 2009-03-20T06:07:17Z 2009-03-20T06:07:17Z He mentions COM, so Applescript may not be an option.