User gs - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T19:04:21Zhttp://stackoverflow.com/feeds/user/24587http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1859719/what-is-an-algorithm-to-return-free-space-in-blocks-of-largest-possible-rectangle5What is an algorithm to return free space in blocks of largest possible rectangles?gs2009-12-07T12:36:26Z2009-12-07T15:59:36Z
<h2>Algorithm</h2>
<p>Consider this layout:</p>
<pre>
+-------------+
| |
| |
| +--+ |
| |##| |
| |##| |
| +--+------+
| |######|
| |######|
+------+------+
</pre>
<p>The black part is the occupied space. Now I need an algorithm that returns the largest remaining rectangular spaces. (Ordered from top to bottom, left to right.)</p>
<p>Like this:</p>
<pre>
1 2 3 4
+-------------+ +---- -------+
|#############| |### ######|
|#############| |### ######|
| +--+ | |###+ +######|
|###| |######|
|###| |######|
|###+ +------| | +--+
|### |######|
|### |######|
+---- +------+
</pre>
<h2>Input</h2>
<p>The width and height of the enclosing container. (A page in my code.)</p>
<p>A list of already occupied rectangles. They can be in any form that you like. <em>E.g. (x,y,width,height) or (x1,y1,x2,y2)</em></p>
<p>I'm dealing with floats, therefore a mathematical solution would be preferred.</p>
http://stackoverflow.com/questions/1858649/how-to-remove-duplicate-value-in-nsmutablearray/1858681#18586812Answer by gs for how to remove duplicate value in NSMutableArraygs2009-12-07T08:45:37Z2009-12-07T08:45:37Z<p>You should be using an <a href="http://developer.apple.com/mac/library/documentation/cocoa/Reference/Foundation/Classes/NSMutableSet%5FClass/Reference/NSMutableSet.html" rel="nofollow"><code>NSMutableSet</code></a> in the first place.</p>
<p>For eliminating all double entries in an array, see this question:<br>
<a href="http://stackoverflow.com/questions/1160898/make-unique-nsmutablearray-or-nsmutableset">Make NSMutableArray or NSMutableSet unique.</a></p>
http://stackoverflow.com/questions/1460300/how-can-i-pre-authorize-authopen1How can I pre-authorize authopen?gs2009-09-22T14:02:56Z2009-12-06T07:56:07Z
<p>I'm using <code>authopen</code> inside one of my programs to modify files owned by root. As can be seen in the screenshot below <code>authopen</code> asks for a admin password. What I'd like to achieve is that the dialog shows my app's name and then passes the authorization to <code>authopen</code>.</p>
<p><img src="http://img43.imageshack.us/img43/3385/picture1pl.png" alt="authopen requires that you type your password." /></p>
<h2>Code</h2>
<p>Launching <code>authopen</code> which returns an authorized file descriptor.</p>
<pre><code>int pipe[2];
socketpair(AF_UNIX, SOCK_STREAM, 0, pipe);
if (fork() == 0) { // child
// close parent's pipe
close(pipe[0]);
dup2(pipe[1], STDOUT_FILENO);
const char *authopenPath = "/usr/libexec/authopen";
execl(authopenPath,
authopenPath,
"-stdoutpipe",
[self.device.devicePath fileSystemRepresentation],
NULL);
NSLog(@"Fatal error, quitting.");
exit(-1);
}
// parent
// close childs's pipe
close(pipe[1]);
// get file descriptor through sockets
</code></pre>
<p>I'd really like <em>not</em> to use <code>AuthorizationExecuteWithPrivileges</code> because then I'd have to get more rights than I want to.</p>
http://stackoverflow.com/questions/1818678/compiling-the-icu-sqlite-extension-statically-linked-to-icu1Compiling the icu sqlite extension statically linked to icu.gs2009-11-30T09:09:31Z2009-12-05T22:32:28Z
<p>I want to compile the <a href="http://www.sqlite.org/cvstrac/getfile?f=sqlite/ext/icu/README.txt" rel="nofollow">icu sqlite extension</a> statically linked to <a href="http://icu-project.org" rel="nofollow">icu</a>.</p>
<p>This is what I've tried, maybe the mistake is obvious to you.</p>
<pre>
> cd icu/source
> ./runConfigureIcu Linux --enable-static --with-packaging-format=archive
...
> make
> cd ../../icu-sqlite
> gcc -o libSqliteIcu.so -shared icu.c -I../icu/source/common
-I../icu/source/i18n -L ../icu/source/lib -lsicuuc -lsicui18n -lsicudata
...
> sqlite3
> .load "libSqliteIcu.so"
Undefined symbol utf8_countTrailBytes
</pre>
<h2>Files</h2>
<h3>icu sqlite extension</h3>
<p><a href="http://www.sqlite.org/cvstrac/getfile?f=sqlite/ext/icu/icu.c" rel="nofollow">Download icu.c from sqlite.org</a></p>
<h3>ICU 4.2.1</h3>
<p><a href="http://icu-project.org/download/4.2.html#ICU4C" rel="nofollow">Download ICU4C from icu-project.org</a></p>
<h2>My Requirements</h2>
<ul>
<li>Runs on Linux & Windows</li>
<li>Only one file that I have to distribute: <code>libSqliteIcu.so</code>.</li>
</ul>
<p>Any idea what else I can try?</p>
<h2>Documentation</h2>
<ul>
<li><a href="http://www.sqlite.org/cvstrac/getfile?f=sqlite/ext/icu/README.txt" rel="nofollow">Sqlite ICU extension's readme</a></li>
<li><a href="http://icu-project.org/repos/icu/icu/trunk/readme.html" rel="nofollow">ICU's readme</a></li>
</ul>
http://stackoverflow.com/questions/1845714/css-background-repeating-from-300px-onwards/1846015#18460153Answer by gs for css background repeating from 300px onwardsgs2009-12-04T10:05:48Z2009-12-04T11:44:52Z<p>You can specify multiple backgrounds. See <a href="http://stackoverflow.com/questions/423172/can-i-have-multiple-background-images-using-css">Can I have multiple background images using CSS?</a>. The techniques mentioned there are:</p>
<ul>
<li>Put the whole page into another <code><div></code> container or misuse the <code><html></code> tag for it.<br>
This means you specify a background for <code><body></code> and one for <code><html></code>.</li>
<li>Use CSS3 which support multiple background images. That's not yet supported by all common browsers.</li>
</ul>
http://stackoverflow.com/questions/1843251/difference-between-foundation-framework-and-core-foundation-framework/1843279#18432792Answer by gs for Difference between Foundation Framework and Core Foundation Framework?gs2009-12-03T22:05:32Z2009-12-03T22:05:32Z<p>CoreFoundation is written in C while Foundation is written in Objective-C.</p>
<p>Foundation has <em>a lot</em> more classes CoreFoundation is the common base of Foundation and Carbon.</p>
http://stackoverflow.com/questions/1841983/what-describes-nil-best-whats-that-really/1843034#18430348Answer by gs for What describes nil best? What's that really?gs2009-12-03T21:26:25Z2009-12-03T21:26:25Z<h2>Objective-C objects</h2>
<p>First of all, when you call this:</p>
<pre><code>id someObject = [NSArray array];
</code></pre>
<p><code>someObject</code> isn't the array object directly but only a pointer to it. That means, if <code>someObject</code> is equal to <code>0x1234</code> there's an object at that address in the memory.</p>
<p>That's the reason why</p>
<pre><code>id someOtherObject = someObject;
</code></pre>
<p>doesn't copy the object. Both pointers point now to the same object.</p>
<h2>Pointer to 0x0</h2>
<p>So, how is <code>nil</code> defined? Let's take a look at the source code:</p>
<p>objc.h</p>
<pre><code>#define nil __DARWIN_NULL /* id of Nil instance */
</code></pre>
<p>_types.h</p>
<pre><code>#ifdef __cplusplus
…
#else /* ! __cplusplus */
#define __DARWIN_NULL ((void *)0)
#endif /* __cplusplus */
</code></pre>
<p>Looks like <code>nil</code> is a pointer to the address 0x0.</p>
<h2>So what?</h2>
<p>Let's see what the <a href="http://developer.apple.com/mac/library/documentation/cocoa/conceptual/ObjectiveC/Articles/ocObjectsClasses.html#//apple%5Fref/doc/uid/TP30001163-CH11-SW7" rel="nofollow">Objective-C Programming Reference</a> has to say:</p>
<blockquote>
<h3>Sending Messages to nil</h3>
<p>In Objective-C, it is valid to send a
message to nil—it simply has no effect
at runtime. There are several patterns
in Cocoa that take advantage of this
fact. The value returned from a
message to nil may also be valid: …</p>
</blockquote>
<p>The returned values are either <code>nil</code>, 0 or a <code>struct</code> with all variables initialized to 0. Which one it is depends on the expected return type. There is an explicit check in the objective-c runtime for messages to <code>nil</code>, that means it's really fast.</p>
<h2><code>Nil</code>, <code>nil</code>, <code>NULL</code></h2>
<p>Those are the 3 types. Here are all the definitions:</p>
<pre><code>#define Nil __DARWIN_NULL /* id of Nil class */
#define nil __DARWIN_NULL /* id of Nil instance */
#define NULL __DARWIN_NULL
#define __DARWIN_NULL ((void *)0)
</code></pre>
<p>As can be seen, they are all exactly the same. <code>Nil</code> and <code>nil</code> are defined by Objective-C, <code>NULL</code> comes from C.</p>
<p>What's the difference then? It's only about style. It makes the code more readable.</p>
<ul>
<li><code>Nil</code> is used as a non-existant class: <code>Class someClass = Nil</code>.</li>
<li><code>nil</code> is used as a non-existant instance: <code>id someInstance = nil</code>.</li>
<li><code>NULL</code> is a pointer to a non-existant memory part: <code>char *theString = NULL</code>.</li>
</ul>
<h2>Short</h2>
<p><code>nil</code> isn't an empty object but a non-existant one. A method <code>-getSomeObject</code> doesn't return an empty object if it doesn't exist but returns <code>nil</code> which tells the user that there is no object.</p>
<p>Maybe this makes sense: (Both would compile and run.)</p>
<pre><code>if (anObject == nil) { // One cannot compare nothing to nothing,
// that wouldn't make sense.
if (anObject) { // Correct, one checks for the existence of anObject
</code></pre>
http://stackoverflow.com/questions/1839356/appending-two-label-texts/1839408#18394080Answer by gs for appending Two label texts?gs2009-12-03T11:38:30Z2009-12-03T11:38:30Z<p>Not really in a nice way.</p>
<p>There are some ideas for replacements in this question: <a href="http://stackoverflow.com/questions/729135/">Why is there no <code>NSAttributedString</code> on the iPhone?</a></p>
http://stackoverflow.com/questions/1838262/how-to-structure-unit-tests-that-have-dependencies2How to structure unit tests that have dependencies?gs2009-12-03T07:30:17Z2009-12-03T08:17:57Z
<p>Given the following simple example:</p>
<pre><code>class MathObject(object):
""" A completely superfluous class. """
def add(self, a, b):
return a + b
def multiply(self, a, b):
result = 0
for _ in range(b):
result = self.add(result, a)
return result
</code></pre>
<p>Obviously, <code>multiply()</code> calls <code>add()</code> internally. If <code>add</code> fails, <code>multiply()</code> fails too. In a complex enough class it might be really complex to find out <em>why</em> exactly a unit test failed.</p>
<p>How does one unit test methods/objects/parts that have dependencies?</p>
http://stackoverflow.com/questions/1837730/pushviewcontroller-now-crashes/1837851#18378510Answer by gs for PushViewController now crashesgs2009-12-03T05:32:12Z2009-12-03T05:32:12Z<p>Most crashes are to be found in too early released memory.</p>
<ul>
<li>Have you checked your memory management?</li>
<li>Whats the crash code?</li>
<li>Is it untraceable even if you run the program in a debugger? </li>
</ul>
http://stackoverflow.com/questions/890171/algorithm-to-divide-a-list-of-numbers-into-2-equal-sum-lists/890243#89024315Answer by gs for Algorithm to Divide a list of numbers into 2 equal sum listsgs2009-05-20T21:03:29Z2009-12-03T05:11:57Z<p><a href="http://en.wikipedia.org/wiki/Dynamic%5Fprogramming" rel="nofollow">Dynamic programming</a> is the solution you're looking for.</p>
<p>Example with {3,4,10,3,2,5}</p>
<pre>
X-Axis: Reachable sum of group. max = sum(all numbers) / 2 (rounded up)
Y-Axis: Count elements in group. max = count numbers / 2 (rounded up)
1 2 3 4 5 6 7 8 9 10 11 12 13 14
1 | | | | 4| | | | | | | | | | | // 4
2 | | | | | | | | | | | | | | |
3 | | | | | | | | | | | | | | |
</pre>
<pre>
1 2 3 4 5 6 7 8 9 10 11 12 13 14
1 | | | 3| 4| | | | | | | | | | | // 3
2 | | | | | | | 3| | | | | | | |
3 | | | | | | | | | | | | | | |
</pre>
<pre>
1 2 3 4 5 6 7 8 9 10 11 12 13 14
1 | | | 3| 4| | | | | |10| | | | | // 10
2 | | | | | | | 3| | | | | |10|10|
3 | | | | | | | | | | | | | | |
</pre>
<pre>
1 2 3 4 5 6 7 8 9 10 11 12 13 14
1 | | | 3| 4| | | | | |10| | | | | // 3
2 | | | | | | 3| 3| | | | | |10|10|
3 | | | | | | | | | | 3| | | | |
</pre>
<pre>
1 2 3 4 5 6 7 8 9 10 11 12 13 14
1 | | 2| 3| 4| | | | | |10| | | | | // 2
2 | | | | | 2| 3| 3| | | | | 2|10|10|
3 | | | | | | | | 2| 2| 3| | | | |
</pre>
<pre>
1 2 3 4 5 6 7 8 9 10 11 12 13 14
1 | | 2| 3| 4| 5| | | | |10| | | | | // 5
2 | | | | | 2| 3| 3| 5| 5| | | 2|10|10|
3 | | | | | | | | 2| 2| 3| 5| 5| | |
^
</pre>
<p>12 is our lucky number! Backtracing to get the group:</p>
<pre>
12 - 5 = 7 {5}
7 - 3 = 4 {5, 3}
4 - 4 = 0 {5, 3, 4}
</pre>
<p>The other set can then be calculated: {4,3,10,3,2,5} - {5,3,4} = {10,3,2}</p>
<p>All fields with a number are possible solutions for one bag. Choose the one that is furthest in the bottom right corner.</p>
<p>BTW: It's called the <a href="http://en.wikipedia.org/wiki/Knapsack%5Fproblem" rel="nofollow">knapsack-problem</a>.</p>
<blockquote>
<p>If all weights (w1, ..., wn and W) are
nonnegative integers, the knapsack
problem can be solved in
pseudo-polynomial time using dynamic
programming.</p>
</blockquote>
http://stackoverflow.com/questions/1825384/using-super-in-nested-classes0Using super() in nested classes.gs2009-12-01T10:47:22Z2009-12-01T19:10:13Z
<p>Imagine this:</p>
<pre><code>class A(object):
class B(object):
def __init__(self):
super(B, self).__init__()
</code></pre>
<p>This creates an error:</p>
<pre>
NameError: global name B is not defined.
</pre>
<p>I've tried <code>A.B</code>, but then it says that <code>A</code> is not defined.</p>
<p><strong>Update:</strong></p>
<p>I've found the problem.</p>
<p>I've had a class like this:</p>
<pre><code>class A(object):
class B(object):
def __init__(self):
super(B, self).__init__()
someattribute = B()
</code></pre>
<p>In that scope, A isn't defined yet.</p>
http://stackoverflow.com/questions/1818228/why-do-developers-split-up-script-in-javascript/1818255#18182556Answer by gs for Why Do Developers Split Up <script in JavaScript?gs2009-11-30T07:05:51Z2009-11-30T07:05:51Z<p>Have a look at this question:</p>
<p><a href="http://stackoverflow.com/questions/728697/javascript-external-script-loading-strangeness">Javascript external script loading strangeness.</a></p>
<p>Taken from <a href="http://stackoverflow.com/questions/728697/javascript-external-script-loading-strangeness/729072#729072">bobince's answer</a>:</p>
<blockquote>
<p>To see the problem, look at that top
line in its script element:</p>
<pre><code><script type="text/javascript">
document.write('<script src="set1.aspx?v=1234"
type="text/javascript"></script>');
</script>
</code></pre>
<p>So an HTML parser comes along and sees
the opening <script> tag. Inside
<script>, normal <tag> parsing
is disabled (in SGML terms, the
element has CDATA content). To find
where the script block ends, the HTML
parser looks for the matching
close-tag </script>.</p>
<p>The first one it finds is the one
inside the string literal. An HTML
parser can't know that it's inside a
string literal, because HTML parsers
don't know anything about JavaScript
syntax, they only know about CDATA. So
what you are actually saying is:</p>
<pre><code><script type="text/javascript">
document.write('<script src="set1.aspx?v=1234"
type="text/javascript">
</script>
</code></pre>
<p>That is, an unclosed string literal
and an unfinished function call. These
result in JavaScript errors and the
desired script tag is never written.</p>
<p>A common attempt to solve the problem
is:</p>
<pre><code>document.write('...</scr' + 'ipt>');
</code></pre>
</blockquote>
<p>This wouldn't explain why it's done in the start tag though.</p>
http://stackoverflow.com/questions/1816483/python-how-does-inheritance-of-slots-in-subclasses-actually-work/1816511#18165113Answer by gs for Python: How does inheritance of __slots__ in subclasses actually work?gs2009-11-29T19:34:53Z2009-11-29T19:44:45Z<pre><code>class WithSlots(object):
__slots__ = "a_slot"
class NoSlots(object): # This class has __dict__
pass
</code></pre>
<h2>First Item</h2>
<pre><code>class A(NoSlots): # even though A has __slots__, it inherits __dict__
__slots__ = "a_slot" # from NoSlots, therefore __slots__ has no effect
</code></pre>
<h2>Sixth Item</h2>
<pre><code>class B(WithSlots): # This class has no __dict__
__slots__ = "some_slot"
class C(WithSlots): # This class has __dict__, because it doesn't
pass # specify __slots__ even though the superclass does.
</code></pre>
<p>You probably won't need to use <code>__slots__</code> in the near future. It's only intended to safe memory for the cost of some flexibility. Unless you have ten-thousands of objects it won't matter.</p>
http://stackoverflow.com/questions/1815664/how-to-obtain-an-unformatted-string-representation-of-an-nsdecimal-or-nsdecimalnu/1816328#18163280Answer by gs for How to obtain an unformatted string representation of an NSDecimal or NSDecimalNumber?gs2009-11-29T18:33:41Z2009-11-29T18:39:15Z<h2><a href="http://developer.apple.com/iphone/library/documentation/cocoa/Reference/Foundation/Classes/NSDecimalNumber%5FClass/Reference/Reference.html" rel="nofollow">NSDecimalNumber</a></h2>
<pre><code>NSLog(@"%@", [theNumber stringValue]);
</code></pre>
<h2><a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/Foundation/Miscellaneous/Foundation%5FDataTypes/Reference/reference.html#//apple%5Fref/doc/c%5Fref/NSDecimal" rel="nofollow">NSDecimal</a></h2>
<pre><code>NSLog(@"%@", NSDecimalString(&theDecimal, nil));
</code></pre>
http://stackoverflow.com/questions/1815664/how-to-obtain-an-unformatted-string-representation-of-an-nsdecimal-or-nsdecimalnu/1815703#18157031Answer by gs for How to obtain an unformatted string representation of an NSDecimal or NSDecimalNumber?gs2009-11-29T14:42:26Z2009-11-29T16:51:52Z<p><code>NSDecimalNumber</code> is a subclass of <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSNumber%5FClass/Reference/Reference.html" rel="nofollow"><code>NSNumber</code></a> which has the <code>-stringValue</code> method.</p>
<blockquote>
<h2>stringValue</h2>
<p>Returns the receiver’s
value as a human-readable string.</p>
<pre><code>- (NSString *)stringValue
</code></pre>
<h3>Return Value</h3>
<p>The receiver’s value as a
human-readable string, created by
invoking <code>descriptionWithLocale:</code> where
locale is <code>nil</code>.</p>
<h2>descriptionWithLocale:</h2>
<p>Returns a string that represents the contents of
the receiver for a given locale.</p>
<pre><code>- (NSString *)descriptionWithLocale:(id)aLocale
</code></pre>
<h3>Parameters aLocale</h3>
<p>An object
containing locale information with
which to format the description. Use
<code>nil</code> if you don’t want the description
formatted.</p>
</blockquote>
<p>Just call <code>[theNumber stringValue]</code>.</p>
http://stackoverflow.com/questions/1809379/convert-nsstring-to-nsdate/1809585#18095853Answer by gs for Convert NSString to NSDategs2009-11-27T16:15:48Z2009-11-27T16:48:16Z<p><code>NSDateFormatter</code> has a property <code>locale</code>. Try:</p>
<pre><code>dateFormatter.locale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]
autorelease];
</code></pre>
http://stackoverflow.com/questions/1805480/how-would-you-represent-a-minesweeper-grid-in-python/1805540#18055406Answer by gs for How would you represent a MineSweeper grid in Python?gs2009-11-26T20:35:31Z2009-11-26T22:25:53Z<p>Use a nested list. It's easy to set up:</p>
<pre><code>field = [([None] * height) for x in range(width)]
field[x][y] = "*"
</code></pre>
<p>The clearest thing would probably be a new class:</p>
<pre><code>class MineField(object):
class _SingleField(object):
mine = False
flagged = False
covered = True
width = None
height = None
def __init__(self, width, height):
super(MineField, self).__init__()
self.width = width
self.height = height
self._field = [[self._SingleField() for y in range(height)]
for x in range(width)]
self.init_field(10)
def init_field(self, minecount):
pass
def __getitem__(self, index):
x, y = index
return self._field[x][y]
</code></pre>
<p>To be used like this:</p>
<pre>
> m = MineField(10,10)
> m[4,9].mine
False
</pre>
http://stackoverflow.com/questions/1802655/top-k-problem-finding-usage-for-my-academic-work/1802688#18026881Answer by gs for Top k problem - finding usage for my academic workgs2009-11-26T09:52:54Z2009-11-26T09:52:54Z<p>There are unlimited possible real-use scenarios. Getting the top-n values is used all the time.</p>
<p>But I highly doubt that it's possible to get top-n objects without having an index. An index can only be built if the properties that will be searched are known ahead of searching. And if that's the case, a simple index in a relational database is able to provide the same functionality.</p>
http://stackoverflow.com/questions/1802478/running-v8-javascript-engine-standalone/1802613#18026133Answer by gs for Running V8 Javascript Engine Standalonegs2009-11-26T09:37:51Z2009-11-26T09:37:51Z<p>V8 is easy to build and does not come with the Java VM overhead from Mozilla's standalone Javascript interpreter. Luckily, V8 ships with code for building a console. Here is how to build this:</p>
<pre>
$> svn co http://v8.googlecode.com/svn/trunk v8-trunk
...
$> cd v8-trunk
$> scons
$> g++ ./samples/shell.cc -o v8-shell -I include libv8.a
</pre>
<p>Now, we have a standalone binary called <code>v8-shell</code>.</p>
<p>Running the console:</p>
<pre>
$> ./v8-shell
V8 version 2.0.2
> var x = 10;
> x
10
> function foo(x) { return x * x; }
> foo
function foo(x) { return x * x; }
> quit()
</pre>
<p>Executing Javascript from the command line:</p>
<pre>
$> ./v8-shell -e 'print("10*10 = " + 10*10)'
10*10 = 100
</pre>
<p>Many more features are documented in the help:</p>
<pre>
$> ./v8-shell --help
Usage:
...
</pre>
http://stackoverflow.com/questions/1246315/find-natural-block-size-of-the-media-being-used-by-file-handle/1802239#18022391Answer by gs for find natural block size of the media being used by file handlegs2009-11-26T08:17:44Z2009-11-26T08:17:44Z<p>Here's the code to get the native block size:</p>
<pre><code>#include <sys/stat.h>
#include <IOKit/IOKitLib.h>
#include <IOKit/IOBSD.h>
#include <IOKit/storage/IOMedia.h>
#include <CoreFoundation/CoreFoundation.h>
// look up device number with stat
struct stat stats;
if (stat(path, &stats) != 0) {
return;
}
// use st_rdev instead of st_dev if
// the path is a device (/dev/disk0)
int bsd_major = major(stats.st_dev);
int bsd_minor = minor(stats.st_dev);
CFTypeRef keys[2] = { CFSTR(kIOBSDMajorKey), CFSTR(kIOBSDMinorKey) };
CFTypeRef values[2];
values[0] = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &bsd_major);
values[1] = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &bsd_minor);
CFDictionaryRef matchingDictionary;
matchingDictionary = CFDictionaryCreate(kCFAllocatorDefault,
&keys, &values,
sizeof(keys) / sizeof(*keys),
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
CFRelease(values[0]);
CFRelease(values[1]);
// IOServiceGetMatchingService uses up one reference to the dictionary
io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault,
matchingDictionary);
if (!service) {
return;
}
CFNumberRef blockSizeProperty;
blockSizeProperty = (CFNumberRef)IORegistryEntryCreateCFProperty(service,
CFSTR(kIOMediaPreferredBlockSizeKey),
kCFAllocatorDefault, 0);
if (!blockSizeProperty) {
return;
}
int blockSize;
CFNumberGetValue(blockSizeProperty, kCFNumberIntType, &blockSize);
CFRelease(blockSizeProperty);
// blockSize is the native block size of the device
</code></pre>
http://stackoverflow.com/questions/1735326/running-a-fastest-algorithm-competition/1802207#18022070Answer by gs for Running a fastest-algorithm competitiongs2009-11-26T08:06:33Z2009-11-26T08:06:33Z<p>I also think that counting the numbers of instructions is a good measure.</p>
<p>The only drawback I see is that if the JVM instructions are too powerful. I don't know the JVC, but it would be possible that there's native support for strings. Appending strings <em>could</em> result in only one instruction. (Don't think so.)</p>
<p>I'd just use plain old <code>time</code> command. This measures execution time, not real time which does eliminate <em>almost</em> all influences by background processes.</p>
http://stackoverflow.com/questions/508657/multidimensional-array-in-python/508677#5086778Answer by gs for Multidimensional array in Pythongs2009-02-03T19:59:02Z2009-11-26T06:26:51Z<p>You can create it using nested lists:</p>
<pre><code>matrix = [[a,b],[c,d],[e,f]]
</code></pre>
<p>If it has to be dynamic it's more complicated, why not write a small class yourself?</p>
<pre><code>class Matrix(object):
def __init__(self, rows, columns, default=0):
self.m = []
for i in range(rows):
self.m.append([default for j in range(columns)])
def __getitem__(self, index):
return self.m[index]
</code></pre>
<p>This can be used like this:</p>
<pre><code>m = Matrix(10,5)
m[3][6] = 7
print m[3][6] // -> 7
</code></pre>
<p>I'm sure one could implement it much more efficient. :)</p>
<p>If you need multidimensional arrays you can either create an array and calculate the offset or you'd use arrays in arrays in arrays, which can be pretty bad for memory. (Could be faster though…) I've implemented the first idea like this:</p>
<pre><code>class Matrix(object):
def __init__(self, *dims):
self._shortcuts = [i for i in self._create_shortcuts(dims)]
self._li = [None] * (self._shortcuts.pop())
self._shortcuts.reverse()
def _create_shortcuts(self, dims):
dimList = list(dims)
dimList.reverse()
number = 1
yield 1
for i in dimList:
number *= i
yield number
def _flat_index(self, index):
if len(index) != len(self._shortcuts):
raise TypeError()
flatIndex = 0
for i, num in enumerate(index):
flatIndex += num * self._shortcuts[i]
return flatIndex
def __getitem__(self, index):
return self._li[self._flat_index(index)]
def __setitem__(self, index, value):
self._li[self._flat_index(index)] = value
</code></pre>
<p>Can be used like this:</p>
<pre><code>m = Matrix(4,5,2,6)
m[2,3,1,3] = 'x'
m[2,3,1,3] // -> 'x'
</code></pre>
http://stackoverflow.com/questions/1801819/python-multi-dimensional-arrays/1801864#18018642Answer by gs for Python - Multi-Dimensional Arraysgs2009-11-26T06:23:13Z2009-11-26T06:23:13Z<p>I've written a <code>Matrix</code> class here:</p>
<p><a href="http://stackoverflow.com/questions/508657/multidimensional-array-in-python/508677#508677">Multidimensional array in Python</a></p>
<p>It can be used like this:</p>
<pre><code>m = Matrix(4,5,2,6)
m[2,3,1,3] = 'x'
m[2,3,1,3] // -> 'x'
</code></pre>
http://stackoverflow.com/questions/1785439/cocoa-dmg-file-trace-back-its-path/1785524#17855242Answer by gs for cocoa + dmg file + trace back its pathgs2009-11-23T19:53:01Z2009-11-25T07:34:39Z<ol>
<li><p>Automatically launching an application is not possible in Mac OS X. There are some safety reasons against it. The only thing that can be automatically launched is a <code>.pkg</code> file and this only through Safari AFAIK.</p></li>
<li><p>It is possible to determine the DMG file the application resides on. You have to use IOKit for this. Try playing around with IORegistryExplorer.</p></li>
</ol>
<h2>Some code that may help you</h2>
<p>Those are my first attempts on using IOKit, it's for another purpose but it should help non-the-less.</p>
<pre><code>// hopefully all needed headers
#include <sys/stat.h>
#include <IOKit/IOKitLib.h>
#include <IOKit/IOBSD.h>
#include <CoreFoundation/CoreFoundation.h>
/* First we want to get the major and minor BSD number
* of the DMG that our app is residing on.
*
* char *path is the path of a file that resides on the disk image.
* It is like this: /Volumes/Partition Name/SomeFile
* The simplest method to get such a path is to ask
* NSBundle for the path of the executable.
*/
// look up device number with stat
char *path = "path/to/app";
struct stat stats;
if (stat(path, &stats) != 0) {
return;
}
int bsd_major = major(stats.st_dev);
int bsd_minor = minor(stats.st_dev);
/* Now that we've got the BSD numbers we have to locate the
* IOService that has those numbers. IOKit works with
* CoreFoundation types.
*/
CFTypeRef keys[2] = { CFSTR(kIOBSDMajorKey), CFSTR(kIOBSDMinorKey) };
CFTypeRef values[2];
values[0] = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &bsd_major);
values[1] = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &bsd_minor);
CFDictionaryRef matchingDictionary;
matchingDictionary = CFDictionaryCreate(kCFAllocatorDefault,
&keys, &values,
sizeof(keys) / sizeof(*keys),
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
CFRelease(values[0]);
CFRelease(values[1]);
// IOServiceGetMatchingService uses up one reference to the dictionary
io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault,
matchingDictionary);
if (!service) {
return;
}
/* Now this part is quite different from what I need
* for my application. I'm not sure how this works
* because I'm currently not at my Mac and cannot try it.
*
* You need to go up the IOService chain. It looks like this:
+-o IOHDIXHDDriveOutKernelUserClient
+-o IODiskImageBlockStorageDeviceOutKernel <---- You want to get up here
+-o IOBlockStorageDriver
+-o Apple UDIF read-only compressed (zlib) Media
+-o IOMediaBSDClient
+-o IOApplePartitionScheme
+-o Apple@1
| +-o IOMediaBSDClient
+-o disk image@2 <---- This is the matched IOService!
+-o IOMediaBSDClient
*
* IODiskImage... has a property "Protocol Characteristics" which is a
* dictionary that has the key "Virtual Interface Location Path" which is
* the path to the disk image. There are probably #defines somewhere in
* IOKit for those keys.
*
* This code is NOT tested. It's out of my head and the documentation.
* This goes up 4 times in the hierarchy. Hopefully there aren't more
* than 1 parents.
*/
for (int i = 0; i < 4; i++) {
io_service_t parent;
IORegistryEntryGetParentEntry(service, kIOServicePlane, &parent);
IOObjectRelease(service);
service = parent;
}
/* Getting the property from the IOService is the last step:
*/
CFDictionaryRef characteristics;
characteristics = (CFDictionaryRef)IORegistryEntryCreateCFProperty(service,
CFSTR("Protocol Characteristics"),
kCFAllocatorDefault, 0)
CFStringRef *dmgPath = CFDictionaryGetValue(characteristics,
CFSTR("Virtual Interface Location Path"));
// clean up
IOObjectRelease(service);
CFRetain(dmgPath);
CFRelease(characteristics);
// Use the path
// later
CFRelease(dmgPath);
</code></pre>
<p>Much of this can be done using the Foundation classes instead of the CoreFoundation classes because of the toll-free bridging support. This makes it a little bit easier and more legible.</p>
http://stackoverflow.com/questions/452300/python-object-reprself-should-be-an-expression/452310#4523109Answer by gs for Python object.__repr__(self) should be an expression?gs2009-01-16T22:41:37Z2009-11-25T06:39:57Z<pre><code>>>> from datetime import date
>>>
>>> repr(date.today()) # calls date.today().__repr__()
'datetime.date(2009, 1, 16)'
>>> eval(_) # _ is the output of the last command
datetime.date(2009, 1, 16)
</code></pre>
<p>The output is a string that can be parsed by the python interpreter and results in an equal object.</p>
<p>If that's not possible, it should return a string in the form of <code><...some useful description...></code>.</p>
http://stackoverflow.com/questions/1794816/recommendations-for-c-profilers/1794938#17949380Answer by gs for Recommendations for C Profilers?gs2009-11-25T05:54:26Z2009-11-25T05:54:26Z<p>Shark / Instruments (using dtrace) are the profilers available on a Mac. They're pretty good.</p>
http://stackoverflow.com/questions/1491005/is-there-a-replacement-for-mdbtools2Is there a replacement for mdbtools?gs2009-09-29T07:03:51Z2009-11-24T19:55:16Z
<p>I'm using mdbtools' SQL functionality to connect to an <code>.mdb</code> file on linux. Mdbtools is still beta and hasn't been updated since 2007, many features like sufficient SQL support aren't available yet.</p>
<p>Features I need:</p>
<ul>
<li>SQL, either with python bindings or through ODBC.</li>
<li><code>AS</code> statement in SQL operations.</li>
<li><code>JOIN</code> if possible.</li>
<li>Runs on non-windows.</li>
<li>Sub-selects would be really handy.</li>
<li>Write support is <em>not</em> necessary.</li>
</ul>
<p>Is there a replacement for it that is actively being developed?</p>
http://stackoverflow.com/questions/1791062/how-to-create-a-firefox-add-on-using-objective-c-on-mac-os-x/1791091#17910910Answer by gs for How to create a Firefox add-on using Objective-C on Mac OS X?gs2009-11-24T16:11:29Z2009-11-24T16:11:29Z<p>First <a href="https://addons.mozilla.org/en-US/developers/docs/how-to/getting-started" rel="nofollow">learn how to write add-ons</a> for Firefox. Adding Objective-C code afterwards is the easy part.</p>
http://stackoverflow.com/questions/1780904/adding-even-values-to-new-list-python/1789992#17899920Answer by gs for Adding even values to new list Python.gs2009-11-24T13:16:40Z2009-11-24T13:16:40Z<p>I find this to be the most readable solution:</p>
<pre><code>list2 = filter(lambda x: x % 2 == 0: list1)
</code></pre>
<p>or if you have to use this function multiple times:</p>
<pre><code>is_even = lambda x: x % 2 == 0
list2 = filter(is_even, list1)
</code></pre>
http://stackoverflow.com/questions/1859719/what-is-an-algorithm-to-return-free-space-in-blocks-of-largest-possible-rectangle/1859845#1859845Comment by gs on What is an algorithm to return free space in blocks of largest possible rectangles?gs2009-12-07T13:08:22Z2009-12-07T13:08:22ZI'm working with floats. Because of that I cannot iterate over all pixels.http://stackoverflow.com/questions/1859719/what-is-an-algorithm-to-return-free-space-in-blocks-of-largest-possible-rectangleComment by gs on What is an algorithm to return free space in blocks of largest possible rectangles?gs2009-12-07T13:03:59Z2009-12-07T13:03:59Z@MaR: Yes they can, but that's something which can be removed easily. Therefore you don't have to take it into account.http://stackoverflow.com/questions/1859719/what-is-an-algorithm-to-return-free-space-in-blocks-of-largest-possible-rectangleComment by gs on What is an algorithm to return free space in blocks of largest possible rectangles?gs2009-12-07T12:49:15Z2009-12-07T12:49:15Z@Romain Muller: A list of occupied rectangles and the size of the page.http://stackoverflow.com/questions/1859719/what-is-an-algorithm-to-return-free-space-in-blocks-of-largest-possible-rectangleComment by gs on What is an algorithm to return free space in blocks of largest possible rectangles?gs2009-12-07T12:48:41Z2009-12-07T12:48:41Z@Amargosh: Correct. :)http://stackoverflow.com/questions/1858649/how-to-remove-duplicate-value-in-nsmutablearray/1858681#1858681Comment by gs on how to remove duplicate value in NSMutableArraygs2009-12-07T11:53:56Z2009-12-07T11:53:56Z<code>NSSet</code> requires that your objects implement <code>-hash</code> and <code>-isEqual:</code>, have you done this?http://stackoverflow.com/questions/1858630/hidden-features-of-goComment by gs on Hidden Features of Gogs2009-12-07T09:07:35Z2009-12-07T09:07:35Z-1, I don't think there are any hidden features in languages, just some not-so-well known tricks.http://stackoverflow.com/questions/1818678/compiling-the-icu-sqlite-extension-statically-linked-to-icu/1853681#1853681Comment by gs on Compiling the icu sqlite extension statically linked to icu.gs2009-12-07T08:25:47Z2009-12-07T08:25:47ZThe important difference seems to be that you used g++ instead of gcc. I'll try it in windows and then award you the bounty if it works.http://stackoverflow.com/questions/1460300/how-can-i-pre-authorize-authopen/1854694#1854694Comment by gs on How can I pre-authorize authopen?gs2009-12-07T06:50:48Z2009-12-07T06:50:48ZI'm already looking at the security framework. But how do I pre-authorize authopen?http://stackoverflow.com/questions/1841983/what-describes-nil-best-whats-that-really/1843034#1843034Comment by gs on What describes nil best? What's that really?gs2009-12-07T06:20:40Z2009-12-07T06:20:40ZI do not think of it as "variable that contains <code>anObject</code>" normally but just as <code>anObject</code>. This simplification works most of the time. As soon as you think of it as <code>pointer to an object</code> comparing it to <code>nil</code> makes perfect sense.http://stackoverflow.com/questions/1019573/save-icon-still-a-floppy-disk/1019771#1019771Comment by gs on Save icon: Still a floppy disk?gs2009-12-04T15:03:28Z2009-12-04T15:03:28Z@peterchen: Here, I'll lend you one upvote.http://stackoverflow.com/questions/1847281/commoncrypto-is-no-longer-part-of-the-iphone-sdk-where-else-can-i-easily-get-anComment by gs on CommonCrypto is no longer part of the iPhone SDK - Where else can I easily get an MD5 function?gs2009-12-04T14:31:32Z2009-12-04T14:31:32ZAnd while you're updating your code, replace MD5 with something more secure like SHA1.http://stackoverflow.com/questions/1841983/what-describes-nil-best-whats-that-really/1843034#1843034Comment by gs on What describes nil best? What's that really?gs2009-12-04T11:13:05Z2009-12-04T11:13:05ZYes, but I argue that if one uses "no object" as the analogy to <code>nil</code>, it's logically not possible to compare "no object" to "no object", but it's easy to say "do this _if this object exists_".http://stackoverflow.com/questions/1835857/python-long-multiplication/1836137#1836137Comment by gs on Python long multiplicationgs2009-12-04T09:13:07Z2009-12-04T09:13:07ZIf those algorithms are faster, why aren't they implemented in python?http://stackoverflow.com/questions/1841983/what-describes-nil-best-whats-that-really/1841992#1841992Comment by gs on What describes nil best? What's that really?gs2009-12-03T21:33:29Z2009-12-03T21:33:29Z<code>Nil</code>, <code>nil</code> and <code>NULL</code> are all defined as <code>__DARWIN_NULL</code> and therefore completely interchangeable. But there are some logical differences.http://stackoverflow.com/questions/1841983/what-describes-nil-best-whats-that-really/1842006#1842006Comment by gs on What describes nil best? What's that really?gs2009-12-03T21:31:37Z2009-12-03T21:31:37ZThis is by far the best answer.