User Unkwntech - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T09:27:04Zhttp://stackoverflow.com/feeds/user/115http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1007547/finding-mp3-length-in-c2Finding MP3 length in C#Unkwntech2009-06-17T14:51:29Z2009-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-slider4Is there a simple JavaScript slider?Unkwntech2008-10-06T02:21:56Z2009-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-capturing0Regex for url validation with parts capturingUnkwntech2009-01-14T02:42:06Z2009-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<scheme>[a-z]*?)://)?(?:(?P<username>.*?):?(?P<password>.*?)?@)?(?P<hostname>.*?)/(?:(?:(?P<path>.*?)\?)?(?P<file>.*?\.[a-z]{1,6})?(?:(?:(?P<query>.*?)#?)?(?P<fragment>.*?)?)?)?
</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&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-php1Which language is most like PHP?Unkwntech2008-09-18T02:50:18Z2009-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-used0Determining which files are not used.Unkwntech2009-11-28T03:07:59Z2009-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-mean7What do 'statically linked' and 'dynamically linked' mean?Unkwntech2008-11-22T23:09:57Z2009-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-c1Download file from web to local file with progress meter in C#Unkwntech2009-07-10T08:00:07Z2009-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-python4Finding a public facing IP address in Python?Unkwntech2008-10-03T12:20:07Z2009-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-triggers5Setting Up MySQL TriggersUnkwntech2008-09-06T11:24:53Z2009-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#15808562Answer by Unkwntech for Creating a shortcut key for the letter j to redirect to a url using jqueryUnkwntech2009-10-16T23:13:33Z2009-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-internally2How does MySQL store timestamps internally?Unkwntech2009-10-13T23:37:16Z2009-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-c4Resources online to learn C++Unkwntech2008-09-05T03:16:15Z2009-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 << 'minimal';</p>
http://stackoverflow.com/questions/670183/accessing-imap-in-c1Accessing Imap in C#Unkwntech2009-03-21T23:09:24Z2009-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#14944203Answer by Unkwntech for Work with Subversion from USB KeyUnkwntech2009-09-29T19:17:15Z2009-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-found0No stringWithContentsofURL method foundUnkwntech2009-09-24T06:53:25Z2009-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-structure1Tools for graphicaly representing database structure.Unkwntech2009-09-22T08:12:17Z2009-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-vista2Running compiled python (py2exe) as administrator in VistaUnkwntech2008-10-12T04:46:16Z2009-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-php5Reading/Writing a MS Word file in PHPUnkwntech2008-10-09T18:09:15Z2009-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-smbpasswd2Piping password to smbpasswdUnkwntech2008-08-15T06:08:55Z2009-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#13107850Answer by Unkwntech for Displaying code snippets in wordpress.Unkwntech2009-08-21T08:47:10Z2009-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-query2Using a custom field in WHERE clause of SQL query.Unkwntech2009-08-19T01:53:48Z2009-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 > 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#12857991Answer by Unkwntech for Web Hosting For ApplicationsUnkwntech2009-08-17T01:10:33Z2009-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-c0Using VS2008 with C/C++Unkwntech2009-08-09T00:08:56Z2009-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-python3Key Presses in PythonUnkwntech2008-09-25T22:58:01Z2009-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-python9Finding local IP addresses in Python.Unkwntech2008-10-03T12:03:36Z2009-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#12141451Answer by Unkwntech for what are some cross-language libraries for people who know other languages (similar to phpjs)Unkwntech2009-07-31T18:35:39Z2009-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#12140414Answer by Unkwntech for How to deal with streaming data in PHP?Unkwntech2009-07-31T18:13:52Z2009-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><?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-programmer3Sources for learning Java as a programmer.Unkwntech2009-06-08T01:57:35Z2009-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#35716Answer by Unkwntech for How can I determine a web user's time zone?Unkwntech2008-08-02T06:06:50Z2009-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)? "&"+new Date().getTime() : "?"+new Date().getTime()
page_request.open('GET', url+bustcacheparameter+"&time="+time, true)
page_request.send(null) }
function loadpage(page_request, containerid){
if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1))
document.write('<meta http-equiv="refresh" content="0;url=http://example.com/"/>'); }
</code></pre>
<p><hr /></p>
<h1>timezone.php:</h1>
<pre><code><?php
session_start();
$_SESSION['time'] = $_GET['time'];
?>
</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-rewrite0Using domain name in htaccess rewriteUnkwntech2009-07-22T07:08:23Z2009-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#1811541Comment by Unkwntech on Determining which files are not used.Unkwntech2009-11-29T10:33:28Z2009-11-29T10:33:28ZThis 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-usedComment by Unkwntech on Determining which files are not used.Unkwntech2009-11-28T03:38:52Z2009-11-28T03:38:52Zunused code files, this is a PHP project.http://stackoverflow.com/questions/1580852/php-echo-concatenation/1580879#1580879Comment by Unkwntech on Php Echo ConcatenationUnkwntech2009-10-16T23:20:30Z2009-10-16T23:20:30ZI agree the problem is probably further up in the code, and it's probably a missing ' or "http://stackoverflow.com/questions/1580852/php-echo-concatenation/1580861#1580861Comment by Unkwntech on Php Echo ConcatenationUnkwntech2009-10-16T23:18:12Z2009-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#679828Comment by Unkwntech on How do you read a file line by line in your language of choice?Unkwntech2009-09-29T04:42:23Z2009-09-29T04:42:23Zbut wouldn't wc be even better 'wc -l' is designed for counting lines.http://stackoverflow.com/questions/1470123/no-stringwithcontentsofurl-method-found/1470147#1470147Comment by Unkwntech on No stringWithContentsofURL method foundUnkwntech2009-09-24T07:36:13Z2009-09-24T07:36:13ZThank you much.http://stackoverflow.com/questions/1447620/advice-needed-for-monitoring-a-websiteComment by Unkwntech on Advice needed for monitoring a websiteUnkwntech2009-09-19T03:36:49Z2009-09-19T03:36:49Z@mauris, I cannot agree with that, although my accept rate is higher then his(<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-codeComment by Unkwntech on How to write this code with assembly code?Unkwntech2009-09-19T03:32:29Z2009-09-19T03:32:29ZIntel 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#1376767Comment by Unkwntech on PHP Compression OptionsUnkwntech2009-09-04T02:00:16Z2009-09-04T02:00:16Zbz2 will usualy provide the best compression but if it is being given to users its best to use ziphttp://stackoverflow.com/questions/1376856/convert-asm-to-c-not-reverse-engineer/1376860#1376860Comment by Unkwntech on convert ASM to C (not reverse engineer)Unkwntech2009-09-04T01:56:52Z2009-09-04T01:56:52ZUnless I misunderstood something the question is not about decompiling, but rather converting the ASM source to Chttp://stackoverflow.com/questions/1376829/what-are-the-limitations-of-gmails-smtpComment by Unkwntech on What are the limitations of Gmail's SMTP?Unkwntech2009-09-04T01:45:13Z2009-09-04T01:45:13Z+1 close, Belongs on SuperUser.Comhttp://stackoverflow.com/questions/1368655/deploying-a-php-project/1368687#1368687Comment by Unkwntech on deploying a php projectUnkwntech2009-09-02T16:52:20Z2009-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-webappComment by Unkwntech on How to get the MAC address of the visitors' PC in an ASP.NET webApp?Unkwntech2009-08-31T11:25:36Z2009-08-31T11:25:36ZNot 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-pcComment by Unkwntech on Is there a benefit for programmers to know how to build a PCUnkwntech2009-08-31T11:12:21Z2009-08-31T11:12:21Z...1,0, closed...http://stackoverflow.com/questions/1339482/typecasting-in-c/1339499#1339499Comment by Unkwntech on Typecasting in C#Unkwntech2009-08-27T07:56:21Z2009-08-27T07:56:21ZNice answer Jon!