active questions tagged advanced - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:56:55Zhttp://stackoverflow.com/feeds/tag/advancedhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809705/global-placement-delete2Global "placement" delete[]Gwaredd2009-11-27T16:41:11Z2009-11-28T17:50:09Z
<p>I am trying to replace new/delete with my own allocator(s). So, overriding placement new and delete - quite happy with that. Looks something like this ...</p>
<pre><code>void* operator new( size_t size, Allocator* a )
{
return a->Alloc( size );
}
template<class T> inline void MyDelete( T* p, Allocator* a )
{
if( p )
{
p->~T();
a->Free( p );
}
}
</code></pre>
<p>The C++ language specifies that, for placement delete, you have to explicitly call the ~dtor. The compiler doesn't do it for you. Whether this is a templatised operator delete or explicit function as shown.</p>
<p>See <a href="http://www2.research.att.com/~bs/bs%5Ffaq2.html#placement-delete" rel="nofollow">http://www2.research.att.com/~bs/bs_faq2.html#placement-delete</a></p>
<p>The problem is - how can I get this to work for array delete[]? I know I need to iterate through the array and call ~dtor myself. Therefore I need the size of the array, </p>
<p><em>Edited for clarity</em></p>
<p>I can store this information or infer it from the block size. However, the problem is the compiler (MSVC v9) does different things if I am allocating an array of objects with destructors compared to ones without, i.e. if there is a dtor it will allocate an extra 4 bytes. This is because the compiler for standard delete[] needs to do the same thing and can pair up the appropriate code for delete[]. </p>
<p>However in my own "placement" delete[] I have no way of knowing what the compiler did or determining safely at compile time if the class has a dtor. </p>
<p>E.g.</p>
<pre><code>char buf[ 1000 ];
MyClass* pA = new( buf ) MyClass[ 5 ];
</code></pre>
<p>Here the value of pA is buf + 4 if there exists ~MyClass() and the amount of memory allocated is sizeof(MyClass) * 5 + 4. However if there is no dtor then pA == buf and the amount of memory allocated is sizeof(MyClass) * 5.</p>
<p>So my question is - is this behaviour a language standard and consistent across compilers or is it a peculiar to MSVC? Has anyone else got a good solution to this problem? I guess the only option is to not use new[] and do the construction myself which is fine but then the calling code syntax is a little unusual .. or force every class to have a destructor.</p>
http://stackoverflow.com/questions/54929/hidden-features-of-asp-net109Hidden Features of ASP.NETVaibhav2008-09-10T18:20:47Z2009-11-27T22:59:22Z
<p>There are always features that would be useful in fringe scenarios, but for that very reason most people don't know them. I am asking for features that are not typically taught by the text books.</p>
<p>What are the ones that you know?</p>
http://stackoverflow.com/questions/1779685/what-is-operator-in-c13What is ->* operator in C++?acidzombie242009-11-22T19:22:31Z2009-11-22T22:06:19Z
<p>C++ continues to surprise me.
Today i found out about the ->* operator. It is overloadable but i have no idea how to invoke it. I manage to overload it in my class but i have no clue how to call it.</p>
<pre><code>struct B { int a; };
struct A
{
typedef int (A::*a_func)(void);
B *p;
int a,b,c;
A() { a=0; }
A(int bb) { b=b; c=b; }
int operator + (int a) { return 2; }
int operator ->* (a_func a) { return 99; }
int operator ->* (int a) { return 94; }
int operator * (int a) { return 2; }
B* operator -> () { return p; }
int ff() { return 4; }
};
void main()
{
A a;
A*p = &a;
a + 2;
}
</code></pre>
<p>edit:</p>
<p>Thanks to the answer. To call the overloaded function i write</p>
<pre><code>void main()
{
A a;
A*p = &a;
a + 2;
a->a;
A::a_func f = &A::ff;
(&a->*f)();
(a->*f); //this
}
</code></pre>
http://stackoverflow.com/questions/161872/hidden-features-of-perl65Hidden features of Perl?Adam Bellaire2008-10-02T11:49:22Z2009-11-19T12:21:56Z
<p>What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?</p>
<p>Guidelines:</p>
<ul>
<li>Try to limit answers to the Perl core and not CPAN</li>
<li>Please give an example and a short description</li>
</ul>
<p><hr /></p>
<h2>Hidden Features also found in other languages' Hidden Features:</h2>
<p>(These are all from <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162257">Corion's answer</a>)</p>
<ul>
<li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c#">C#</a>
<ul>
<li>Duff's Device</li>
<li>Portability and Standardness</li>
<li>Quotes for whitespace delimited lists and strings</li>
<li>Aliasable namespaces</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Java</a>
<ul>
<li>Static Initalizers</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">JavaScript</a>
<ul>
<li>Functions are First Class citizens</li>
<li>Block scope and closure</li>
<li>Calling methods and accessors indirectly through a variable</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Ruby</a>
<ul>
<li>Defining methods through code</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">PHP</a>
<ul>
<li>Pervasive online documentation</li>
<li>Magic methods</li>
<li>Symbolic references</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Python</a>
<ul>
<li>One line value swapping</li>
<li>Ability to replace even core functions with your own functionality</li>
</ul></li>
</ul>
<h2>Other Hidden Features:</h2>
<p>Operators:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">The bool quasi-operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162058">The flip-flop operator</a>
<ul>
<li>Also used for <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">list construction</a></li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162004">The <code>++</code> and unary <code>-</code> operators work on strings</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162075">The repetition operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161943">The spaceship operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162239">The || operator (and // operator) to select from a set of choices</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162152">The diamond operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249">Special cases of the <code>m//</code> operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162060">The tilde-tilde "operator"</a></li>
</ul>
<p>Quoting constructs:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">The qw operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">Letters can be used as quote delimiters in q{}-like constructs</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163374">Quoting mechanisms</a></li>
</ul>
<p>Syntax and Names:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">There can be a space after a sigil</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">You can give subs numeric names with symbolic references</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">Legal trailing commas</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Grouped Integer Literals</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168925">hash slices</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#195254">Populating keys of a hash from an array</a></li>
</ul>
<p>Modules, Pragmas, and command-line options:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">use strict and use warnings</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Taint checking</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162085">Esoteric use of -n and -p</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163541">CPAN</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601"><code>overload::constant</code></a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#164255">IO::Handle module</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163725">Safe compartments</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#310083">Attributes</a></li>
</ul>
<p>Variables:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162357">Autovivification</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161985">The <code>$[</code> variable</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168947">tie</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#172118">Dynamic Scoping</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">Variable swapping with a single statement</a></li>
</ul>
<p>Loops and flow control:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Magic goto</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481"><code>for</code> on a single variable</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592">continue clause</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Desperation mode</a></li>
</ul>
<p>Regular expressions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565">The <code>\G</code> anchor</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976"><code>(?{})</code> and '(??{})` in regexes</a></li>
</ul>
<p>Other features:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">The debugger</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206">Special code blocks such as BEGIN, CHECK, and END</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700">The <code>DATA</code> block</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">New Block Operations</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Source Filters</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Signal Hooks</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309">map</a> (<a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809">twice</a>)</li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842">Wrapping built-in functions</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#189883">The <code>eof</code> function</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#194796">The <code>dbmopen</code> function</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Turning warnings into errors</a></li>
</ul>
<p>Other tricks, and meta-answers:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532">cat files, decompressing gzips if needed</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271">Perl Tips</a></li>
</ul>
<p><hr /></p>
<p><strong>See Also:</strong></p>
<ul>
<li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li>
<li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li>
<li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li>
<li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li>
<li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li>
<li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li>
</ul>
http://stackoverflow.com/questions/1688334/advanced-php-polymorphism-question2Advanced PHP Polymorphism questionDaniel L2009-11-06T15:30:39Z2009-11-06T15:43:25Z
<p>Hey guys!</p>
<p>I have a class which has a function to retrieve children elements from a database. The following code will be rather pseudo cause I want to keep it as easy as possible.</p>
<pre><code>abstract class SomeHostObject extends SomeObject {
function getChild($identifier) {
global $database;
$id = $database->select('Some MySQL Query');
// that is the problem
return ?new? ???($id);
}
}
</code></pre>
<p>As you see, the class <code>SomeHostObject</code> is abstract and has to be extended.</p>
<p>The thing is that the <code>getChild()</code> should not return a <code>SomeHostObject</code> instance (not only because it can't even be instantiated) but a new instance of the class that extends <code>SomeHostObject</code>.</p>
<p>For example, if there was a class <code>PageObject</code> which extends <code>SomeHostObject</code>, the function <code>getChild()</code> should return a new <code>PageObject</code> instance with the new id.</p>
<p>I don't know whether to call that question 'advanced' or not but to me it's a major problem so c'mon and answer me. Right now! :D</p>
<p>Thanks a ton in advance!</p>
http://stackoverflow.com/questions/1130502/why-is-the-advanced-search-not-working-with-price-criteria-in-magento0Why is the advanced search not working with price criteria in magento?sim92009-07-15T10:02:14Z2009-11-04T10:15:53Z
<p>The advanced search with all the default product attributes are working fine and gives the desired result except for the price criteria where even if i fill the values with the correct range and price that is present in the product list, the message "No items were found using the following search criteria" is displayed.I tried printing the query that is in the model class within function getProductCollection(), and it seemed ok.Also in the query I checked if all the required attributes are selected and that also seemed fine..Can someone please give me some suggestions to solve this problem? </p>
http://stackoverflow.com/questions/1624242/customizing-the-advanced-peoplesearch-question0Customizing the advanced peoplesearch questionErik4042009-10-26T11:15:19Z2009-10-26T11:15:19Z
<p>I am trying to customize the advanced peoplesearch, the particular field I want to change is Department, at our client these departments are set and I already made a content type which is a dropdown containing all the departments, I don't see a way to change the departmen field in advanced search from a textbox to a dropdownbox,...</p>
<p>This is the porperty</p>
<pre><code><Property Name="Department" ManagedName="Department" ProfileURI="urn:schemas-microsoft-com:sharepoint:portal:profile:Department"/>
</code></pre>
<p>any hints? ;-)</p>
http://stackoverflow.com/questions/1599464/mysql-select-nested-query-very-complicated0Mysql SELECT nested query, very complicated?smartbear2009-10-21T08:32:11Z2009-10-21T08:44:18Z
<p>Okay, first following are my tables:</p>
<p>Table house:</p>
<p>id | items_id |</p>
<p>1 | 1,5,10,20 |</p>
<p><hr /></p>
<p>Table items:</p>
<p>id | room_name | refer</p>
<p>1 | kitchen | 3</p>
<p>5 | room1 | 10</p>
<p><hr /></p>
<p>Table kitchen:</p>
<p>id | detail_name | refer</p>
<p>3 | spoon | 4</p>
<p>5 | fork | 10</p>
<p><hr /></p>
<p>Table spoon:</p>
<p>id | name | color | price | quantity_available |</p>
<p>4 | spoon_a | white | 50 | 100 |</p>
<p>5 | spoon_b | black | 30 | 200 |</p>
<p>How to do a nested select statement, where I want to select id, name, color, price and quantity_available column, from the each value inside the 'items_id' column in 'house' table?</p>
<p>This is very challenging!!</p>
<p>EDIT:</p>
<p>after read robin's answer</p>
<p>Table house:</p>
<p>id | items_id |</p>
<p>house1 | 1 |</p>
<p>house1 | 5 |</p>
<p>house1 | 10 |</p>
<p>house2 | 20 |</p>
<p>If this it the house table, how to do the nested, join, or whatever select statement??</p>
http://stackoverflow.com/questions/1573547/after-reading-simply-rails-20after reading Simply Rails 2Delirium tremens2009-10-15T16:32:50Z2009-10-15T18:17:58Z
<p>If I have only the information in Simply Rails 2 now and I want to create more complicated apps next, what should I do to learn that?</p>
http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development79How to get started in operating system developmentGiovanni Galbo2008-09-04T04:28:09Z2009-09-25T00:26:32Z
<p>One thing I've always wanted to do is develop my very own operating system (not necessarily fancy like Linux or Windows, but better than a simple boot loader which I've already done).</p>
<p>I'm having a hard time finding resources/guides that take you past writing a simple "Hello World" OS. </p>
<p>I know lots of people will probably recommend I look at Linux or BSD; but the code base for systems like that is (presumably) so big that I wouldn't know where to start.</p>
<p>Any suggestions?</p>
<p>Update: To make it easier for people who land on this post through Google here are some OS development resources:</p>
<p><a href="http://www.osix.net/modules/article/?id=359" rel="nofollow">Writing Your Own Operating System</a> (Thanks Adam)</p>
<p><a href="http://www.linuxfromscratch.org/" rel="nofollow">Linux From Scratch</a> (Thanks John)</p>
<p><a href="http://en.wikipedia.org/wiki/SharpOS%5F%28operating%5Fsystem%29" rel="nofollow">SharpOS (C# Operating System)</a> (Thanks lomaxx)</p>
<p><a href="http://www.minix3.org/" rel="nofollow">Minix3</a> and <a href="http://minix1.woodhull.com/mxdownld.html" rel="nofollow">Minix2</a> (Thanks Mike)</p>
<p><a href="http://wiki.osdev.org/Main%5FPage" rel="nofollow">OS Dev Wiki</a> and <a href="http://forum.osdev.org/" rel="nofollow">Forums</a> (Thanks Steve)</p>
<p><a href="http://www.osdever.net/" rel="nofollow">BonaFide</a> (Thanks Steve)</p>
<p><a href="http://osdever.net/bkerndev/Docs/intro.htm" rel="nofollow">Bran</a> (Thanks Steve)</p>
<p><a href="http://www.jamesmolloy.co.uk/tutorial%5Fhtml/index.html" rel="nofollow">Roll your own toy UNIX-clone OS</a> (Thanks Steve)</p>
<p>I also found this great resource on my own:</p>
<p><a href="http://www.brokenthorn.com/Resources/OSDevIndex.html" rel="nofollow">Broken Thorn OS Development Series</a></p>
<p>Other resources:</p>
<p>basszero has a good suggestion, start with an early version of an open source OS and work with it: <a href="http://kerneltrap.org/node/14002" rel="nofollow">Linux: The 0.01 Release</a> and <a href="http://kerneltrap.org/files/linux-0.01.tar.bz2" rel="nofollow">http://kerneltrap.org/files/linux-0.01.tar.bz2</a></p>
<p><strike>Steve found a blog post on how to setup an OS dev environment in Visual Studio:
<a href="http://www.managed-world.com/archive/2006/09/10/90829.aspx" rel="nofollow">Writing Your Own OS With Visual Studio 2005</a></strike></p>
<p>I found a nice resource named <a href="http://mikeos.berlios.de/" rel="nofollow">MikeOS</a>, "MikeOS is a learning tool to demonstrate how simple OSes work. It uses 16-bit real mode for BIOS access, so that it doesn't need complex drivers"</p>
<p><em>Updated 11/14/08</em> </p>
<p>I found some resources at <a href="http://www.freebyte.com/operatingsystems/#osprojects" rel="nofollow">Freebyte's Guide to...Free and non-free Operating Systems</a> that links to kits such as OSKit and ExOS library. These seem super useful in getting started in OS development.</p>
<p><em>Updated 2/23/09</em></p>
<p><a href="http://stackoverflow.com/users/42019/ric-tokyo">Ric Tokyo</a> recommended <a href="http://code.google.com/p/nanoos/" rel="nofollow">nanoos</a> in this <a href="http://stackoverflow.com/questions/580308/making-an-os-in-c/580362#580362">question</a>. Nanoos is an OS written in C++.</p>
<p><em>Updated 3/9/09</em></p>
<p>Dinah provided some useful Stack Overflow discussion of aspiring OS developers: <a href="http://stackoverflow.com/questions/340674/roadblocks-in-creating-a-custom-operating-system">Roadblocks in creating a custom operating system</a> discusses what pitfalls you might encounter while developing an OS
and <a href="http://stackoverflow.com/questions/130065/os-development">OS Development</a> is a more general discussion.</p>
<p><em>Updated 7/9/09</em></p>
<p>LB provided a link to the <a href="http://www.scs.stanford.edu/07au-cs140/pintos/pintos.html" rel="nofollow">Pintos Project</a>, an education OS designed for students learning OS development.</p>
<p><em>Updated 7/27/09 (Still going strong!)</em></p>
<p>I stumbled upon an <a href="http://academicearth.org/courses/operating-systems-and-system-programming" rel="nofollow">online OS course</a> from Berkley featuring 23 lectures.</p>
<p><a href="http://tomos.sourceforge.net/" rel="nofollow">TomOS</a> is a fork of <a href="http://mikeos.berlios.de/" rel="nofollow">MikeOS</a> that includes a little memory manager and mouse support. As MikeOS, it is designed to be an educational project. It is written in NASM assembler.</p>
<p><em>Updated 8/4/09</em></p>
<p>I found the <a href="http://www.cs.berkeley.edu/~kubitron/courses/cs162-F08/" rel="nofollow">slides and other materials</a> to go along with the online Berkeley lectures listed above. </p>
<p><em>Updated 8/23/09</em></p>
<p>All <a href="http://stackoverflow.com/questions/tagged/osdev">questions tagged osdev</a> on stackoverflow</p>
<p><a href="http://www.eecs.harvard.edu/syrah/os161/" rel="nofollow">OS/161</a> is an academic OS written in c that runs on a simulated hardware. This OS is similar in Nachos. Thanks Novelocrat!</p>
<p>tangurena recommends <a href="http://en.wikipedia.org/wiki/MicroC/OS-II" rel="nofollow">http://en.wikipedia.org/wiki/MicroC/OS-II</a>, an OS designed for embedded systems. There is a <a href="http://rads.stackoverflow.com/amzn/click/1578201039" rel="nofollow">companion book</a> as well.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0672327201" rel="nofollow">Linux Kernel Development</a> by Robert Love is suggested by Anders. It is a "widely acclaimed insider's look at the Linux kernel."</p>
<p><em>Updated 9/18/2009</em></p>
<p>Thanks Tim S. Van Haren for telling us about <a href="http://www.gocosmos.org/index.en.aspx" rel="nofollow">Cosmos</a>, an OS written entirely in c#.</p>
<p>tgiphil tells us about <a href="http://www.codeplex.com/mosa" rel="nofollow">Managed Operating System Alliance (MOSA) Framework</a>, "a set of tools, specifications and source code to foster development of managed operating systems based on the Common Intermediate Language."</p>
<p><em>Update 9/24/2009</em></p>
<p>Steve found a couple resources for development on windows using Visual Studio, check out <a href="http://www.brokenthorn.com/Resources/OSDevMSVC.html" rel="nofollow">BrokenThorn's guide setup with VS 2005</a> or <a href="http://wiki.osdev.org/Visual%5FStudio" rel="nofollow">OSDev's VS Section</a>.</p>
http://stackoverflow.com/questions/1423589/does-row-exist-is-another-table0Does row exist is another table?The Pixel Developer2009-09-14T19:58:25Z2009-09-14T20:16:50Z
<h1>Tables</h1>
<p><hr /></p>
<p>file_logs</p>
<ul>
<li>file_id</li>
<li>user_id</li>
</ul>
<p>files</p>
<ul>
<li>id</li>
<li>name</li>
<li>etc ...</li>
</ul>
<p>published_ratings</p>
<ul>
<li>author_id</li>
<li>file_id</li>
<li>comment</li>
<li>etc ...</li>
</ul>
<h1>Scenario</h1>
<p><hr /></p>
<p>I am creating a download log and need to display which files a user has rated as well as the unrated ones, this has to be done with 1 query.</p>
<p>I already took a crack at this,</p>
<pre><code>SELECT
files.*,
IF(file_logs.user_id = published_file_ratings.author_id, TRUE, FALSE) AS rated
FROM file_logs
JOIN files
ON file_logs.file_id = files.id
LEFT JOIN published_file_ratings
ON file_logs.file_id = published_file_ratings.file_id
WHERE file_logs.user_id = 8
GROUP BY id
</code></pre>
<p>The problem with this query is that if an incorrect user came up first the results would be wrong.</p>
<p>The result should be an array of all the files the user has downloaded with a "rated" column depicting if they've rated the file or not.</p>
<p>Any help is <em>really</em> appreciated.</p>
http://stackoverflow.com/questions/1249030/advanced-datagrid-flex-3-itemrenderer-and-tree-display0Advanced DataGrid Flex 3 - ItemRenderer and Tree displayCuriousMind2009-08-08T14:32:02Z2009-09-05T06:38:09Z
<p>Hi,</p>
<p>I am using Advanced DataGrid of Flex 3 with hierarchical data. The itemRenderer is a TextInput which accepts numbers. When I enter data into the given field and click the corresponding expand tree icon for the row, I want the amount entered in tree node should get cascaded to its child rows. But I found the nature of advanced DataGrid errorneous.
When I enter data and click on tree icon, the data is not populated in child windows unless i wont take the focus out from the editing control.
I tried using itemEditEnd, itemFocusOut etc but of no use. I have to explicitly click on any of the other columns and then expand tree.
Am I making any mistake anywhere?</p>
http://stackoverflow.com/questions/1367297/matthew-curlands-advanced-visual-basic-60Matthew Curland's Advanced Visual Basic 6 [closed]SlowGrace2009-09-02T12:04:30Z2009-09-03T08:21:12Z
<p>Does anyone has the electronic copy of Matthew Curland's Advanced Visual Basic 6?</p>
<p>I am reading this book and hope for an electronic copy of it so that I can copy and paste codes into VB IDE when I study the examples.</p>
<p>Does anyone has it? And could anyone kindly send me a copy of it?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/514994/flex-displaying-the-advanced-datagrid-data-in-pages1Flex : Displaying the Advanced DataGrid data in PagesManilka2009-02-05T08:11:57Z2009-09-01T09:00:01Z
<p>I have a flex application where Im displaying login data using an advanced datagrid. Is it possible to show the data in this advanced datagrid, by a page wise way? if so do you have any sample coding to do this. thanks</p>
http://stackoverflow.com/questions/1344555/custom-reflection-functionality-in-net0Custom reflection functionality in .NetAhmed Khalaf2009-08-28T01:15:43Z2009-08-28T05:28:17Z
<p>Is it possible to override reflection functionality ?</p>
http://stackoverflow.com/questions/1326673/c-winforms-irregular-windows3C# Winforms Irregular WindowsKing2009-08-25T07:51:24Z2009-08-25T08:36:36Z
<p>How do I create windows with irregular shapes using WinForms and C#?</p>
http://stackoverflow.com/questions/1293057/advanced-if-statement-in-c1Advanced IF statement in CBenjamin2009-08-18T10:27:44Z2009-08-18T10:44:50Z
<p>Hi,</p>
<p>I've just reverse engineered a binary with IDA and loaded Hex Ray to check out a specific function. The generate C source code contains the following if statement:</p>
<pre><code>LP_ret_GlobalLock_1 = GlobalLock(hMem);
LP_ret_GlobalLock_2 = LP_ret_GlobalLock_1;
...
if ( !LP_ret_GlobalLock_1 || (v9 = *(_DWORD *)(v6 + 4), *(_DWORD *)v6 = LP_ret_GlobalLock_2, v9 < 0) )
</code></pre>
<p>I'm not sure to completely understand the following part:</p>
<pre><code>(v9 = *(_DWORD *)(v6 + 4), *(_DWORD *)v6 = LP_ret_GlobalLock_2, v9 < 0)
</code></pre>
<p>v9 is initialised as v6 + 4; but then v6 is modified to be a pointer LP_ret_GlobalLock_2 and finally v9 is check for being less than 0. Is that correct? When calculating v9 what value is used for v6? The LP_ret_GlobalLock_2 or the previous value?</p>
<p>Thanks for that.</p>
http://stackoverflow.com/questions/1248297/what-is-considered-advanced-professional-or-advanced-programmer1What is considered "advanced professional", or "advanced programmer"? Victor2009-08-08T07:55:12Z2009-08-08T08:28:32Z
<p>I found this statement a couple of times. What do the professionals consider advanced?</p>
http://stackoverflow.com/questions/1195414/advanced-jquery-selection-first-per-attribute-value0advanced jquery selection... first per attribute valueeidylon2009-07-28T17:00:14Z2009-07-28T17:31:36Z
<p>Okay, I'm not sure how to describe what i want to do concisely. So, take the following pseudo-html: </p>
<pre><code><input type=checkbox id=chk1 myatr=1 />
<input type=checkbox id=chk2 myatr=1 />
<input type=checkbox id=chk3 myatr=2 />
<input type=checkbox id=chk4 myatr=1 />
<input type=checkbox id=chk5 myatr=2 />
<input type=checkbox id=chk6 myatr=3 />
</code></pre>
<p>What i want to do is select all the checkboxes where they are the first occurrence of their respective value for "myatr". So i want to take something like: </p>
<pre><code>$('input [type=checkbox]')
</code></pre>
<p>and extend it somehow to only get the items with ids chk1, chk3 and chk6, as they are the first instances of their values of myatr (1, 2 and 3 respectively).</p>
<p>Something like: </p>
<pre><code>$('input [type=checkbox]').FirstForEach('myatr')
</code></pre>
<p>Is this possible somehow?</p>
http://stackoverflow.com/questions/1175108/specify-source-ip-address-for-tcp-socket-when-using-linux-network-device-aliases0Specify source IP address for TCP socket when using Linux network device aliasesWade2009-07-23T23:46:47Z2009-07-24T00:44:29Z
<p>For some specific networking tests, I've created a VLAN device, eth1.900, and a couple of aliases, eth1.900:1 and eth1.900.2.</p>
<pre>
eth1.900 Link encap:Ethernet HWaddr 00:18:E7:17:2F:13
inet addr:1.0.1.120 Bcast:1.0.1.255 Mask:255.255.255.0
eth1.900:1 Link encap:Ethernet HWaddr 00:18:E7:17:2F:13
inet addr:1.0.1.200 Bcast:1.0.1.255 Mask:255.255.255.0
eth1.900:2 Link encap:Ethernet HWaddr 00:18:E7:17:2F:13
inet addr:1.0.1.201 Bcast:1.0.1.255 Mask:255.255.255.0
</pre>
<p>When connecting to a server, is there a way to specify which of these aliases will be used? I can ping using the -I <ip> address option to select which alias to use, but I can't see how to do it with a TCP socket in code without using raw sockets, since I would also like to run without extra socket privileges, i.e. not running as root, if possible.</p>
<p>Unfortunately, even with root, SO_BINDTODEVICE doesn't work because the alias device name is not recognized:</p>
<pre><code>printf("Bind to %s\n", devname);
if (setsockopt(s, SOL_SOCKET, SO_BINDTODEVICE, (char*)devname, sizeof(devname)) != 0)
{
perror("SO_BINDTODEVICE");
return 1;
}
</code></pre>
<p>Output:</p>
<pre>
Bind to eth1.900:1
SO_BINDTODEVICE: No such device
</pre>
http://stackoverflow.com/questions/1160228/are-there-any-technologies-that-help-develop-website-search1Are there any technologies that help develop website search?Ali2009-07-21T16:18:11Z2009-07-21T18:20:52Z
<p>Hi guys,</p>
<p><b>PROBLEM:</b>
I need to write an advanced search functionality for a website. All the data is stored in MySQL and I'm using Zend Framework on top. I know that I can write a script that takes the search page and builds an SQL query out of it, but this becomes extremely slow if there's a lot of hits. Then I would have to get down to the gritty details of optimizing the database tables/fields/etc. which I'm trying to avoid if possible.</p>
<p><b>Lucene:</b> I gave Lucene a try, but since it's a full-text search engine, it does not allow any mathematical operators!! So if I wanted to get all the records where field_x > 5, there is no way to do it (correct?)</p>
<p><b>General Practice?</b> I would like to know how large sites deal with this dilemma. Is there a standard way of doing this that I don't know about, or does everyone have to deal with the nasty details of optimizing the database at some point? I was hoping that some fast indexing/searching technology existed (e.g. Lucene) that would address this problem. </p>
<p><b><i>ANY OTHER COMMENTS OR SUGGESTION ARE MOST WELCOME!!</i></b></p>
<p>Thanks a lot guys!
Ali</p>
http://stackoverflow.com/questions/1127759/looking-for-advanced-c-programming-book4Looking for advanced C programming bookLeif Ericson2009-07-14T20:17:43Z2009-07-15T03:43:21Z
<p>I need a book that deals with implementing real projects in C, in contrast to "C Programming Language" which I recently finished reading and mastered, that only teaches the language. Something that deals with advanced topics such as: how to organize the source files, how to organize headers, more advanced preprocessing directive like <code>#ifndef</code>, <code>#ifdef</code> and how and when to use them. How to deal with various kinds of input, how to parse it, etc.</p>
<p>I already have these books, but none of them is what I'm looking for (although they're good ones):</p>
<ul>
<li>C Traps and Pitfalls <em>by Andrew Koenig</em></li>
<li>Expert C Programming <em>by Peter van der Linden</em></li>
<li>C Programming Language (2nd Edition) <em>(Prentice Hall Software) by Brian W. Kernighan and Dennis M. Ritchie</em></li>
<li>The Standard C Library <em>by P.J. Plauger</em></li>
</ul>
http://stackoverflow.com/questions/1104478/learning-advanced-css9Learning advanced CSSpeakit2009-07-09T15:05:03Z2009-07-13T16:05:55Z
<p>Hi friends,</p>
<p>I know basic CSS to the point that I can write simple style sheets which actually adds <strong>simple</strong> decoration to the html elements. (like border, text-color, background, font etc.)</p>
<p>But I just realized that CSS is much more than that. One can actually build menus, tabs, arrange divs to come up with a <a href="http://news.google.com" rel="nofollow">http://news.google.com</a> sort of page layout.
And I want to know all these nifty tricks now.</p>
<p><strong>Any book which you guys would like to suggest which can help me in learning these things?</strong>
Any online video tutorial which you would like to share is also welcome.</p>
<p>Cheers !!</p>
<p><em>[Please be nice while replying :-) ]</em></p>
http://stackoverflow.com/questions/1101391/can-i-decorate-advanced-powershell-functions-with-my-own-custom-attributes1Can I decorate advanced PowerShell functions with my own custom attributes?tellingmachine2009-07-09T01:27:09Z2009-07-09T12:36:55Z
<p>For example:</p>
<pre><code>function TestThis()
{
[MySpecialCustomAttribute]
[CmdletBinding()]
Param(...)
Process{...}
}
</code></pre>
http://stackoverflow.com/questions/1093563/advanced-jquery-form-errors-ie73Advanced Jquery Form Errors (IE7)unknown (google)2009-07-07T17:09:30Z2009-07-07T17:19:57Z
<p>Hi,</p>
<p>I recently created a advanced form with elements that use jquery's $().hide & $().show functions. It's working great in safari and ff, but for some reason in ie7, the $().hide action in jquery is not working properly. Any suggestions?</p>
<p><a href="http://www.tasteofinkstudios.com/webdesign.html" rel="nofollow">http://www.tasteofinkstudios.com/webdesign.html</a></p>
http://stackoverflow.com/questions/947942/advanced-python-programming-book-like-effective-c2Advanced python programming book like effective C++?catphive2009-06-04T00:07:20Z2009-07-05T09:00:14Z
<p>There are a lot of books out there for new programmers getting into python. However, are there any books for people who are experienced both in programming and to some degree in Python that introduces advanced topics, subtleties, gotchas, and best practices in python?</p>
<p>I'm thinking in terms of something like effective C++ or effective Java.</p>
<p>There's a number of topics that beginners don't care about, that people using Python for Serious Business TM want to know. For instance, tips for writing code that is both portable across platforms, and across different versions of python. What standard library modules are broken, and what are the better alternatives?</p>
http://stackoverflow.com/questions/701666/what-is-a-good-book-for-learning-advanced-wpf-material3What is a good book for learning advanced WPF material?Stimul8d2009-03-31T15:46:56Z2009-06-10T16:58:27Z
<p>I've been dabbling with WPF for about 6 months now and I'm pretty confident with 90% of the Framework. I read WPF Unleashed by Adam Nathan,cover to cover, twice, to get up to speed but now I'm ready for something more advanced.</p>
<p>Can anyone recommend a good advanced WPF book as a next step?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/935951/what-are-some-advanced-software-development-topics-every-developer-should-know32What are some advanced software development topics every developer should know?Boydski2009-06-01T18:00:24Z2009-06-05T18:42:01Z
<p>Let's say your company has given you the time & money to acquire training on as many <strong>advanced</strong> programming topics that you can eat in a year, carte blanche. What would those topics be and how would you prefer to acquire them?</p>
<p>Assumptions:</p>
<ul>
<li>You're still having deliverables to bring into existence, but you're allowed one week per month for the year for this training.</li>
<li>The training can come from anywhere. IE: Classroom, on-site instructor, books, subscriptions, podcasts, etc.</li>
<li>Subject matter can cover any platform, technology, language, DBMS, toolset, etc.</li>
</ul>
http://stackoverflow.com/questions/874181/php-sort-an-array1PHP: Sort an arrayIvarska2009-05-17T08:52:48Z2009-05-19T17:13:45Z
<p>I've got an array with data from a MySQL table in nested set model I'd like to get sorted, not only alphabetical but also with the child nodes directly after the parent node.
Example - array to be sorted (before the sorting):</p>
<pre><code>Array
(
[0] => Array
(
[id] => 1
[name] => Kompetenser
[parent] => 0
[depth] => 0
)
[1] => Array
(
[id] => 2
[name] => Administration
[parent] => 1
[depth] => 1
)
[2] => Array
(
[id] => 11
[name] => Organisation
[parent] => 2
[depth] => 2
)
[3] => Array
(
[id] => 4
[name] => Arbetsledning
[parent] => 2
[depth] => 2
)
[4] => Array
(
[id] => 17
[name] => Planering
[parent] => 2
[depth] => 2
)
[5] => Array
(
[id] => 9
[name] => Hantverke
[parent] => 1
[depth] => 1
)
[6] => Array
(
[id] => 10
[name] => Snickeri
[parent] => 9
[depth] => 2
)
[7] => Array
(
[id] => 12
[name] => Språk
[parent] => 1
[depth] => 1
)
[8] => Array
(
[id] => 13
[name] => Tolk
[parent] => 12
[depth] => 2
)
[9] => Array
(
[id] => 15
[name] => Arabiska
[parent] => 13
[depth] => 3
)
[10] => Array
(
[id] => 14
[name] => Persiska
[parent] => 13
[depth] => 3
)
[11] => Array
(
[id] => 16
[name] => Polska
[parent] => 13
[depth] => 3
)
[12] => Array
(
[id] => 18
[name] => Apotekare
[parent] => 1
[depth] => 1
)
[13] => Array
(
[id] => 19
[name] => Dotkorand
[parent] => 1
[depth] => 1
)
[14] => Array
(
[id] => 21
[name] => Atomfysik
[parent] => 19
[depth] => 2
)
[15] => Array
(
[id] => 20
[name] => Fysik
[parent] => 19
[depth] => 2
)
[16] => Array
(
[id] => 22
[name] => Ekonom
[parent] => 1
[depth] => 1
)
[17] => Array
(
[id] => 23
[name] => Industriell ekonomi
[parent] => 22
[depth] => 2
)
[18] => Array
(
[id] => 24
[name] => Filosofi
[parent] => 1
[depth] => 1
)
)
</code></pre>
<p>I want the array this way (after the sorting):</p>
<pre><code>Array
(
[0] => Array
(
[id] => 1
[name] => Kompetenser
[parent] => 0
[depth] => 0
)
[1] => Array
(
[id] => 2
[name] => Administration
[parent] => 1
[depth] => 1
)
[3] => Array
(
[id] => 4
[name] => Arbetsledning
[parent] => 2
[depth] => 2
)
[2] => Array
(
[id] => 11
[name] => Organisation
[parent] => 2
[depth] => 2
)
[4] => Array
(
[id] => 17
[name] => Planering
[parent] => 2
[depth] => 2
)
[12] => Array
(
[id] => 18
[name] => Apotekare
[parent] => 1
[depth] => 1
)
[13] => Array
(
[id] => 19
[name] => Dotkorand
[parent] => 1
[depth] => 1
)
[14] => Array
(
[id] => 21
[name] => Atomfysik
[parent] => 19
[depth] => 2
)
[15] => Array
(
[id] => 20
[name] => Fysik
[parent] => 19
[depth] => 2
)
[16] => Array
(
[id] => 22
[name] => Ekonom
[parent] => 1
[depth] => 1
)
[17] => Array
(
[id] => 23
[name] => Industriell ekonomi
[parent] => 22
[depth] => 2
)
[18] => Array
(
[id] => 24
[name] => Filosofi
[parent] => 1
[depth] => 1
)
[5] => Array
(
[id] => 9
[name] => Hantverke
[parent] => 1
[depth] => 1
)
[6] => Array
(
[id] => 10
[name] => Snickeri
[parent] => 9
[depth] => 2
)
[7] => Array
(
[id] => 12
[name] => Språk
[parent] => 1
[depth] => 1
)
[8] => Array
(
[id] => 13
[name] => Tolk
[parent] => 12
[depth] => 2
)
[9] => Array
(
[id] => 15
[name] => Arabiska
[parent] => 13
[depth] => 3
)
[10] => Array
(
[id] => 14
[name] => Persiska
[parent] => 13
[depth] => 3
)
[11] => Array
(
[id] => 16
[name] => Polska
[parent] => 13
[depth] => 3
)
)
</code></pre>
<p>As you might see, I want all posts with parent 2 directly after the post with id 2, and so on.</p>
<p>Any help would be highly appreciated.
Thank you in advance.</p>
http://stackoverflow.com/questions/747990/how-do-i-add-syntactic-sugar-in-my-javascript-library1How do I add syntactic sugar in my Javascript library?kunjaan2009-04-14T14:53:15Z2009-04-15T08:43:41Z
<p>Right now the library can translate this operation </p>
<pre><code>Select * from List where name = k% order by desc
</code></pre>
<p>to</p>
<pre><code>List.filter(function(x) { return x.first_char() == 'k' }).sort().reverse());
</code></pre>
<p>Whats the best hack to remove the () so that the developer can write statements like:</p>
<pre><code>List.filter(fn(x) { return x.first_char == 'k' }).sort.reverse;
</code></pre>
<p>Naive approach:</p>
<pre><code>maxfn = function() {this[0]..}; Array.prototype.max = maxfn();
</code></pre>
<p>But with this approach I can't access 'this'.</p>
<p>I wanted to add a syntactic sugar for </p>
<pre><code>new Array("1","2","3")
</code></pre>
<p>to something like :)(suggestions needed) </p>
<pre><code>_("1","2" ,"3")
</code></pre>
<p>like we have in scheme where list -> '</p>
<p>I tried to clone the arguments but failed.</p>
<p>Thanks.</p>