active questions tagged tricks - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T11:20:50Zhttp://stackoverflow.com/feeds/tag/trickshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1859602/php-tips-tricks-hacks0PHP Tips, Tricks & Hacks [closed]Sarfraz Ahmed2009-12-07T12:05:47Z2009-12-07T12:08:56Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden Features of PHP?</a> </p>
</blockquote>
<p>Hello All,</p>
<p>Tips, tricks and hacks of any language are always great to discover and to know. They save you a lot of development time and optimize the code where necessary.</p>
<p>I am looking for any tips, tricks and hacks you guys have discovered about PHP.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/229763/how-to-improve-netbeans-performance2How to improve Netbeans performanceyeradis2008-10-23T13:44:47Z2009-12-05T00:28:13Z
<p>hello and good day for everyone</p>
<p>This is my question.</p>
<p>Exists a real way to get Netbeans load faster and working time too?</p>
<p>It is to slow and when you have some time coding is worse it eat all my ram</p>
<p>with no more....
bye bye</p>
http://stackoverflow.com/questions/573072/tricks-to-google-for-desired-page-quickly4Tricks to Google for desired page quicklyalex2k82009-02-21T14:07:51Z2009-11-28T14:11:01Z
<p>I like to use Google to quickly locate API documentation. To get better results, I type some keywords that give desired results as top lines. For example:</p>
<pre>
JavaScript:
MDC Array slice
MDC String indexOf
Ruby
ruby doc Dir glob
rubyonrails ActionMailer
</pre>
<p>What are your favourite tricks to pick the desired pages quickly?</p>
<p>P.S.</p>
<p>Google prefixes like site: are good, but I see two limitations:</p>
<pre><code>1) It can be too long to type. Compare
MDC array slice
vs.
site:developer.mozilla.org array slice
2) If typing a search query in the address bar, I can't start with "site:"
</code></pre>
http://stackoverflow.com/questions/1811354/practical-and-useful-coding-tricks-that-help-web-developers-save-time0Practical and useful coding tricks that help web developers save time?John2009-11-28T02:32:40Z2009-11-28T13:50:06Z
<p>I'm a php web programmer. I want to know if there are common web problems that web programmers face for which there are unorthodox and effective solutions.</p>
<p>As an example, I'm making a simple website of user generated profiles. A user can store a whole bunch of information that range from first high school to when he first went to a baseball game. Instead of making 50 columns in the database for form data I never intend to search/query against, I simply serialize the form data - serialize($_POST) - and save it in the t_user.general_info text column. This simplifies my database because I don't need atomicity on such mundane data. At any time in the future, I can unserialize() the data to see it all again. I think if I were back in school, teachers would dis-approve of this. But hey, it's fast and practical!</p>
<p>I'm wondering if there are other simple tricks of the same nature in web development that will help me save time.</p>
<p>Perhaps someone can post a link for me to study?</p>
http://stackoverflow.com/questions/1292532/how-to-generate-a-compilation-error-when-pointer-types-differ1How to generate a compilation error when pointer types differ?Alexandru2009-08-18T08:22:08Z2009-11-17T02:00:06Z
<p>How do I write a macro CHECK(a, b) that generates compilation error when the two pointers a & b have different base type.</p>
<pre><code>CHECK((int*)0, (char*)0) -> compilation error
CHECK((int*)0, (int*)0) -> works
</code></pre>
<p>I'm looking for some C89 code, but C99 + gcc extensions will also do.</p>
http://stackoverflow.com/questions/1610996/possible-to-disable-flash-element1Possible to disable flash element?wall_russ2009-10-23T01:44:49Z2009-11-16T22:46:48Z
<p>I'm trying to do something unusual. I promise it has a purpose. I'm 90% sure it can't be done, but wanted to double check with geniuses.</p>
<p>Is it possible to have an object/embeded .swf in the page, let it be displayed, but do not allow any interaction with it. As an example, can you somehow change the youtube embed code to display the player, but not allow any interaction with it at all?</p>
<p>I searched flash's variable list, but didn't see anything to do this.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1697358/fast-modulo-3-or-division-algorithm3Fast modulo 3 or division algorithm?unknown (google)2009-11-08T17:59:17Z2009-11-08T21:38:08Z
<p>Hello</p>
<p>is there a fast algorithm, similar to power of 2, which can be used with 3, i.e. n%3.
Perhaps something that uses the fact that if sum of digits is divisible by three, then the number is also divisible.</p>
<p>This leads to a next question. What is the fast way to add digits in a number? I.e. 37 -> 3 +7 -> 10
I am looking for something that does not have conditionals as those tend to inhibit vectorization</p>
<p>thanks</p>
http://stackoverflow.com/questions/423994/reserved-words-as-variable-or-method-names2Reserved words as variable or method names2009-01-08T11:47:46Z2009-11-08T21:02:49Z
<p>Is there any tricky way to use Java reserved words as variable or method names?</p>
http://stackoverflow.com/questions/132092/what-are-your-favourite-matlab-octave-programming-tricks9What are your favourite MATLAB/Octave programming tricks?Matt2008-09-25T08:19:30Z2009-10-25T23:55:23Z
<p>I think everyone would agree that the MATLAB language is not pretty, or particularly consistent. But nevermind! We still have to use it to get things done.</p>
<p>What are your favourite tricks for making things easier? Let's have one per answer so people can vote them up if they agree. Also, try to illustrate your answer with an example.</p>
http://stackoverflow.com/questions/1477444/how-do-i-show-sprites-in-the-border-on-c6412How do I show sprites in the border on C64?Danko Durbić2009-09-25T13:59:15Z2009-09-28T09:26:52Z
<p>I've seen cool C64 demos showing sprites in the border area of the screen. It shouldn't be possible; I think they managed to fool the graphics chip somehow... How exactly did they do it? </p>
http://stackoverflow.com/questions/111868/what-is-your-latest-useful-perl-one-liner-or-a-pipe-involving-perl10What is your latest useful Perl one-liner (or a pipe involving Perl)?J.F. Sebastian2008-09-21T19:43:29Z2009-09-17T23:59:21Z
<p>The one-liner should:</p>
<ul>
<li>solve a real-world problem</li>
<li>not be extensively cryptic (should be easy to understand and reproduce)</li>
<li>be worth the time it takes to write it (should not be too clever)</li>
</ul>
<p>I'm looking for practical tips and tricks (complementary examples for <code>perldoc perlrun</code>).</p>
http://stackoverflow.com/questions/329582/is-1-for-true-or-false15Is 1 for TRUE or FALSE ?CharlesChipy2008-11-30T23:20:31Z2009-09-09T04:29:33Z
<p>I always forget :S<br />
<strong>How do you remember which number stands for TRUE or FALSE?</strong></p>
<p><em>(when I started css the colors black and white always confused me. Is white #FFFFFF or #000000. A trick I came up with: black is 0,because z0rr0 is dressed in …)</em></p>
http://stackoverflow.com/questions/1392199/how-to-set-mouse-cursor-position-to-a-specified-point-on-screen-in-c1How to Set mouse cursor position to a specified point on screen in C#?mavric2009-09-08T05:45:30Z2009-09-08T14:01:57Z
<p>How to Set mouse cursor position to a specified point on screen in C#?</p>
<p>am i must hacke the motherboard buffer that receive the mouse and keyboard coordinates and presses ???</p>
<p>is there another one to do clicks or i am imagine ???</p>
http://stackoverflow.com/questions/1212764/clever-way-to-make-same-assembly-executed-differently0Clever way to make same assembly executed differently?Brian2009-07-31T14:12:45Z2009-09-04T06:06:29Z
<p>Without changing the build process or including the source files, can anyone think of a way to make two pieces of code that, when compiled, generates the same assembly but still executes differently? I already know why this <em>should</em> be impossible, so please don't bother to explain. There are definitely ways to do it, primarily by finding ways to hide information in the source code that ends up somewhere other than in the executeable.</p>
<p>A rather boring and unfun example that can do this: Create a chunk of code that takes a long time to parse but gets optimized out during the compilation process (or just add so much white space that disk I/O slows down compilation). Make your program generate both an exe and a dll during the build process. Have the program behave differently depending on the difference between the created timestamps on the dll and the exe. This is a pretty lame example, though. I wonder if someone can come up with anything more clever.</p>
<p>One could also somehow generate a different debugging output and have that change how the code runs, but that's kind of lame, too.</p>
<p>It is, of course, more impressive if your code doesn't seem to be inspecting itself or the output. If someone looking at your code would be shocked that the two versions behaved differently, it's a great answer.</p>
http://stackoverflow.com/questions/1275736/is-there-any-command-to-go-to-the-end-or-beginning-of-a-ruby-block-using-vim1Is there any command to go to the end (or beginning) of a Ruby block using vimRoman Gonzalez2009-08-14T02:25:22Z2009-08-14T04:44:06Z
<p>Hello there,</p>
<p>Is there a way to go the end of a Ruby block using vim? For example</p>
<pre><code>module SomeModule
# <Supposing that the cursor is HERE>
def some_method
end
end
</code></pre>
<p>I want to go from where the cursor is, to the end of the block with one command, is that possible?</p>
<p>I've read <a href="http://vim.runpaint.org/navigation/navigating-source-code/" rel="nofollow">this documentation</a>, but it doesn't seem to work on .rb files, I've read in some places that it only works on C (haven't tried though).</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/732485/interview-question-ffx-1-x1Interview question: f(f(x)) == 1/xUnknown2009-04-09T01:38:12Z2009-07-19T08:59:12Z
<blockquote>
<p>Design a function f such that:</p>
<p>f(f(x)) == 1/x</p>
<p>Where x is a 32 bit float</p>
</blockquote>
<p>Or how about</p>
<blockquote>
<p>Given a function f, find a function g
such that </p>
<p>f(x) == g(g(x))</p>
</blockquote>
<p><hr/></p>
<h3>See Also</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/731832/interview-question-ffn-n">Interview question: f(f(n)) == -n</a></p>
</blockquote>
http://stackoverflow.com/questions/1115904/shortest-way-to-swap-two-files-in-bash1Shortest way to swap two files in bashflybywire2009-07-12T12:01:35Z2009-07-13T14:22:06Z
<p>Can two files be swapped in bash?</p>
<p>Or, can they be swapped in a shorter way than this:</p>
<pre><code>cp old tmp
cp curr old
cp tmp curr
rm tmp
</code></pre>
http://stackoverflow.com/questions/442201/how-do-you-implement-related-tags-functionality-as-used-in-stackoverflow-com3How do you implement Related tags functionality as used in Stackoverflow.com?Daksh2009-01-14T07:40:22Z2009-06-14T14:27:36Z
<p>Hi everybody,</p>
<p>Good morning!</p>
<p>Have been trying to find an answer to this. How do you implement the 'related tags' functionality as used in many websites like our stackoverflow.com and <a href="http://tagexplorer.sandbox.yahoo.com/" rel="nofollow">http://tagexplorer.sandbox.yahoo.com/</a>. </p>
<p>A user clicks on tag and he gets all the related tags connected to that. </p>
<p>Daksh</p>
http://stackoverflow.com/questions/921835/what-does-this-css-value-mean0What does this CSS value mean?Jim Robert2009-05-28T16:25:46Z2009-05-28T16:48:20Z
<p>While viewing the source of a web page, I came across this CSS, applied to a span within a button:</p>
<pre><code>.whatever button span {
position: absolute;
left: -1e+7px;
}
</code></pre>
<p>What does <code>left: -1e+7px;</code> mean? Is this some trick I should be aware of?</p>
http://stackoverflow.com/questions/92648/what-do-you-do-to-keep-your-coding-skills-in-shape-and-how-often12What do you do to keep your coding skills in shape, and how often?Nano Taboada2008-09-18T13:44:49Z2009-05-17T04:33:10Z
<p>What would you say are your best kept secrets to keep yourself in top programming shape?</p>
http://stackoverflow.com/questions/821966/little-known-programming-wisdom4Little Known Programming Wisdom [closed]e52009-05-04T20:42:15Z2009-05-04T21:21:45Z
<p>I came across this <a href="http://stackoverflow.com/questions/187676/string-operations-in-java">question</a> on joining a list of strings. Many of the answers struck a nerve with me. A fair number of the posters didn't seem to know about <a href="http://commons.apache.org/lang/apidocs/org/apache/commons/lang/StringUtils.html#join%28java.util.Collection,%20java.lang.String%29" rel="nofollow">StringUtils.join</a>. I consider myself lucky to have happened across StringUtils.join on a google search.</p>
<p>StringUtils.join concatenates a List or collection of Strings using a delimiter, almost exactly the way join works in python. No more ugly for loops, join makes code easier to write and easier to read. It makes java a better language.</p>
<p>Being truly passionate about the virtues of StringUtils, I set out to gain enough reputation points to upvote the "correct" StringUtils answer. </p>
<p>Here is your chance, what little known programming wisdom/tricks are you extremely passionate about? What lengths have you gone to promote them?</p>
http://stackoverflow.com/questions/812541/ruby-change-each-value-in-a-hash-with-something-like-collect-for-arrays1Ruby: change each value in a hash with something like #collect for arrays?Adam Nonymous2009-05-01T18:17:45Z2009-05-01T19:10:10Z
<p>Hi!</p>
<p>I'd like to replace each value in a hash with value.some_method.</p>
<p>For example in a simple hash {"a" => "b", "c" => "d"} every value should be .upcase-d so it looks like {"a" => "B", "c" => "D"}.</p>
<p>I tried #collect and #map but always just get arrays back. Is there an 'elegant' way to do this?</p>
<p>Thanks in advance,</p>
<p>Adam Nonymous</p>
<p>UPDATE: Damn, I forgot: The hash is in an instance variable which should not be changed. I need a new hash with the changed values, but would prefer not to define that variable explicitly and then loop over the hash filling it. Something like new_hash = hash.magic {...} ;)</p>
http://stackoverflow.com/questions/791014/running-a-command-with-every-svn-commit3Running a command with every svn commitcube2009-04-26T15:08:15Z2009-04-26T17:46:19Z
<p>Is it possible to make svn run some command before every commit? I have some documentation in LaTeX in the repository and would like to have always the latest version of the compiled docs available as a pdf in the repository. The same would go with doxygen docs.</p>
<p>I'd bet that there is some magic svn:something property or something like that, but haven't found anything yet. Thanks.</p>
<p>Edit:
Thanks for the answers, but as far as I understand it hooks run on the server. In this case I don't have access to the server (the project is hosted on Assembla). Is there any way to do these things on a client?</p>
http://stackoverflow.com/questions/622902/powershell-tips-tricks-for-developers8PowerShell Tips & Tricks for DevelopersSung Meister2009-03-08T02:18:53Z2009-04-14T12:44:59Z
<p>What are the some of the PowerShell <strong>tips</strong> & <strong>tricks</strong> that you use to <em>increase your productivity</em> as a .NET developer?</p>
http://stackoverflow.com/questions/736408/c-function-seemingly-not-defined-anywhere3C function seemingly not defined anywhere!hasen j2009-04-10T00:58:20Z2009-04-10T01:36:56Z
<p>I'm looking at the vim source code, specifically the file <a href="http://svn.jansson.be/limp/vim-ecl/7.2/src/normal.c" rel="nofollow">normal.c</a>, and I see this function <code>nv_operator</code> being used, but it's not defined anywhere (I grepped the entire src directory)</p>
<p>It's only declared as:</p>
<pre><code>static void nv_operator __ARGS((cmdarg_T *cap));
</code></pre>
<p>I've looked up the definition of __ARGS but it's just ... nothing (pretty much)<br />
in <a href="http://svn.jansson.be/limp/vim-ecl/7.2/src/vim.h" rel="nofollow">vim.h</a>:</p>
<pre><code>#define __ARGS(x) x
</code></pre>
<p>So what could be going on? Is this some kind of <code>C</code> technique to create a dummy function or something?</p>
http://stackoverflow.com/questions/688438/best-ninja-code0Best Ninja Code? [closed]Hoffmann2009-03-27T03:33:55Z2009-04-02T22:04:10Z
<p>I want to see what little coding tricks you know. Let me start with one example:</p>
<p>This little code I took from Tanenbaum's Operating Systems Design and Implementation book, it copy n elements from a vector q to a vector p using pointer arithmetics. Since it is in C, it also works for strings:</p>
<pre><code>while (n--) {
*p++ = *q++;
}
</code></pre>
<p><a href="http://ecx.images-amazon.com/images/I/5169V5J687L.%5FSS500%5F.jpg" rel="nofollow"></a></p>
<p>Now post any small algorithm to do something in a more elegant, funny, faster or cleaner way, in any language. Also post an explanation of what it does. Like my example above, the code doesn't need to check for all the possible scenarios (that one doesn't check for overflows), it just needs to be really cool way to do something (Ninja Style).</p>
http://stackoverflow.com/questions/695024/how-do-you-search-all-source-code-in-vim2How do you search all source code in Vim?Brian M. Hunt2009-03-29T17:46:43Z2009-03-30T22:29:48Z
<p>When using Vim, and given a directory filled with code (e.g. ~/trunk/) with a number of sub-directories, is there a way to grep/search for instances of text/regexes across the entire source code?</p>
<p>At the moment I use:</p>
<pre><code>:lcd ~/trunk
:grep "pattern" *.py */*.py */*/*.py */*/*/*.py
</code></pre>
<p>(Obviously I'm limiting this to Python files, which is a different issue, but it's noteworthy that ideally I'd like to limit the searches to files with specific extensions.)</p>
<p>Any suggestions would be appreciated. Thank you.</p>
http://stackoverflow.com/questions/296608/hp-lightscribe-label-tricks2HP LightScribe Label tricks [closed]LarryF2008-11-17T19:33:20Z2009-02-27T21:13:29Z
<p>Just wondering if anyone has ever done anything tricky with a LightScribe label? I wanted to do a hologram by very lightly burning an image into the label, and then shifting over a few bits and burning a lighter version of it, etc... But, I went looking for software that could do this, and found nothing....</p>
<p>I wondered if it COULD be done, could it be done in the label image, or would it have to be in the software, to burn the bits in just the right order, and contrast to give you the hologram effect?</p>
<p>As a bonus, as anyone ever managed to burn a CD with an image on the data side? I figure this should be possible, but would most certainly require a lot of debugging, and work to get it right. That's something I'll have to try someday... :) </p>
<p>Double bonus if you can get an image to burn on a dual layer DVD to form a hologram. hehe..</p>
<p>If anyone HAS done this, please share your work. Even if it's just the ISO of your work and not the software than created it. I'd like to see it work...</p>
http://stackoverflow.com/questions/319725/which-are-your-favorite-gdb-tricks9Which are your favorite GDB tricks?Johan Dahlin2008-11-26T04:09:58Z2008-11-26T14:55:30Z
<p>Which is your favorite macro/trick in gdb? Have you written any good macros for improving language integration? What's your best way of making the debugging experience inside gdb less painful?</p>
http://stackoverflow.com/questions/105725/how-to-write-a-self-reproducing-code-prints-the-source-on-exec6How to write a self reproducing code (prints the source on exec)?Abhishek Mishra2008-09-19T21:20:03Z2008-10-12T03:07:20Z
<p>I have seen a lot of C/C++ based solutions to this problem where we have to write a program that upon execution prints its own source. </p>
<p>some solutions --</p>
<p><a href="http://www.cprogramming.com/challenges/solutions/self_print.html" rel="nofollow">http://www.cprogramming.com/challenges/solutions/self_print.html</a></p>
<p><strong><a href="http://www.nyx.net/~gthompso/quine.htm" rel="nofollow">Quine Page solution in many languages</a></strong></p>
<p>There are many more solutions on the net, each different from the other. I wonder how do we approach to such a problem, what goes inside the mind of the one who solves it. Lend me some insights into this problem... While solutions in interpreted languages like perl, php, ruby, etc might be easy... i would like to know how does one go about designing it in compiled languages...</p>