User Unkwntech - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:27:04Z http://stackoverflow.com/feeds/user/115 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1007547/finding-mp3-length-in-c 2 Finding MP3 length in C# Unkwntech 2009-06-17T14:51:29Z 2009-12-12T22:43:48Z <p>I'm using <a href="http://developer.novell.com/wiki/index.php/TagLib%5FSharp" rel="nofollow">TagLib#</a> to get ID3 tag data from some MP3s, but what I can't seem to do is find the length of the MP3. How can I find the length of an MP3 in C#?</p> http://stackoverflow.com/questions/173046/is-there-a-simple-javascript-slider 4 Is there a simple JavaScript slider? Unkwntech 2008-10-06T02:21:56Z 2009-12-11T14:53:00Z <p>I need to create a custom volume slider for a WMP object. The current slider is complicated to modify, and use, is there a simple way to generate a slider on an HTML page that can have it's value passed to a javascript function?</p> http://stackoverflow.com/questions/441739/regex-for-url-validation-with-parts-capturing 0 Regex for url validation with parts capturing Unkwntech 2009-01-14T02:42:06Z 2009-12-03T16:32:06Z <p>Can a single regex be used to valdate urls and match all the parts, I have been working on one and what I have come up with so far is:</p> <pre><code>(?:(?P&lt;scheme&gt;[a-z]*?)://)?(?:(?P&lt;username&gt;.*?):?(?P&lt;password&gt;.*?)?@)?(?P&lt;hostname&gt;.*?)/(?:(?:(?P&lt;path&gt;.*?)\?)?(?P&lt;file&gt;.*?\.[a-z]{1,6})?(?:(?:(?P&lt;query&gt;.*?)#?)?(?P&lt;fragment&gt;.*?)?)?)? </code></pre> <p>however this does not work, it should match all of the following examples:</p> <blockquote> <p><a href="http://username:password@hostname.tld/path?arg=value#anchor" rel="nofollow">http://username:password@hostname.tld/path?arg=value#anchor</a><br /> <a href="http://www.domain.com/" rel="nofollow">http://www.domain.com/</a><br /> <a href="http://www.doamin.co.uk/" rel="nofollow">http://www.doamin.co.uk/</a><br /> <a href="http://www.yahoo.com/" rel="nofollow">http://www.yahoo.com/</a><br /> <a href="http://www.google.au/" rel="nofollow">http://www.google.au/</a><br /> https://username:password@domain.com/<br /> ftp://user:password@domain.com/path/<br /> https://www.blah1.subdoamin.doamin.tld/<br /> domain.tld/#anchor<br /> doamin.tld/?query=123<br /> domain.co.uk/<br /> domain.tld<br /> <a href="http://www.domain.tld/index.php?var1=blah" rel="nofollow">http://www.domain.tld/index.php?var1=blah</a><br /> <a href="http://www.domain.tld/path/to/index.ext" rel="nofollow">http://www.domain.tld/path/to/index.ext</a><br /> mailto://user@unkwndesign.com</p> </blockquote> <p>and provide a named capture for all the components:</p> <blockquote> <p>scheme eg. http https ftp ftps callto mailto and any other one not listed<br/> username<br /> password<br /> hostname including subdomains, domainand tld<br /> path eg /images/profile/<br /> filename eg file.ext<br /> query string eg. ?foo=bar&amp;bar=foo<br /> fragment eg. #anchor</p> </blockquote> <p>With the hostname as the only mandatory field.</p> <p>We can assume that this is coming from a form specificly asking for an url, and is not going to be used to find links in text.</p> http://stackoverflow.com/questions/89574/which-language-is-most-like-php 1 Which language is most like PHP? Unkwntech 2008-09-18T02:50:18Z 2009-12-01T11:24:06Z <p>I am a PHP dev looking to pickup a new language, I have tried and failed on C++ several times (possibly for my overall lack of interest). I've been hearing a lot about Python, and Ruby and my question is this: Which of these languages (Python, Ruby) should be easiest for someone with a background in PHP to learn?</p> <p>Update (6 months later):</p> <p>I decided at the time of this question to go the Python route, I spent some time learning Python but I didn't really enjoy the language, I eventually moved on to C# which I greatly enjoy, and infact have developed 2 application in C# already and have another 3-5 lined up. I do intend on looking into Ruby when I have some free time, but until then I'll advise anyone else in the position that I was in when this question was asked to skip both Ruby and Python and look into C#. I was a hard-core anti-.net anti-msft and although I still don't like the dependence on .net I do like the design of the language overall.</p> http://stackoverflow.com/questions/1811421/determining-which-files-are-not-used 0 Determining which files are not used. Unkwntech 2009-11-28T03:07:59Z 2009-11-28T04:22:04Z <p>I have a large web app, and I think there are a bunch of old files that are no longer being used, is there an app which can tell me what these files are?</p> http://stackoverflow.com/questions/311882/what-do-statically-linked-and-dynamically-linked-mean 7 What do 'statically linked' and 'dynamically linked' mean? Unkwntech 2008-11-22T23:09:57Z 2009-11-26T02:30:00Z <p>I often hear the terms 'statically linked' and 'dynamically linked', often in reference to code written in C(++|#) but I don't know much of anything about either, what are they, what exactly are they talking about, and what are they linking?</p> http://stackoverflow.com/questions/1108292/download-file-from-web-to-local-file-with-progress-meter-in-c 1 Download file from web to local file with progress meter in C# Unkwntech 2009-07-10T08:00:07Z 2009-11-25T12:04:19Z <p>I have a small app that downloads some files from a remote (HTTP) server to the users local hard drive, some of the files are large, but I don't know just how large at run time. Is there any method that will allow me download a file with some type of progress meter?</p> <p>This is a WinForms app, right now I'm using WebClient.DownloadFile() to download the file.</p> <p>Edit: I've looked into the DownloadProgressChanged and OnDownloadProgressChanged events and they seem to work fine, but they will not work for my solution. I am downloading several files and if I use WebClient.DownloadFileAsync then the event is called several times/second because each file calls it.<br /> Here is the basic structure of the app:</p> <ul> <li>Download a list of files typically about 114</li> <li>Run a loop over the list of files and download each one to its desination</li> </ul> <p>I don't mind downloading each file seperatly but without downloading them with DownloadFileAsync() I cannot use the event handlers.</p> http://stackoverflow.com/questions/166545/finding-a-public-facing-ip-address-in-python 4 Finding a public facing IP address in Python? Unkwntech 2008-10-03T12:20:07Z 2009-11-25T04:19:57Z <p>How can I find the public facing IP for my net work in Python?</p> http://stackoverflow.com/questions/47387/setting-up-mysql-triggers 5 Setting Up MySQL Triggers Unkwntech 2008-09-06T11:24:53Z 2009-10-25T02:52:53Z <p>I've been hearing about triggers, and I have a few questions.<br /> What are triggers?<br /> How do I set them up?<br /> Are there any precautions, aside from typical SQL stuff, that should be taken?</p> http://stackoverflow.com/questions/1580814/creating-a-shortcut-key-for-the-letter-j-to-redirect-to-a-url-using-jquery/1580856#1580856 2 Answer by Unkwntech for Creating a shortcut key for the letter j to redirect to a url using jquery Unkwntech 2009-10-16T23:13:33Z 2009-10-16T23:13:33Z <p>Based on this page here <a href="http://docs.jquery.com/Events/keypress" rel="nofollow">http://docs.jquery.com/Events/keypress</a></p> <pre><code>$().keypress(function (e) { //74 == J //106 == j if (e.which == 74 || e.which == 106) { //redirect } }); </code></pre> http://stackoverflow.com/questions/1563528/how-does-mysql-store-timestamps-internally 2 How does MySQL store timestamps internally? Unkwntech 2009-10-13T23:37:16Z 2009-10-14T00:06:38Z <p>How does MySQL store timestamps internally? Is it an int, or a string or something else?</p> http://stackoverflow.com/questions/45175/resources-online-to-learn-c 4 Resources online to learn C++ Unkwntech 2008-09-05T03:16:15Z 2009-10-07T10:36:20Z <p>Are there any quality resources online for me to learn C++?</p> <p>Edit: I wanted to make a note that the extent of my C(++) knowledge now is<br /> cout &lt;&lt; 'minimal';</p> http://stackoverflow.com/questions/670183/accessing-imap-in-c 1 Accessing Imap in C# Unkwntech 2009-03-21T23:09:24Z 2009-10-06T08:00:25Z <p>Is there a built-in method to access an Imap server (with SSL) in C# or is there a good free library?</p> http://stackoverflow.com/questions/1494400/work-with-subversion-from-usb-key/1494420#1494420 3 Answer by Unkwntech for Work with Subversion from USB Key Unkwntech 2009-09-29T19:17:15Z 2009-09-29T19:17:15Z <p>As long as robocopy copies the entire .svn folder it shouldn't case any problems as far as I'm aware.</p> http://stackoverflow.com/questions/1470123/no-stringwithcontentsofurl-method-found 0 No stringWithContentsofURL method found Unkwntech 2009-09-24T06:53:25Z 2009-09-24T07:04:56Z <p>I'm following <a href="http://icodeblog.com/2009/06/18/objective-c-20-an-intro-part-1/" rel="nofollow">this tutorial</a>, attempting to learn a bit about iPhone development, and there come a point where the author uses the stringWithContentsofURL method but xcode is telling me that there is no stringWithContentsofURL method found. I've done some searching and I've not been able to come up with a solution. This is a screen shot of the xcode window displaying the error: <img src="http://mywebprogrammer.com/so/obj-c%20problem%200.png" alt="alt text" /></p> http://stackoverflow.com/questions/1458730/tools-for-graphicaly-representing-database-structure 1 Tools for graphicaly representing database structure. Unkwntech 2009-09-22T08:12:17Z 2009-09-22T08:23:53Z <p>I have been asked to create a graphical representation of our database, I have looked at tools such as, <a href="http://www.lucidcharts.com" rel="nofollow">lucidcharts</a>. Are there any good tools that I can use to graphically represent the database and it's relationships?</p> http://stackoverflow.com/questions/195109/running-compiled-python-py2exe-as-administrator-in-vista 2 Running compiled python (py2exe) as administrator in Vista Unkwntech 2008-10-12T04:46:16Z 2009-09-19T15:11:40Z <p>Is it possible to programaticly run compiled Python (comiled via py2exe) as administrator in Vista?</p> <p>Some more clarification:<br /> I have written a program that modifies the windows hosts file (c:\Windows\system32\drivers\etc\hosts) in Vista the program will not run and will fail with an exception unless you right-click and run as administrator even when the user has administrator privileges, unlike in XP where it will run if the user has administration rights, so I need a way to elevate it to the correct privileges programaticly.</p> http://stackoverflow.com/questions/188452/reading-writing-a-ms-word-file-in-php 5 Reading/Writing a MS Word file in PHP Unkwntech 2008-10-09T18:09:15Z 2009-09-13T17:45:58Z <p>Is it possible to read and write Word (2003 and 2007) files in PHP without using a COM object? I know that I can:</p> <pre><code>$file = fopen('c:\file.doc', 'w+'); fwrite($file, $text); fclose(); </code></pre> <p>but Word will read it as an HTML file not a native .doc file.</p> http://stackoverflow.com/questions/12009/piping-password-to-smbpasswd 2 Piping password to smbpasswd Unkwntech 2008-08-15T06:08:55Z 2009-09-10T11:57:30Z <p>How can I pipe the new password to smbpasswd so I can automate my installation process.</p> http://stackoverflow.com/questions/1310738/displaying-code-snippets-in-wordpress/1310785#1310785 0 Answer by Unkwntech for Displaying code snippets in wordpress. Unkwntech 2009-08-21T08:47:10Z 2009-08-21T08:47:10Z <p>I was useing WP-Syntax for a bit but I wasn't entirely happy with it, so I'm now using <a href="http://code.google.com/p/google-code-prettify/" rel="nofollow">google-code-prettify</a>.</p> <p>If you'd like to see it in action see <a href="http://blog.mywebprogrammer.com/archives/introduction-to-oop/" rel="nofollow">my blog</a>.</p> http://stackoverflow.com/questions/1297455/using-a-custom-field-in-where-clause-of-sql-query 2 Using a custom field in WHERE clause of SQL query. Unkwntech 2009-08-19T01:53:48Z 2009-08-19T05:54:04Z <p>My question is very similar to this one <a href="http://stackoverflow.com/questions/89820/how-to-reference-a-custom-field-in-sql">How to reference a custom field in SQL</a> I have the following query:</p> <pre><code>SELECT * , (SELECT COUNT( id ) FROM cms_store_items WHERE speaker = cms_store_items_speakers.id ) AS count FROM cms_store_items_speakers LIMIT 0 , 30 </code></pre> <p>I need to add a WHERE clause that looks like <code>WHERE count &gt; 0</code> but when I do I get the error <code> Unknown column 'count' in 'where clause' </code> is there anyway for me to reference the custom field in my where clause without duplicating logic?</p> <p>I could just place the logic for the where clause in my code but I don't want to send what may well be more then 1000 rows to the app if not needed, it just seems like a waste of resources.</p> http://stackoverflow.com/questions/1285787/web-hosting-for-applications/1285799#1285799 1 Answer by Unkwntech for Web Hosting For Applications Unkwntech 2009-08-17T01:10:33Z 2009-08-17T01:10:33Z <p>I've recently started using <a href="https://www.gandi.net/" rel="nofollow">Gandi</a>, and I like the system, and its fairly cheap.</p> http://stackoverflow.com/questions/1250219/using-vs2008-with-c-c 0 Using VS2008 with C/C++ Unkwntech 2009-08-09T00:08:56Z 2009-08-16T18:15:18Z <p>I've decided to dive into some code written in C and I'd like to use VS I have VS08 Pro which I'm using now primarily for C#, but I've noticed that there are no options for C in VS. Also I've noticed that although VS has projects, and whatnot for C++ that the build options are all greyed out so I cannot build C++. What do I need to build C++? Can I add projects and building for C in VS?</p> http://stackoverflow.com/questions/136734/key-presses-in-python 3 Key Presses in Python Unkwntech 2008-09-25T22:58:01Z 2009-08-15T19:16:47Z <p>Is it possible to make it appear to a system that a key was pressed, for example I need to make a the 'A' key be pressed thousands of times, and it is much to time consuming to do it manually, I would like to write something to do it for me, and the only thing I know well enough is Python.</p> <p>A better way to put it, I need to emulate a key press, I.E. not capture a key press.</p> <p>More Info (as requested): I am running windows XP and need to send the keys to another application.</p> http://stackoverflow.com/questions/166506/finding-local-ip-addresses-in-python 9 Finding local IP addresses in Python. Unkwntech 2008-10-03T12:03:36Z 2009-08-13T08:50:34Z <p>How can I find the local IP address (i.e. 192.168.x.x or 10.0.x.x) in python, preferably with only built-in moduals, I would also like it to be platform independent.</p> http://stackoverflow.com/questions/1214121/what-are-some-cross-language-libraries-for-people-who-know-other-languages-simil/1214145#1214145 1 Answer by Unkwntech for what are some cross-language libraries for people who know other languages (similar to phpjs) Unkwntech 2009-07-31T18:35:39Z 2009-07-31T18:49:54Z <p><a href="http://www.xmlvm.org" rel="nofollow"><strong>XMLVM</strong></a><Br /> <img src="http://www.xmlvm.org/overview/overview.jpg" alt="alt text" /><br /> Java, C#, Python -> Obj-C, Android Apps</p> http://stackoverflow.com/questions/1214016/how-to-deal-with-streaming-data-in-php/1214041#1214041 4 Answer by Unkwntech for How to deal with streaming data in PHP? Unkwntech 2009-07-31T18:13:52Z 2009-07-31T18:19:32Z <p><a href="http://www.php.net/manual/en/function.fopen.php" rel="nofollow">fopen</a> and <a href="http://www.php.net/manual/en/function.fgets.php" rel="nofollow">fgets</a></p> <pre><code>&lt;?php $sock = fopen('http://domain.tld/path/to/file', 'r'); $data = null; while(($data = fgets($sock)) == TRUE) { echo $data; } fclose($sock); </code></pre> <p>This is by no means great (or even good) code but it <strong><em>should</em></strong> provide the functionality you need. You will need to add error handling and data parsing among other things.</p> http://stackoverflow.com/questions/963219/sources-for-learning-java-as-a-programmer 3 Sources for learning Java as a programmer. Unkwntech 2009-06-08T01:57:35Z 2009-07-30T16:12:33Z <p>I'm already a developer it is my day job, and I've made a decent business out of it. I'd like to learn Java, but all the tutorials seem to start out as if the only language I know is English. Are there any good resources for a programmer to learn Java?</p> http://stackoverflow.com/questions/13/how-can-i-determine-a-web-users-time-zone/357#357 16 Answer by Unkwntech for How can I determine a web user's time zone? Unkwntech 2008-08-02T06:06:50Z 2009-07-25T23:04:56Z <h1>timezone.js:</h1> <pre><code>function ajaxpage(){ var url = "timezone.php"; var visitortime = new Date(); vat time = visitortime.getTimezoneOffset()/60; var page_request = false if (window.XMLHttpRequest) page_request = new XMLHttpRequest() else if (window.ActiveXObject){ try { page_request = new ActiveXObject("Msxml2.XMLHTTP") } catch (e){ try{ page_request = new ActiveXObject("Microsoft.XMLHTTP") } catch (e){}}} else return false page_request.onreadystatechange=function(){ loadpage(page_request, containerid) } if (bustcachevar) bustcacheparameter=(url.indexOf("?")!=-1)? "&amp;"+new Date().getTime() : "?"+new Date().getTime() page_request.open('GET', url+bustcacheparameter+"&amp;time="+time, true) page_request.send(null) } function loadpage(page_request, containerid){ if (page_request.readyState == 4 &amp;&amp; (page_request.status==200 || window.location.href.indexOf("http")==-1)) document.write('&lt;meta http-equiv="refresh" content="0;url=http://example.com/"/&gt;'); } </code></pre> <p><hr /></p> <h1>timezone.php:</h1> <pre><code>&lt;?php session_start(); $_SESSION['time'] = $_GET['time']; ?&gt; </code></pre> <p><hr /></p> <p>When you want to use it add onLoad="ajaxpage();" to the body tag and it should cause the timezone to be stored in the PHP session variable $_SESSION['time']</p> <p>Edit: P.S. This is untested.</p> http://stackoverflow.com/questions/1163547/using-domain-name-in-htaccess-rewrite 0 Using domain name in htaccess rewrite Unkwntech 2009-07-22T07:08:23Z 2009-07-22T12:04:41Z <p>I host several sites (name based in apache) and I currently have an htaccess that has an error handler</p> <pre><code>ErrorDocument 404 http://mydomain.com/errorDocs/404.htm </code></pre> <p>is there a way for me to pass the domain name that the error came from I want to do some basic redirection. </p> <p>I need something like this:</p> <pre><code>ErrorDocument 404 http://mydomain.com/errorDocs/404.htm?host=%{HTTP_HOST} </code></pre> <p>however this does not provide the doamin and get printed as plain text.</p> http://stackoverflow.com/questions/1811421/determining-which-files-are-not-used/1811541#1811541 Comment by Unkwntech on Determining which files are not used. Unkwntech 2009-11-29T10:33:28Z 2009-11-29T10:33:28Z This is what I was thinking, but I'd like to not have to write a program to parse over them. http://stackoverflow.com/questions/1811421/determining-which-files-are-not-used Comment by Unkwntech on Determining which files are not used. Unkwntech 2009-11-28T03:38:52Z 2009-11-28T03:38:52Z unused code files, this is a PHP project. http://stackoverflow.com/questions/1580852/php-echo-concatenation/1580879#1580879 Comment by Unkwntech on Php Echo Concatenation Unkwntech 2009-10-16T23:20:30Z 2009-10-16T23:20:30Z I agree the problem is probably further up in the code, and it's probably a missing ' or &quot; http://stackoverflow.com/questions/1580852/php-echo-concatenation/1580861#1580861 Comment by Unkwntech on Php Echo Concatenation Unkwntech 2009-10-16T23:18:12Z 2009-10-16T23:18:12Z @SocailAddict there is no such error. http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/679828#679828 Comment by Unkwntech on How do you read a file line by line in your language of choice? Unkwntech 2009-09-29T04:42:23Z 2009-09-29T04:42:23Z but wouldn't wc be even better 'wc -l' is designed for counting lines. http://stackoverflow.com/questions/1470123/no-stringwithcontentsofurl-method-found/1470147#1470147 Comment by Unkwntech on No stringWithContentsofURL method found Unkwntech 2009-09-24T07:36:13Z 2009-09-24T07:36:13Z Thank you much. http://stackoverflow.com/questions/1447620/advice-needed-for-monitoring-a-website Comment by Unkwntech on Advice needed for monitoring a website Unkwntech 2009-09-19T03:36:49Z 2009-09-19T03:36:49Z @mauris, I cannot agree with that, although my accept rate is higher then his(&lt;100%), I can understand how one could have a low accept rate, it all depends on the type and bredth of the questions being asked, although I will admit that I didn't look at any of his. http://stackoverflow.com/questions/1447622/how-to-write-this-code-with-assembly-code Comment by Unkwntech on How to write this code with assembly code? Unkwntech 2009-09-19T03:32:29Z 2009-09-19T03:32:29Z Intel Mac or PPC (what gen)? I don't know assembly but I do know enough to know that x86 and PPC assembly is going to be different. http://stackoverflow.com/questions/1376748/php-compression-options/1376767#1376767 Comment by Unkwntech on PHP Compression Options Unkwntech 2009-09-04T02:00:16Z 2009-09-04T02:00:16Z bz2 will usualy provide the best compression but if it is being given to users its best to use zip http://stackoverflow.com/questions/1376856/convert-asm-to-c-not-reverse-engineer/1376860#1376860 Comment by Unkwntech on convert ASM to C (not reverse engineer) Unkwntech 2009-09-04T01:56:52Z 2009-09-04T01:56:52Z Unless I misunderstood something the question is not about decompiling, but rather converting the ASM source to C http://stackoverflow.com/questions/1376829/what-are-the-limitations-of-gmails-smtp Comment by Unkwntech on What are the limitations of Gmail's SMTP? Unkwntech 2009-09-04T01:45:13Z 2009-09-04T01:45:13Z +1 close, Belongs on SuperUser.Com http://stackoverflow.com/questions/1368655/deploying-a-php-project/1368687#1368687 Comment by Unkwntech on deploying a php project Unkwntech 2009-09-02T16:52:20Z 2009-09-02T16:52:20Z +1 just cause I don't see the need for a -1, as what codeburger said is typically correct. http://stackoverflow.com/questions/1356962/how-to-get-the-mac-address-of-the-visitors-pc-in-an-asp-net-webapp Comment by Unkwntech on How to get the MAC address of the visitors' PC in an ASP.NET webApp? Unkwntech 2009-08-31T11:25:36Z 2009-08-31T11:25:36Z Not to mention mac address can be spoofed, not unlike IP addresses, and neither should be used for any form of security. http://stackoverflow.com/questions/1356939/is-there-a-benefit-for-programmers-to-know-how-to-build-a-pc Comment by Unkwntech on Is there a benefit for programmers to know how to build a PC Unkwntech 2009-08-31T11:12:21Z 2009-08-31T11:12:21Z ...1,0, closed... http://stackoverflow.com/questions/1339482/typecasting-in-c/1339499#1339499 Comment by Unkwntech on Typecasting in C# Unkwntech 2009-08-27T07:56:21Z 2009-08-27T07:56:21Z Nice answer Jon!