Tagged Questions

1
vote
5answers
78 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 …
1
vote
3answers
49 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 . …
12
votes
5answers
243 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 …
1
vote
1answer
251 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 t …
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 …
9
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 …
12
votes
24answers
925 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?
12
votes
18answers
7k 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 tri …
0
votes
6answers
113 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 ex …
1
vote
8answers
253 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
177 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 s …
1
vote
3answers
92 views

Is there any command to go to the end (or beginning) of a Ruby block using vim

Hello there, Is there a way to go the end of a Ruby block using vim? For example module SomeModule # <Supposing that the cursor is HERE> def some_method end end …
1
vote
8answers
1k views

Interview question: f(f(x)) == 1/x

Design a function f such that: f(f(x)) == 1/x Where x is a 32 bit float Or how about Given a function f, find a function g such that f(x) == g(g(x)) …
4
votes
8answers
451 views

Little Known Programming Wisdom [closed]

I came across this question 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 StringUtils.join. I con …
6
votes
11answers
967 views

PowerShell Tips & Tricks for Developers

What are the some of the PowerShell tips & tricks that you use to increase your productivity as a .NET developer?

1 2 next
15 30 50 per page