User SyaZ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T11:38:05Z http://stackoverflow.com/feeds/user/15345 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1864948/why-hasnt-a-faster-better-language-than-c-come-out/1865992#1865992 2 Answer by SyaZ for Why hasn't a faster, "better" language than C come out? SyaZ 2009-12-08T10:11:23Z 2009-12-08T10:11:23Z <p>Without saying what has already been said about C's advantages...</p> <p>As long as there are still millions of lines of legacy code out there that need to be used, C will remain. I do believe many languages can perform with satisfactory speed -- and face it, probably not even half of us need to really squeeze every speed we can get -- especially with today's technology where memory too is not much of concern to the majority of us.</p> <p>C just happens to be available (and good) back then.</p> http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page 5 Prevent direct access to a PHP page. SyaZ 2008-10-09T00:29:47Z 2009-12-06T06:59:15Z <p>How do I prevent my users from accessing directly pages meant for ajax calls only?</p> <p>Passing a key during ajax call seems like a solution, whereas access without the key will not be processed. But it is also easy to fabricate the key, no? Curse of View Source...</p> <p>p/s: Using Apache as webserver.</p> <p>EDIT: To answer why, I have jQuery ui-tabs in my index.php, and inside those tabs are forms with scripts, which won't work if they're accessed directly. Why a user would want to do that, I don't know, I just figure I'd be more user friendly by preventing direct access to forms without validation scripts.</p> http://stackoverflow.com/questions/1728134/jquery-facebook-iframe-app-html-inaccessible 0 jQuery: Facebook iframe app html inaccessible SyaZ 2009-11-13T09:27:09Z 2009-11-22T15:59:49Z <p>Why cant I access the embedded app elements?</p> <p>Looking at the HTML, the app is put inside a div but when I try to find the div contents, e.g. </p> <pre><code>$("input").get() </code></pre> <p>I only see input element of FB, not the app. I injected jQuery after the page load with FireQuery plugin.</p> <p>How can the HTML looks fine but cannot be traversed with jQuery?</p> http://stackoverflow.com/questions/1697095/where-do-you-submit-your-programming-articles-tutorials/1697492#1697492 0 Answer by SyaZ for where do you submit your programming articles/tutorials? SyaZ 2009-11-08T18:49:21Z 2009-11-08T18:49:21Z <p>I subscribe to <a href="http://www.dzone.com" rel="nofollow">www.dzone.com</a>. You can get more than 50 new items a day, 99% about programming. Java &amp; Groovy stuff are pretty popular there though.</p> http://stackoverflow.com/questions/384419/lisp-displaying-binary-tree-level-by-level 1 LISP Displaying binary tree level by level SyaZ 2008-12-21T12:48:16Z 2009-10-29T12:32:49Z <p>I have a list that looks like (A (B (C D)) (E (F))) which represents this tree:</p> <pre><code> A / \ B E / \ / C D F </code></pre> <p>How do I print it as (A B E C D F) ?</p> <p>This is as far as I managed:</p> <pre><code>((lambda(tree) (loop for ele in tree do (print ele))) my-list) </code></pre> <p>But it prints:</p> <pre><code>A (B (C D)) (E (F)) NIL </code></pre> <p>I'm pretty new to Common LISP so there may be functions that I should've used. If that's the case then enlight me.</p> <p>Thanks.</p> http://stackoverflow.com/questions/144659/jquery-jwysiwyg-inside-jquery-ui-tab 0 jQuery jWYSIWYG inside jquery.ui.tab SyaZ 2008-09-27T22:49:34Z 2009-10-09T03:53:07Z <p>So I managed to get a page with Ajax <a href="http://docs.jquery.com/UI/Tabs" rel="nofollow">ui.tab</a> and in one of the tab I put <a href="http://projects.bundleweb.com.ar/jWYSIWYG/" rel="nofollow">jWYSIWYG</a> textarea plugin. Unfortunately, I can only see normal textarea.</p> <p>However, accessing the page directly (ie. not using the ajax tab) works.</p> <p>What happened?</p> <p>p/s: I'm new to jQuery / JavaScript / AJAX / CSS (if that even matter)</p> http://stackoverflow.com/questions/1501687/steps-to-impersonate-with-forms-authentication 0 Steps to Impersonate with Forms Authentication SyaZ 2009-10-01T02:56:48Z 2009-10-01T08:39:53Z <p>I have a finished web app that store user db in flat file, not MSSQL. Now I want to implement impersonate feature for admins. I said finished because it will be a lot of work to change the login mechanism so it is really not an option.</p> <p>I don't want to be logged out as admin, I just want to temporarily impersonate any users, mainly to be used for troubleshooting. There will be a list of users and admins can select any, and admin will be logged in as that user in a new window. <em>If possible</em>, I'd like to implement the scenario where admin will not lose his session when impersonating. ie. Admin is still admin on initial window, and admin is impersonated user in the newly opened window.</p> <p>It's hard to find related information because most searches return Windows authentication impersonation. The closest SO topic I found is <a href="http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication">this</a>, but it's not helping.</p> <p>Exactly what class should I be looking at? Is it even possible for my case? Is implementing membership roles feasible? How?</p> <p>On a related note, go <a href="http://stackoverflow.com/questions/1499730/ethics-impersonation-alternatives">here</a> if you want to talk about alternatives to troubleshoot without resorting to impersonation.</p> <p>Edit: My question is pretty similar to <a href="http://stackoverflow.com/questions/549016/user-impersonation-with-asp-net-forms-authentication">this</a> one, except I don't have RoleManager, or at least I don't know how to make a custom one.</p> http://stackoverflow.com/questions/1499730/ethics-impersonation-alternatives 5 Ethics & Impersonation: Alternatives? SyaZ 2009-09-30T18:02:04Z 2009-10-01T03:59:17Z <p>Have you ever troubleshoot for your customer and ask (or really want to) their credentials to check their settings if the fault is there? Our solution to this is to implement impersonation feature to login as any users and have access to everything users do. In this case, a mail application. Although we don't need the password to impersonate, I however feel concerned about user's privacy. Mainly 2 things: Their mails and POP3/IMAP settings (which impersonator can get user's gmail/yahoo/etc user and password.</p> <p>What are other good alternatives/suggestions around this?</p> <p>Edit:</p> <p>Some suggested logs. Of course, it's essential component but you can't possibly log <em>everything</em>. Especially because there are so many things to log already not related to user's settings.</p> http://stackoverflow.com/questions/1490152/windows-utility-to-find-numbers-and-do-operations 0 Windows utility to find numbers and do operations? SyaZ 2009-09-29T01:34:45Z 2009-09-29T02:14:10Z <p>Is there such a thing that finds numbers using regex and can perform simple arithmetic operations to it?</p> <p>Imagine you have a source/config file storing positions and later changed the code which requires an offset now. How do you normally go about this without doing it manually?</p> <p>Edit: I knew I should've added this bit with the orignal post. I'd prefer something small and easily acquired from anywhere. I am aware of Cygwin and the wonderful util sets of linux which is why I explicitly put Windows in the title.</p> http://stackoverflow.com/questions/1410004/c-smtpclient-error-not-local-host 0 C# SmtpClient error: not local host? SyaZ 2009-09-11T09:43:27Z 2009-09-11T09:59:48Z <p>I'm sending a simple mail with attachment using SmtpClient but I get this error:</p> <blockquote> <p>Mailbox unavailable. The server response was: not local host example.com, not a gateway</p> <p>System.Net.Mail.SmtpFailedRecipientException: Mailbox unavailable.</p> <p>The server response was: not local host example.com, not a gateway at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException&amp; exception) at System.Net.Mail.SmtpClient.Send(MailMessage message)</p> </blockquote> <p>And the code:</p> <pre><code>public static void CreateMessageWithAttachment(byte[] compressed) { // Create a message and set up the recipients. MailMessage message = new MailMessage( "noreply@example.com", "recepient@example.com", "Hello.", "How are you?"); // Create the file attachment for this e-mail message. Stream attachStream = new MemoryStream(compressed); Attachment attachment = new Attachment(attachStream, MediaTypeNames.Application.Octet); message.Attachments.Add(attachment); //Send the message. SmtpClient client = new SmtpClient("123.12.12.123"); // Add credentials if the SMTP server requires them. client.Credentials = CredentialCache.DefaultNetworkCredentials; client.Send(message); attachment.Dispose(); } </code></pre> <p>Of course the domain and IP is valid in the original code. I have tried using both "localhost" and IP but getting same error. Googling returned 3 results of which the helpful one seems to be in chinese and firewall preventing me from translating it.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/138159/php-alias-function 5 PHP alias @ function SyaZ 2008-09-26T07:33:53Z 2009-09-02T10:15:01Z <p>I'm new to PHP and I'm confused seeing some examples calling a function with a @ prefix like @mysql_ping().</p> <p>What is it for? Googling / searching is not much of a help since @ gets discarded and 'alias' is not good enough keyword.</p> http://stackoverflow.com/questions/1366182/of-httponly-and-document-cookie 0 Of HttpOnly and document.cookie SyaZ 2009-09-02T06:57:30Z 2009-09-02T07:01:47Z <p>Searching for possible ways to get cookie with httpOnly enabled, I cannot find any. But then again, how do browser addons like Firebug, Add 'N Edit Cookie, etc. can get the cookies? Can't an attacker do the same?</p> <p>So my question is, is it really, really impossible to get cookie of httpOnly enabled requests, using javascript?</p> <p>p/s: Yes I'm aware httpOnly doesn't stop XSS attacks. I'm also aware it's futile against sniffers. Let's just focus on javascript, sort of alert(document.cookie) type / pre httpOnly era.</p> http://stackoverflow.com/questions/1258043/http-requests-optimization-what-is-the-limit 5 HTTP requests optimization: What is the limit? SyaZ 2009-08-11T01:21:07Z 2009-08-11T01:55:30Z <p>It is common knowledge now to combine stylesheets and scripts in effort to reduce HTTP Requests. I have 2 questions:</p> <ol> <li>How expensive are they, really? </li> <li>When is a request too big it should be split?</li> </ol> <p>I cannot find the answers to these two questions in all online readings I did, such as <a href="http://developer.yahoo.com/performance/rules.html" rel="nofollow">Yahoo! Best Practices</a> which states a number of times that HTTP requests are expensive, but never cite why or how.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/627965/serial-comm-with-php-on-windows 1 Serial comm with PHP on Windows SyaZ 2009-03-09T20:45:05Z 2009-07-02T13:25:01Z <p>Greetings all.</p> <p>I am looking for a way to communicate with RS232 serial COM port on windows. I have found 2 solutions on the net, <a href="http://www.easyvitools.com/phpserial/index.html" rel="nofollow">one</a> which is not totally free (introduces deliberate delays on the function) and <a href="http://www.phpclasses.org/browse/package/3679.html" rel="nofollow">another</a> with limited capability on Windows. The latter can only write to a COM port on Windows, not read.</p> <p>I can't look at the code of the first solution since it is compiled into a .dll (makes sense, otherwise people can just edit the delay and not purchase it...) and the second one seems only to use fopen() to open the port and later fwrite() to it for writing, just like one would do to a stream. But apparently freading it returns nothing.</p> <p>I know it's possible as the first solution did it, although it does require Apache to use php-cgi module instead of php5module.</p> <p>Any ideas?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/856958/mysql-prevent-race-condition-for-update-or-lock-in-share-mode 0 MySQL: Prevent race condition - FOR UPDATE or LOCK IN SHARE MODE? SyaZ 2009-05-13T09:23:54Z 2009-05-14T02:37:43Z <p>Here is my desired transaction order:</p> <ol> <li>User1 select field, perform operation, update with new value.</li> <li>User2 select field, perform operation, update with new value.</li> <li>User3 select field, perform operation, update with new value.</li> </ol> <p>From what I <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb-locking-reads.html" rel="nofollow">understand</a> the first select only perform a write-lock while the second one perform read and write lock.</p> <p>Both seems usable but in the first case, what value will User2 read? The initial value before User1 updates, or the value AFTER User1 updates (which is what I want)?</p> <p>So I am confused, should I use SELECT ... FOR UPDATE or SELECT ... LOCK IN SHARE MODE?</p> http://stackoverflow.com/questions/779591/wamp-easy-setup-installer 2 WAMP easy setup installer? SyaZ 2009-04-22T22:52:17Z 2009-04-26T12:24:41Z <p>Is there any way to make an installer that is very user friendly?</p> <p>I know it's impossible for a Next Next Finished installer but what can I do to ease the process?</p> <p>Windows platform.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/765408/c-free-easy-way-to-draw-graphs-and-charts 2 C++: Free easy way to draw graphs and charts? SyaZ 2009-04-19T13:25:47Z 2009-04-19T18:16:31Z <p>I am doing a little exploring simulation and I want to show the graphs to compare the performance among the algorithms during run-time.</p> <p>What library comes to your mind? I highly prefer those that come small as I'd love if it's easy for my instructor to compile my code. I've checked <a href="http://www.fred.net/brv/chart/" rel="nofollow">gdchart</a> but it seems to be too heavy. I just want a simple x-y sort of timeline graph.</p> <p>Google chart is of course out of the question, in case you've read <a href="http://stackoverflow.com/questions/82294/is-there-any-open-source-library-in-c-for-3d-chart">this</a> similar question.</p> <p>Thanks in advance.</p> <p><hr /></p> <p>Related:</p> <ul> <li><a href="http://stackoverflow.com/questions/215110/scatter-plots-in-c/">Scatter Plots in C++</a></li> </ul> <p>and perhaps others.</p> http://stackoverflow.com/questions/737240/c-c-array-size-at-run-time-w-o-dynamic-allocation-is-allowed 3 C/C++: Array size at run time w/o dynamic allocation is allowed? SyaZ 2009-04-10T10:21:05Z 2009-04-10T11:00:25Z <p>I've been using C++ for a few years, and today I don't know if this is a mere brainfart or what, but how can this be perfectly legal:</p> <pre><code>int main(int argc, char **argv) { size_t size; cin &gt;&gt; size; int array[size]; for(size_t i = 0; i &lt; size; i++) { array[i] = i; cout &lt;&lt; i &lt;&lt; endl; } return 0; } </code></pre> <p>Compiled under GCC. How can the size be determined at run-time without new or malloc? Just to double check, I've googled some and all similar codes to mine are claimed to give storage size error. Even Deitel's C++ How To Program p. 261 states under Common Programming Error 4.5: Only constants can be used to declare the size of automatic and static arrays.</p> <p>Enlight me.</p> http://stackoverflow.com/questions/725286/php-webserver-connect-to-c-program-on-same-server-what-am-i-looking-for 0 PHP webserver connect to C# program on same server -- What am I looking for? SyaZ 2009-04-07T11:50:07Z 2009-04-09T20:08:07Z <p>So I have a webserver in which user can remotely control an external electronic board which due to certain conditions force me to put a desktop program using C# as the middle-man.</p> <p>What is the magic keyword I'm looking for? At first I thought of socket but every socket searches involve server-client over TCP... it's the same machine so theoretically I can just put loopback address and proceed normally. But is this an overkill way or the only way?</p> <p>Thanks in advance.</p> <p>edit: My C# program is basically a daemon which will wait orders from the PHP script. So I can remotely access that website and instruct that C# app.</p> http://stackoverflow.com/questions/726960/php-socket-listen-problem 0 PHP: socket listen problem SyaZ 2009-04-07T18:13:46Z 2009-04-08T06:41:36Z <p>Here is my code:</p> <pre><code>&lt;?php $host = "127.0.0.1"; $portListen = 1234; $portSend = 1240; // create socket $sSender = socket_create(AF_INET, SOCK_STREAM, 0); socket_connect($sSender, $host, $portListen); socket_write($sSender, "test", strlen ("test")); $sListen = socket_create(AF_INET, SOCK_STREAM, 0); socket_set_option($sListen, SOL_SOCKET, SO_REUSEADDR, 1); socket_bind($sListen, $host, $portSend); socket_listen($sListen,1); $dataSock = socket_accept($sListen); echo socket_read($dataSock, 3, PHP_NORMAL_READ); // close sockets socket_close($sSender); socket_close($sListen); ?&gt; </code></pre> <p>I send "test" to another application, it receives, and send back "ack". Problem is, I can only do it once. If I refresh, I get the address is already used error. I tried the solutions suggested on <a href="http://my.php.net/manual/en/function.socket-close.php" rel="nofollow">php.net</a> but to no avail. Trying to socket_shutdown() before socket_close() only give me not connected warning, and upon refreshing will give me a never ending loading.</p> <p>From what I understand the reason socket is not immediately closed is because there is still data in the buffer. But as you can see I explicitly state to listen to only 1 connection. Plus I am only sending 3 characters from my application and reading 3 in this script.</p> <p>What am I doing wrong?</p> <p>edit: The reason I'm using 2 sockets is because I cannot listen() after write() which give me socket is already connected error. Skipping listen() and going straight for read() after write() give me invalid argument error.</p> http://stackoverflow.com/questions/726960/php-socket-listen-problem/727914#727914 0 Answer by SyaZ for PHP: socket listen problem SyaZ 2009-04-07T22:57:56Z 2009-04-07T22:57:56Z <p>I see, after having a few hours sleep and re-analyzing my code and the documentations, I managed to fix everything. You guys are right, 1 socket is indeed enough and the correct way:</p> <pre><code>&lt;?php $host = "127.0.0.1"; $portListen = 1234; $sSender = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n"); socket_connect($sSender, $host, $portListen) or die("Could not connect\n"); socket_write($sSender, "test", strlen ("test")) or die("Could not write output\n"); echo socket_read($sSender, 3, PHP_NORMAL_READ); socket_close($sSender); ?&gt; </code></pre> <p>So simple!</p> http://stackoverflow.com/questions/708739/mpi-locking-the-stdout-1-process-at-a-time 0 MPI: Locking the stdout -- 1 process at a time? SyaZ 2009-04-02T07:54:50Z 2009-04-07T12:10:05Z <p>Hello.</p> <p>I want to print out the content of integer array of each processes. Problem is, it's all cluttered because of race condition.</p> <p>What is the simplest solution? I don't want to debug. I want to show the contents because I'm doing sorting algorithm. So it's useful to show before and after sort.</p> <p>I added this in lock.c:</p> <pre><code>#include &lt;stdio.h&gt; static int lock=0; //Don't use if timing execution void capture(int rank) { while(lock!=0); lock = 1; printf("\nCaptured by %d\n", rank); } void release() { lock = 0; } </code></pre> <p>And call capture() before printing stuff, then release() after printing. Yes, it's a semaphore-like hack. But it isn't working, any ideas?</p> http://stackoverflow.com/questions/709892/what-are-the-criteria-for-judging-codes-in-competition 0 What are the criteria for judging codes in competition? SyaZ 2009-04-02T14:16:28Z 2009-04-02T16:08:53Z <p>I'm sure you guys have joined or seen competitions with totally weird judging criteria. For example the C/C++ online competition from India few months ago judge by number of semicolons you use, where the lesser you use, the better your code is. Way to encourage unreadable codes. I mean, it's not code obfuscation competition!</p> <p>So I'm interested to know what do you guys think are the important things to judge in a normal programming competition?</p> http://stackoverflow.com/questions/649544/algorithm-travelling-through-all-array-elements-with-limited-move-constraint 0 Algorithm: Travelling through all array elements with limited move constraint SyaZ 2009-03-16T07:19:04Z 2009-03-16T10:24:38Z <p>Greetings.</p> <p>I have an 2-D array of size [N][N] which will represent a rectangular area / map with N rows and N columns.</p> <p>Let's say I pick the middle as starting point (or anywhere else), I want to walk through all elements with the constraint of moving only X times before having to reset back to starting point. I then can walk through the path I've went to, but that will waste a turn.</p> <p>I'm just wondering if there is a specific algorithm for this problem so I can compare with my current way of doing which just stores the moves I already did. (quite messy tbh)</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/649510/can-i-register-a-it-domain-name-for-a-company-outside-of-italy/649517#649517 0 Answer by SyaZ for Can I register a .it domain name for a company outside of Italy? SyaZ 2009-03-16T07:08:48Z 2009-03-16T07:08:48Z <p>Yes unless there is a specific rule for Italy... There are tons of sites that use other country's domain but is physically located at other country.</p> http://stackoverflow.com/questions/365476/c-problem-stuffing-8-bits-into-a-char 0 C++ Problem Stuffing 8 bits into a char SyaZ 2008-12-13T17:42:14Z 2008-12-13T19:20:16Z <p>This is weird. It is a trivial problem:</p> <p>A std::string with bits with length multiple of 8, the first 8 is: "10011100".</p> <pre><code>//Convert each 8 bits of encoded string to bytes unsigned char c = 0; for(size_t i = 0; i &lt; encoded.size(); i += 8) { for(size_t k = 0; k &lt; 8; k++) { c &lt;&lt;= k; if(encoded.at(i + k) == '1') c += 1; //Debug for first 8 bits if(i == 0) cout &lt;&lt; "at k = " &lt;&lt; k &lt;&lt; ", c = " &lt;&lt; (int)c &lt;&lt; endl; } outFile.write(reinterpret_cast&lt;char*&gt;(&amp;c), sizeof(char)); } </code></pre> <p><hr /></p> <p>Yields the output:</p> <pre><code>at k = 0, c = 1 at k = 1, c = 2 at k = 2, c = 8 at k = 3, c = 65 at k = 4, c = 17 at k = 5, c = 33 at k = 6, c = 64 at k = 7, c = 0 </code></pre> <p>Which doesn't make sense. Shifting 2 places left and getting 8 from 2 is impossible. The max value it can have should be 111b = 7d and in this case should be 100b = 4d.</p> <p>Enlight me.</p> http://stackoverflow.com/questions/351522/c-huffman-code-header 2 C++ Huffman Code Header SyaZ 2008-12-09T01:27:06Z 2008-12-11T19:12:59Z <p>Hello,</p> <p>basically, I've got my Huffman table as </p> <pre><code>std::map&lt;std::string, char&gt; ciMap; </code></pre> <p>Where string is the bit pattern and char is the value represented by said pattern. The problem is how do I store that as a header of my compressed file so I can build again the same map when I want to decode it?</p> <p>Trying to store it as binary:</p> <pre><code>size_t mapLen = ciMap.size(); outFile.write(reinterpret_cast&lt;char*&gt;(&amp;mapLen), sizeof(size_t)); outFile.write(reinterpret_cast&lt;char*&gt;(&amp;ciMap), sizeof(ciMap)); </code></pre> <p>And later building with:</p> <pre><code>inFile.read(reinterpret_cast&lt;char*&gt;(&amp;mapLen), sizeof(size_t)); inFile.read(reinterpret_cast&lt;char*&gt;(&amp;ciMap), sizeof(mapLen)); </code></pre> <p>Doesn't work, I get string initilization error... something to do with NULL. Any suggestions? If you have better way of storing the bits and values I'd like to hear.</p> http://stackoverflow.com/questions/257190/mysql-get-differences-of-each-sorted-column-in-set-of-rows 1 MySQL: get differences of each sorted column in set of rows SyaZ 2008-11-02T18:44:37Z 2008-11-02T19:13:59Z <p>Here is a simple scenario with table characters:</p> <p>CharacterName GameTime Gold Live</p> <blockquote> <p>Foo 10 100 3 </p> <p>Foo 20 100 2 </p> <p>Foo 30 95 2</p> </blockquote> <p>How do I get this output for SELECT Gold, Live FROM characters WHERE name = 'Foo' ORDER BY GameTime:</p> <blockquote> <p>Gold Live</p> <p>100 3</p> <p>0 -1</p> <p>-5 0</p> </blockquote> <p>using MySQL stored procedure (or query if it's even possible)? I thought of using 2 arrays like how one would normally do in a server-side language, but MySQL doesn't have array types.</p> <p>While I'm aware it's probably easier to do in PHP (my server-side langauge), I want to know if it's possible to do in MySQL, just as a learning material.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/256413/mysql-field-management 1 MySQL field management SyaZ 2008-11-02T02:20:45Z 2008-11-02T02:43:50Z <p>When I make a query, I often wonder about this:</p> <blockquote> <p>Is it better to add extra field(s) to the table, or just get the values and calculate in your server side language?</p> </blockquote> <p>For example, table Student contains Student.score field. I want to get the grades.</p> <blockquote> <p>Do I get the score and make a bunch of if/else/switch for the grades?</p> <p>Do I <strong>waste</strong> space by adding a field just to store something that is dependent on another field?</p> </blockquote> <p>The former is annoying to do everytime you need the grades. The latter scares me when I think of space usage. If I have as small as 10,000 records then I've already wasted 10,000 fields!</p> <p>Which is the most efficient method, considering non-trivial tables and medium to big database size?</p> <p>If it matters lets use PHP as the server side language.</p> http://stackoverflow.com/questions/243897/php-right-way-to-declare-variable-before-use-in-loop 3 PHP: Right way to declare variable before use in loop SyaZ 2008-10-28T16:12:47Z 2008-10-28T16:41:25Z <p>I have a variable that is built in loop. Something like:</p> <pre><code>$str = ""; for($i = 0; $i &lt; 10; $i++) $str .= "something"; </code></pre> <p>If $str = "" is ommitted, I get undefined variable notice, but I thought php auto-declare a variable the first time it sees undeclared one?</p> <p>How do I do this right?</p> http://stackoverflow.com/questions/1728134/jquery-facebook-iframe-app-html-inaccessible Comment by SyaZ on jQuery: Facebook iframe app html inaccessible SyaZ 2009-11-13T13:44:52Z 2009-11-13T13:44:52Z But I thought if it's rendered as HTML div then you can access it with javascript as how it is rendered? http://stackoverflow.com/questions/1612946/what-is-the-thing-that-irritates-you-while-doing-maintenance-coding/1612958#1612958 Comment by SyaZ on What is the thing that irritates you while doing maintenance coding? SyaZ 2009-10-23T15:11:39Z 2009-10-23T15:11:39Z @JMSA I believe it's referring to one of XKCD strip that the only valid code quality measurement is by WTF per minute. The wtf in thedailywtf however stands for worse than failure, which is different... http://stackoverflow.com/questions/1499730/ethics-impersonation-alternatives/1501620#1501620 Comment by SyaZ on Ethics & Impersonation: Alternatives? SyaZ 2009-10-01T08:48:59Z 2009-10-01T08:48:59Z We have a number of customers (maybe reaching 3 digits). So when we get called the first thing we'd like to check is it's not because of silly mistakes on their part before we ask them to check the firewall, anti-virus, etc. http://stackoverflow.com/questions/1499730/ethics-impersonation-alternatives/1499896#1499896 Comment by SyaZ on Ethics & Impersonation: Alternatives? SyaZ 2009-10-01T01:23:50Z 2009-10-01T01:23:50Z Actually I find #2 is a great solution and may just be what I need. Why do you (or others) think there are no advantages of it? http://stackoverflow.com/questions/1490152/windows-utility-to-find-numbers-and-do-operations/1490162#1490162 Comment by SyaZ on Windows utility to find numbers and do operations? SyaZ 2009-09-29T02:13:50Z 2009-09-29T02:13:50Z Thanks, GnuWin32 looks like what I need. Cygwin is definitely the way to go for personal workspace but if not I'd prefer something lightweight and easy to install/uninstall. http://stackoverflow.com/questions/1490152/windows-utility-to-find-numbers-and-do-operations/1490162#1490162 Comment by SyaZ on Windows utility to find numbers and do operations? SyaZ 2009-09-29T01:55:31Z 2009-09-29T01:55:31Z Anything other than cygwin? I edited my post. http://stackoverflow.com/questions/1472039/most-regrettable-design-or-programming-decision-you-made Comment by SyaZ on Most regrettable design or programming decision you made? SyaZ 2009-09-24T15:03:21Z 2009-09-24T15:03:21Z What is wrong with all the closed voters? So what if it's not a CW let the asker get some votes for coming up with the question. I'm genuinely interested with this topic. Don't let CW get in the way of good subjective question. Sheesh, SO is full of &quot;CW THIS&quot; screamers. http://stackoverflow.com/questions/1472039/most-regrettable-design-or-programming-decision-you-made/1472068#1472068 Comment by SyaZ on Most regrettable design or programming decision you made? SyaZ 2009-09-24T14:59:05Z 2009-09-24T14:59:05Z +1 Completely relevant to me! http://stackoverflow.com/questions/1472039/most-regrettable-design-or-programming-decision-you-made/1472062#1472062 Comment by SyaZ on Most regrettable design or programming decision you made? SyaZ 2009-09-24T14:58:00Z 2009-09-24T14:58:00Z A related blog post by Jeff titled Maybe Normalizing Isn't Normal: <a href="http://www.codinghorror.com/blog/archives/001152.html" rel="nofollow">codinghorror.com/blog/archives/&hellip;</a> http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1470043#1470043 Comment by SyaZ on What's the worst security hole you've ever seen? SyaZ 2009-09-24T10:50:08Z 2009-09-24T10:50:08Z Not security hole. More like phishing. If you can get physical access to a box then it has at least 1000 holes. http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1470804#1470804 Comment by SyaZ on What's the worst security hole you've ever seen? SyaZ 2009-09-24T10:47:38Z 2009-09-24T10:47:38Z I really hate that attitude, been getting it a few times. Makes me want to let others do it just to teach 'em a lesson. http://stackoverflow.com/questions/81597/remove-unused-references-using/81652#81652 Comment by SyaZ on Remove unused references (!= "using") SyaZ 2009-09-18T02:39:25Z 2009-09-18T02:39:25Z @boris: Nicetip, didn't know it before! http://stackoverflow.com/questions/852942/how-do-you-programatically-end-a-session-in-asp-net/852966#852966 Comment by SyaZ on How do you programatically end a session in asp.net? SyaZ 2009-09-15T04:48:55Z 2009-09-15T04:48:55Z -1 Doesn't seem to answer the main question. http://stackoverflow.com/questions/1410004/c-smtpclient-error-not-local-host/1410081#1410081 Comment by SyaZ on C# SmtpClient error: not local host? SyaZ 2009-09-11T10:08:26Z 2009-09-11T10:08:26Z Not exactly my style of search. I searched: C# smtpclient &quot;not local host&quot; http://stackoverflow.com/questions/1410004/c-smtpclient-error-not-local-host Comment by SyaZ on C# SmtpClient error: not local host? SyaZ 2009-09-11T10:06:54Z 2009-09-11T10:06:54Z Yes, own server.