Tagged Questions
The magic tag has no wiki summary.
15
votes
2answers
2k views
Is MarshalByRefObject special?
.NET has a thing called remoting where you can pass objects around between separate appdomains or even physical machines. I don't fully understand how the magic is done, hence this question.
In ...
14
votes
6answers
900 views
Why is there so much “magic” in Perl?
Looking through the perlsub and perlop manpages I've noticed that there are many references to "magic" and "magical" there (just search any of them for "magic"). I wonder why is Perl so rich in them.
...
13
votes
1answer
977 views
How does NSValue do its magic?
I have an MVC application. The model has a property that is a struct NSSize. It is writable like this:
- (void)setSize:(NSSize)aSize;
The view sets this NSSize using key-value-coding. However, you ...
10
votes
1answer
294 views
Why is this shell script calling itself as python script?
Obviously this shell script is calling itself as a Python script:
#!/bin/sh
## repo default configuration
##
REPO_URL='git://android.git.kernel.org/tools/repo.git'
REPO_REV='stable'
...
10
votes
5answers
3k views
How does browser know when to prompt user to save password?
This is related to the question I asked here:
http://stackoverflow.com/questions/2382329/how-can-i-get-browser-to-prompt-to-save-password
This is the problem: I CAN'T get my browser to prompt me to ...
9
votes
3answers
594 views
What is the __dict__.__dict__ attribute of a Python class?
>>> class A(object): pass
...
>>> A.__dict__
<dictproxy object at 0x173ef30>
>>> A.__dict__.__dict__
Traceback (most recent call last):
File "<string>", line ...
9
votes
5answers
312 views
.hgignore not being parsed for a certain user
I have a project under version control, say, in /project, and .hgignore located at /project/.hgignore. Its syntax seems correct, but the problem is this file is completely ignored for certain users ...
8
votes
2answers
1k views
How does python numpy.where() works?
I am playing with numpy and digging thruogh documentation and I have come across some magic. Namely I am talking about numpy.where():
>>> x = np.arange(9.).reshape(3, 3)
>>> ...
8
votes
2answers
809 views
Why does VIM have its own regex syntax?
Why do you have to make your regex "very magic" so that you don't have to escape your capture quotes? And if you set your environment to very magic, you are non-standard and may have compliance ...
8
votes
5answers
375 views
How does assignment of a function as a class attribute become a method in Python?
>>> class A(object): pass
>>> def func(cls): pass
>>> A.func = func
>>> A.func
<unbound method A.func>
How does this assignment create a method? It seems ...
6
votes
3answers
600 views
Monitor All JavaScript Object Properties (magic getters and setters)
I apologize for asking this question again, but there really aren't sufficient answers to this question on StackOverflow.
This is almost a duplicate of:
Is there a way to monitor changes to an ...
6
votes
1answer
209 views
How do I choose a good magic number for my file format?
I am designing a binary file format from scratch, and I would like to include some magic bytes at the beginning so that it can be identified easily. How do I go about choosing which bytes? I am not ...
6
votes
2answers
11k views
Incompatible magic value 1008813135
I am writing a Java applet and embedding it in a web page.
It used to run Mac and Windows in different browsers without problem.
I was using NetBeans on the Mac to build the .jar file the applet used.
...
5
votes
1answer
196 views
How do you write a magic file test pattern to match the end of a file?
I am beginning to wonder if this is even possible as multiple searches on SO, Google, Bing and linuxquestions.org have turned up nothing. Basically I am interested in extending the magic patterns ...
5
votes
2answers
146 views
What is the magic behind perl read() function and buffer which is not a ref?
I do not get to understand how the Perl read($buf) function is able to modify the content of the $buf variable. $buf is not a reference, so the parameter is given by copy (from my c/c++ knowledge). So ...
5
votes
1answer
480 views
C# 4.0 - Does calling a protected method on a dynamic object call TryInvokeMember()?
In C# 4.0, there is a new DynamicObject.
It provides a "magic method" TryInvokeMember() that gets called when trying to call a method that does not exist.
...
5
votes
2answers
2k views
Autoload in Python
In the past I've used perl's AUTOLOAD facility for implementing lazy loading of symbols into a namespace, and wanted the same functionality in python.
Traditionally the closest you appear to be able ...
4
votes
0answers
59 views
How does critsend gather “Spam folder statistics with addresses”? [closed]
Apologies if this is the wrong site - not really sure which site is best for this, but since it's SMTP-related (or is it?), I figured maybe this site had the best audience.
My company just set all of ...
4
votes
2answers
509 views
Magic $-prefixed variables in Ruby; is there a complete reference somewhere?
I've seen magic variables like this used in Ruby. $_ $' $0
Is there a complete reference for what all of them mean and how they are set?
4
votes
3answers
3k views
Make Bluetooth on Android 2.1 discoverable indefinitely
I'm working on a research project which involves Bluetooth and the Android OS. I need to make Bluetooth discoverable indefinitely in order for the project to continue.
The Problem:
Android ...
4
votes
13answers
621 views
When talking about programming languages, what is the definition of Magic?
The word "magic" gets thrown around a lot here in contexts like "language X just has too much magic", or "platform Y generally avoids magic". However, it seems the term is pretty poorly defined, ...
4
votes
3answers
410 views
How can I obtain file meta information in Perl?
I'm looking for a module or some way to obtain the information of the content of a file.
The same that the linux "file" command does, but in Perl language.
3
votes
3answers
144 views
How to create a custom magic file database
The unix file command uses a "magic" file database to determine which type of data a file contains, independently of the file's name or extension.
I need to craft my custom magic database for testing ...
3
votes
2answers
87 views
What exactly being computed in this expression, and why?
#define NP_MAXREADY (((unsigned)(~0)<<1)>>1)
I take it as: fill register sized unsigned int with ones, then shake off MSB, obtaining maximum value for signed int. Is it correct? Also, ...
3
votes
5answers
796 views
Brute force magic squares
Basically I have a 3 x 3 grid that is filled with two digit numbers 00 - 99. Some of the numbers are given as input the rest are unknown. What are some suggestions on how to solve such a problem with ...
3
votes
2answers
151 views
this code is supposed to fail but it works, why?
Folks I think I will throw all my modest C lore away. Look at this code please:
int main( int argc, char ** argv, char ** envp )
{
int aa;
srand(time(NULL));
int Num=rand()%20;
int Vetor[Num];
...
3
votes
4answers
122 views
Is correct name enough to make it happen?
Guys, I've just dipped in to limits.h by MS. I tried to check what's the return type for max() fnc and to my surprise I see something like this:
// TEMPLATE CLASS numeric_limits
template<class ...
3
votes
5answers
3k views
Python on Rails?
Would it be possible to translate the Ruby on Rails code base to Python?
I think many people like Python more than Ruby, but find Ruby on Rails features better (as a whole) than the ones in Python ...
3
votes
3answers
186 views
Is chars[4] and 4[chars] the same in C? Why?
I've read this and don't believe it :) I've no compiler here to test.
2
votes
2answers
75 views
How does one use magic to verify file type in a Django form clean method?
I have written an email form class in Django with a FileField. I want to check the uploaded file for its type via checking its mimetype. Subsequently, I want to limit file types to pdfs, word, and ...
2
votes
6answers
2k views
What is MAGIC programming language? Which other language is closest in syntax?
I have recently heard about Magic programming language from several sources and didn't recall ever hearing about it before. It was mentioned that it is a programming language from Israel.
I did some ...
2
votes
3answers
215 views
Animate Text Display In-A-Way That Simulates Magical Ink Writing in a Magical Book
I am working on a Cocos2d iPad game that includes a magical book. From time-to-time, new text appears in the book.
I would like to animate the new text in a way that looks like ink magically ...
2
votes
1answer
114 views
Adding magic global methods to modules
I'm starting to get into the Python logging module, but unless I want all messages to say "root" I have to create a logger for each module, and it's kind of a pain to do that over and over again.
I ...
2
votes
1answer
171 views
How does django convert string to modules
I am trying to understand an other magic thing about django: it can convert strings to modules.
In settings.py, INSTALLED_APPS is declared like that:
INSTALLED_APPS = (
'django.contrib.auth',
...
2
votes
1answer
701 views
C++ compile time program wide unique numbers
I've come up with a solution to a problem but I'm not sure if it'll always work or just on my compiler. First, the problem: I've noticed in a number of situations it's desirable to have a template ...
1
vote
2answers
87 views
Google Guice + generics: Is there some magic behind the curtains?
It seems to me that Guice implementation is doing some very tricky things when dealing with generics. It looks like it knows at runtime about generic types used at compile time. Let's see a simple ...
1
vote
3answers
153 views
Passing a Command Parameter form a Datagrid through a Keybinding
I've a wpf specific problem. I'm trying to delete a Row from a Datagrid, by defining a Keybinding that passes the selected Row of the Datagrid as a Commandparameter to a Command.
This is my ...
1
vote
1answer
75 views
Symfony 1.4 Form Creater
Need: Ability to dynamically build Forms
Structure (simple idea not actual structure)
Admin: Form Assignment, where you create what field you want your new Form to have
FrontEnd: Where the New ...
1
vote
3answers
98 views
gmail like behaviour for my website
Disclaimer: I am living at some place where my net connection gets cut off atleat ten times a day. I am not sure if my question makes much sense to guys with stable connection.
Question: Suppose ...
1
vote
2answers
99 views
Using SelectList without magic strings
Is there an easy way to remove the use of Magic Strings when creating a SelectList, like in this example:
@Html.DropDownListFor( model => model.FooValue, new SelectList( Model.FooCollection, ...
1
vote
1answer
148 views
Spoofing Python operator precedence
I know that when I compare two objects lhs == rhs and both define __eq__, just lhs.__eq__ is called unless it returns NotImplemented or rhs is a subclass of lhs.
However I would like to implement a ...
1
vote
1answer
365 views
“You have created a service.” How did this happen?
I'm new to WCF. When I create a new "WCF Service Application" in Visual Studio and right-click Service1.svc, I can choose "View in Browser". A web browser appears showing ...
1
vote
2answers
203 views
Object roll-back, copy-on-write, versioned proxy etc in Python
Premise: Given a Python object obj, I want to pass it along to some random function, and, when the function is done, I need the option to reset obj to it's original state. Additionally, no actual ...
1
vote
1answer
740 views
Sorting html ul/li list in alphabetical vertical blocks
Here's a problem I run into every now and then, that I usually try and solve from a back end perspective, but would like to know if there's a magic solution others have found to solve this on the ...
1
vote
1answer
89 views
Confusion why a magic 1.6 user cannot find app on market
I've published an app today mainly for my forum users to use, just a
very simple app that displays wallpapers derived from the forum.
Problem I'm having is one guy says it doesn't appear in the ...
1
vote
2answers
687 views
doctrine findby magic null value
I'm wondering if there is anyway to use doctrine's magic method to look for null values. For instance:
Doctrine::getTable('myClass')->findByDeletedAt(null);
Essentially, i want to return all ...
1
vote
4answers
334 views
Python magical main() signature like Perl 6
Does python have any way to easily and quickly make CLI utilities without lots of argument parsing boilerplate?
In perl6, the signature for the MAIN sub automagically parses command line arguments.
...
1
vote
1answer
142 views
Rails -> do something with “updated_at” like “set_primary_key” for the id
have a legacy table with a field "LastModifiedDate", and I want to use that column as my "updated_at" column.
Is there any way to tell Rails to use that field?
Or, let me rephrase. :) ... How can ...
1
vote
5answers
188 views
How do I make a defaultdict safe for unexpecting clients?
Several times (even several in a row) I've been bitten by the defaultdict bug: forgetting that something is actually a defaultdict and treating it like a regular dictionary.
d = defaultdict(list)
...
1
vote
4answers
91 views
Python: Getting the attribute name that the created object will be given
Before I ask this, do note: I want this for debugging purposes. I know that this is going to be some bad black magic, but I want to use it just during debugging so I could identify my objects more ...