User melfar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T03:38:23Zhttp://stackoverflow.com/feeds/user/9804http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/66107/how-to-identify-specific-digits-of-an-integer-input-in-c/67308#673080Answer by melfar for How to identify specific digits of an integer input in C?melfar2008-09-15T21:44:44Z2009-12-08T20:15:56Z<p>For all those who refer to the question as the homework question: I have to say, most of you provided a homework answer. </p>
<p>You don't do division/modulus to get the digits in production code, firstly because it's suboptimal (your CPU is designed for binary arithmetics not decimal) and secondly because it's unintuitive. Even if it's not originally a string, it's more optimal to convert it to one and then count the characters (std::count is the way to go in C++).</p>
http://stackoverflow.com/questions/1251430/proxy-pass-to-multiple-upstreams0Proxy pass to multiple upstreamsmelfar2009-08-09T13:56:40Z2009-11-28T18:07:51Z
<p>Is there a directive in apache or nginx (preferably) that allows to replicate an incoming stream to multiple upstreams simultaneously?</p>
<p>The reason I need this: I want to stream live video content from one client to a number of Flash RMTP servers that will make that content available to a number of clients.<br />
This setup is working on one streaming server, but I want to add more.</p>
<p>Any help is greatly appreciated.</p>
http://stackoverflow.com/questions/1353361/problems-replicating-drag-and-drop-with-mouse-events0Problems replicating drag-and-drop with mouse eventsmelfar2009-08-30T07:36:21Z2009-08-30T20:36:17Z
<p>Hello, I want to replicate the standard startDrag/stopDrag events with my own routine to alter things a bit, and I run into some kind of event propagation or bubbling problem. Here is my code:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
mouseDown="mouseDown = true" mouseUp="mouseDown = false"
mouseMove="mouseMove(event)">
<mx:Script>
<![CDATA[
private var mouseDown:Boolean = false;
private var oldMouseX:int = 0, oldMouseY:int = 0;
private function mouseMove(e:MouseEvent):void {
if (mouseDown) {
object.x += (e.localX - oldMouseX);
object.y += (e.localY - oldMouseY);
}
oldMouseX = e.localX;
oldMouseY = e.localY;
trace(e.localX);
}
]]>
</mx:Script>
<mx:Label id="object" text="Drag me" />
</mx:Application>
</code></pre>
<p>The problem with this code is that as you drag the object to the right, you will see in the trace that occasionally some random localX values arrive there, resulting in the object jerking from side to side.</p>
<p>I don't understand how to fix that part, I do think it's the label which bubbles the mousemove event, but I don't understand how to stop it from doing that.<br />
Any suggestions are greatly appreciated!</p>
http://stackoverflow.com/questions/1082020/how-to-access-system-time-finer-than-1-second-on-the-iphone/1082054#10820541Answer by melfar for How to access system time finer than 1 second on the iPhonemelfar2009-07-04T11:45:53Z2009-07-04T11:45:53Z<pre><code>self.animationTimer = [NSTimer scheduledTimerWithTimeInterval:animationInterval
target:self selector:@selector(drawView) userInfo:nil
repeats:YES];
</code></pre>
<p>That's a snippet from the OpenGL app template. If you're looking for a high resolution timer, it's probably what you need.</p>
http://stackoverflow.com/questions/875391/cocoa-why-do-i-have-to-retain-and-release-a-function-parameter/875624#8756241Answer by melfar for Cocoa why do I have to retain and release a function parameter?melfar2009-05-17T22:13:04Z2009-05-17T22:13:04Z<p>If you learn by videos better, Stanford University has <a href="http://deimos3.apple.com/WebObjects/Core.woa/Browse/itunes.stanford.edu.2024353965.02024353968" rel="nofollow">published</a> some videos on the iPhone development which also cover Cocoa and Objective C to a certain extent. Check out lecture 3, it makes a good overview on memory management, with examples and discussion.</p>
http://stackoverflow.com/questions/309880/custom-view-transition-in-opengl-es4Custom view transition in OpenGL ESmelfar2008-11-21T19:24:47Z2009-05-17T21:02:07Z
<p>I'm trying to create a custom transition, to serve as a replacement for a default transition you would get here, for example:</p>
<pre><code>[self.navigationController pushViewController:someController animated:YES];
</code></pre>
<p>I have prepared an OpenGL-based view that performs an effect on some static texture mapped to a plane (let's say it's a copy of the flip effect in Core Animation). What I don't know how to do is:</p>
<ul>
<li>grab current view content and make a texture out of it (I remember seeing a function that does just that, but can't find it)</li>
<li>how to do the same for the view that is currently offscreen and is going to replace current view </li>
<li>are there some APIs I can hook to in order to make my transition class as native as possible (make it a kind of Core Animation effect)?</li>
</ul>
<p>Any thoughts or links are greatly appreciated!</p>
<p><strong>UPDATE</strong></p>
<p>Jeffrey Forbes's answer works great as a solution to capture the content of a view. </p>
<p>What I haven't figured out yet is how to capture the content of the view I want to transition to, which should be invisible until the transition is done.</p>
<p>Also, which method should I use to present the OpenGL view?
For demonstration purposes I used pushViewController. That affects the navbar, though, which I actually want to go one item back, with animation, check this vid for explanation:</p>
<p><a href="http://vimeo.com/4649397" rel="nofollow">http://vimeo.com/4649397</a>.</p>
<p>Another option would be to go with presentViewController, but that shows fullscreen.
Do you think maybe creating another window (or view?) could be useful?</p>
http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/108216#1082164Answer by melfar for What are some useful TextMate shortcuts?melfar2008-09-20T13:58:27Z2008-09-20T13:58:27Z<ul>
<li><code>ctrl+shift+K</code> deletes current line</li>
<li><code>ctrl+shift+J</code> merges current line with the next line</li>
</ul>
http://stackoverflow.com/questions/76467/what-programming-screencasts-podcast-resources-do-you-know/80856#808560Answer by melfar for What programming screencasts/podcast resources do you know?melfar2008-09-17T07:40:44Z2008-09-17T07:40:44Z<p><a href="http://gitcasts.com" rel="nofollow">GitCasts</a></p>
<p>Just for fun: <a href="http://revision3.com/tekzilla/" rel="nofollow">Tekzilla</a></p>
http://stackoverflow.com/questions/51971/can-anyone-recommend-a-complete-objc-cocoa-or-cocoa-touch-tutorial/66354#663543Answer by melfar for Can anyone recommend a complete ObjC/Cocoa or Cocoa-Touch tutorial?melfar2008-09-15T20:01:38Z2008-09-15T20:08:34Z<p><a href="http://www.iphonesdkarticles.com/" rel="nofollow">iPhone SDK Articles</a> really got me started with iphone dev. Sadly no updates during the last couple of weeks.</p>
<p><a href="http://www.sunsetlakesoftware.com/2008/08/05/lessons-molecules-opengl-es" rel="nofollow">Lessons from Molecules</a> for those new to OpenGL on the iPhone</p>
<p><a href="http://toucharcade.com/2008/07/07/under-the-hood-the-iphones-gaming-mettle/" rel="nofollow">The IPhone's gaming mettle</a> describes the hardware of the iPhone</p>
http://stackoverflow.com/questions/192951/pushing-pixels-on-the-iphone/192983#192983Comment by melfar on Pushing pixels on the iPhonemelfar2009-10-31T13:20:10Z2009-10-31T13:20:10ZYou get about 5 fps with this method…http://stackoverflow.com/questions/1638785/get-current-autoincrement-value/1638963#1638963Comment by melfar on Get current auto_increment valuemelfar2009-10-28T18:10:50Z2009-10-28T18:10:50ZThat's the best way IMO. Although I would do concatenation on the PHP end, keep mysql a little less busy.http://stackoverflow.com/questions/1638785/get-current-autoincrement-value/1638820#1638820Comment by melfar on Get current auto_increment valuemelfar2009-10-28T17:47:29Z2009-10-28T17:47:29ZYour assumption on $next_id is prone to race conditions, as pointed out by Dereleased.http://stackoverflow.com/questions/1353361/problems-replicating-drag-and-drop-with-mouse-events/1353489#1353489Comment by melfar on Problems replicating drag-and-drop with mouse eventsmelfar2009-08-31T07:53:23Z2009-08-31T07:53:23ZpointTo did fix this, thank you! Although I can see that using stageX instead of localX in this example does the same thing. I think I've totally lost track of the original problem while working on this contrived example. :D Thanks for the source code of your smoothDrag function, I think I am going to be able to scale it to the real-world situation now.http://stackoverflow.com/questions/1353361/problems-replicating-drag-and-drop-with-mouse-events/1353489#1353489Comment by melfar on Problems replicating drag-and-drop with mouse eventsmelfar2009-08-30T14:06:34Z2009-08-30T14:06:34ZYou mean I should add if (e.target != object) return; on the top of the function? If I do so, the object can't be dragged at all.
Otherwise, if I add if (e.target != this) return; then I can drag by moving over the background and not by the object.http://stackoverflow.com/questions/305223/jon-skeet-facts/468613#468613Comment by melfar on Jon Skeet Facts?melfar2009-05-17T23:19:53Z2009-05-17T23:19:53ZUpvoted for "Nobody has EVER dared to close the <JonSkeet> tag". :Dhttp://stackoverflow.com/questions/875377/which-floor-is-redundant-in-floorsqrtfloorx/875474#875474Comment by melfar on Which floor is redundant in floor(sqrt(floor(x)))?melfar2009-05-17T22:37:50Z2009-05-17T22:37:50Z"note that n <= m < n + 1"
That doesn't seem to be true, since floor(n) can be < nhttp://stackoverflow.com/questions/874830/best-sqlite-practices-on-the-iphone/874863#874863Comment by melfar on Best SQLite practices on the iPhonemelfar2009-05-17T21:53:44Z2009-05-17T21:53:44ZAre you sure it's memory leak free, safe to use etc. ? It certainly isn't complete and apparently unsupported.
I say, go with CoreData and tune performance when (if) it gets badhttp://stackoverflow.com/questions/309880/custom-view-transition-in-opengl-es/312112#312112Comment by melfar on Custom view transition in OpenGL ESmelfar2009-05-17T21:05:38Z2009-05-17T21:05:38ZThanks for your advice and sorry for my extra slow reaction! Could you check the updated question, maybe you will have some further advice?http://stackoverflow.com/questions/791895/iphone-opengl-es-2d-background-texture/791923#791923Comment by melfar on iPhone OpenGL ES 2d background texturemelfar2009-05-11T21:12:20Z2009-05-11T21:12:20ZTextures are required to be the power of two (64x64, 256x256 etc) up until 2.2.1, not sure about 3.0 (it does show variable-sized textures in the 3.0 simulator, can't test it on the device yet as I'm still on 2.2.1).http://stackoverflow.com/questions/155964/what-are-best-practices-that-you-use-when-writing-objective-c-and-cocoa/156652#156652Comment by melfar on What are best practices that you use when writing Objective-C and Cocoa?melfar2009-01-13T09:06:13Z2009-01-13T09:06:13ZWhat test frameworks do you recommend?http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/325839#325839Comment by melfar on What is your favorite "programmer" t-shirt?melfar2008-11-28T14:11:17Z2008-11-28T14:11:17ZThis just looks like one of those they give out on seminarshttp://stackoverflow.com/questions/129028/how-to-deal-with-the-developers-refusing-to-use-certain-technologies-or-tools/129521#129521Comment by melfar on How to deal with the developers refusing to use certain technologies or tools?melfar2008-11-21T21:05:53Z2008-11-21T21:05:53ZWow. You sure like to boss people around. A good company always sticks for their employees — even if that means losing a customer. If you think your employees are idiots, there's noone else to blame except you. BTW, the topic starter's company sounds to be an utterly boring one.