User changelog - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T15:21:35Zhttp://stackoverflow.com/feeds/user/5646http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/281521/cant-connect-to-mobile-device1Can't connect to mobile devicechangelog2008-11-11T17:14:10Z2009-11-26T09:59:10Z
<p>I've been developing an application for a second generation Workabout Pro from PSION Teklogix.</p>
<p>Recently my company underwent an upgrade re: operating systems and Visual Studio versions, so I'm stuck with Windows Vista (and Visual Studio 2008).</p>
<p>I've connected the same Workabout Pro unit I've always used for development, and I can't install ActiveSync on Vista, but the device isn't recognized in the Mobile Sync Center either. To top it off, when trying to deploy a project for testing, Visual Studio tells me that "Connect to device failed".</p>
<p>How can I pull this off?</p>
http://stackoverflow.com/questions/1649709/asp-net-mvc-controller-method-timing-out0ASP.NET MVC controller method timing outchangelog2009-10-30T13:01:40Z2009-10-30T16:52:30Z
<p>I'm currently debugging an ASP.NET MVC application that was just deployed to a different server.</p>
<p>All the versions between the staging server and the production server are the same, but in the production server (which is 64bit, but is running the app in 32bit mode) I'm getting a timeout in this controller action:</p>
<pre><code> [AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(Person person, PeopleCertificationLevel peopleCertificationLevel, Address address)
{
try
{
person.PeopleCertificationLevels.Add(peopleCertificationLevel);
person.Addresses.Add(address);
_peopleService.SavePerson(person);
SetMessage("O marítimo foi registado com sucesso.");
return Redirect("~/People/Show/" + person.ID);
}
catch
{
SetErrorMessage("Por favor valide e preencha devidamente os campos assinalados a asterisco (*).");
Create();
return View(person);
}
}
</code></pre>
<p>I've already tried throwing an exception before the try block, but I always get a request timeout here.</p>
<p>It seems to me that the request isn't getting to this action. Any suggestions on how I should debug this or what should I do?</p>
<p><strong>UPDATE:</strong> I figured it has to do with the model binding. If I remove the bindings, the request gets dispatched, FAST. However, i've tried several approaches, such as using the Bind attribute before the action parameters, tried creating a NewPersonForm class which contained 3 properties (Person, PeopleCertificationLevel, Address), and even tried with a FormCollection and UpdateModel calls. All to no avail.</p>
<p><strong>UPDATE 2:</strong> This application is compiled in 32bit and running in a 64bit environment. Although 32bit applications are enabled in the AppPool, I suspect that is what might be causing the problem.</p>
http://stackoverflow.com/questions/1626318/starting-programming-mac-os-x0Starting programming Mac OS Xchangelog2009-10-26T17:59:30Z2009-10-26T18:47:24Z
<p>I'm starting a Mac OS X app that will connect to a small website I'm currently developing.</p>
<p>The idea is that the app will store a number of snippets on a local database and then sync with the website whenever it can.</p>
<p>So my questions are:</p>
<p>Carbon or Cocoa?</p>
<p>SQLite for local storage / another solution?</p>
<p>Is there any decent free text-editor control with basic syntax highlighting to embed on the app?</p>
http://stackoverflow.com/questions/1470758/jquery-load-html-and-click-return-value-to-input-field/1470779#14707790Answer by changelog for JQuery: load html and click return value to input fieldchangelog2009-09-24T10:03:17Z2009-09-24T10:03:17Z<p>You're setting the click event before the DOM from the autocomplete suggestions is loaded.</p>
<p>Try adding that action inside the injected HTML and let me know how it goes.</p>
http://stackoverflow.com/questions/1114447/how-to-use-c-like-attributes-in-c4How to use C#-like attributes in C++changelog2009-07-11T19:17:51Z2009-08-24T04:34:21Z
<p>I'm considering the use of C++ for a personal project. I would like to make it platform independent (no Mono please, since some platforms don't yet support it), and that's why I considered C++.</p>
<p>I have one doubt, however. I've grown quite fond of C#'s attributes, and I would like to know if I can use something similar in C++.</p>
<p>Also, is it possible to use the decorator pattern for this?</p>
<p>EDIT: I would now consider other possibilities or approximations for this matter, ie. some way to attach additional behavior to a class in runtime.</p>
<p>EDIT 2: Java is not an option, because some devices I'd like to port it to don't support java.</p>
http://stackoverflow.com/questions/1293369/using-last-child-in-css/1293378#12933780Answer by changelog for using last-child in csschangelog2009-08-18T11:51:24Z2009-08-18T11:51:24Z<p>It's hard to say without seeing the rest of your CSS, but try adding <code>!important</code> in front of the border color, to make it like so:</p>
<pre><code>#refundReasonMenu #nav li:last-child
{
border-bottom: 1px solid #b5b5b5 !important;
}
</code></pre>
http://stackoverflow.com/questions/1288045/jquery-css-ninja-help-wanted/1288259#12882590Answer by changelog for JQuery - CSS ninja help wantedchangelog2009-08-17T14:29:52Z2009-08-17T14:29:52Z<p>You have to specify the line-height of the blue bar element, and set a height too. Set those attributes with _ before them (like _height: 2px) so that only IE will parse them.</p>
<p>If you care about CSS validation, then do what Daniel White suggested.</p>
http://stackoverflow.com/questions/1212149/class-diagram-examples-for-rpg-role-playing-game/1223309#12233093Answer by changelog for Class diagram examples for RPG (Role Playing Game)changelog2009-08-03T16:34:22Z2009-08-03T16:34:22Z<p>Look at <a href="http://www.adom.de/jade/javadoc-jade-007/index.html" rel="nofollow" title="JADE's Javadoc">JADE's Javadoc</a> for a good overview of a complex game :)</p>
http://stackoverflow.com/questions/1221990/hungarian-algorithm-and-multiple-factors2Hungarian Algorithm and multiple factorschangelog2009-08-03T12:10:41Z2009-08-03T14:01:36Z
<p>I have a situation where I need to allocate people to several events. If we just had a price as a factor, it would be fine, but there is a number of factors that come in.</p>
<p>First, some background. This is for a non-profit organization that promotes story hours for children that are hospitalized for any reason, so they depend on voluntary work to do so. So, since they rely on people's good will, they give people as much work as people can / want to do, which varies like:</p>
<ul>
<li>Some people can only do mornings, and some other people can only do afternoons;</li>
<li>Some people can only do Mondays, and Thursdays, other people can't go on August or December;</li>
<li>Some people can only go once a month, other people can go 4 times (and even other people are given "priority" in these actions because they're more experienced and can are available to do 10 times a month)</li>
</ul>
<p>So, I kinda figured out the first two. Since the Hungarian Algorithm is about price, I'd give them a stupidly high price for the times they can't go. However, how would you do the others?</p>
<p>I thought about giving them some sort of score. Something along the lines of: one person who can do this once a month costs something like 1000 points. If someone can go 10 times a month, that person costs 100 points (1000 basis dividing by 10). Also, the way to distribute this would be to increase the price whenever a separate action would be done, like so (selected people have a * on their associated cost):</p>
<h1>First iteration</h1>
<pre><code> | August 1st 2009
Person A | 1000
Person B | 500 *
</code></pre>
<h1>Second iteration</h1>
<pre><code> | August 8th 2009
Person A | 1000 *
Person B | 1000
</code></pre>
<p>This would be the way to distribute accordingly between all the people, giving more priority to those that can do this several times.</p>
<p>What do you think and how would you do it?</p>
http://stackoverflow.com/questions/151731/ext-form-formpanel-and-form-submission0Ext.form.FormPanel and form submissionchangelog2008-09-30T04:17:16Z2009-07-21T17:24:42Z
<p>Hello. I've been trying to submit a form with the FormPanel using the Action class Ext defaults to. However, I'd like it to consider the response as a script, not JSON-encoded.</p>
<p>Has anyone had any experience on this?</p>
http://stackoverflow.com/questions/901855/mysql-with-2-left-joins-on-the-same-table1MySQL with 2 LEFT JOINs on the same table changelog2009-05-23T16:28:38Z2009-05-23T17:41:35Z
<p>Hi everyone.</p>
<p>I'm trying to run this query:</p>
<pre><code>SELECT
Destaque.destaque, Noticia.id, Noticia.antetitulo,
Noticia.titulo, Noticia.lead, Noticia.legenda,
Noticia.publicacao, Seccao.descricao, Album.pasta,
Foto.ficheiro, Foto.descricao, Cronista.nome,
Cronista.profissao, Cronista.ficheiro,
AudioFile.*, AudioCollection.*, VideoFile.*, VideoCollection.*
FROM
nt_highlights AS Destaque
LEFT JOIN nt_noticias AS Noticia ON Destaque.noticia_id = Noticia.id
LEFT JOIN mm_fotos AS Foto ON Noticia.foto_id = Foto.id
LEFT JOIN nt_temas AS Seccao ON Noticia.tema_id = Seccao.id
LEFT JOIN mm_albuns AS Album ON Foto.album_id = Album.id
LEFT JOIN nt_cronistas AS Cronista ON Cronista.id = Noticia.cronista_id
LEFT JOIN ntNoticias_mmFiles AS Rel ON Rel.noticia_id = Noticia.id
LEFT JOIN mm_files AS AudioFile ON AudioFile.id = Rel.file_id
LEFT JOIN mm_coleccoes AS AudioCollection ON AudioFile.coleccao_id = AudioCollection.id
LEFT JOIN mm_files AS VideoFile ON VideoFile.id = Rel.file_id
LEFT JOIN mm_coleccoes AS VideoCollection ON VideoFile.coleccao_id = VideoCollection.id
WHERE
Destaque.area_id = 1
AND Noticia.paraPublicacao = 1
AND Noticia.publicacao <= NOW()
AND (AudioFile.mimeType != '' OR AudioFile.id IS NULL)
AND (VideoFile.mimeType = '' OR VideoFile.id IS NULL)
ORDER BY
Destaque.destaque
</code></pre>
<p>This will get me a number of articles (from <code>nt_noticias</code>) and the idea is to get at the same time a <code>Video</code> and an <code>Audio</code> file from the <code>mm_files</code> table.</p>
<p>What happens is that when I have an article with a sound and a video, MySQL will return 4 rows:</p>
<ul>
<li>with the sound (video is null)</li>
<li>with the video (sound is null)</li>
<li>with all nulls</li>
<li>with the sound AND the video</li>
</ul>
<p>How can I "force" it to return just one row per article with any existing video AND audio associated? What am I doing wrong here?</p>
http://stackoverflow.com/questions/820935/getting-the-username-inside-a-model-class0Getting the username inside a model classchangelog2009-05-04T16:59:50Z2009-05-04T19:38:08Z
<p>I'm trying to implement basic auditing with some of my models (like CreatedAt, UpdatedAt, CreatedBy and UpdatedBy).</p>
<p>The date/time part is done. I'm throwing events on my models when a property is changed (implementing <code>INotifyPropertyChanging, INotifyPropertyChanged</code>) and can update the correspondent fields just fine.</p>
<p>I just need to know how to get the current user name without having to pass it through the controller every time I instantiate or get an existing instance of a model.</p>
http://stackoverflow.com/questions/820935/getting-the-username-inside-a-model-class/821095#8210950Answer by changelog for Getting the username inside a model classchangelog2009-05-04T17:38:08Z2009-05-04T17:38:08Z<p>Referencing <code>System.Web</code> and using <code>HttpContext.Current.User.Identity.Name</code> worked like a charm.</p>
http://stackoverflow.com/questions/729577/can-javascript-access-iframe-elements-from-the-parent-page/729582#729582-1Answer by changelog for Can javascript access iframe elements from the parent page?changelog2009-04-08T11:29:18Z2009-04-08T11:29:18Z<p>Yes, via the <code>document.frames</code> array you can access iframes.</p>
http://stackoverflow.com/questions/677980/set-viewdata-outside-the-controller1Set ViewData outside the controllerchangelog2009-03-24T15:40:17Z2009-03-24T15:50:29Z
<p>I'm trying to create a logger that will write the queries LINQ executes to the page formatted with the great javascript library SyntaxHighlighter.</p>
<p>For that, I've set the DataContext's Log property to my custom logger, which is working well.</p>
<p>Now I just need to get the current Controller object (outside the controller execution context) so I can set some ViewData with what needs to be outputted.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/663688/ie8-has-anyone-done-any-testing/663705#6637050Answer by changelog for IE8 - Has Anyone Done Any Testing?changelog2009-03-19T19:36:37Z2009-03-19T19:36:37Z<p>I've tested it on a few of my sites and it's now behaving more like Firefox/Webkit than IE7 per-say.</p>
<p>However, if you bump into trouble where pages would work with IE7 and seem "garbled" with IE8, theres' a meta tag you can use to force that page to use compatibility mode rendering which you can read about <a href="http://blogs.msdn.com/ie/archive/2008/08/27/introducing-compatibility-view.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/626901/asp-net-mvc-rc2-checkboxes-with-explicit-values/626960#6269600Answer by changelog for ASP.net MVC RC2 - Checkboxes with explicit valueschangelog2009-03-09T16:20:06Z2009-03-09T16:20:06Z<p>If the property that field maps to is of type Int, then false will be converted to 0, i think.</p>
<p>That's how you know how the box was checked or not.</p>
http://stackoverflow.com/questions/595793/best-way-to-update-a-linq-model-coming-from-a-form1Best way to update a LINQ model coming from a formchangelog2009-02-27T17:40:00Z2009-02-27T17:57:27Z
<p>I'm designing forms in my ASP.NET MVC application that will receive objects. Here's what a typical edit action looks like:</p>
<pre><code> [AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, Person person)
{
peopleService.SavePerson(person);
return Redirect("~/People/Index");
}
</code></pre>
<p>The <code>SavePerson</code> call in the service does this:</p>
<pre><code> public void SavePerson(Person person)
{
_peopleRepository.SavePerson(person);
}
</code></pre>
<p>And the <code>SavePerson</code> call in the repository does this:</p>
<pre><code> public void SavePerson(Person person)
{
using (var dc = new SIGAPDataContext())
{
if (person.IsNew)
{
dc.People.InsertOnSubmit(person);
}
else
{
dc.People.Attach(person, true);
}
dc.SubmitChanges();
}
}
</code></pre>
<p>Now, this works well when I create the new record. However, when I update it without all the form elements, it nulls other fields. For instance, my Person model has a NationalityID property that is nulled if it doesn't show on the edit form.</p>
<p>What's the best practice to make the model update with just the fields that come from the form? Do I have to get the record from the database first and update it's properties manually like:</p>
<pre><code>Person persistedPerson = peopleService.GetPerson(person.ID);
persistedPerson.Name = person.Name;
persistedPerson.DateOfBirth = person.DateOfBirth
// etc...
</code></pre>
<p>Or is there any other, cleaner way to do this?</p>
http://stackoverflow.com/questions/553597/binding-an-enum-to-linq-and-selectlistitem2Binding an Enum to LINQ and SelectListItemchangelog2009-02-16T15:10:44Z2009-02-16T15:50:55Z
<p>Hello.</p>
<p>I'm trying to bind the following enum</p>
<pre><code>public enum CertificateTypes : byte
{
None = 0,
Original = 1,
AuthenticatedCopy = 2,
Numbered = 3
}
</code></pre>
<p>to a <code>tinyint</code> column on the database. However, when creating the SelectListItems and calling, for instance, Person.CertificateTypes.Original.ToString() I get this:</p>
<pre><code><option value="Original">Original</option>
</code></pre>
<p>which is not bindable to a byte? column. How should I do this? Should I explicitly set the value to "1" on the <code>Value</code> property of the <code>SelectListItem</code>? Or is there a way to make this work "automagically"?</p>
http://stackoverflow.com/questions/536400/entity-attachment-issues-in-linq3Entity attachment issues in LINQchangelog2009-02-11T11:34:10Z2009-02-11T17:36:22Z
<p>I am trying to attach a LINQ entity to the data context after I receive it from a form POST. However, all I get is the following exception:</p>
<pre><code>An entity can only be attached as modified without original state if it declares a version member or does not have an update check policy.
</code></pre>
<p>I have also tried attaching the original row, like so:</p>
<pre><code>dataContext.People.Attach(person, originalPerson);
</code></pre>
<p>In this case, I get the following exception:</p>
<pre><code>Object reference not set to an instance of an object.
</code></pre>
<p>Here's the code in my controller:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, Person person) {
var prevPerson = dataContext.People.Single(p => p.ID == id);
dataContext.People.Attach(person, prevPerson);
dataContext.SubmitChanges();
return Redirect("~/People/Index");
}
</code></pre>
<p>Any ideas on what I'm doing wrong here? I can post the entity code if needed.</p>
http://stackoverflow.com/questions/301777/sql-server-2008-cal1SQL Server 2008 CALchangelog2008-11-19T12:40:22Z2008-11-19T13:15:07Z
<p>I need to purchase SQL Server 2008 Standard edition, because it's features fit what I need. On the features page, it says it can handle 32,767 user connections, but how does that connect with CALs?</p>
<p>What are CALs and how can they affect a project?</p>
http://stackoverflow.com/questions/261752/call-a-rails-function-from-jquery/261913#2619132Answer by changelog for call a rails function from jquery?changelog2008-11-04T13:36:54Z2008-11-19T07:17:09Z<p>You'll have to have a method in the controller that will render what you need, if you want to do that. Another way to do it is to use view blocks, like in the end of your layout view</p>
<pre><code><script type="text/javascript">
<%= yield :footerjs %>
</script></code></pre>
<p>and in the view do something like:</p>
<pre><code><% content_for :footerjs do %>
jQuery(document).ready(function($) {
$('#mydiv').html('<%= escape_javascript(render :partial => "contacts") %>');
});
<% end %></code></pre>
<p>You'll need to make sure that the partial you'll be rendering won't have characters that may cause javascript errors (like finishing the quotes before the end of the string, etc). Also, some browsers don't like multi-line strings, so you'll have to fiddle with that as well.</p>
http://stackoverflow.com/questions/268625/javascript-library-for-building-desktop-like-web-application-extjs-jquery-yaho/268726#2687261Answer by changelog for Javascript library for building desktop-like web application: ExtJS, jQuery, YahooUI, Mocha, SproutCore, Cappuccino, others?changelog2008-11-06T13:41:41Z2008-11-06T13:41:41Z<p>I have been using ExtJS for some projects lately. It's learning curve is a bit steep, since you'll have to grasp their concept of layouts, but other than that you'll be fine.</p>
<p>Just make sure that you read the licensing agreement before you start using it. Oh, and ExtJS works fine using jQuery, Prototype and others.</p>
http://stackoverflow.com/questions/261490/whats-the-best-way-to-perform-system-tasks-from-ruby-on-rails/261519#2615193Answer by changelog for Whats the best way to perform system tasks from Ruby on Rails?changelog2008-11-04T10:55:26Z2008-11-04T10:55:26Z<p>You can use <a href="http://backgroundrb.rubyforge.org/" rel="nofollow">BackgrounDRb</a>. It's purpose is to offload tasks from rails apps, and you can run the server under a different user.</p>
http://stackoverflow.com/questions/251030/share-styling-between-css-classes/251037#25103715Answer by changelog for Share Styling Between CSS Classeschangelog2008-10-30T17:26:30Z2008-10-30T17:26:30Z<p>Here's how you do it:</p>
<pre><code>.ProductAltItemStyle, .ProductItemStyle {
// CSS Rules that apply to both go here
}</code></pre>
http://stackoverflow.com/questions/250234/sending-mail-with-php-escaping-hotmails-junk-folder/250243#2502430Answer by changelog for sending mail with php & escaping hotmails junk folderchangelog2008-10-30T13:55:18Z2008-10-30T16:40:16Z<p>I have always used <a href="http://phpmailer.codeworxtech.com/" rel="nofollow">PHPMailer</a> in my projects, and what I did to avoid Hotmail's junk folder was to call a method they had that added MS Headers to the message.</p>
<p><a href="http://www.koders.com/php/fid8B2BF59A0FE70060034616281BE9155A6532DE07.aspx?s=smtp+server#L1168" rel="nofollow">Take a look at the source</a>, and add those headers yourself.</p>
<p>Also, I recommend including a text-version if you're sending HTML e-mail.</p>
http://stackoverflow.com/questions/250324/use-php-to-show-mysql-data/250331#2503310Answer by changelog for use php to show mysql datachangelog2008-10-30T14:25:33Z2008-10-30T14:25:33Z<p>I tend to use two separate pages. One to list, which links to the one that shows the detailed record. The one that lists passes an ID parameter on the link (ie. show.php?id=145), as for the show.php page will get that parameter from <code>$_GET['id']</code>.</p>
<p>This is the simplest approach to your problem.</p>
http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess/247251#2472513Answer by changelog for Javascript - How do you organize this mess?!?changelog2008-10-29T15:29:02Z2008-10-29T15:29:02Z<p>A few days ago, the guys at 37Signals <a href="http://github.com/37signals/wysihat/tree/master" rel="nofollow">released a RTE control</a>, with a twist. They made a library that bundles javascript files using a sort of pre-processor commands.</p>
<p>I've been using it since to separate my JS files and then in the end merge them as one. That way I can separate concerns and, in the end, have only one file that goes through the pipe (gzipped, no less).</p>
<p>In your templates, check if you're in development mode, and include the separate files, and if in production, include the final one (which you'll have to "build" yourself).</p>
http://stackoverflow.com/questions/243794/jquery-ui-tabs-causing-screen-to-jump/243832#2438321Answer by changelog for JQuery UI Tabs Causing Screen to "Jump"changelog2008-10-28T15:56:56Z2008-10-28T15:56:56Z<p>If you have something along these lines:</p>
<pre><code><a href="#" onclick="activateTab('tab1');">Tab 1</a></code></pre>
<p>Try adding <code>return false;</code> after the tab activation command:</p>
<pre><code><a href="#" onclick="activateTab('tab1'); return false;">Tab 1</a></code></pre>
http://stackoverflow.com/questions/243387/best-language-for-safety-critical-software/243403#2434031Answer by changelog for Best language for safety-critical softwarechangelog2008-10-28T13:53:09Z2008-10-28T13:53:09Z<p>I don't know what language I'd use, but I do know what language I wouldn't:</p>
<blockquote>
NOTE ON JAVA SUPPORT. THE SOFTWARE PRODUCT MAY CONTAIN SUPPORT FOR PROGRAMS WRITTEN IN JAVA. JAVA TECHNOLOGY IS NOT FAULT TOLERANT AND IS NOT DESIGNED, MANUFACTURED, OR INTENDED FOR USE OR RESALE AS ON-LINE CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF JAVA TECHNOLOGY COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE.
</blockquote>
http://stackoverflow.com/questions/1649709/asp-net-mvc-controller-method-timing-out/1650686#1650686Comment by changelog on ASP.NET MVC controller method timing outchangelog2009-10-30T16:06:29Z2009-10-30T16:06:29ZYes, everything is OK. On my machine, it works fine, even with the ASP Development Server (the one VS2008 launches by default). In this machine, this is the only form that doesn't wory.http://stackoverflow.com/questions/1649709/asp-net-mvc-controller-method-timing-outComment by changelog on ASP.NET MVC controller method timing outchangelog2009-10-30T13:24:10Z2009-10-30T13:24:10ZPlease add answers so that I can vote them up. Thanks.http://stackoverflow.com/questions/1649709/asp-net-mvc-controller-method-timing-outComment by changelog on ASP.NET MVC controller method timing outchangelog2009-10-30T13:19:37Z2009-10-30T13:19:37ZIt is. Every other controller method works. Except this one. I mean, is there anything special I need to do in IIS to enable MVC routing?http://stackoverflow.com/questions/1626318/starting-programming-mac-os-x/1626396#1626396Comment by changelog on Starting programming Mac OS Xchangelog2009-10-26T18:19:19Z2009-10-26T18:19:19ZRegarding text editor, I was talking about a control I can embed on my app, not the IDE. However, thanks for the insighthttp://stackoverflow.com/questions/1626318/starting-programming-mac-os-xComment by changelog on Starting programming Mac OS Xchangelog2009-10-26T18:09:10Z2009-10-26T18:09:10ZActually I need a text editor <i>control</i> to embed on my app. Sorry about the miscommunication.http://stackoverflow.com/questions/1470758/jquery-load-html-and-click-return-value-to-input-field/1470778#1470778Comment by changelog on JQuery: load html and click return value to input fieldchangelog2009-09-24T10:03:40Z2009-09-24T10:03:40ZThat's a more complete answer than mine :)
Great catch!http://stackoverflow.com/questions/1459554/video-file-validation-in-djangoComment by changelog on Video file validation in djangochangelog2009-09-22T11:40:48Z2009-09-22T11:40:48ZWhat is the question?http://stackoverflow.com/questions/1440349/e4x-how-to-best-check-existence-of-an-attribute/1440401#1440401Comment by changelog on e4x: how to best check existence of an attribute?changelog2009-09-17T18:15:56Z2009-09-17T18:15:56ZIf the attribute doesn't exist, you won't be able to do x.@inexistantattr.length() without javascript throwing an error now, will you? ;)http://stackoverflow.com/questions/1293369/using-last-child-in-css/1293385#1293385Comment by changelog on using last-child in csschangelog2009-08-18T11:53:16Z2009-08-18T11:53:16ZWrong, it works on IE >= 7http://stackoverflow.com/questions/1293369/using-last-child-in-css/1293379#1293379Comment by changelog on using last-child in csschangelog2009-08-18T11:52:44Z2009-08-18T11:52:44ZThat can also be what causes it, yeah :)http://stackoverflow.com/questions/1212149/class-diagram-examples-for-rpg-role-playing-game/1223309#1223309Comment by changelog on Class diagram examples for RPG (Role Playing Game)changelog2009-08-06T14:46:41Z2009-08-06T14:46:41ZCare to share it? :)http://stackoverflow.com/questions/1134441/open-source-component-to-develop-multi-page-pdfs-from-html/1134455#1134455Comment by changelog on Open source component to develop multi-page PDFs from HTMLchangelog2009-08-03T16:22:03Z2009-08-03T16:22:03ZIt has worked flawlessly for me for the past year. I <i>HIGHLY</i> recommend it.http://stackoverflow.com/questions/1221990/hungarian-algorithm-and-multiple-factors/1222263#1222263Comment by changelog on Hungarian Algorithm and multiple factorschangelog2009-08-03T13:59:02Z2009-08-03T13:59:02ZNicely researched and answered. Thanks a lot for the feedback.http://stackoverflow.com/questions/1167523/c-compilation-problems-with-microsoft-visual-studios-2010-beta-1/1173192#1173192Comment by changelog on C++ Compilation Problems with Microsoft Visual Studios 2010 Beta 1changelog2009-07-28T16:39:36Z2009-07-28T16:39:36ZYou should mark Nemanja's answer as correct.http://stackoverflow.com/questions/1114447/how-to-use-c-like-attributes-in-c/1193389#1193389Comment by changelog on How to use C#-like attributes in C++changelog2009-07-28T16:25:45Z2009-07-28T16:25:45ZThe idea is to have the attributes applied to several classes. Imagine, if you will, a Rarity attribute for an Item class.