0
votes
1answer
35 views
fun error logging / reporting idea for small website
I want to write (or implement) a quick and easy logging solution for our website. I figure rss is fine for the format.
I was thinking of piping apache's error log to a simple scri …
106
votes
28answers
3k views
Most shameful/awesome language hack
What is the language hack you are simultaneously the most ashamed of and the proudest of?
Mine is (C++) using
#define private public
to gain access to the internals of a class …
0
votes
0answers
24 views
CSS pointer-events=’none’ and/or XUL mousethrough=’always’ in web pages for Firefox
Morning all.
Very recently I asked this question on how to pass clicks through an element (e.g. full screen overlaying ). Received some good advice, but I still wondered which bro …
4
votes
9answers
296 views
Flash games hack, score is 49700?? How to improve flash games security?
I have 2 flash games (written in as3). Both the highscore value being hacked. The normal range of each game score is not more than 5000 (normal users, will only get 2000 - 3000 poi …
5
votes
3answers
113 views
What cool hacks can be done using sys.settrace?
I love being able to modify the arguments the get sent to a function, using settrace, like :
import sys
def trace_func(frame,event,arg):
value = frame.f_locals["a"]
if va …
5
votes
3answers
170 views
Anyone ever flip (<$>)
I found defining the following
(%) = flip fmap
I can write code like the following:
readFile "/etc/passwd" % lines % filter (not . null)
to me it makes more sense then the a …
0
votes
1answer
19 views
Chrome and Safari Hack
Hello,
I have the following style:
table.jqTransformTextarea td#jqTransformTextarea-mm textarea{
margin:0;
}
This works as expected in Firefox, Opera, Internet Explorer 7,8 …
15
votes
33answers
3k views
What’s the coolest hack you’ve seen or done?
As programmers, we've all put together a really cool program or pieced together some hardware in an interesting way to solve a problem. Today I was thinking about those hacks and h …
1
vote
4answers
81 views
How to use .NET 3.x features in .NET 2.0 (Visual Studio 2008)
You're stuck with targeting .NET 2.0 in Visual Studio 2008, but you'd like to use all the latest goodness from .NET 3.x features, like:
LINQ
Extension Methods
Lambdas
What can …
21
votes
23answers
2k views
What programming hack from your past are you most ashamed of?
We've all been there (usually when we are young and inexperienced).
Fixing it properly is too difficult, too risky or too time-consuming. So you go down the hack path. Which hac …
0
votes
2answers
110 views
Javascript Tricks and Hacks
Hi,
I would like to gather some ideas how you can implement Javascript in a site that don't allow you to put javascript. Site's I'm talking about are community sites like MySpace, …
0
votes
1answer
85 views
Setting borders around tbody, thead and tfoot with IE8
Hi,
I've designed a table in html that uses tbody, tfoot and thead. I would like to put a border-bottom and border-top on my tbody. Which works perfectly well with Firefox and Goo …
54
votes
26answers
1k views
How do you stop interim solutions from lasting forever?
Say there are two possible solutions to a problem: the first is quick but hacky; the second is preferable but would take longer to implement. You need to solve the problem fast, s …
0
votes
3answers
81 views
Php multithread
Php, isn't really made for multithread but do you have any workarround to deal with threads in php.
2
votes
3answers
238 views
Dirty Coding Tricks to Deliver Project on Time
Just read a good article about dirty coding hacks used by game developers to get a game out
the door:
http://www.gamasutra.com/view/feature/4111/dirty_coding_tricks.php
Has any …
