Describes things known as "magic strings" or "magic numbers". These are hard coded variables that cannot be changed at runtime.

learn more… | top users | synonyms

0
votes
1answer
18 views

Copy to clipboard from IPython using Windows 7

I am running IPython on Windows 7 and can use the %paste magic command to paste from the clipboard. However, I cannot copy from IPython to the clipboard. I want to copy code snippets from IPython and ...
0
votes
2answers
43 views

WP magic fields query_posts

I'm trying to display titles from posts of type 'products' with that have a custom field "product_category" (dropdown) with value "food". When the "food" field is set to type "text" everything is ...
0
votes
1answer
73 views

Run some tasks in IPython Notebook in detached mode

Is it possible to run some long tasks in IPython Notebook, close browser and then after some time open it again and reveal results of these tasks? Say, task like this: def f(): import time ...
0
votes
2answers
49 views

Java Main Method Magic Numbers

So im trying to get rid of two magic numbers that i have in my main method. I tried making them static fields but i just get a different checkstyle error. I'm looking for a way to make my main method ...
0
votes
0answers
36 views

Python 2.2 - PIL module error

Good evening, i have strange problem. I use specyfic python version 2.2 in some game, and i wanted to add PIL module there. I installed python 2.2 on my pc, installed pil and just copied files from ...
0
votes
1answer
70 views

How to get information about “magic” code like this, for the JavaScript API for PDFs?

There's a tutorial on saptechnical that contains this piece of code. I can't find any info in the docs about code like this, and the code suggestion doesn't work. I come from a Java background, so ...
1
vote
1answer
88 views

Boost Python Magic Number

I am trying to wrap some c++ functions for use in python. For example here is the function from the boost python tutorial. // Copyright Joel de Guzman 2002-2004. Distributed under the Boost // ...
1
vote
2answers
79 views

Magic link in a new tab

i have a magic link* to add an url to my website javascript:document.location='http://domain.com/add.php?u='+escape(window.location); is it possible to add the link in a new tab? like ... ...
0
votes
1answer
46 views

Why is magic.from_buffer returning None?

Here's what I get when I call magic.from_buffer: >>> import urllib2 >>> data = urllib2.urlopen('http://www.in.gov/judiciary/opinions/previous/wpd/05040501.bed.doc').read() ...
4
votes
1answer
71 views

local($?) in END blocks - Why does it matter what value was assigned to it?

At work, we encountered an error when interacting with child processes in an object's destructor, and eventually traced it to the $? variable being overwritten during the wait calls. This happens ...
3
votes
1answer
339 views

Missing files for `magic` library on Windows

I need to get mime type for some files on windows, so i've installed python-magic (on 32-bit python 2.7.3). It depends on unix magic library. Author instructs to get regex2.dll, zlib1.dll and ...
5
votes
3answers
248 views

How to pass a variable to magic ´run´ function in IPython

I want to do something like: In[1]: name = 'long_name_to_type_every_now_and_then.py' In[2]: %run name but this actually try to run 'name.py', which is not what i want. is there a general way to ...
18
votes
1answer
430 views

Is 43679 a magic number? [closed]

Recently I was investigating this question: Storing long values in DataGridView C#. After some tests I found out that the DataGridViewCell will not display any text with a length larger than 43679 ...
1
vote
1answer
117 views

Looping over magic function in Ipython notebook

I want to accomplish a loop over R code within an ipython notebook. What is the best way to do this? l = [] for i in range(10): # execute R script %%R -i i -o result #some ...
2
votes
2answers
263 views

How to create a magic square which already has some numbers filled?

I would like to do this: I've got a matrix N x N. It can contain number from 1 to n^2. This matrix has a few cells filled with positive numbers. I have to decide, that this already filled matrix can ...
0
votes
0answers
51 views

Seismic SEGY file magic string

I am trying to detect segy file by checking magic string present in the file. I am trying to find some special characters(hex/decimal) that can confirm if the input file is a SEG-Y file. I am not able ...
0
votes
2answers
199 views

Magic function `bash ` not found

I have a bunch of simulations that I want to run on a high-performance cluster, on which I should make reservations to get computing time. Since the reservations are bounded by time, I am developing ...
0
votes
0answers
57 views

how to Use MagicScroll in wp_get_attachment image wordpress

I've buy source Magicscroll in http://www.magictoolbox.com/magicscroll/ Now I want use it for wordpress. I want use it for page get all attach image. My source get all attach image <?php ...
2
votes
1answer
125 views

Rails 3: Has_many through and Me

I'm fairly new to Rails, I got this code working but I think I'm preventing it from doing it some of its Rails magic: Goal: Create a cause and have the creator become a member via the build method ...
0
votes
3answers
78 views

PHP Automatically invoke __call of parent class when invoking public child method?

I have the following code: class A { public function __call($method, $args) { echo 'Hello'; } } class B extends A { public function test() { echo 'Hello world'; ...
4
votes
1answer
437 views

What does “258EAFA5-E914-47DA-95CA-C5AB0DC85B11” means in WebSocket Protocol

I don't understand the meaning of "258EAFA5-E914-47DA-95CA-C5AB0DC85B11" in RFC 6455. Why does the server need this magic string? And why does the WebSocket protocol need this mechanism?
0
votes
1answer
435 views

Wireshark capture Magic Packet configuration

I have a laptop running Wireshark. I'd like to find out how to configure wireshark to capture Magic Packets. I have selected the interface, options, Capture filter, host 192.168.168.19 , Ok, Start ...
0
votes
0answers
56 views

MySQL replication unsafe UPDATE statement

I have an SQL query like UPDATE table SET foo = 'bar' WHERE pkey = n Where pkey is primary key, and n is integer constant. Since i've turned binary logging on (in statement mode), mysql error log ...
0
votes
1answer
126 views

How to override parameter after magic setter and getter in php

Right now I have a BaseObject which do ORM to DB. I rely on private $data and magic setter and getter to create object with bunch of column as private object member(dynamically). Within child class, ...
0
votes
2answers
67 views

Why doesn't C compile log with variables but does compile with magic numbers?

We found that C will compile the log function when used with magic numbers, but not with a variable. Any ideas? Thanks.
1
vote
2answers
865 views

__init__() got an unexpected keyword argument 'mime' in python/django

The first line of this code in .py file returns an error. mime = magic.Magic(mime=True) content_type = mime.from_buffer((data).read(1024)) request.session['content_type'] = content_type if ...
1
vote
1answer
72 views

ipython - can't execute function specified through %paste%

Is it possible to run a function that is specified by using the magic %paste% function in Ipython? In [1]: %paste% def add_to_index(index,keyword,url): for e in index: if e[0] == keyword: ...
1
vote
2answers
186 views

libmagic. text/plain instead of text/javascript text/css

I use libmagic to get the mime type of a file in a web interface of my project. I get text/plain mime type on css and js files. For example chromium shows below warnings: Resource interpreted as ...
1
vote
0answers
971 views

What could cause a “bad magic number” error when loading an R workspace and how to avoid it?

I tried to load my R workspace and received this error: Error: bad restore file magic number (file may be corrupted) -- no data loaded In addition: Warning message: file ...
0
votes
1answer
35 views

magic fields 2 // way to emulate write panel?

So Magic Fields 2 doesn't have "write panels." and since MF2 is so sleek - I am thinking there is some other thing that takes it's place that I can't find. problem is this: creating a simple page ...
-1
votes
2answers
269 views

How to query MYSQL database for value with apostrophe [closed]

I am using this before inserting into MYSQL database: $value2 = mysql_real_escape_string($_POST['english_name']); Later I allow users to search the database and pull values but it misses the values ...
3
votes
1answer
122 views

Using magic commands outside of Interactive Shell in IPython

Is there a way to use "magic commands" from IPython from an outside file? For example if I have a file, "rcode.py" with the code: %load_ext rmagic %R a=c(1,2,3);b=c(2,3,4);print(summary(lm(a~b))) ...
3
votes
3answers
82 views

Comment wizardry

I am not a level 60 wizard yet, so I've got a question based on the following sentence in the Wikipedia article on magic: Any comment that has an effect on the code is magic. How is that? In ...
3
votes
3answers
156 views

Validating or reading a remote image type in javascript

Here is a link to what I mean by magic numbers: file magic My question is: How can I remotely read the first couple bytes (the magic numbers) of a file with javascript to determine whether or not it ...
1
vote
0answers
72 views

iCloud intermittently freaks out, “has wrong magic” lines appear in log

Whilst testing iCloud integration in one of my apps, I occasionally find that changes do not propegate between devices and the log of all devices is littered with lines in the format of: // device 1 ...
0
votes
2answers
282 views

How to reliable tell the uploaded file type (text or binary)?

I have an application where users should be able to upload a wide variety of files, but I need to know for each file, if I can safely display its textual representation as plain text. Using ...
0
votes
0answers
118 views

Java coding help in HTMLUnit required for firewall authenticate automation

everyday I have to go through a web based authentication system (firewall) which works likes this after am connected to the network i tyoe in any web address say Google.com I am presnted with a web ...
0
votes
2answers
75 views

Finding Magic Numbers With Regex

I'm working with a syntax highlighting control and I have to specify all of the highlighted stuff with Regex. I've completed everything else (keywords, functions, strings, comments, etc.) already but ...
0
votes
0answers
52 views

user online activity issue

I am having problem with below code. I am no MySQL expert or php expert. The problem is when a random user exit his browser directly for leaving chat room. His offline status still count as online in ...
0
votes
1answer
78 views

How can i catch a call of public static function in php?

<?php class A { public static function foo() { // some action } public static function __callStatic($method, $args) { self::foo(); ...
1
vote
2answers
186 views

PHP - “magic variable values” - cool or fool? [closed]

I have some questions about designing a code framework using Dependency Injection: FLOW3 or Doctrine uses Annotations to inject class instances to object properties. This is done with Code ...
0
votes
1answer
73 views

PHP __callStatic failing intermittently

I have a simple __callStatic magic method defined in my class: public static function __callStatic($method, $args) { if(substr($method, 0, 8) == "require_") { // do stuff } } The ...
0
votes
0answers
290 views

How to copy data from .bin file to .pdf or .jpg in C++?

I'm having some problems with reading binary data from a .bin file and then writing it to a pdf file. The main goal is to receive some file data over a network, save that data, get the files magic ...
1
vote
1answer
102 views

PHP writing file while __desctruct() function

I have found that it is impossible to write (file_put_contents or simple fwrite) inside __destruct() of PHP class, how to invoke that? full function: function __destruct() { ...
1
vote
2answers
711 views

Avoiding magic strings and numbers

I am working on an application that has been edited by various programmers over the past few years and I have stumbled across a problem with using String Literals to access MenuItems. For Example: in ...
2
votes
1answer
46 views

bbvEventBroker strongly typed and without magic strings

I would like to use the bbvEventBroker with Ninject, however I am worried about the use of magic strings to connect publisher and subscriber. Is there a strongly typed way to do it without magic ...
0
votes
1answer
49 views

magic for detecting boost::serialization file

I need to detect whether a particular file is binary file saved by boost::serialization. Looking at a few files, I saw they have those 16 bytes at the beginning: 0000000 0016 0000 0000 0000 6573 6972 ...
3
votes
1answer
166 views

Pre-increment in PHP with magic get and set defined

I have a problem that has been spoiling the way I want to do the things for a long time. It's related to the use of magic get and set in PHP and trying to do a pre-increment over an object. I have a ...
0
votes
1answer
181 views

Where place password in Wake on LAN (WOL) protocole?

i was searched on the internet since a long time but i don't found how to introduce an eventual station password in the Wake On Lan magic packet, i hope we can help me, so somebody know how to manage ...
2
votes
2answers
241 views

C++ wrapper function (macro) to access COM object properties

I have a COM object with an interface containing a lots of properties defined in the following way: [propget] HRESULT Width([out, retval] LONG *lValue); To access such property from C++ I need to ...

1 2 3