0
votes
2answers
66 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
91 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
225 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
74 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
293 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?
1
vote
1answer
327 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 …
1
vote
4answers
109 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) …
1
vote
3answers
96 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
I want to go from …
0
votes
6answers
118 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
vote
8answers
285 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
0
votes
5answers
242 views
What does this CSS value mean?
While viewing the source of a web page, I came across this CSS, applied to a span within a button:
.whatever button span {
position: absolute;
left: -1e+7px;
}
What does left: -1e+7px; …
4
votes
8answers
463 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 consider myself lucky …
1
vote
3answers
405 views
Ruby: change each value in a hash with something like #collect for arrays?
Hi!
I'd like to replace each value in a hash with value.some_method.
For example in a simple hash {"a" => "b", "c" => "d"} every value should be .upcase-d so it looks like {"a" => "B", "c" => "D"}.
…
3
votes
4answers
190 views
Running a command with every svn commit
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 …
3
votes
4answers
341 views
C function seemingly not defined anywhere!
I'm looking at the vim source code, specifically the file normal.c, and I see this function nv_operator being used, but it's not defined anywhere (I grepped the entire src directory)
It's only …
