hacks

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 which hacks are good and which ones are not. ...

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 document (as a "heredoc"), i.e.: #!/usr/bin/perl ... some Perl code ... my $html = <<'END' ; <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Tran...

How to develop addons (hacks) for IPhone?

Greetings everyone.. I wanna develop an addon (basically a hack) for IPhone native phone app. My entire idea is to provide a "delete" button on navigation bar of the phone app. When user clicks on that delete button I wanna allow to delete the call records from the mobile app itself (where APPLE does not allow this). This kind of hack (...

How can I dual boot my iphone or ipad to run a very simple custom os?

I am an experienced C/C++ programmer and have worked with assembly and many other programing language and I want to start a project as a learning process. I want to try and run a simple custom os on the iphone or ipad. What knowledge would I need to do this, and how does the iphone or ipad bootloader load the os and how could I modify it...

Non-IE6 IE7 hack

I managed to create a page the crashes IE6 and 7 regularly as per here: http://raven-seo-tools.com/blog/2675/crash-ie6-with-only-css I have a solution for non-IE browsers (display: inline-block), but the only way to get IE6/7 working is to use different CSS (display: inline). Normally I would have other browsers use inline-block, then i...

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) {} }; class Knot { Gordian* pointer_array[8]; // Sure, this works. Gordian inlined_array[8]; // Won't compile. Can't be initialized. };...

Is private members hacking a defined behaviour ?

Hi, Lets say 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 can't change the value of m_value, only read it. Even subclassing BritneySpears won't work. What if I define the following ...

CSS image float div problem in IE6

In the bottom cap of this page (bottom with corners) I seem to be having a weird IE6 issue. I've tried Google with no luck, as really, how do you ask this question. In IE6, the corner images that are floated left and right seem to cause the whitespace to drop. http://www.duncanhadleytriathlon.ca/ Any suggestions for why this may be? ...

modify class on runtime?

how can i modify the method in memory so it makes new objects with that modified method? for example i want to modify or add page_init handler on runtime for the next time the page loads? see this also for clarification: http://stackoverflow.com/questions/3005338/page-load-another-handler ...

Drupal views: Splitting fields by content type

Hi there! I have a few views in my Drupal site that are getting extremely out of hand... The views show nodes from different content types in the same listing, and are formatted differently depending on the content type... This has so far required a lot of custom PHP-fields, rewriting output, and a bit of black magic. Totally unmaintana...

Using call_user_function to access parent method in PHP

Is there any way, in PHP, to call methods from a parent class using the arbitrary-argument call_user_func_array? Essentially, I want to write a little bit of boilerplate code that, while slightly less optimal, will let me invoke the parent to a method arbitrarily like this: function childFunction($arg1, $arg2, $arg3 = null) { // I d...

Any (or best) way to share data between desktop and browser/webapp?

I am looking for a way to let the user expose some local data to an webapp. The idea is to have a webapplication that goes somethings (e.g. plots a chart, edits photos, etc...) using information directly from the desktop instead of requiring the user to upload the data. While some of it might be possible with some technologies like Flas...

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 something like that #include <stdio.h> void makeArray(); void printArray(); int main(){ makeArray(); printArray(); r...

WordPress Theme Hack - How Do I Call Specific Child Pages Only

I'm going to try my best to explain this correctly :) This question is regarding a Wordpress Theme Hack and php. Currently we are using Coda Blue as a theme see here. Right now the jQuery slider is being controlled by li's that are the tabs of the slider (web design, social media, etc). The tabs are created by making a page, and the ...

Separate stylesheets

How could I use separate stylesheet for Opera? Like: <![if !IE 6]> <link rel=»stylesheet» type=»text/css» href=»ctyle.css» /> <![endif]> But for Opera? (For all versions of Opera) ...

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 problem is, if you're on Windows or Linux, and someone uses inset box-shadow on an element that also has border-radius, you get a bug -- the ...

Doxygen tricks, how to remove File Documentation?

I need to produce a report for a project which I've heavvily commented with Doxygen. Like here I'm experimenting some troubles. Since the report must be at most 8 page long, I hacked the documentation make command as follows: report: (cat doc/Doxyfile ;\ echo "GENERATE_HTML=NO" ;\ echo "GENERATE_LATEX=YES" ;\ echo "I...

"list-style-image" picture identation in Opera via CSS

Opera has unacceptable rendering of image-bullet positioning of list items. Look at demo page with Opera and different browser. Style: /* body {line-height:150%;} */ ul {list-style: none outside url('img/bullet-lilac.gif'); HTML Sample: <ul> <li><a href="">Ut enim ad minim veniam</a></li> <li>Sample item</li> </ul> Bullets...

How does this crazy C macro hack work?

Possible Duplicate: How, exactly, does the double-stringize trick work? I came across this the other day - can someone tell me how it works? A simple way to stringize a C preprocessor constant, in all compilers conforming to ANSI C (or any C++ compiler). Suppose you have a header file containing a constant li...