User Piskvor - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:03:47Z http://stackoverflow.com/feeds/user/19746 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1906349/nsis-what-is-a-registry/1906396#1906396 0 Answer by Piskvor for NSIS: What is a registry? Piskvor 2009-12-15T10:10:18Z 2009-12-15T10:10:18Z <p>It's the <a href="http://en.wikipedia.org/wiki/Windows%5Fregistry" rel="nofollow">Windows registry</a>. An example on reading and writing it from NSIS is the <a href="http://www.google.com/search?client=opera&amp;rls=en&amp;q=nsis+read+write+registry&amp;sourceid=opera&amp;ie=utf-8&amp;oe=utf-8" rel="nofollow">first result here</a></p> http://stackoverflow.com/questions/1901457/php-warning-mysqlfetchassoc/1901509#1901509 5 Answer by Piskvor for php warning mysql_fetch_assoc Piskvor 2009-12-14T15:20:26Z 2009-12-14T15:58:33Z <p>Generally, the mysql_* functions are used as follows:</p> <pre><code>$id = 1234; $query = 'SELECT name, genre FROM sometable WHERE id=' . $id; // $query is a string with the MySQL query $resource = mysql_query($query); // $resource is a *MySQL result resource* - a mere link to the result set while ($row = mysql_fetch_assoc($resource)) { // $row is an associative array from the result set print_r($row); // do something with $row } </code></pre> <p>If you pass something to mysql_fetch_assoc that is not a MySQL result resource (whether it's a string, an object, or a boolean), the function will complain that it doesn't know what to do with the parameter; which is exactly what you are seeing.</p> <p><strong>A common gotcha</strong>: you get this warning if you pass something (other than a valid query string) to <code>mysql_query</code>:</p> <pre><code>$id = null; $query = 'SELECT name, genre FROM sometable WHERE id=' . $id; $res = mysql_query($query); // $res === FALSE because the query was invalid // ( "SELECT name, genre FROM sometable WHERE id=" is not a valid query ) mysql_fetch_assoc($res); // Warning: don't know what to do with FALSE, as it's not a MySQL result resource </code></pre> http://stackoverflow.com/questions/389456/cookie-blocked-not-saved-in-iframe-in-internet-explorer 6 Cookie blocked/not saved in IFRAME in Internet Explorer Piskvor 2008-12-23T17:08:07Z 2009-12-14T12:17:44Z <p>I have two websites, let's say they're <code>example.com</code> and <code>anotherexample.net</code>. On <code>anotherexample.net/page.html</code>, I have an <code>IFRAME SRC="http://example.com/someform.asp"</code>. That IFRAME displays a form for the user to fill out and submit to <code>http://example.com/process.asp</code>. When I open the form ("<code>someform.asp</code>") in its own browser window, all works well. However, <strong>when I load <code>someform.asp</code> as an IFRAME in IE 6 or IE 7, the cookies for example.com are not saved.</strong> In Firefox this problem doesn't appear.</p> <p>For testing purposes, I've created a similar setup on <a href="http://newmoon.wz.cz/test/page.php" rel="nofollow">http://newmoon.wz.cz/test/page.php</a> .</p> <p><code>example.com</code> uses cookie-based sessions (and there's nothing I can do about that), so without cookies, <code>process.asp</code> won't execute. <strong>How do I force IE to save those cookies?</strong></p> <p>Results of sniffing the HTTP traffic: on GET /someform.asp response, there's a valid per-session Set-Cookie header (e.g. <code>Set-Cookie: ASPKSJIUIUGF=JKHJUHVGFYTTYFY</code>), but on POST /process.asp request, there is no Cookie header at all.</p> <p>Edit3: some AJAX+serverside scripting is apparently capable to sidestep the problem, but that looks very much like a bug, plus it opens a whole new set of <a href="http://en.wikipedia.org/wiki/Session_hijacking" rel="nofollow">security holes</a>. I don't want my applications to use a combination of bug+security hole just because it's easy.</p> <p>Edit: the <strong>P3P policy was the root cause</strong>, full explanation below.</p> http://stackoverflow.com/questions/1865431/strange-issue-about-in-url/1865495#1865495 0 Answer by Piskvor for Strange issue about # in url Piskvor 2009-12-08T08:26:00Z 2009-12-08T08:26:00Z <p>A HTTP URL may contain these parts:</p> <ul> <li>protocol: <code>http://</code></li> <li>domain: <code>localhost</code></li> <li>path: <code>/test/editformquestions.php</code></li> <li>query string: <code>?formid=1</code> - always starts with a <code>?</code></li> <li>fragment: <code>#something</code> - always starts with a <code>#</code> - whatever comes after the <code>#</code> mark is NOT sent to the server.</li> </ul> <p>What you have in your first example (<code>http://localhost/test/editformquestions.php#?formid=1</code>) is a fragment containing this: <code>#?formid=1</code>. It does not matter that there's a <code>?</code> in the fragment; as soon as it's behind the <code>#</code>, it is not sent from the browser.</p> <p>So, in essence, you are sending to the server only this: <code>http://localhost/test/editformquestions.php</code> - as you can see, there <em>is</em> no formid in that request.</p> http://stackoverflow.com/questions/1859719/what-is-an-algorithm-to-return-free-space-in-blocks-of-largest-possible-rectangle/1859744#1859744 0 Answer by Piskvor for What is an algorithm to return free space in blocks of largest possible rectangles? Piskvor 2009-12-07T12:43:44Z 2009-12-07T12:43:44Z <ol> <li>Start</li> <li>set row=0, column=0</li> <li>if is free space: <ol> <li>get largest free rectangle, starting horizontally</li> </ol></li> <li>if not, and at the last column, and not at end, row + 1, column = 0 and goto 3</li> <li>else if not at last column, column + 1 and goto 3</li> <li>else end</li> </ol> <p>(note that 3.1 is the same algorithm, only with free/blocked inverted, and with different coordinates)</p> http://stackoverflow.com/questions/1852223/mysql-keep-server-timezone-or-user-timezone/1859550#1859550 0 Answer by Piskvor for MySQL: keep server timezone or user timezone? Piskvor 2009-12-07T11:53:50Z 2009-12-07T11:53:50Z <p>Use <a href="http://en.wikipedia.org/wiki/Utc" rel="nofollow">UTC</a>. It will save you many hours of frustration.</p> <p>User local time is a matter of presentation - it's much easier to convert to/from local time for a given user, than it is to track the TZ of each record's date fields in the database.</p> <p>Even if using server's timezone may be tempting, DST rules may change on <em>very</em> short notice (see: <a href="http://en.wikipedia.org/wiki/Daylight%5Fsaving%5Ftime%5Faround%5Fthe%5Fworld#Argentina" rel="nofollow">Argentina DST 2009</a> - the govt has made the decision not to use DST, appx. 1 week before it was supposed to happen); in some cases, the timezone itself may change (see <a href="http://en.wikipedia.org/wiki/Time%5Fin%5FIndiana" rel="nofollow">Time in Indiana</a> ). UTC's definition is unlikely to undergo any such drastic change.</p> <p>(A story about server time and local time: had a server on U.S. West coast, moved it to U.S. East coast; apps were using server time; all hell broke loose. With virtualization, it's possible to easily and quickly move servers to different <em>continents</em>.)</p> http://stackoverflow.com/questions/1859299/using-a-boolean-variable-in-while-statement/1859314#1859314 1 Answer by Piskvor for Using a boolean variable in while statement Piskvor 2009-12-07T11:02:42Z 2009-12-07T11:02:42Z <pre><code>while(hasNotLost){ move_ufo(); //moves ufo_ship hasNotLost = ufo_ship.getY() &lt; 200; //checks if ufo_ship is //above the bottom edge of window } </code></pre> http://stackoverflow.com/questions/1846512/automatic-application-generator/1846596#1846596 1 Answer by Piskvor for Automatic Application Generator Piskvor 2009-12-04T12:17:34Z 2009-12-04T12:17:34Z <p>Short answer: <strong>no</strong>. Although it's theoretically possible, it's much, much less likely than you winning the jackpot in every lottery in the world, every day, for the rest of your life.</p> <blockquote> <p>An application is just a series of binary values.</p> </blockquote> <p>Indeed - a series of precisely ordered binary values. By randomly generating series of binary values, you'll get an application that actually is an executable, actually executes, and doesn't crash instantly, with the probability of 0, before the universe ends. (All right, it's not exactly zero, but it's so close to zero that it's undistinguishable from it in the real universe, as opposed to mathematics). </p> <p>See the <a href="http://en.wikipedia.org/wiki/Infinite%5Fmonkey#Probabilities" rel="nofollow">Infinite monkey theorem</a>, particularly the section Probabilities.</p> http://stackoverflow.com/questions/1845301/which-language-to-choose-for-a-jabber-bot 0 Which language to choose for a Jabber bot? Piskvor 2009-12-04T06:59:03Z 2009-12-04T08:16:11Z <p>I'll be writing an XMPP (Jabber) bot, and I need to decide in which language should I write it. Currently I'm considering Python, Java, and PHP. </p> <p>Since I'm expecting the bot to be running most of the time (i.e. 23.5/7), are there some specific arguments for or against using one of these languages? (e.g. not "$x sucks", but "$y has good daemon library" or "$z leaks memory") </p> <p>The bot's purpose will mostly be responding to user input.</p> <p>If none of these languages seem suitable to you, what would you recommend?</p> http://stackoverflow.com/questions/1838719/why-odt-file-can-not-be-opened-by-zip-but-can-be-opened-by-open-office/1838787#1838787 0 Answer by Piskvor for Why odt file can not be opened by zip but can be opened by open office? Piskvor 2009-12-03T09:36:47Z 2009-12-03T10:42:40Z <p>Rename the file's extension to <code>zip</code>. In that case, it should open with the zip unarchiver (tested with 7-Zip, PowerArchiver, Total Commander). </p> <p>The problem seems to lie with the archivers' extension sniffing: PowerArchiver (albeit an old, old version) had problems opening the file when the extension was <code>odt</code>, but worked fine with <code>zip</code>.</p> <p>Of course, the file extension <code>odt</code> will probably be associated with OpenOffice, so double-clicking the file will start OpenOffice.</p> http://stackoverflow.com/questions/1826036/minimum-number-of-operations-needed/1826040#1826040 1 Answer by Piskvor for Minimum Number of Operations needed. Piskvor 2009-12-01T12:57:38Z 2009-12-01T13:01:06Z <p><a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">Levenshtein distance</a></p> http://stackoverflow.com/questions/1797758/check-for-daylight-saving-time-with-wmi-on-vista-win7 0 Check for daylight saving time with WMI on Vista/Win7 Piskvor 2009-11-25T15:36:18Z 2009-11-26T17:33:10Z <p>How do I find out if the computer I'm on has daylight saving time in effect? (preferably using WMI)</p> <p>According to <a href="http://gallery.technet.microsoft.com/scriptcenter/en-us/86090fa4-e409-4462-ac6c-4bc47f128d23" rel="nofollow">this article at TechNet</a>, I could query <code>SELECT DaylightInEffect FROM Win32_ComputerSystem</code>, but the property <code>DaylightInEffect</code> is not supported on Vista or Win7. As my program will run on various systems (XP, Vista, 7), I would appreciate some portable way of finding out.</p> http://stackoverflow.com/questions/1803895/multiple-application-instances-on-the-same-database/1803927#1803927 1 Answer by Piskvor for Multiple application instances on the same database Piskvor 2009-11-26T14:19:04Z 2009-11-26T14:19:04Z <p>It depends on what you intend to do with the data. If the clients don't share data, segmenting by customer might be better; also, you may get better performance.</p> <p>On the other hand, having many tables with an identical structure can be a nightmare when you want to alter the structure.</p> http://stackoverflow.com/questions/1802894/setting-the-http-request-type-of-an-iframe/1802951#1802951 1 Answer by Piskvor for Setting the HTTP request type of an <iframe> Piskvor 2009-11-26T10:44:47Z 2009-11-26T10:51:19Z <p>No. <code>IFRAME SRC="/yourscript"</code> always uses a GET.</p> <p>(You could <code>POST</code> to the <code>IFRAME</code>, or you can <code>GET</code> a page inside the <code>IFRAME</code> that <code>POST</code>s a form using JS; but you specifically said those aren't viable for you)</p> http://stackoverflow.com/questions/1790190/is-it-possible-to-protect-from-downloading-a-video-from-a-site/1790206#1790206 22 Answer by Piskvor for Is it possible to protect from downloading a video from a site. Piskvor 2009-11-24T13:54:20Z 2009-11-25T08:02:48Z <p>Yes. Never ever show it to anyone. As soon as you do, all bets are off (for less paranoid answer, see last paragraph).</p> <p>This is the common problem with copy protection: you are unable, by any means, to distinguish between a legitimate user and an adversary (as they may even be the same person).</p> <p>Edit: re "my users can able to watch the video. but they must not be able to download that video" Let's try and disassemble this: </p> <ul> <li>the user clicks the mouse on your player's "Play" button</li> <li>the click goes through the computer's OS to your player</li> <li>the player sends a request through the network "send me teh videos" to your server</li> <li>(this, by definition, requires that the request goes through the whatever networking stack the user's computer has)</li> <li>the server, if it decides that it's a legitimate player, begins sending data to the user's computer.</li> <li>(this, also by definiton, means, that the user's computer is "downloading" the data)</li> <li>the data comes from the network into the computer</li> <li>*the OS handles the lower data layers (i.e. "this is a data packet, from $yourserver to me, and should be passed on to $yourapp")</li> <li>*the OS passes the data to the app that requested it</li> <li>the player receives the data</li> <li>*the player transforms the data into a sequence of images (a.k.a. a video) and a sound track</li> <li>*the player sends the images to the OS's display subsystem, or saves it to disk</li> <li>*the display system transforms the images into a format the screen understands</li> <li>*the images flow through a cable into the screen</li> <li>*the images are displayed on the screen (at which point they exit the computer in form of light)</li> <li>the light reaches the user's eyes</li> </ul> <p>Your video can be intercepted (and/or modified) at every point marked with * (although quality of the copy may decrease, esp. when capturing the analog output). Unless you can somehow eliminate each and every of those (good luck with the last one), all you can do is make the data capture/transform more complex. There's a whole industry built around these "weak points" (google "stream ripping" to see for yourself).</p> <p>You can complicate the capture with various DRM technologies, but in the end, the data stream must become analog video somewhere.</p> <p>However, if you want to protect the video from 90% of users, I believe the Real formats that you mentioned do have some flag "don't allow save". This will disable the "save as" option in the player (i.e. the "or saves it to disk" option above); for most users, this will be a significant enough barrier. Anything more will probably inconvenience and anger 100% of your users, while not providing significantly more protection.</p> http://stackoverflow.com/questions/1769495/what-do-you-wish-fiddler-could-do-that-it-cant-or-that-you-cant-figure-out-h 2 What do you wish Fiddler could do that it can't... or that you can't figure out how to do? Piskvor 2009-11-20T10:05:15Z 2009-11-24T09:39:34Z <p>In <a href="http://stackoverflow.com/questions/1656424/fiddler-v2-hidden-features">this question</a>'s comment, <a href="http://stackoverflow.com/users/126229/ericlaw-msft">EricLaw</a> (the author of Fiddler) wrote:</p> <blockquote> <p>Fiddler has lots of interesting features, but not all of them are super well-documented. A related question would be: "What do you wish Fiddler could do that it can't... or that you can't figure out how to do?" – EricLaw -MSFT- Nov 2 at 2:54</p> </blockquote> <p>Following the lead - what do you want from Fiddler that it doesn't have now (or you don't know whether it has)?</p> http://stackoverflow.com/questions/1769495/what-do-you-wish-fiddler-could-do-that-it-cant-or-that-you-cant-figure-out-h/1788990#1788990 0 Answer by Piskvor for What do you wish Fiddler could do that it can't... or that you can't figure out how to do? Piskvor 2009-11-24T09:39:34Z 2009-11-24T09:39:34Z <p>The Inspectors tab has a WebForms button, which is very nice for checking x-www-form-urlencoded POST data, but as soon as the form is multipart/form-data (e.g. forms with file uploads), this button can't display it. Or can it?</p> http://stackoverflow.com/questions/772785/gmail-rss-dont-see-tag-description-how-to-see-request-headers-of-my-iis-5-websi/891914#891914 0 Answer by Piskvor for GMAIL rss don't see tag description.How to see Request headers of my iis 5 website Piskvor 2009-05-21T08:39:24Z 2009-11-20T08:56:22Z <p>Fiddler won't see GMail's request for the feed, as the request will go directly from GMail server to your server, without ever touching the client computer. You'll have to log the request at your server.</p> <pre><code>[your computer]-------[gmail.com]------[your server w/ RSS feed] </code></pre> <ol> <li>your computer requests a page from gmail</li> <li>gmail requests a page from your server (on completely different connection)</li> <li>your server returns a response to gmail</li> <li>gmail assembles the response into its own response</li> <li>gmail returns the response to your computer</li> </ol> <p>In Fiddler, you can only see steps 1 and 5, as they generate traffic between your computer and some other computer on the Net.</p> http://stackoverflow.com/questions/1762293/issue-a-redirect-http-302-to-act-on-top-frame-without-using-java-script/1762400#1762400 2 Answer by Piskvor for Issue a redirect (HTTP 302) to act on _top frame without using Java script Piskvor 2009-11-19T10:42:25Z 2009-11-19T10:42:25Z <p>No. A 302 (or 301, or 303) response only specifies that the browser has to look elsewhere for the requested document (as specified by the <code>Location</code> header). The concept of browser frames is completely outside the scope of HTTP.</p> <p>However, browser frames are defined in HTML, and so is the <code>target</code> property on <code>form</code> elements:</p> <pre><code>&lt;form action="/somescript?x=y" method="POST" target="_top"&gt; </code></pre> <p>This will make the form submit to the _top frame, which means "use the full browser window". This is supported across all modern (and most older, e.g. IE4) browsers and does not require JavaScript.</p> http://stackoverflow.com/questions/1624433/intranet-and-ie8-render-mode/1686506#1686506 -1 Answer by Piskvor for Intranet and IE8 render mode Piskvor 2009-11-06T09:41:02Z 2009-11-19T10:36:17Z <p>Does the document actually validate as XHTML1 Transitional? The rendering mode selection is quite complicated in IE8, see the algorithm at <a href="http://hsivonen.iki.fi/doctype/#ie8modes" rel="nofollow">http://hsivonen.iki.fi/doctype/#ie8modes</a></p> http://stackoverflow.com/questions/1761789/gzip-compression-causing-web-page-expiration/1761827#1761827 2 Answer by Piskvor for GZIP Compression causing web page expiration Piskvor 2009-11-19T08:51:42Z 2009-11-19T08:51:42Z <p><a href="http://www.fiddler2.com/fiddler/Perf/AboutVary.asp" rel="nofollow">See this article</a> on <code>Vary</code> header and WinInet/MSIE</p> <p>It seems you should be sending <code>Vary: Accept-Encoding</code> instead of <code>Vary: Content-Encoding</code>, as the response will vary depending on the <em>request</em> header.</p> http://stackoverflow.com/questions/1761456/why-is-http-response-in-chunked-transfer-encoding-only-for-some-clients/1761510#1761510 1 Answer by Piskvor for Why is http-response in chunked transfer-encoding only for some clients Piskvor 2009-11-19T07:28:49Z 2009-11-19T07:35:20Z <p><a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6.1" rel="nofollow">RFC 2616 says</a>:</p> <blockquote> <p>All HTTP/1.1 applications MUST be able to receive and decode the "chunked" transfer-coding</p> </blockquote> <p><code>Transfer-Encoding: chunked</code> is defined for HTTP/1.1. Are some of your clients using HTTP/1.0 or even (shudder) 0.9? In that case, the server must not use transfer-encoding, as it's not a part of the protocol.</p> <p>Although most modern clients understand HTTP/1.1, most have an option to downgrade to 1.0 when using a proxy (for historical reasons - some older proxies had buggy 1.1 implementations). So, although the browser may understand 1.1, it can request 1.0 if so instructed.</p> <p>Example: MSIE 6+ has this in the Internet Options dialog - tab <code>Advanced</code> - <code>HTTP 1.1 settings</code> - checkboxes "<code>Use HTTP 1.1</code>" and "<code>Use HTTP 1.1 through proxy connections</code>".</p> <p>Also, chunked encoding is not activated for all responses - usually the server switches it on when Content-Length is not set, or when the output buffer is flushed.</p> http://stackoverflow.com/questions/1761444/how-to-detect-os-of-win7-home-premium-win7-professional-win7-enterprise-or-win7/1761468#1761468 0 Answer by Piskvor for How to detect OS of Win7 Home Premium, Win7 Professional, Win7 Enterprise or Win7 ultimate? Piskvor 2009-11-19T07:18:56Z 2009-11-19T07:18:56Z <p>Try WMI: host <code>localhost</code>, namespace <code>root\cimv2</code> (these are the defaults) <code>SELECT Caption FROM Win32_OperatingSystem</code></p> http://stackoverflow.com/questions/1723367/whats-the-point-of-not-null-default/1723472#1723472 11 Answer by Piskvor for What's the point of "NOT NULL DEFAULT '' "? Piskvor 2009-11-12T16:22:28Z 2009-11-12T16:22:28Z <p>NULLs have special behavior: comparing anything with a NULL gives you back a <code>NULL</code>, which is something else than <code>false</code> or <code>0</code>. It means "unknown".</p> <p>For example, take this table:</p> <pre><code> user_id | gender ------------------ 1 | NULL 2 | 'M' 3 | 'F' 4 | 'F' </code></pre> <p><code>SELECT * FROM mytable WHERE gender = 'M'</code> will return 1 row, as expected</p> <p><code>SELECT * FROM mytable WHERE gender != 'M'</code> will return 2 rows, NOT 3 rows.</p> <p><code>SELECT * FROM mytable WHERE gender != 'M' OR gender IS NULL</code> will return the expected 3 rows.</p> http://stackoverflow.com/questions/1720855/how-to-sort-an-array-in-php/1720898#1720898 0 Answer by Piskvor for How to sort an array in php Piskvor 2009-11-12T09:07:22Z 2009-11-12T09:07:22Z <p>You are looking for <a href="http://uk.php.net/manual/en/function.array-unique.php" rel="nofollow">array_unique</a>:</p> <blockquote> <p><code>array array_unique ( array $array [, int $sort_flags = SORT_STRING ] )</code></p> <p>Takes an input array and returns a new array without duplicate values.</p> </blockquote> http://stackoverflow.com/questions/1714154/load-and-run-an-exe-file-after-a-website-loaded/1714186#1714186 2 Answer by Piskvor for Load and run an EXE file after a website loaded Piskvor 2009-11-11T09:58:41Z 2009-11-11T10:12:30Z <p>In MSIE, it's possible to use ActiveX for that - but the user has to allow your ActiveX control to be installed/executed. If you're looking at some environment under your control (e.g. your company), this could be a way. Have worked with a legitimate "remote install" feature like this, long ago; nowadays, it's easier to ask the user to download and execute the installer (not browser-dependent, and users have learned how to do this (gasp!)).</p> <p>If you mean "with JS/HTML from the browser", that's called "arbitrary remote code execution" and is a pretty serious security hole. So, thankfully, that's not possible (would you want any website to run <code>format c:</code> on your computer? Thought so).</p> http://stackoverflow.com/questions/1709400/are-these-people-lying-about-being-certified/1709454#1709454 1 Answer by Piskvor for Are these people lying about being certified? Piskvor 2009-11-10T16:53:10Z 2009-11-10T16:53:10Z <ul> <li>They don't seem to be saying "I have {Microsoft certification} in $product", it could be parsed as "I have a {Microsoft $product} certification", which could be pretty much any sort of certification.</li> <li>Resume padding could be done by less-than-ethical headhunters, often w/o candidate's knowledge; such "headhunters" are probably not up-to-speed with certifications - "he worked with MS products, that obviously makes him a MSCP"</li> </ul> http://stackoverflow.com/questions/1707176/p3p-policy-not-working-to-allow-3rd-party-cookies-in-ie/1707371#1707371 0 Answer by Piskvor for P3P Policy not working to allow 3rd party cookies in IE Piskvor 2009-11-10T11:43:43Z 2009-11-10T11:43:43Z <p>The policy checker at <a href="http://www.webentrust.com/p3p.html" rel="nofollow">http://www.webentrust.com/p3p.html</a> says <code>Error: No P3P Policy Found</code></p> <p>You are saying, in the p3p header, this: </p> <pre><code>P3P: policyref="/w3c/p3p.xml", CP="IDC DSP COR NID DEVi OUR BUS INT" </code></pre> <p>meaning "I have this compact policy (CP), and also this full policy: <code>/w3c/p3p.xml</code>". BUT, <a href="http://www.hankshelper.com/w3c/p3p.xml" rel="nofollow">http://www.hankshelper.com/w3c/p3p.xml</a> (referenced above) gives a <code>404 Not Found</code> error. You have to create your p3p policy - e.g. using the <a href="http://www.alphaworks.ibm.com/tech/p3peditor" rel="nofollow">IBM P3P Editor</a> and upload it to the path you specified.</p> http://stackoverflow.com/questions/1700133/problem-with-posting-the-message-using-php/1700197#1700197 0 Answer by Piskvor for Problem with posting the message using php Piskvor 2009-11-09T10:26:59Z 2009-11-09T10:26:59Z <p>You seem to have some strange characters in the oauth_signature:</p> <p>JzG4DCWxuP <strong><em>%2B</em></strong> 7xT7u3tFZ2zCC8 <strong><em>%2B</em></strong> I <strong><em>%3D</em></strong> &amp;</p> <p>Check where those are coming from.</p> http://stackoverflow.com/questions/1700072/where-can-i-see-the-content-of-submit-java-script-function/1700144#1700144 1 Answer by Piskvor for Where can I see the content of submit() java script function? Piskvor 2009-11-09T10:13:30Z 2009-11-09T10:13:30Z <p>The submit() function is not in JS anymore, it's built into the browser. So, short of hooking into the browser process with a debugger, you can't see the execution as it goes into submit() and gets transformed into a HTTP request.</p> <p>However, if you want to see the HTTP request (and response), use some sort of capturing proxy, like <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">EricLaw's excellent Fiddler</a> (this should be sufficient, but should you wish to inspect the lower layers (TCP,IP), you can capture the data using <a href="http://www.wireshark.org/" rel="nofollow">Wireshark</a>)</p> http://stackoverflow.com/questions/1901457/php-warning-mysqlfetchassoc Comment by Piskvor on php warning mysql_fetch_assoc Piskvor 2009-12-14T15:38:53Z 2009-12-14T15:38:53Z @death the kid: If it worked fine, you wouldn't be asking this question ;) Can we see it? http://stackoverflow.com/questions/1901457/php-warning-mysqlfetchassoc Comment by Piskvor on php warning mysql_fetch_assoc Piskvor 2009-12-14T15:31:52Z 2009-12-14T15:31:52Z And what's the definition of getQuery()? Is there a call to mysql_query in there, somewhere? If not, you will get the warning, as it should be. http://stackoverflow.com/questions/1901355/using-chinese-characters-to-name-mysql-tables Comment by Piskvor on Using Chinese Characters to Name MySQL Tables Piskvor 2009-12-14T15:01:54Z 2009-12-14T15:01:54Z IIRC, MySQL server 5.0+ should be able to handle that (&quot;The allowable Unicode characters are those in the Basic Multilingual Plane (BMP).&quot; -- <a href="http://dev.mysql.com/doc/refman/5.0/en/identifiers.html" rel="nofollow">dev.mysql.com/doc/refman/&hellip;</a> ). Not so sure about client-side support, though - I'm pretty sure at least one assumes ASCII identifiers.p http://stackoverflow.com/questions/1872593/net-development-versus-web-design Comment by Piskvor on .NET development versus web design Piskvor 2009-12-09T09:23:21Z 2009-12-09T09:23:21Z Yes. (That's the most specific answer I can make from available data) http://stackoverflow.com/questions/1872299/what-are-some-good-programming-snacks Comment by Piskvor on What are some good programming snacks? Piskvor 2009-12-09T08:17:19Z 2009-12-09T08:17:19Z Superuser.com, methinks. http://stackoverflow.com/questions/1868320/what-is-the-best-way-to-keep-database-data-enctypted-with-user-passwords/1868389#1868389 Comment by Piskvor on What is the best way to keep database data enctypted with user passwords? Piskvor 2009-12-08T17:12:14Z 2009-12-08T17:12:14Z &quot;only the authenticated user can get to their own data.&quot; Indeed, that's the premise of the question. But the data don't exist in a vacuum, if there is a need to store them, they have to be stored somewhere. As long as you encrypt them properly, you may as well store them in the DB, other factors permitting (storing 100 MB file in DB makes no sense, storing a 1K string may) http://stackoverflow.com/questions/1868320/what-is-the-best-way-to-keep-database-data-enctypted-with-user-passwords Comment by Piskvor on What is the best way to keep database data enctypted with user passwords? Piskvor 2009-12-08T17:04:51Z 2009-12-08T17:04:51Z Are you trying to have certain fields in the database transparently encrypted and decrypted, only for the user they belong to? http://stackoverflow.com/questions/1868320/what-is-the-best-way-to-keep-database-data-enctypted-with-user-passwords/1868336#1868336 Comment by Piskvor on What is the best way to keep database data enctypted with user passwords? Piskvor 2009-12-08T17:02:48Z 2009-12-08T17:02:48Z that's good for &quot;not storing user's password in plaintext&quot;, but I think that the questioner needs to decrypt the user's data at some point (e.g. medical records) http://stackoverflow.com/questions/1867440/extract-last-two-words-in-a-cell-using-openoffice Comment by Piskvor on Extract last two words in a cell using openoffice Piskvor 2009-12-08T14:53:48Z 2009-12-08T14:53:48Z Although OO spreadsheet formulas are a limited programming language, it is a programing language IMO. http://stackoverflow.com/questions/1866965/is-there-a-database-for-all-entities-in-the-world-or-an-object-oriented-library Comment by Piskvor on Is there a Database for ALL ENTITIES in the world? or an Object-oriented library? Piskvor 2009-12-08T13:58:50Z 2009-12-08T13:58:50Z Hehe. Does the database of everything contain itself? http://stackoverflow.com/questions/1820973/underscore-in-php-function/1821000#1821000 Comment by Piskvor on Underscore in php function Piskvor 2009-12-08T08:45:45Z 2009-12-08T08:45:45Z @Peter Bailey: see <a href="http://catb.org/jargon/html/M/magic.html" rel="nofollow">catb.org/jargon/html/M/magic.html</a> for a bit of explanation http://stackoverflow.com/questions/1852223/mysql-keep-server-timezone-or-user-timezone/1852233#1852233 Comment by Piskvor on MySQL: keep server timezone or user timezone? Piskvor 2009-12-07T11:45:34Z 2009-12-07T11:45:34Z @Vittorio Vittori: See the PHP manual: <a href="http://uk.php.net/manual/en/timezones.php" rel="nofollow">uk.php.net/manual/en/timezones.php</a> http://stackoverflow.com/questions/1858712/how-to-display-calender-in-php-page Comment by Piskvor on how to display calender in php page Piskvor 2009-12-07T08:55:45Z 2009-12-07T08:55:45Z Have you tried Google? <a href="http://www.google.com/search?q=how+to+display+calendar+in+php+page" rel="nofollow">google.com/search?q=how+to+display+calendar+in+ph&hellip;</a> gives thousands of results to start with. Either that, or ask more specifically. http://stackoverflow.com/questions/1858690/css-flow-justified-text-around-an-image Comment by Piskvor on CSS flow justified text around an image Piskvor 2009-12-07T08:53:44Z 2009-12-07T08:53:44Z unclosed tag: <code>&lt;img src=&quot;photo.png&quot;&lt;/span&gt;</code> http://stackoverflow.com/questions/1858665/finding-the-closest-point-from-a-set-of-points-on-plane Comment by Piskvor on Finding the closest point from a set of points on plane Piskvor 2009-12-07T08:46:36Z 2009-12-07T08:46:36Z Is it homework? Also, in what language are you trying to implement this?