Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

72
votes
26answers
2k 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, so you decide to get ...
51
votes
54answers
3k views

What programming hack from your past are you most ashamed of? [closed]

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 hack from your past are ...
50
votes
4answers
5k views

What really happens in a try { return x; } finally { x = null; } statement?

I saw this tip in another question and was wondering if someone could explain to me how on earth this works? try { return x; } finally { x = null; } I mean, does the finally clause really execute ...
28
votes
45answers
5k views

What's the coolest hack you've seen or done? [closed]

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 how some of them are ...
20
votes
9answers
8k views

cron jobs on google appengine

How can I use cron on Google Appengine?
19
votes
14answers
2k views

Best IT/back-office system hacks?

Lots of people have things that their systems do for them or for their teams. Source control post-commit hooks are a standard example: have an automated build system that checks out the latest source, ...
18
votes
7answers
3k views

What exactly is a rainbow attack?

I was reading a few articles on salts and password hashes and a few people were mentioning rainbow attacks. What exactly is a rainbow attack and what are the best methods to prevent it?
16
votes
4answers
700 views

Will random data appended to a JPG make it unusable?

So, to simplify my life I want to be able to append from 1 to 7 additional characters on the end of some jpg images my program is processing*. These are dummy padding (fillers, etc - probably all ...
15
votes
14answers
7k views

Enumerate or list all variables in a program of [your favorite language here]

A friend asked me last week how to enumerate or list all variables within a program/function/etc. for the purposes of debugging (essentially getting a snapshot of everything so you can see what ...
14
votes
6answers
519 views

Is private member hacking defined behaviour?

I have the following class: class BritneySpears { public: int getValue() { return m_value; }; private: int m_value; }; Which is an external library (that I can't change). I obviously ...
11
votes
1answer
4k views

Deep copy of PHP array of references

So $array is an array of which all elements are references. I want to append this array to another array called $results (in a loop), but since they are references, PHP copies the references and ...
11
votes
8answers
4k views

How would I go about prevent DLL injection

So the other day, I saw this: http://www.edgeofnowhere.cc/viewtopic.php?p=2483118 and it goes over three different methods of DLL injection. How would I prevent these from the process? Or at a bare ...
10
votes
3answers
442 views

memory layout hack

i have been following this course in youtube and it was talking about how some programmers can use there knowledge of how memory is laid to do clever things.. one of the examples in the lecture was ...
10
votes
2answers
526 views

Explain the deviousness of the Perl “preamble”

The Perl manual describes a totally devious construct that will work under any of csh, sh, or Perl, such as the following: eval '(exit $?0)' && eval 'exec perl -wS $0 ${1+"$@"}' & ...
10
votes
1answer
2k 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 browsers supported this ...
10
votes
6answers
5k views

Hide a C# program from the task manager?

Is there any way to hide a C# program from the Windows Task Manager? EDIT: Thanks for the overwhelming response! Well I didn't intend to do something spooky. Just wanted to win a bet with my friend ...
9
votes
3answers
332 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 alternative filter ...
9
votes
9answers
4k 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 points). My current ...
9
votes
15answers
1k views

Nano hacks: most useful tiny programs you've coded or come across

It's the first great virtue of programmers. All of us have, at one time or another automated a task with a bit of throw-away code. Sometimes it takes a couple seconds tapping out a one-liner, ...
8
votes
3answers
289 views

Can you detect a debugger attached to your process using Div by Zero

Can you detect whether or not a debugger is attached to your native Windows process by using a high precision timer to time how long it takes to divide an integer by zero? The rationale is that if no ...
8
votes
2answers
351 views

Replacing a component class in delphi

I know I've seen an example somewhere of a hack to define a custom version of an existing VCL component, like TButton or TEdit, with the same class name and do something to make it so that the DFM ...
7
votes
5answers
522 views

How to obtain a pointer out of a C++ vtable?

Say you have a C++ class like: class Foo { public: virtual ~Foo() {} virtual DoSomething() = 0; }; The C++ compiler translates a call into a vtable lookup: Foo* foo; // Translated by C++ to: ...
7
votes
4answers
266 views

I was just hacked, but I don't know how or more importantly, why. Very odd code injected

EDIT: Good work all so far. I've just found this being download and ran in my bash history: http://notsoft.ru/glib (safe to view) Thanks all ====================== I've just noticed the source ...
7
votes
3answers
355 views

Ruby to_proc hack with binding

I'm trying to create a little Ruby hack to make something like the reverse of the Symbol#to_proc hack. Whereas the Symbol#to_proc hack makes this possible: some_array.each(&:some_method) is ...
7
votes
3answers
3k views

Override namespace in python

Say there is a folder '/home/user/temp/a40bd22344'. The name is completely random and changes in every iteration. I need to be able to import this folder in python using fixed name, say 'project'. I ...
7
votes
5answers
5k views

retrieving a variable's name in python at runtime?

is there a way to know, during run-time, a variable's name (from the code) ? or do var names forgotten during compilation (byte-code or not) ? e.g. >>> vari = 15 >>> print vari.~~name~~() 'vari' ...
7
votes
9answers
849 views

Is there any way to modify the value of a `private static final` field in java from outside the class? (Or, I need to monkey patch an external library)

I know this is normally rather stupid, but don't shoot me before reading the question. I promise I have a good reason for needing to do this :) It's possible to modify regular private fields in java ...
6
votes
1answer
1k views

Google Chrome inset box-shadow bug on Windows, not on Mac: Better workaround?

This is still current on Chrome 5.0.375.125, which is the latest Windows release at the time of this writing. Bug is tracked here: http://code.google.com/p/chromium/issues/detail?id=25334 So, the ...
6
votes
4answers
10k views

CSS Hacks, Firefox 3.5 and Google Chrome

I searched around and allegedly, body:nth-of-type(1) is used in CSS to target only Safari and Google Chrome. Lo and behold, Mozilla reads it properly too. I searched ten times more but came up with ...
6
votes
3answers
647 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 value % 2 == 0: ...
6
votes
8answers
845 views

Why would you write something like this? (intentionally not using delete [] on an array)

I came across this kind of code once in a while - I suspect the creator is/was afraid that table delete would iterate over the table and "cost performance" (which imho will not be done either way)... ...
6
votes
2answers
2k views

Is there a quick and easy way to dump the contents of a MacOS X keychain?

I'm looking for a way to dump (export) the contents of an OS X keychain into a file that I can easily process elsewhere, such as tab-delimited plaintext or something of the sort. The Keychain Access ...
6
votes
14answers
1k views

What Healthy Tricks Do You Use to Stimulate Your Brain and Increase Code Output? [closed]

There have been a few posts around the place as to what is the best music for coding, etc. While music can certainly make coding more enjoyable, I don't believe it actually makes me more productive ...
6
votes
8answers
1k views

Is it possible to monkey patch in Java?

I don't want to discuss the merits of this approach, just if it is possible. I believe the answer to be "no". But maybe someone will surprise me! Imagine you have a core widget class. It has a method ...
5
votes
6answers
742 views

Favorite C++ template hack

Templates are both the blessing and curse of C++. Someone hates them, someone loves them. For those of you are in the latter group, whats your favorite template "hack", and what does it do? I'll ...
5
votes
6answers
420 views

Operator Overloading Plugin for Java

I have seen some nice Java compiler hacks wherein you can replace assertions by throw-exception statements, you can have auto-generated properties for fields and so on... I was just wondering... Is ...
5
votes
7answers
1k views

Preventing Command Line Injection Attacks

We're currently building an application that executes a number of external tools. We often have to pass information entered into our system by users to these tools. Obviously, this is a big security ...
4
votes
4answers
2k views

C#: How to send keyboard scan codes manually?

I'm working on a project that needs to emulate a keypress of the Windows key. I've tried SendKeys.Send to no avail. Specifically, the windows key needs to come in concert with a button. That is, I ...
4
votes
11answers
1k views

Is it possible to predict a stack overflow in C on Linux?

There are certain conditions that can cause stack overflows on an x86 Linux system: struct my_big_object[HUGE_NUMBER] on the stack. Walking through it eventually causes SIGSEGV. The alloca() ...
4
votes
7answers
2k views

C++ experts: is the offset of a member variable to its class constant under these conditions?

Given a variable foo of type FooClass* and a member variable in that class named bar, is the distance between foo and &(foo->bar) the same in any situation with some constraints: FooClass is ...
4
votes
4answers
3k views

Background tasks on appengine

How to run background tasks on appengine ?
3
votes
2answers
97 views

What are the uses of Perl's C translation backend?

Other than the purely obvious: "It translates Perl to C."; are there any real world uses (a.k.a. hacks) for the Perl compiler's optimized C translation backend, B::CC?
3
votes
3answers
253 views

Inlining an array of non-default constructible objects in a C++ class

C++ doesn't allow a class containing an array of items that are not default constructible: class Gordian { public: int member; Gordian(int must_have_variable) : member(must_have_variable) ...
3
votes
5answers
242 views

make my file readable as either Perl or HTML

In the spirit of the "Perl Preamble" where a script works properly whether executed by a shell script interpreter or the Perl interpreter... I have a Perl script which contains an embedded HTML ...
3
votes
7answers
193 views

Which is the CSS hack you use most often and which one do you avoid using?

Which is the CSS hack you use most often and which one do you avoid using? I am asking this question so that I can understand different views of different people about CSS hacks and also understand ...
3
votes
2answers
2k views

Future proof CSS hack for LTE Opera 10

I’m currently using @media screen and (-webkit-min-device-pixel-ratio:0) { example {} html:first-child example {} } to target Safari + Opera 9.2 Is there a safe way to target opera gte ...
3
votes
2answers
785 views

java ternary hack

So I'm not going for maintainability or elegance here.. looking for a way to cut down on the total tokens in a method just for fun. The method is comprised of a long nested if-else construct and I've ...
3
votes
3answers
2k views

Is there an SVN command to find the difference between two local files?

What is the SVN command to find the difference between two files on the hard disk (neither of which are in the repository)? What is the command to find if one of the file is in a particular revision ...
3
votes
1answer
308 views

Concurrency Checks in MSSQL (Alternatives to TSEQUAL)

I am working in development under SQL 2008, however I have a SQL 2000 database (in compatibility mode). There are several queries that are using the "TSEQUAL" function to do concurrency checks. It ...
3
votes
6answers
12k views

Register DLL in GAC without Assembly Manifest

I have a DLL I wish to register with my GAC. I enter the command: gacutil /i c:\temp\msvcr100.dll and I get the error: Failure adding assembly to the cache: The module was expected to contain an ...

1 2 3