User Asaf R - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T18:50:38Zhttp://stackoverflow.com/feeds/user/6827http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1251579/differences-in-design-targeting-apple-products-especially-iphone2Differences in design targeting Apple products, especially iPhoneAsaf R2009-08-09T15:28:04Z2009-11-08T13:31:10Z
<p>Hi,</p>
<p>I'm thinking of starting to build software for Apple products, specifically the iPhone. </p>
<p>Having built software atop several platforms in the past - Linux/Unix, Android, .Net, Win32 - I know that every platform has a certain "way" of looking at it that makes building software for it simple.</p>
<p>For instance, Win32 communicates with an application mainly by sending <em>messages</em> that are usually read in a message pump loop while .Net raises <em>events</em>, and Android has <em>intents</em> that are sent to activities and intent-receivers. These are all similar concepts, but they have subtle differences that suggest, and sometime force, different design.</p>
<p>If you came to building Apple based software from a different platform, what were the key concepts that you found different? How were they different from what you knew? How did it affect the design of your software?</p>
<p>Thanks,<br />
Asaf</p>
http://stackoverflow.com/questions/1635645/what-is-hwnd-in-vc/1635680#16356803Answer by Asaf R for what is HWND in vc++Asaf R2009-10-28T07:37:39Z2009-10-28T07:44:14Z<p>Hi,</p>
<p>HWND is a "handle to a window" and is part of the Win32 API . HWNDs are essentially pointers (IntPtr) with values that make them (sort of) point to a window-structure data. In general HWNDs are part an example for applying the <a href="http://en.wikipedia.org/wiki/Abstract%5Fdata%5Ftype" rel="nofollow">ADT</a> model.</p>
<p>If you want a Control's HWND see <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.handle.aspx" rel="nofollow">Control.Handle</a> property. It is an IntPtr which value is an HWND.</p>
<p>Since HWND are not a .Net entity, they need to be released manually. This is done with <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.destroyhandle.aspx" rel="nofollow">Control.DestroyHandle()</a>. </p>
<p>Pay close attention to creation and destruction of HWND. Responsibility for object destruction is unusual in .Net and is in general a source for bugs and memory leaks.</p>
http://stackoverflow.com/questions/548402/list-all-possible-combinations-of-k-integers-between-1-n-n-choose-k2List all possible combinations of k integers between 1...n (n choose k)Asaf R2009-02-14T03:05:56Z2009-10-25T20:18:09Z
<p>Hi,</p>
<p>Out of no particular reason I decided to look for an algorithm that produces all possible choices of k integers between 1...n, where the order amongst the k integer doesn't matter (the n choose k thingy). </p>
<p>From the exact same reason, which is no reason at all, I also implemented it in C#. My question is:</p>
<p><em>Do you see any mistake in my algorithm or code? And, more importantly, <strong>can you suggest a better algorithm?</em></strong></p>
<p>Please pay more attention to the algorithm than the code itself. It's not the prettiest code I've ever written, although do tell if you see an error.</p>
<p><strong>EDIT:</strong> Alogirthm explained - <br/></p>
<ul>
<li>We hold k indices, where each index is inner than its previous. </li>
<li>This creates k nested <em>for</em> loops, where loop i's index is indices[i]. </li>
<li>indices[i] runs from indices[i - 1] + 1 to n - k + i + 1.</li>
</ul>
<p>CODE:</p>
<pre><code>public class AllPossibleCombination
{
int n, k;
int[] indices;
List<int[]> combinations = null;
public AllPossibleCombination(int n_, int k_)
{
if (n_ <= 0)
{
throw new ArgumentException("n_ must be in N+");
}
if (k_ <= 0)
{
throw new ArgumentException("k_ must be in N+");
}
if (k_ > n_)
{
throw new ArgumentException("k_ can be at most n_");
}
n = n_;
k = k_;
indices = new int[k];
indices[0] = 1;
}
/// <summary>
/// Returns all possible k combination of 0..n-1
/// </summary>
/// <returns></returns>
public List<int[]> GetCombinations()
{
if (combinations == null)
{
combinations = new List<int[]>();
Iterate(0);
}
return combinations;
}
private void Iterate(int ii)
{
//
// Initialize
//
if (ii > 0)
{
indices[ii] = indices[ii - 1] + 1;
}
for (; indices[ii] <= (n - k + ii + 1); indices[ii]++)
{
if (ii < k - 1)
{
Iterate(ii + 1);
}
else
{
int[] combination = new int[k];
indices.CopyTo(combination, 0);
combinations.Add(combination);
}
}
}
}
</code></pre>
<p>I apologize for the long question, it might be fit for a blog post, but I do want the community's opinion here.</p>
<p>Thanks, <br/>
Asaf</p>
http://stackoverflow.com/questions/1611936/calling-a-dll-from-c-vs2008/1611974#16119743Answer by Asaf R for Calling a DLL from C# (VS2008)Asaf R2009-10-23T08:00:27Z2009-10-23T08:05:41Z<p>Hi,</p>
<p>It seems to me the DLL you're trying to load isn't a <em>managed</em> DLL, or one that the CLR can treat as managed.</p>
<p>One solution would be to use <em>managed C++</em> (C++/CLI) to build a wrapper around the DLL. Another is to use PInvoke which is explained <a href="http://www.microsoft.com/indonesia/msdn/pinvoke.aspx" rel="nofollow">here</a> and there's a tool for it I came across <a href="http://blogs.msdn.com/vbteam/archive/2008/03/14/making-pinvoke-easy.aspx" rel="nofollow">here</a>.</p>
<p>You can also look in this thread: <a href="http://techrepublic.com.com/5208-11196-0.html?forumID=73&threadID=180858&messageID=1843371" rel="nofollow">Unable to Use DLL of VB6 Into ASP.NET</a>.</p>
<p>Hope one these work out for you,
Asaf</p>
http://stackoverflow.com/questions/1592767/why-does-fxcop-treat-protected-as-public/1592776#15927763Answer by Asaf R for Why does FxCop treat protected as public?Asaf R2009-10-20T06:18:46Z2009-10-20T06:18:46Z<p>I'm not sure if that's what you meant, but in general protected members are part of a class' interface.</p>
<p>You don't want public member variables because they make your implementation inflexible. Protected member variables do the same since classes that inherit from yours will depend on them, thus making your implementation inflexible.</p>
<p>Asaf</p>
http://stackoverflow.com/questions/377877/sim-application-toolkit-development0SIM Application Toolkit developmentAsaf R2008-12-18T13:45:55Z2009-10-15T16:11:04Z
<p>Hi,</p>
<p>I'm designing a client/server cellular application, and am considering using SIM Application Toolkit for part of it. </p>
<p>Where are there good resource to get started with learning the technologies available for SIM cards? </p>
<p>I'm more interested in understanding the benefits of existing technologies, their percent of the installed base, limitations, etc. and less interested in how to write code (for now).</p>
<p>Thanks,<br>
Asaf.</p>
http://stackoverflow.com/questions/1550932/i-was-asked-this-in-a-recent-interview/1551060#15510601Answer by Asaf R for I was asked this in a recent interviewAsaf R2009-10-11T16:16:35Z2009-10-11T16:16:35Z<p>I think what he wanted you to do, and I'm <strong>not</strong> saying it's a good idea, is to use the computer memory space. </p>
<p>If you use a 64-bit (virtual) memory address, and assuming you have all the address space for your data (which is <em>never</em> the case) you can store a one-byte value. </p>
<p>You could use the ProductID as an address, casting it to a pointer, and then get that byte, which might be an offset in another memory for actual data.</p>
<p>I <strong>wouldn't</strong> do it this way, but perhaps that is the answer they were looking for.</p>
<p>Asaf</p>
http://stackoverflow.com/questions/67135/how-do-i-move-extra-informative-answer-to-a-different-question0How do I move extra-informative answer to a different question? [closed]Asaf R2008-09-15T21:25:39Z2009-09-03T19:30:56Z
<p>A question I asked (<a href="http://stackoverflow.com/questions/62491/how-to-create-j2me-midlets-for-nokia-using-eclipse">link</a>) has an answer that's important, but answers a different question (<a href="http://stackoverflow.com/questions/62491/how-to-create-j2me-midlets-for-nokia-using-eclipse#63728">link</a>). </p>
<p>How can I move the answer to a proper question without copy-pasting it? It is important to me that the original author of the answer retains credit for it.</p>
<p>Thanks,<br>
Asaf.</p>
http://stackoverflow.com/questions/1319327/binary-tree-node-fault/1319362#13193625Answer by Asaf R for Binary Tree Node FaultAsaf R2009-08-23T19:36:17Z2009-08-23T19:36:17Z<p>This is an incorrect solution to the problem. Neil Butterworth already noted on your code, I'll note on the algorithm.</p>
<p>Your algorithm only checks a very specific case - whether a grandchild node points to its grandparent. What you should do is collect the parents along the way to a node and see that a node's child isn't one of its parents.</p>
<p>There are many ways to do this. One is to add a counter to your node struct and set all nodes' counters to zero before you begin traversing the tree. Whenever you reach a node you make sure the counter is zero and then increase it by one. This means that if you see a child whose counter isn't zero, you've already visited it and therefore the tree isn't valid.</p>
http://stackoverflow.com/questions/120618/logging-in-j2me7Logging in J2MEAsaf R2008-09-23T12:21:17Z2009-08-04T13:19:24Z
<p>Hi,</p>
<p>What logging solutions exist for j2me? </p>
<p>I'm specifically interested in easily excluding logging for "release" version, to have a smaller package & memory footprint. </p>
http://stackoverflow.com/questions/1020233/bison-and-flex-coding-conventions1Bison (and flex) coding conventionsAsaf R2009-06-19T22:00:39Z2009-07-31T19:00:02Z
<p>Hi,</p>
<p>What are coding conventions and guidelines you suggest for writing Bison (.y) and flex (.lex) files? </p>
<p>Please address the length of the code sections and their style.</p>
<p>Thanks,<br />
Asaf </p>
<p>P.S., <br/>
There's an old thread about it <a href="http://compilers.iecc.com/comparch/article/03-02-009" rel="nofollow">here</a>, but I'm looking for a more detailed answer (and to have it on SO!).</p>
http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/1189470#11894701Answer by Asaf R for Biggest performance improvement you've had with the smallest change?Asaf R2009-07-27T17:22:19Z2009-07-27T17:22:19Z<p>It was a simple network simulator done as a homework assignment (in C#) and meant to run only once. However, when it ran it did so so slowly it would have taken over 24 hours to finish. </p>
<p>A rather quick glance at the code discovered that every simulation step recalculated the average of elements of a list. That list also grew at each step, thus landing a nice O(n^2) complexity. I changed the calculation by keeping the last average and using it to calculate the new, resulting in an O(n) complexity.</p>
<p>The total time decreased from an expected over 24H to about 15 minutes, about <strong>two orders of magintude</strong>.</p>
http://stackoverflow.com/questions/644099/what-programming-languages-do-the-top-tier-universities-teach/1154860#11548600Answer by Asaf R for What programming languages do the top tier Universities teach?Asaf R2009-07-20T17:35:20Z2009-07-20T17:43:06Z<p><a href="http://www.technion.ac.il" rel="nofollow">The Technion</a> (Israel Institution of Technology):</p>
<p>The mandatory part of the degree involves the following languages:</p>
<ul>
<li>C as the first language (Introduction to CS), C++ later on.</li>
<li>Java</li>
<li>C Shell*</li>
<li>Matlab*</li>
<li>MIPS Assembly, or PDP-11 (depends on the faculty - <a href="http://www.cs.technion.ac.il" rel="nofollow">CS</a> or <a href="http://www.ee.technion.ac.il" rel="nofollow">EE</a>)</li>
</ul>
<p>Some optional courses involve:</p>
<ul>
<li>Lisp</li>
<li>C# - as an optional language for creating simulations</li>
</ul>
<p>(*) Kind o' argumentative if these are "Languages".</p>
<p>I'd say C++ is the backbone of Software Engineering here.</p>
<p>Note: The Technion is considered Israel's best engineering school and one of the 30 best technological instutions world-wide. I consider that <em>top-tier</em>, and hopefully I'm right - I'm deeply invested in it already (3 years down, one more to go).</p>
http://stackoverflow.com/questions/1154517/c-compiler-for-windows/1154658#11546584Answer by Asaf R for C++ Compiler For WindowsAsaf R2009-07-20T16:50:03Z2009-07-20T16:50:03Z<p><strong>The Best</strong> is kind of hard to define.</p>
<p>Visual C++ is the most common one, and perhaps the most cost effective. There are some free ones and I'm not familiar with them.</p>
<p>As far as speed optimization, the Intel C++ compiler is the best, but it's rather costly.</p>
<p>Asaf</p>
http://stackoverflow.com/questions/720578/3d-modeling-for-programmers113D modeling for programmersAsaf R2009-04-06T08:16:16Z2009-06-18T23:36:51Z
<p>Hi,</p>
<p>I'm studying Computer Graphics as part of my curriculum at my university. The course focuses on scene modeling, rather than rendering or other aspects of computer graphics. We're learning the math behind it and OpenSceneGraph to actually run something. </p>
<p>As part of the HW, and also out of sheer interest, I need to create a 3D model, and I have artistic freedom in this regard. I also have freedom to model it directly in code, or load a model I do in a tool of my choosing.</p>
<p>The problem is, I'm not good in the visual art - I have lots of good ideas, but no clue how to model them. I can't draw or sketch well, either. But, I <strong>want</strong> to be able to do CG.</p>
<p>How would you suggest I approach 3D modeling?</p>
<p>Thanks,<br />
Asaf</p>
<p><strong>EDIT:</strong> Some people have down voted this (w/o leaving a comment). Let me emphasize - I'm a programmer, and I want to get familiar with an art that is adjacent to ours. Make no mistake, it is a programming relevant question.</p>
<p><strong>EDIT 2:</strong> Thanks for all who answered. I'll choose my accepted answer after I look at the alternatives you suggested. I apologize for the (expected) delay.</p>
<p><strong>Conclusion:</strong> </p>
<ul>
<li>I have decided to look into Blender. I'm looking into some of its <a href="http://www.blender.org/education-help/video-tutorials/" rel="nofollow">video tutorials</a> mentioned by Ruben Steins. <br />Thanks <em>Ruben</em>.</li>
<li>I did take a quick peek at <a href="http://chumbalum.swissquake.ch/" rel="nofollow">MilkShape 3D</a> and will use it if I see Blender is too much for my needs, or my current learning "budget" (time, attention). <br />Thanks <em>m3rLinEz</em>.</li>
<li>After I learn some basic skills, I intend to follow <em>Mastermind</em>'s advice. <br />Thank you <em>Mastermind</em>.</li>
<li>When I've done some 3D art, and am ready to improve my skills, I'm going to visit the places <em>fa.</em> had posted. <br />Thank you too, <em>fa.</em> </li>
</ul>
<p>Thanks to all those who took time to reply, and all those who were open minded enough not to downvote a programming, but not code, related question.</p>
http://stackoverflow.com/questions/1014619/how-to-solve-bison-warning-has-no-declared-type1How to solve Bison warning "... has no declared type"Asaf R2009-06-18T19:08:10Z2009-06-18T19:41:30Z
<p>Hi,</p>
<p>Running Bison on this file:</p>
<pre><code>%{
#include <iostream>
int yylex();
void yyerror(const char*);
%}
%union
{
char name[100];
int val;
}
%token NUM ID
%right '='
%left '+' '-'
%left '*'
%%
exp : NUM {$$.val = $1.val;}
| ID {$$.val = vars[$1.name];}
| exp '+' exp {$$.val = $1.val + $3.val;}
| ID '=' exp {$$.val = vars[$1.name] = $3.val;}
;
%%
</code></pre>
<p>Leads to warnings of the kind of:</p>
<blockquote>
<p>warning: $$ of 'exp' has no declared type.</p>
</blockquote>
<p><strong>What does it mean and how do I solve it?</strong></p>
<p>Thanks,<br />
Asaf</p>
http://stackoverflow.com/questions/1014619/how-to-solve-bison-warning-has-no-declared-type/1014622#10146223Answer by Asaf R for How to solve Bison warning "... has no declared type"Asaf R2009-06-18T19:08:34Z2009-06-18T19:08:34Z<p>The union (%union) defined is not intended to be used directly. Rather, you need to tell Bison which member of the union is used by which expression. </p>
<p>This is done with the %type directive. </p>
<p>A fixed version of the code is:</p>
<pre><code>%{
#include <iostream>
int yylex();
void yyerror(const char*);
%}
%union
{
char name[100];
int val;
}
%token NUM ID
%right '='
%left '+' '-'
%left '*'
%type<val> exp NUM
%type<name> ID
%%
exp : NUM {$$ = $1;}
| ID {$$ = vars[$1];}
| exp '+' exp {$$ = $1 + $3;}
| ID '=' exp {$$ = vars[$1] = $3;}
;
%%
</code></pre>
http://stackoverflow.com/questions/845355/do-programming-language-compilers-first-translate-to-assembly-or-directly-to-mach/845362#8453622Answer by Asaf R for Do programming language compilers first translate to assembly or directly to machine code?Asaf R2009-05-10T13:50:52Z2009-05-10T13:50:52Z<p>Compilers, in general, parse the source code into an Abstract Syntax Tree (an AST), then into some intermediate language. Only then, usually after some optimizations, they emit the target language.</p>
<p>About gcc, it can compile to a wide variety of targets. I don't know if for x86 it compiles to assembly first, but I did give you some insight onto compilers - and you asked for that too.</p>
http://stackoverflow.com/questions/377877/sim-application-toolkit-development/724443#7244430Answer by Asaf R for SIM Application Toolkit developmentAsaf R2009-04-07T07:14:02Z2009-04-07T07:14:02Z<p>It's been a while and no one answered, so I'll leave my own somewhat shallow answer.</p>
<p>The Wikipedia article on <a href="http://en.wikipedia.org/wiki/SIM%5FToolkit" rel="nofollow">SIM Toolkit</a> has some good links to get started with. <strong>Still, if you happen to know better sources, I will prefer your answer to mine.</strong></p>
<p>Asaf</p>
http://stackoverflow.com/questions/578056/what-learning-habits-can-you-suggest4What learning habits can you suggest?Asaf R2009-02-23T15:39:56Z2009-02-26T05:26:50Z
<p>Hi,</p>
<p>Our profession often requires deep learning; sitting down and reading, and understanding. I'm currently undergoing an exam period, and I'm looking for ways to learn more effectively.</p>
<p>I'm not asking about what to learn, or whether to prefer blogs over books, etc. My question is much more physical than that - </p>
<p><strong>What do you do when need to study, and I mean study hard?</strong></p>
<p>I'm looking for answers such as</p>
<ul>
<li>I slice my time to 2.5 hours intervals and make a break between them, but never during.</li>
<li>I keep a jar of water nearby.</li>
<li>I wake up at 6 o'clock sharp and start my day with a session at the gym.</li>
</ul>
<p><strong><em>What good learning habits did acquire, or wish you had acquired?</em></strong></p>
<p>(I know this isn't strictly programming related, but it is programmers related)</p>
http://stackoverflow.com/questions/575840/which-c-compiler-do-you-recommend-for-windows/576006#5760064Answer by Asaf R for Which C Compiler do you recommend for windowsAsaf R2009-02-22T22:53:46Z2009-02-22T22:53:46Z<p>If you look for performance optimization go with an <a href="http://www.intel.com/cd/software/products/asmo-na/eng/284132.htm" rel="nofollow">Intel compiler</a>. It's expensive, though.</p>
<p>By the way, it should produce optimized code that's pretty optimized for AMD machines as well.</p>
http://stackoverflow.com/questions/574532/odd-problem-unit-testing-internal-classes-with-vs-2008/574567#5745670Answer by Asaf R for Odd problem unit testing internal classes with VS 2008Asaf R2009-02-22T08:21:32Z2009-02-22T08:42:01Z<p>It might be a problem with IntelliSense DB file. Try to delete it and have VS try and rebuild the DB. </p>
<p>To do this close the solution and delete (all?) .ncb files. To be on the safe side, just rename them to something like .nc4 or whatever. Reopen the solution and rebuild it. Let me know if it works.</p>
<p><strong>EDIT:</strong> Apparently, ncb files are only for C++ projects. I don't know where the IntelliSense DB for C# projects are, nor could I find out. If I were you, I would still try to find a way to reset the DB.</p>
<p>Asaf</p>
http://stackoverflow.com/questions/573841/how-do-you-playback-mp4-video-in-a-windows-forms-app/573848#5738482Answer by Asaf R for How do you playback MP4 video in a Windows Forms AppAsaf R2009-02-21T22:37:38Z2009-02-22T08:15:33Z<p>You could <a href="http://msdn.microsoft.com/en-us/library/bb383953.aspx" rel="nofollow">Embed Windows Media Player on a Form</a>.</p>
<p><strong>UPDATE</strong>: WMP doesn't support MP4 out-of-the-box, but there are <a href="http://www.tech-faq.com/windows-media-player-mp4-codec.shtml" rel="nofollow">codecs packs</a> that add such support. It's possible to bundle a codec installation with your setup, but I think WMP is able to fetch and install MP4 codec on its own.</p>
http://stackoverflow.com/questions/573825/how-to-cultivate-algorithm-intuition10How to cultivate algorithm intuition?Asaf R2009-02-21T22:18:11Z2009-02-22T00:08:36Z
<p>Hi,</p>
<p>When faced with a problem in software I usually see a solution right away. Of course, what I see is usually somewhat off, and I always need to sit down and design (admittedly, I usually don't design enough), but I get a certain <strong><em>intuition</em></strong> right away.</p>
<p>My problem is I don't get that same intuition when it comes to advanced algorithms. I feel much more up to the task of building another <a href="http://www.facebook.com" rel="nofollow">Facebook</a> then building another <a href="http://www.google.com" rel="nofollow">Google</a> search, or a <a href="http://www.pandora.com/mgp.shtml" rel="nofollow">Music Genom project</a>. It's probably because I've been <em>building</em> software for quite some time, but I have little experience with <em>composing</em> algorithms.</p>
<p><strong>I would like the community's advice on what to read and what projects to undertake to be better at composing algorithms.</strong></p>
<p>(This question has nothing to do with <a href="http://en.wikipedia.org/wiki/Algorithmic_composition" rel="nofollow">Algorithmic composition</a>. Well, almost nothing)</p>
http://stackoverflow.com/questions/542378/embedding-a-file-explorer-instance-in-a-winforms-app-form/572720#5727200Answer by Asaf R for Embedding a File Explorer instance in a WinForms app formAsaf R2009-02-21T10:05:23Z2009-02-21T10:12:55Z<p>If you want to open a different window to display the target folder's content you can use System.Windows.Forms.OpenFileDialog, or SaveFileDialog, or inherit from FileDialog and extend it.</p>
<p>To allow the user to select a folder you can use FolderBrowserDialog, though as a user I don't like that control.</p>
<p>Does this help or you absolutely have to embed a control in your form?</p>
<p>Asaf</p>
http://stackoverflow.com/questions/571671/how-do-you-build-a-visual-studio-like-ui/571682#5716823Answer by Asaf R for How do you build a Visual Studio like UI?Asaf R2009-02-20T23:43:11Z2009-02-20T23:43:11Z<p>If you're building an application that also needs some of VS's behavior, then you might want to consider extending VS IDE itself. See <a href="http://msdn.microsoft.com/vsx" rel="nofollow">MSDN Visual Studio Extensibily</a>. Note that starting with VS 2008 you can ship IDE extensions as stand-alone (I think it's called shell mode).</p>
http://stackoverflow.com/questions/563316/is-there-a-generic-way-to-see-what-is-a-website-running-on/563329#5633296Answer by Asaf R for Is there a generic way to see what is a website running on ?Asaf R2009-02-18T23:24:49Z2009-02-18T23:24:49Z<p>You can check the X-Powered-By header. There's a list of common ones <a href="http://www.http-stats.com/X-Powered-By" rel="nofollow">here</a>. The header might be not be there if the Admin took it off.</p>
<p>Hope this helps, <br />
Asaf</p>
http://stackoverflow.com/questions/522856/what-are-good-resources-for-css-templates-or-templated-layout-sites/555303#5553030Answer by Asaf R for What are good resources for CSS templates or templated layout sites?Asaf R2009-02-17T02:07:58Z2009-02-17T02:07:58Z<p>It's a bit off your question, but aside from using good resources (guides, blogs, etc.), when I see something I like - a nice style somewhere - I just go to the code and see how it's done. </p>
<p>Firebug's <em>inspect</em> mode helps in locating relevant code quickly.</p>
<p>Asaf.</p>
http://stackoverflow.com/questions/457157/calendar-date-picker-control-for-mobile-devices-in-asp-net0Calendar (date-picker) control for mobile devices in ASP.NetAsaf R2009-01-19T10:22:41Z2009-02-15T21:01:19Z
<p>Hi,</p>
<p>I'm looking for a calendar control (aka date-picker) that works on mobile devices. The problem is most devices are w/o JavaScript, or with poor JavaScript support.</p>
<p>ASP.Net's built-in control uses JavaScript to do post-back. ASP.Net has a mobile calendar control, but it isn't fully localizable (on low end devices where it displays a step-by-step date picker its buttons are always in English).</p>
<p>I am thinking of overriding the built-in calendar control to replace the JavaScript post-back directly with parametrized links.</p>
<p>My <em>compound</em> question is -
Do you know of a good JavaScript-less calendar control, of a way to get rid of JavaScript in ASP.Net built-in control, or of a way to localize ASP.Net's mobile calendar control?</p>
<p>If you know all of the above doesn't exist - do you think replacing the post-back with parametrized links is a good way to go? Do you have another suggestion?</p>
<p>Thanks,<br />
Asaf</p>
<p><br />
<br />
<br />
EDIT: Currently, I'm not concerned with formatting - the device I'm targeting displays the date-picker well. I'm concerned only with the small problem of getting it to work...</p>
http://stackoverflow.com/questions/457157/calendar-date-picker-control-for-mobile-devices-in-asp-net/551576#5515760Answer by Asaf R for Calendar (date-picker) control for mobile devices in ASP.NetAsaf R2009-02-15T21:01:19Z2009-02-15T21:01:19Z<p>What I ended up doing is building a custom calendar control. </p>
<p>For now, I used a table, but it will have to change when I want to support more devices. Since I'm targeting right-to-left languages, a table is already a pain. </p>
<p>@troelskn - I didn't go for <code><select></code> because they're not comfortable for a user using a mobile device, but thank you for the advice.</p>
http://stackoverflow.com/questions/1682281/variables-scoping-when-inheritingComment by Asaf R on variables scoping when inheritingAsaf R2009-11-05T17:42:07Z2009-11-05T17:42:07ZSeems to me you didn't override m_MyString; it's defined only in A. If that's the case it should work just fine. Is it the case?http://stackoverflow.com/questions/1611936/calling-a-dll-from-c-vs2008/1611974#1611974Comment by Asaf R on Calling a DLL from C# (VS2008)Asaf R2009-10-23T12:41:49Z2009-10-23T12:41:49Z@tush1r: You can learn more about mixed mode c++ assemblies - native & managed c++ in the same assembly - here: <a href="http://msdn.microsoft.com/en-us/library/x0w2664k%28VS.80%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>
With mixed mode you can use the native c++ to call DLLs and the managed to expose it to the .Net world.http://stackoverflow.com/questions/1611936/calling-a-dll-from-c-vs2008/1611974#1611974Comment by Asaf R on Calling a DLL from C# (VS2008)Asaf R2009-10-23T12:25:58Z2009-10-23T12:25:58Z@tush1r: You can either use PInvoke (directly from C#) or create a C++/CLI wrapper. There's no use in doing both. I'll try and add more on how to create such a wrapper soon.http://stackoverflow.com/questions/1550932/i-was-asked-this-in-a-recent-interview/1551060#1551060Comment by Asaf R on I was asked this in a recent interviewAsaf R2009-10-11T19:35:42Z2009-10-11T19:35:42Z@Jeremy - It's not a very feasible solution, but with 20 decimal digits and a 64bit address space you are left with some "extra space".
Make a handcrafted process that fulfills requests for ID resolution and have no other app activity in that process.
It's possible to create hierarchies to have less memory in each process.
I wouldn't do it if I were paid to, maybe if my life depended on it. Maybe.http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/211116#211116Comment by Asaf R on What is the single hardest programming skill or concept you have learned?Asaf R2009-10-10T18:04:52Z2009-10-10T18:04:52ZIt's still on the "TODO" list for me...http://stackoverflow.com/questions/1319327/binary-tree-node-fault/1319362#1319362Comment by Asaf R on Binary Tree Node FaultAsaf R2009-08-24T04:17:02Z2009-08-24T04:17:02Z@Bua - You can use an external data structure for the counter, for instance you can use an std::map where the address is the key and the counter is the data.http://stackoverflow.com/questions/1318886/keyboard-recommendation-for-a-developer/1318903#1318903Comment by Asaf R on Keyboard Recommendation for a DeveloperAsaf R2009-08-23T16:12:28Z2009-08-23T16:12:28ZI think you meant the Microsoft Natural 4000. The link is broken, too. Btw, I prefer the set with the mouse. I think it's called Microsoft Wireless Natural 7000.http://stackoverflow.com/questions/720578/3d-modeling-for-programmers/720599#720599Comment by Asaf R on 3D modeling for programmersAsaf R2009-04-07T10:47:22Z2009-04-07T10:47:22ZYou're pretty modest. It took me a while to notice you created osgExport. Now I owe you for answering and for the tool - so double thanks to you!http://stackoverflow.com/questions/621933/semicolons-in-c/621934#621934Comment by Asaf R on Semicolons in C#Asaf R2009-03-07T15:13:07Z2009-03-07T15:13:07Z@Chris - maybe, but it's a question of style and personal taste more than of optimization.http://stackoverflow.com/questions/279148/get-65k-records-only-listed-in-combo-box-from-a-table-of-155k-records/286936#286936Comment by Asaf R on get 65K records only listed in combo box from a table of 155K records.Asaf R2009-03-06T04:27:08Z2009-03-06T04:27:08Z+1 for "65k is ... enough". Reminiscent of "640K is enough...".http://stackoverflow.com/questions/585155/problem-with-vista-home-basic-and-isa-serverComment by Asaf R on Problem with Vista home Basic and ISA ServerAsaf R2009-02-25T08:47:40Z2009-02-25T08:47:40ZPlease provide more details - what authentication method did you configure on ISA (NTLM, Kerberos, etc)? Which version of ISA?http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/181890#181890Comment by Asaf R on What's the most egregious pop culture perversion of programming?Asaf R2009-02-23T19:35:00Z2009-02-23T19:35:00Z@Aitken - sounds true; anyway, most contemporary films feature Macs, and not PCs. Shame on them!http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175432#175432Comment by Asaf R on What's the most egregious pop culture perversion of programming?Asaf R2009-02-23T19:20:49Z2009-02-23T19:20:49Z@John - wow. That's a creative way to find a password... didn't know it exist.http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/179093#179093Comment by Asaf R on What's the most egregious pop culture perversion of programming?Asaf R2009-02-23T19:18:07Z2009-02-23T19:18:07ZYeah, if they want good looking programmers - they can hire real ones, no need for "actors"...http://stackoverflow.com/questions/575840/which-c-compiler-do-you-recommend-for-windowsComment by Asaf R on Which C Compiler do you recommend for windowsAsaf R2009-02-23T08:40:16Z2009-02-23T08:40:16Z@jalf - For instance, a compiler that optimizes code, isn't necessarily a low cost one. I think cost is more important for "school" scenarios than optimized code. There's no one universally acknowledged "good" compiler.