Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
27answers
1k views

What obscure syntax ruined your day?

When have you run into syntax that might be dated, never used or just plain obfuscated that you couldn't understand for the life of you. For example, I never knew that comma is an actual operator in ...
11
votes
1answer
127 views

Private inheritance: name lookup problem

I have the following code example that doesn't compile: #include <stdio.h> namespace my { class base1 { // line 6 }; class base2: private base1 { }; class ...
11
votes
14answers
4k views

What's an example of Ruby code that's “too clever”?

I was having a discussion with some programmer friends who said that they see Ruby programmers (in particular) producing a lot of code that's "too clever". So I'm wondering what would that look like? ...
9
votes
1answer
731 views

weird error with RIA Services “code generator encoutered a fatal exception”

This is the second time that I have this really weird problem with WCF RIA Services! the sad thing is that I had to solve the problem twice, going through the different hoops again :(, even though ...
9
votes
4answers
257 views

What is the merit of the “function” type (not “pointer to function”)

Reading the C++ Standard, i see that there are "function" types and "pointer to function" types: typedef int func(int); // function typedef int (*pfunc)(int); // pointer to function typedef func* ...
7
votes
5answers
525 views

What are some of the less-known and interesting public APIs and frameworks that I can use for iPhone?

What are some of the less-known and interesting public APIs and frameworks that I can use for iPhone? In OS 3.0 they're supposed to be 1000 new APIs more than in 2.2, so which one of these are the ...
6
votes
4answers
1k views

If this code is not a joke, how on earth does it work?

class Tree def initialize*d;@d,=d;end def to_s;@l||@r?",>":@d;end def total;(@d.is_a?(Numeric)?@d:0)+(@l?@l.total: 0)+(@r?@r.total: 0);end def insert d alias g instance_variable_get ...
4
votes
2answers
285 views

Is '@' used in C++?

Is '@' used in C++? In this yacc file it is listed as a token. And i am sure i cant use @ as part of a variable name. Is @ used in C++? and how might i use it?
4
votes
10answers
688 views

What are some of the more obscure parts of C++?

I've read quite a few beginner's books on C++, and a little beyond that, but what are some of the more obscure aspects of C++, or where can I find information/tutorials on these?
3
votes
3answers
6k views

Show a PDF files in users browser via PHP/Perl

I want to show my users PDF files. The reason why I use cgi to show the pdf is I want to track the clicks for the pdf, and cloak the real location of the saved pdf. I've been searching on the ...
3
votes
1answer
88 views

Ruby &&= edge case

Bit of an edge case, but any idea why &&= would behave this way? I'm using 1.9.2. obj = Object.new obj.instance_eval {@bar &&= @bar} # => nil, expected obj.instance_variables # ...
2
votes
4answers
666 views

Munging non-printable characters to dots using string.translate()

So I've done this before and it's a surprising ugly bit of code for such a seemingly simple task. The goal is to translate any non-printable character into a . (dot). For my purposes "printable" ...
1
vote
0answers
47 views

Ajax callback not called until new tab opens in IE7

We're having some really strange problems with IE7, and only IE7. When trying to replicate the issue it only happens with native IE7, not when running IE7 mode in IE8/9, so please remember that if you ...
1
vote
0answers
134 views

Fun with JavaScript Obscurity [closed]

If you like JavaScript like I do, this will be very interesting. I was reading an old post by John Resig where he talks about selectors in JavaScript and gave some interesting ideas about a syntax ...
1
vote
2answers
182 views

How to obscure Wordpress?

I am running a site using Wordpress as CMS System. Now I don't want anyone to know that this site is powered by Wordpress in the background. Is there any easy way to completely obscure Wordpress? ...
1
vote
1answer
268 views

detect user picked up phone outgoing call with kdtele in .net

i have an app that use kdtele component for communicating with the phones. when i make a call, and the end user pick up the phone, OnVoiceDetected'event don't fire.i use intel3chips v.92 ...
1
vote
5answers
798 views

Is the C preprocessor able to process strings char by char?

I'd like to obscure strings at compile time. I know it can be done in other preprocessors but I haven't found a way to do this with the C preprocessor.
1
vote
0answers
119 views

Protecting media files for embedded Flash Player

For a Flash Player embedded in a site (think MySpace, for instance), how are the files concealed from the user so that he is not able to just download them? I am assuming that given the flash player, ...
0
votes
1answer
164 views

I hide my AdBannerView but still get WARNING A banner view (0x9c75550) has an ad

I have just added an ADBannerview in my App. I create the AdBannerView in my UIApplicationDelegate in order to have only one instance of it and I share it in the different viewController Everything ...
0
votes
2answers
256 views

Obscure your Ruby code?

I am in the middle of developing an enterprise application using RoR (first time for us to build an enterprise app on RoR instead of Java), and while we do not have that much problem of obscuring the ...
0
votes
5answers
312 views

PHP Security when Passing MySQL Unique ID via Get

Lets say I have a website with links to various books on my main page. <a href='books.php?id=1'>Book 1</a> <a href='books.php?id=2'>Book 2</a> <a ...
0
votes
1answer
106 views

Why don't Firefox and other apps honor my Windows XP settings?

Recently for convenience I set up Windows XP to "Automatically move pointer to the default button in a dialog box" (via Control Panel => Mouse => Pointer Options). For most dialog boxes (e.g. Windows ...
0
votes
2answers
658 views

How to debug “Unexpected debug information initialization error — 'Failed to find a required export in the runtime.'”

I'm getting this error message on all projects (including brand new empty templates) I'm trying to build with Visual Studio 2008: Unexpected debug information initialization error -- 'Failed ...
-2
votes
4answers
201 views

Way to obscure SQL Server database schema?

Is there any way to obscure the schema of a database on SQL Server? If I have SQL Server Express installed on a client site, is there a way to obscure the schema and data so that someone else cannot ...