Tagged Questions

0
votes
2answers
60 views

PHP Tips, Tricks & Hacks [closed]

Possible Duplicate: Hidden Features of PHP? Hello All, 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 …
0
votes
4answers
85 views

Practical and useful coding tricks that help web developers save time?

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. As an example, I'm making a simple website …
3
votes
6answers
209 views

Fast modulo 3 or division algorithm?

Hello 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 …
1
vote
4answers
63 views

Possible to disable flash element?

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. Is it possible to have an object/embeded .swf in the page, let …
12
votes
5answers
288 views

How do I show sprites in the border on C64?

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?
9
votes
26answers
2k views

What are your favourite MATLAB/Octave programming tricks?

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. What are your favourite tricks for making …
10
votes
22answers
3k views

What is your latest useful Perl one-liner (or a pipe involving Perl)?

The one-liner should: solve a real-world problem not be extensively cryptic (should be easy to understand and reproduce) be worth the time it takes to write it (should not be too clever) I'm …
1
vote
4answers
107 views

How to generate a compilation error when pointer types differ?

How do I write a macro CHECK(a, b) that generates compilation error when the two pointers a & b have different base type. CHECK((int*)0, (char*)0) -> compilation error CHECK((int*)0, (int*)0) …
12
votes
24answers
953 views

What do you do to keep your coding skills in shape, and how often?

What would you say are your best kept secrets to keep yourself in top programming shape?
1
vote
1answer
316 views

How to Set mouse cursor position to a specified point on screen in C#?

How to Set mouse cursor position to a specified point on screen in C#? am i must hacke the motherboard buffer that receive the mouse and keyboard coordinates and presses ??? is there another one to …
14
votes
18answers
8k views

Is 1 for TRUE or FALSE ?

I always forget :S How do you remember which number stands for TRUE or FALSE? (when I started css the colors black and white always confused me. Is white #FFFFFF or #000000. A trick I came up with: …
4
votes
9answers
251 views

Tricks to Google for desired page quickly

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: JavaScript: MDC Array slice MDC …
1
vote
8answers
277 views

Shortest way to swap two files in bash

Can two files be swapped in bash? Or, can they be swapped in a shorter way than this: cp old tmp cp curr old cp tmp curr rm tmp
1
vote
1answer
187 views

How to become invisible for my competitors? [closed]

I've developed some software programm. I'm selling it through the website. Competitors follow by my steps (they create same product box, add their programs in same file lists, in same press-release …
0
votes
6answers
116 views

Clever way to make same assembly executed differently?

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? …

1 2 3 next
15 30 50 per page