1
vote
4answers
106 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
CHEC …
1
vote
4answers
56 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 . …
3
votes
6answers
197 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 …
2
votes
12answers
451 views
Reserved words as variable or method names
Is there any tricky way to use Java reserved words as variable or method names?
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 …
12
votes
5answers
273 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 …
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 …
2
votes
14answers
2k views
How to improve Netbeans performance
hello and good day for everyone
This is my question.
Exists a real way to get Netbeans load faster and working time too?
It is to slow and when you have some time coding is wors …
13
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 tri …
1
vote
1answer
293 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 …
0
votes
6answers
115 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
3answers
95 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
1answer
183 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
8answers
2k 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))
…
1
vote
8answers
268 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
