User M. Utku ALTINKAYA - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T11:54:09Zhttp://stackoverflow.com/feeds/user/40948http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1586821/texturing-a-sphere-in-iphones-opengl-es/1586934#15869340Answer by M. Utku ALTINKAYA for Texturing a sphere in iphone's OpenGL ES.M. Utku ALTINKAYA2009-10-19T04:21:18Z2009-10-19T04:21:18Z<p>Procedural sphere will not be much helpful when you also want to texture it, I suggest you to use one of the many rendering libraries and a model with proper uv map.</p>
http://stackoverflow.com/questions/1550810/objective-c-way-of-serializing-arrays-that-contain-different-types1Objective-c way of serializing arrays that contain different typesM. Utku ALTINKAYA2009-10-11T14:26:00Z2009-10-11T15:49:06Z
<p>Hello, </p>
<p>My NSMutableArray instance contains instances of different types of objects that have common ancestor. I want to serialize the array, but NSKeyedArchiver class seems to archive arrays contain certain types of objects. Is there an easy way to to this with stock serialization classes ?</p>
http://stackoverflow.com/questions/1338095/can-i-write-python-applications-using-pyobjc-that-target-non-jailbroken-iphones/1338097#13380970Answer by M. Utku ALTINKAYA for Can I write Python applications using PyObjC that target NON-jailbroken iPhones? M. Utku ALTINKAYA2009-08-26T23:18:54Z2009-08-26T23:18:54Z<p>no, apple strictly forbids running any kind of interpreter on iphone, and it is completely policy issue.</p>
http://stackoverflow.com/questions/1337009/stretching-li-and-contents/1337034#1337034-1Answer by M. Utku ALTINKAYA for Stretching LI and contentsM. Utku ALTINKAYA2009-08-26T19:43:58Z2009-08-26T20:29:48Z<p>remove padding-left and padding-right from .nav A (includes/styles/styles.css) or make it more precise, or add padding: 0; to your ".nav .dropMenu a" selector.</p>
http://stackoverflow.com/questions/1333179/python-critique/1333207#13332070Answer by M. Utku ALTINKAYA for Python CritiqueM. Utku ALTINKAYA2009-08-26T08:34:12Z2009-08-26T08:34:12Z<p>Inner classes could be really inner, and have access to parent class's namespace.</p>
http://stackoverflow.com/questions/1331033/how-can-i-empty-the-used-memory-with-python/1331164#13311640Answer by M. Utku ALTINKAYA for How Can I Empty the Used Memory With Python ?M. Utku ALTINKAYA2009-08-25T21:39:27Z2009-08-25T21:39:27Z<p>by stopping using it when you do not need, python has garbage collector. Set the attributes, and variables to None when you are done with them.</p>
http://stackoverflow.com/questions/1325673/python-how-to-add-property-to-a-class-dynamically/1325772#13257721Answer by M. Utku ALTINKAYA for python: How to add property to a class dynamically?M. Utku ALTINKAYA2009-08-25T02:29:19Z2009-08-25T02:29:19Z<p>Only way to dynamically attach a property is to create a new class and its instance with your new property. </p>
<pre><code>class Holder: p = property(lambda x: vs[i], self.fn_readonly)
setattr(self, k, Holder().p)
</code></pre>
http://stackoverflow.com/questions/1325663/regex-pick-full-word/1325666#13256663Answer by M. Utku ALTINKAYA for RegEx pick Full wordM. Utku ALTINKAYA2009-08-25T01:51:26Z2009-08-25T01:57:37Z<p>use incasesensitive modifier of your library for instance </p>
<pre><code>/hello/i
</code></pre>
<p>Also it would be wise to add \b, word delimiter so you do not select "ahello". </p>
<pre><code>/\bhello\b/i
</code></pre>
http://stackoverflow.com/questions/1324764/accessing-a-frame-within-a-frame/1325439#13254390Answer by M. Utku ALTINKAYA for Accessing a frame within a frameM. Utku ALTINKAYA2009-08-25T00:14:07Z2009-08-25T00:14:07Z<p>Accessing to the document object using the iframe element can be pretty problematic. In most cases browsers let the embedded document to access the parent window's context but not vice versa. So in doc2.htm or whichever you want to control, assign your document object to parent windows variable.</p>
<p>main document:</p>
<pre><code><html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
window.onIframeReady = function () {
setChildColor("#bbb");
}
</script>
</head>
<body>
Document #1
<iframe class="postFrame" src="doc2.htm" width="100%" height="300">
</body>
</html>
</code></pre>
<p>doc3.html:</p>
<pre><code><html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script>
parent.parent.setChildColor = function (color) {
document.bgColor(color);
}
$(function () {
parent.parent.onIframeReady();
})
</script>
</head>
<body style="background-color:#fff; color:#000;"> <!-- access this body style -->
Document #3
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1323196/does-the-order-of-javascript-matter-in-a-page/1323217#13232170Answer by M. Utku ALTINKAYA for Does the order of javascript matter in a page?M. Utku ALTINKAYA2009-08-24T15:57:10Z2009-08-24T15:57:10Z<p>Yes you can access all top level variables. But the one you are looking for may be defined using dom ready event too even it is a window variable the handler can be being fired after yours. Or it is in a JavaScript file dynamically injected. </p>
http://stackoverflow.com/questions/1282118/winpcap-having-troubles-sending-data/1322284#13222840Answer by M. Utku ALTINKAYA for Winpcap - Having troubles sending dataM. Utku ALTINKAYA2009-08-24T13:05:05Z2009-08-24T13:26:09Z<p>You cannot repeat a tcp packet and expect socket to receive it, there are order numbers on every packet. If it was UDP it would maybe work but you also can not rely on packets to represent whole message either udp or tcp.</p>
<p>You are working on too low level, use Layered Service providers to get between the interface and the socket, it is like implementing a protocol over TCP, there you can repeat packets, and most likely there will be no check on application side. </p>
http://stackoverflow.com/questions/1322307/how-do-i-check-if-a-process-is-running-from-c-code/1322345#13223451Answer by M. Utku ALTINKAYA for How do I check if a process is running from c++ code ?M. Utku ALTINKAYA2009-08-24T13:15:05Z2009-08-24T13:15:05Z<p>you can either use mutex or try to open the shared memory file and handle the exception.</p>
http://stackoverflow.com/questions/1322145/architecture-for-dynamic-business-rules/1322210#13222100Answer by M. Utku ALTINKAYA for Architecture for dynamic business rules M. Utku ALTINKAYA2009-08-24T12:51:02Z2009-08-24T12:51:02Z<p>You can embed an interpreter and use some templates, visual tools to let your users add new fractions of code.</p>
http://stackoverflow.com/questions/1322160/free-machine-readable-english-dictionary-required/1322190#13221901Answer by M. Utku ALTINKAYA for Free machine readable english dictionary requiredM. Utku ALTINKAYA2009-08-24T12:47:29Z2009-08-24T12:47:29Z<p>what you are looking for is a corpus.</p>
http://stackoverflow.com/questions/1321276/best-database-engine-for-huge-datasets/1321494#13214942Answer by M. Utku ALTINKAYA for Best database engine for huge datasetsM. Utku ALTINKAYA2009-08-24T10:06:16Z2009-08-24T10:06:16Z<p>As long as you drop indexes before inserting huge data, should not be much difference between those two. </p>
http://stackoverflow.com/questions/1320795/monitoring-iframe-content-status-from-the-parent-page/1321449#13214491Answer by M. Utku ALTINKAYA for monitoring iframe content/status from the parent pageM. Utku ALTINKAYA2009-08-24T09:53:20Z2009-08-24T09:53:20Z<p>You need to use cross site JavaScript techniques to be able to do this. Here is an example.</p>
<p>Put another file into your server, call it helper.html, include it to your file served by customers server using an iframe. Set the src of the helper.html iframe with adding get parameters, ie. http:/myserver.com/helper.html?param1=a&param2=b, in the helper file use javascript to call method on parent's parent ( parent.parent.messageFromIframe(params) ). Which is the page on your server itself. Since helper and the container page are on the same domain it should work. The technique is popular, for instance Facebook was using it for their Javascript api.</p>
http://stackoverflow.com/questions/1318997/reading-text-from-another-applications-frame/1319817#13198170Answer by M. Utku ALTINKAYA for Reading Text from Another Application's FrameM. Utku ALTINKAYA2009-08-23T22:58:14Z2009-08-23T22:58:14Z<p>You can always use sockets for IPC in a platform independent way.</p>
http://stackoverflow.com/questions/1319766/why-wont-favicon-load-in-firefox/1319797#13197970Answer by M. Utku ALTINKAYA for why won't favicon load in firefox?M. Utku ALTINKAYA2009-08-23T22:46:55Z2009-08-23T22:46:55Z<p>you can try to put the icon to the root.</p>
http://stackoverflow.com/questions/1319726/is-there-a-way-that-i-can-detect-if-firefox-will-open-a-particular-url-in-an-ie-t/1319784#13197842Answer by M. Utku ALTINKAYA for Is there a way that I can detect if Firefox will open a particular URL in an IE tab?M. Utku ALTINKAYA2009-08-23T22:40:59Z2009-08-23T22:40:59Z<p>well I am not sure how FF's IE tab works but I assume they share cookies set a cookie when it is IE and check whether it exists and do not show the warning. This will only remove the warning after first usage if my assumption about cookies is correct.</p>
<p>Second is more hacky, use css :visited puseudo styles to detect whether your user has ever downloaded the XPI of firefox tabs. </p>
http://stackoverflow.com/questions/1319615/proper-way-to-declare-custom-exceptions-in-modern-python/1319660#13196603Answer by M. Utku ALTINKAYA for Proper way to declare custom exceptions in modern Python?M. Utku ALTINKAYA2009-08-23T21:46:54Z2009-08-23T22:10:27Z<p>You should override <code>__repr__</code> or <code>__unicode__</code> methods instead of using message, the args you provide when you construct the exception will be in <code>args</code> member variable when you need.</p>
http://stackoverflow.com/questions/1319214/shorter-more-pythonic-way-of-writing-an-if-statements/1319687#13196871Answer by M. Utku ALTINKAYA for Shorter, more pythonic way of writing an if statements M. Utku ALTINKAYA2009-08-23T22:05:59Z2009-08-23T22:05:59Z<p>you can use "a = b if c else d" but if you are using a python version prior to 2.5</p>
<pre><code>bc = c.page == "blog" and "on" or "off"
</code></pre>
<p>can do the trick also.</p>
http://stackoverflow.com/questions/1319564/triangle-edge-calculation/1319635#13196350Answer by M. Utku ALTINKAYA for Triangle Edge CalculationM. Utku ALTINKAYA2009-08-23T21:37:29Z2009-08-23T21:37:29Z<p>draw a line from (x1, y1) to x1, ((y3-y2) / (x3-x2)) * (x1-x2) + y2</p>
http://stackoverflow.com/questions/1319511/what-to-ask-for-in-web-services-documentation/1319561#13195612Answer by M. Utku ALTINKAYA for What to ask for in web services documentation?M. Utku ALTINKAYA2009-08-23T21:05:38Z2009-08-23T21:05:38Z<p>First of all a test service url other than production.</p>
http://stackoverflow.com/questions/1196405/how-to-keep-yourself-from-perfectionism-when-coding/1319535#13195355Answer by M. Utku ALTINKAYA for how to keep yourself from perfectionism when codingM. Utku ALTINKAYA2009-08-23T20:55:59Z2009-08-23T21:02:43Z<p>The reason behind the "perfectionism" is the fear of losing control. It is a symptom of a design issue, a good design should provide abstraction which is essential to have ability to isolate not-so-well code. </p>
<p>edit:
Besides, "the perfect code" is often is also less maintainable, lack of evolution process makes it more fragile.</p>
http://stackoverflow.com/questions/1319494/in-multiple-inheritance-which-class-should-be-listed-first-my-app-class-or-lang/1319518#13195180Answer by M. Utku ALTINKAYA for In Multiple inheritance, which class should be listed first, My-App-Class or Language-Framework-ClassM. Utku ALTINKAYA2009-08-23T20:48:52Z2009-08-23T20:48:52Z<p>since you do not want to override any methods on the library base class, you do not need multiple inheritance here, using single inheritance and adding an instance of your own base class as a instance variable seems like the best choice. </p>
<p>you can even go further and override <strong>getattr</strong> method to check your member instance's variables also, but this may confuse anyone but you in the team.</p>
http://stackoverflow.com/questions/1300951/start-learning-c-without-knowing-c/1319501#13195010Answer by M. Utku ALTINKAYA for Start learning C# without knowing C ?M. Utku ALTINKAYA2009-08-23T20:42:01Z2009-08-23T20:42:01Z<p>similarities between C++ and C# ends in lexer. </p>
http://stackoverflow.com/questions/1319424/sending-an-e-mail-from-a-website-without-server-side-scripting/1319464#13194642Answer by M. Utku ALTINKAYA for Sending an E-mail from a website without Server-Side scripting.M. Utku ALTINKAYA2009-08-23T20:25:28Z2009-08-23T20:25:28Z<p>Well in theory, you can use cross site XHR like techniques, tag inclusions etc, but you will need another server supporting server side scripting, you can use a simple free service, for instance GAE as silent stated for this. You will also need security, you can use a capcha service which is free also. But in reality, it does not worth it. </p>
http://stackoverflow.com/questions/1319389/how-to-find-the-function-name-of-namespaced-constructors-in-javascript/1319401#1319401-1Answer by M. Utku ALTINKAYA for How to find the function name of namespaced constructors in javascript?M. Utku ALTINKAYA2009-08-23T19:56:10Z2009-08-23T19:56:10Z<p>what you want is the name of the holder in the namespace so.</p>
<pre><code>function getName(namespace, obj) {
for name in namespace:
if (namespace[name] == obj) return name;
}
console.log(getNameOf(MyJSLib, john2.constructor));
</code></pre>
http://stackoverflow.com/questions/1315755/javascript-dependency-solution-with-arbitrary-ordered-includes1Javascript dependency solution with arbitrary ordered includesM. Utku ALTINKAYA2009-08-22T11:01:33Z2009-08-22T11:47:53Z
<p>Hello,</p>
<p>The problem is this, I include a script, it uses another one, but what if that dependency also needs another script to be ready ? Which means loading it is not enough, but I also need to be sure its callback for initialization has been called before executing. The order of script tags in DOM can not be correct if the dependencies are allowed to require more dependencies and manifest them when them after being loaded.</p>
<p>The problems gets more complex when scripts and dependencies require more than one dependency, or a file satisfies more than one component. </p>
<p>Using.js seems to have a good approach for this, but first, the dependency relations should be known before they are being loaded, second the author states that some tests are not working anymore on Firefox. I suspect it is the blocking the execution thing, which seems a bit magical.</p>
<p>I have written a loader to handle this, completely asynchronous, which actually seems to be work. But I can not shake the gut feeling of doing something has been solved before, or can not be that complex.</p>
http://stackoverflow.com/questions/539116/context-processor-using-werkzeug-and-jinja2/1230952#12309520Answer by M. Utku ALTINKAYA for Context processor using Werkzeug and Jinja2M. Utku ALTINKAYA2009-08-05T02:53:48Z2009-08-05T02:53:48Z<p>You can from django.template import RequestContext, and populate your context with dictionaries inside it.</p>
http://stackoverflow.com/questions/1338095/can-i-write-python-applications-using-pyobjc-that-target-non-jailbroken-iphones/1338097#1338097Comment by M. Utku ALTINKAYA on Can I write Python applications using PyObjC that target NON-jailbroken iPhones? M. Utku ALTINKAYA2009-11-28T02:10:51Z2009-11-28T02:10:51ZYes I've heard that, Ruby interpreter embedded shiny cocos games seems to be approved by Apple in practice, but agreement is clear so there is a certain risk of application getting pulled.http://stackoverflow.com/questions/1550810/objective-c-way-of-serializing-arrays-that-contain-different-types/1550882#1550882Comment by M. Utku ALTINKAYA on Objective-c way of serializing arrays that contain different typesM. Utku ALTINKAYA2009-10-12T12:34:00Z2009-10-12T12:34:00ZThank you Ed and Peylow, I thought the I have to use the method I mentioned above to serialize arrays, did not notice they also implements NSCoder protocol.http://stackoverflow.com/questions/1550810/objective-c-way-of-serializing-arrays-that-contain-different-types/1550882#1550882Comment by M. Utku ALTINKAYA on Objective-c way of serializing arrays that contain different typesM. Utku ALTINKAYA2009-10-11T15:10:43Z2009-10-11T15:10:43ZI have implemented NSCoding protocol, but the coder instance only have "encodeArrayOfObjCType:count:at" method, which requires explicitly passing the type of the elements. Am I missing something ?http://stackoverflow.com/questions/1300951/start-learning-c-without-knowing-c/1319501#1319501Comment by M. Utku ALTINKAYA on Start learning C# without knowing C ?M. Utku ALTINKAYA2009-08-26T22:59:15Z2009-08-26T22:59:15Z :%s/C++/C http://stackoverflow.com/questions/1337009/stretching-li-and-contents/1337034#1337034Comment by M. Utku ALTINKAYA on Stretching LI and contentsM. Utku ALTINKAYA2009-08-26T22:32:56Z2009-08-26T22:32:56ZI looked the code and edited the answer, there is actually padding in your A. Check it. http://stackoverflow.com/questions/1337009/stretching-li-and-contents/1337034#1337034Comment by M. Utku ALTINKAYA on Stretching LI and contentsM. Utku ALTINKAYA2009-08-26T20:30:25Z2009-08-26T20:30:25Zsorry did not notice the linkhttp://stackoverflow.com/questions/1329508/groovy-or-django/1329665#1329665Comment by M. Utku ALTINKAYA on Groovy or DjangoM. Utku ALTINKAYA2009-08-25T22:11:21Z2009-08-25T22:11:21Zbut groovy consumes less energy :)http://stackoverflow.com/questions/1329420/get-a-link-to-not-refresh-the-pageComment by M. Utku ALTINKAYA on Get a #link to not refresh the page?M. Utku ALTINKAYA2009-08-25T16:59:14Z2009-08-25T16:59:14ZPasting the actual html code will may help.http://stackoverflow.com/questions/1329508/groovy-or-django/1329514#1329514Comment by M. Utku ALTINKAYA on Groovy or DjangoM. Utku ALTINKAYA2009-08-25T16:52:33Z2009-08-25T16:52:33Zcalling it as a subset of Django is more accurate. You can only use django templates and url dispatcher, the rest, models, additional applications such as auth, admin is not available. http://stackoverflow.com/questions/1320795/monitoring-iframe-content-status-from-the-parent-page/1321449#1321449Comment by M. Utku ALTINKAYA on monitoring iframe content/status from the parent pageM. Utku ALTINKAYA2009-08-24T15:23:13Z2009-08-24T15:23:13Zyes an iframe which loads a page from the container's server inside iframed page. http://stackoverflow.com/questions/1320795/monitoring-iframe-content-status-from-the-parent-page/1321449#1321449Comment by M. Utku ALTINKAYA on monitoring iframe content/status from the parent pageM. Utku ALTINKAYA2009-08-24T12:27:11Z2009-08-24T12:27:11Zbasically you communicate with the helper file bey setting the src iframe contains it and passing parameters. the js code inside the helper can access the parent's parent's functions, which means you can call any js code inside your own container page. http://stackoverflow.com/questions/1319726/is-there-a-way-that-i-can-detect-if-firefox-will-open-a-particular-url-in-an-ie-t/1319784#1319784Comment by M. Utku ALTINKAYA on Is there a way that I can detect if Firefox will open a particular URL in an IE tab?M. Utku ALTINKAYA2009-08-23T23:52:12Z2009-08-23T23:52:12ZI assume you have a link to this particular page on the site, and some users configured that it will open in IE tab. Why don't you change the link to point a redirect page that you can get information about the user agent there. You can set the cookie on that request. http://stackoverflow.com/questions/1319766/why-wont-favicon-load-in-firefox/1319797#1319797Comment by M. Utku ALTINKAYA on why won't favicon load in firefox?M. Utku ALTINKAYA2009-08-23T23:13:35Z2009-08-23T23:13:35Zdownvoter, can you explain the reason ?http://stackoverflow.com/questions/1319564/triangle-edge-calculation/1319635#1319635Comment by M. Utku ALTINKAYA on Triangle Edge CalculationM. Utku ALTINKAYA2009-08-23T22:28:54Z2009-08-23T22:28:54Zyes division by zero since you can not draw a vertical line that intersects a vertical line. they are parallel. By vertical I assume you mean parallel to y axis. Handle the exception or just check whether x values are the same for B and C, do not attempt to draw if they arehttp://stackoverflow.com/questions/1319615/proper-way-to-declare-custom-exceptions-in-modern-python/1319618#1319618Comment by M. Utku ALTINKAYA on Proper way to declare custom exceptions in modern Python?M. Utku ALTINKAYA2009-08-23T21:54:05Z2009-08-23T21:54:05Zthe entire point of deprecating "message" is trying to make people create new classes for each message. So, if you do not have any argument, just return a string you want in str method.