User chakrit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T13:55:19Zhttp://stackoverflow.com/feeds/user/3055http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823174/in-visual-studio-i-keep-getting-two-copies-of-formmain-cs-and-one-contains-old-ed/1823180#18231800Answer by chakrit for In Visual Studio I keep getting two copies of FormMain.cs and one contains old edits, why?chakrit2009-11-30T23:41:14Z2009-11-30T23:49:22Z<p>Check the file attributes (right-click and select Properties in windows explorer)</p>
<p>Make sure you're not having the Read-only flag set.</p>
<p><img src="http://chakrit.net/files/stackoverflow/readonly.png" alt="alt text"></p>
http://stackoverflow.com/questions/1813899/cant-save-in-memory-linq-to-sql-entities-without-db-errors/1813953#18139530Answer by chakrit for Can't save in-memory linq to sql entities without db errorschakrit2009-11-28T22:19:10Z2009-11-28T22:19:10Z<p>If you've just put a fist through your screen... then I've got to ask:</p>
<p>What have you tried?</p>
<p>So maybe I can come up with something you might be looking over.</p>
<p>But just off the top of my head, it seems that you may have accidentally caused this by setting one of "Update Check" or "Auto Sync" or "Auto Generated Value" or some property you weren't meant to set on your entity in the DBML file.</p>
<p>"Update Check" and "Auto Sync" can be tricky sometimes, you might want to go over your entites and look at those two and try a few different combinations.</p>
http://stackoverflow.com/questions/1813746/should-i-put-custom-code-inside-microsofts-bcl-fcl-namespaces/1813779#18137794Answer by chakrit for Should I put custom code inside Microsoft's BCL/FCL namespaces?chakrit2009-11-28T21:02:46Z2009-11-28T21:21:18Z<p><strong>Don't do it !!!!!</strong> ... unless it's a really really really good fits such as if you're hacking the BCL to workaround a weird bug ... but even that is hardly ever the case.</p>
<ul>
<li>Namespace clutter -- What if you have to define a helper class, an extra utility...</li>
<li>Extension methods -- It'll will automatically carry over to anyone <code>using System.Windows.Forms;</code></li>
<li>Tooling problems -- I believe it <em>will</em> breaks some 3rd party libraries/tools.</li>
<li>Reflection -- The <code>Namespace</code> property is of the <code>string</code> type!</li>
<li>Utter confusion -- Surely this'll pops some "WTF"s during debugging sessions.</li>
</ul>
<p><hr></p>
<p><strong>How to:</strong> add another auto-import namespace to an asp.net website:</p>
<ol>
<li>Open up web.config. Or create one at a folder of your choice (such as Project\Views\web.config for a view-related settings)</li>
<li>Under the <code><pages></code> element, find the <code><namespaces></code> element.</li>
<li>Add: <code><add namespace="Your.Namespace.Here" /></code></li>
<li>Builds the project just to be sure.</li>
<li>Re-load your ASPX and ASCX pages (that is closing and re-opening them)</li>
<li>Try one of your class, it should shows up in intellisense without any <code><%@ Imports /></code> now</li>
</ol>
<p>There you go, no need for a duct tape approach!</p>
http://stackoverflow.com/questions/1310977/access-silverlights-createobject-via-javascripts-new-operator0Access Silverlight's createObject via Javascript's new operator?chakrit2009-08-21T09:37:53Z2009-11-20T13:00:02Z
<p><em>feel free to skip down to the question below</em></p>
<p>I'm trying to create a bridge so a <em>huge</em> javascript application can be replaced by a new Silverlight-based rewrite as smoothly as possible.</p>
<p>In the legacy application, there is this JS class:</p>
<pre><code>function LatLng(lat, lng, url) { /* snip... */ }
</code></pre>
<p>And it is being used a lot throughout my customer's codebase like this:</p>
<pre><code>var ll = new LatLng(12, 34, '567');
</code></pre>
<p>However, as the bridge in Silverlight is required to be backwards-compatible and that it be done with maximum maintainibility, I decided to re-create the LatLng class as a ScriptableType in Silverlight:</p>
<pre><code>[ScriptableType]
public class LatLng { /* similar snipped stuff ... */ }
</code></pre>
<p>As I go about re-implementing the methods in the class in Silverlight/C#, going so far as to <a href="http://stackoverflow.com/questions/1124563/builds-a-delegate-from-methodinfo">asked and implement this delegate util</a>. Which had allowed me to wire calls from the Javascript side right into the Silverilght runtime with 0 change, by doing this:</p>
<pre><code>var x = new LatLng() // <-- constructor now calls into Silverlight
// and ask for methods to be wired into it
</code></pre>
<p>Unfortunately, <em>this approach doesn't work with property getters/setters</em> as there is no such concept in JavaScript (at least not in every major browser yet), the only way to get property getters/setters to work is to let the Silverlight runtime be the one creating the wrapper for my class</p>
<p>i.e. an instance must be created from the <code>Content.services.createObject</code> in JavaScript:</p>
<pre><code>var ll = silverlightObject.Content.services.createObject("LatLng");
</code></pre>
<p>This single change, will requires <em>all</em> existing users of the application to go-over their entire codebase in order to upgrade... not good at all</p>
<p><hr /></p>
<p><strong>The Problem</strong></p>
<blockquote>
<p>Is there a way to re-wire the new
operator in Javascript to returns an
instance from another function
instead?</p>
</blockquote>
<pre><code>var ll = new LatLng(13, 100)
/* ^
^
should returns instance created from
silverlightObject.Content.services.createObject
*/
</code></pre>
<p>And there are 2 gotchas:</p>
<ul>
<li><code>createObject</code> is a Silverlight-managed function, <code>Function.apply</code> or <code>Function.call</code> does not work</li>
<li>The result from createObject is a wrapper, which you cannot iterate over (thus me asking for the delegate util in the first place)</li>
</ul>
<p>I hope that there is a way out without really having to walk every customers through changing the way LatLng are created...</p>
<p>If you have any ideas please kindly share it here, I've been trying to get this ironed out for the last week to no avail :-(</p>
http://stackoverflow.com/questions/1696742/c-property-refactoring-should-i-care/1696767#16967670Answer by chakrit for C# property refactoring - Should I care?chakrit2009-11-08T14:50:58Z2009-11-08T14:50:58Z<p>So for each Encrypted you need a reference to the parent, I'm I correct?</p>
<p>So my first attempt would be trying get a reference to the parent into each usage of Encrypted first. I think lightweight interfaces are good for this kind of job:</p>
<pre><code>public interface IHasEncryptedProperties
{
string GetKey();
}
</code></pre>
<p>And then implement them on classes than need encrypted properties</p>
<pre><code>public class Line : IHasEncryptedProperties
{
public string GetKey() { /* return instance-specific key; */ }
}
</code></pre>
<p>Then on Encrypted you then requires that a parent instance be passed in.</p>
<pre><code>public class Encrypted<T>
{
private IHasEncryptedProperties _parent;
public Encrypted(IHasEncryptedProperties parent)
{
_parent = parent;
}
public T Value
{
get
{
var encryptor = GetEncryptor(_parent.GetKey());
// encrypt and return the value
}
}
}
</code></pre>
<p>..</p>
<p>Hope this helps. If it doesn't, please leave a comment.</p>
http://stackoverflow.com/questions/1696680/starting-a-new-career-as-freelancer-is-php-a-must/1696691#16966915Answer by chakrit for Starting a new career as freelancer. Is PHP a must?chakrit2009-11-08T14:16:09Z2009-11-08T14:24:25Z<p>As a retired Freelancer, now part corporate cube farm dev and part business owner I'd say <strong>you definitely should start looking at PHP</strong>.</p>
<p>You don't need to know PHP in-depth but you should be able to bend a few open source CMS such as Wordpress or Joomla! or Drupal to your will. It will help speed you up greatly on many run-of-the-mill projects that need a bit of hacking here and there.</p>
<p>Don't waste time building freelance gig assignments using enterprise tools, they're not meant for each other. They're sometimes suited. But if you can roll a custom wordpress install, a few simple plugin that fills the gap and a custom theme, then you're good to go.</p>
<p>For example, if a client comes asking you for a "web presence", you don't need such things as a persistence ignorance framework, you just need a CMS that has an easy to use backend for the client to edit.</p>
<p><hr></p>
<p>Now to answer your other questions, these are my opinions (other freelancers may not agree with me)</p>
<p><strong>1 - Does (usually) client have preference of language?</strong></p>
<p>From my experience they mostly don't have "preferences" but they may have an internal IT guy who only knows Windows or they may have already registered the domain and it is now serving up websites ok and they don't want to switch, for example.</p>
<p><strong>2 - Is there enough Hour based jobs in freelancer market?</strong></p>
<p>Not quiet sure what you mean by "hour based jobs". If you meant freelance gigs to do, atleast where I'm living, there are almost never a quiet period. <strong>Provided your reputation is good.</strong> At some point in the future you might even be able to pitch client with a new project if you want one. Say, a great client who had hired you once last year is now transforming their company, you might be able to pitch them with an idea of your own and have them working with you again.</p>
http://stackoverflow.com/questions/1694200/arguments-against-using-open-source-frameworks5Arguments *against* using open source frameworks?chakrit2009-11-07T19:51:20Z2009-11-07T22:55:59Z
<p>I recently have a client comes asking me as a C#/.NET dev for reasons about why I have not picked any of the "wave of the future" frameworks out there like Rails/Django and instead choose "proprietary software" from M$ to build his website.</p>
<p>Frankly, I love all the open source stuff. But seeing non-technical people bugging me for reasons why I choose the tools I always choose just because it's "proprietary" and "locked in" is just putting unnecessary stress on me.</p>
<p>I have since stated my rationales to the client but end up w/ Python/Django anyway for the sake of the company. Lucky me that I can do some Python coding so it's a quick run of the mill for me. Nothing spectacular.</p>
<p>The tools and documentation is the biggest plus to me when using "proprietary software". For me, there's nothing like doing C# on Visual Studio especially with now C# becoming more functional. It's been so much fun since LINQ support was out.</p>
<p>But I have to wonder...</p>
<p><strong>What are some arguments <em>against</em> using OSS frameworks?</strong></p>
<p>From the your own perspective, from the company/business/startup perspective, from whatever angles...</p>
http://stackoverflow.com/questions/1684966/how-can-i-reuse-objects-in-javascript/1685142#16851421Answer by chakrit for How can I reuse objects in JavaScript?chakrit2009-11-06T03:01:54Z2009-11-06T03:01:54Z<p>Answering @Mark comments</p>
<p>So basically, your object initialization would be:</p>
<pre><code>var newObj = fetchFromList();
resetBasicParameters(newObj);
newObj.think = function() { /* a new implementation */ };
</code></pre>
<p>You can share the "a new implementation" part among multiple objects and still be able to access variables/properties inside the objects by utilizing the <code>this</code> keyword:</p>
<pre><code>function thinkInTriangle() { /* trigonometries */ }
function thinkInRects() { /* geometries */ }
function thinkInPolygons() { /* crazy geometries */ }
function createRect() { return getObjFromPool(thinkInRects); }
function createTriangle() { return getObjFromPool(thinkInTriangle); }
function createPolygon() { return getObjFromPool(thinkInPolygons); }
function getObjFromPool(thinkFunc)
{
var newObj = fetchFromList();
resetBasicParameters(newObj);
newObj.think = thinkFunc
}
</code></pre>
<p>Each of the <code>thinkInX</code> function, when wired to an instance of object will have the <code>this</code> keyword pointing to the particular object it is in. So this basically means that the <code>think</code> function can be detached from any/all objects and be manipulated at wills.</p>
<p>Not sure if this'd would help. Awaiting feedback.</p>
http://stackoverflow.com/questions/1685078/how-do-you-make-a-div-tag-into-a-link/1685108#16851085Answer by chakrit for How do you make a div tag into a linkchakrit2009-11-06T02:50:27Z2009-11-06T02:50:27Z<p><strong>DON'T DO IT.</strong></p>
<ul>
<li>If you wants a link, wraps the content in a proper <code><A>NCHOR</a></code>.</li>
<li>If you wants to turns the <code><DIV></code> into a link, use "Javascript" to wraps the <code><DIV></code> inside an <code><A>NCHOR</A></code></li>
<li>If you want to perform some actions on clicking the <code><DIV></code> use the <code>onclick</code> event handler. And don't call it a "link".</li>
</ul>
<p>...</p>
http://stackoverflow.com/questions/1684966/how-can-i-reuse-objects-in-javascript/1685037#16850372Answer by chakrit for How can I reuse objects in JavaScript?chakrit2009-11-06T02:26:55Z2009-11-06T02:40:15Z<p>It really depends on how you exercises the objects in your code. If you are really strict and doesn't do clever things with regards to detecting the object's type... then it'd be safe to suggest that you simply re-use the objects as-is ala duck typing style. Just fill in the missing "some different ones" would probably be enough.</p>
<p>On the other hand, if you're not sure or have code that mingles and tingles with the properties of the object, such as:</p>
<pre><code>if (obj.color == "white" && obj.legs == 2 && obj.family != "swan")
{
// we have a duck!
}
</code></pre>
<p>Then you will need to be strict on how you "shape" your objects.</p>
<p>You can essentially removes a "key" from an object with the delete statement</p>
<pre><code>myObj.a = "HELLO";
alert(myObj["a"]); // => alerts "HELLO"
delete myObj.a;
alert(myObj["a"]); // => alerts "undefined"
</code></pre>
<p>And from that you can use a simple for loops to "resets" the object before re-using it as something else:</p>
<pre><code>for (var key in myObj)
delete myObj[key];
</code></pre>
<p>You can also do a simple differences check using the if operator:</p>
<pre><code>var refObj = { /* obj of desired type */ };
var newObj = { /* obj fetched from recycler */ };
for (var key in newObj)
if (refObj[key] == undefined)
delete newObj[key]; // removes alien keys found in newObj
else
newObj[key] = refObj[key]; // add/resets keys so it looks like refObj
</code></pre>
<p><hr></p>
<p>However I would rather suggest that you only re-use objects of the exact same type or rethink your class/object hierarchies to avoid this overhead.</p>
<p>I sense that doing this would be getting too clever. Wasn't re-cycling objects the job of the JS runtime and not the developer?</p>
http://stackoverflow.com/questions/1679349/sqlite-derby-vs-file-system/1679379#16793792Answer by chakrit for SQLite , Derby vs file systemchakrit2009-11-05T09:33:04Z2009-11-05T09:38:54Z<p>I don't think you will get a performance just by changing the data store to SQLite. You should migrate a FS-based store to a relational (SQL) database store if.</p>
<ul>
<li><strong>You need atomic operations.</strong> - your app can crash at any time and you don't have to worry about corrupt data)</li>
<li><strong>You need asynchronous operations.</strong> - multiple instances of your application can simultaneously modify the data without corrupting it/getting an invalid state.</li>
<li><strong>You need data normalization.</strong> - Products -m2m-> Catalogs</li>
<li><strong>Automatic Indexes</strong> - If you need fast searching capabilities (if your file system isn't already fast enough)</li>
<li><strong>You need abstraction of complex data operations.</strong> - i.e. SELECT SUM(Price) WHERE Price < 10 and the likes</li>
</ul>
<p>Those are some of the gains you get by switching to SQLite.</p>
<p>You can gets performance gains from SQLite if you also properly utilizes one or more of the above properties of a relational store that you don't have using a file-based system.</p>
http://stackoverflow.com/questions/1666183/c-object-reference-not-set-to-an-instance-of-an-object/1666199#16661993Answer by chakrit for C# Object reference not set to an instance of an object.chakrit2009-11-03T09:25:17Z2009-11-03T09:47:00Z<p>If the form is in the <em>Minimized</em> state or if you click on anything on the taskbar, the form might lose focus thus becoming <em>inactive</em> ... thus ActiveForm will be null.</p>
<p>If TrayIcon is attached to the form and isn't a standalone control running in the background... then just use the "this" reference instead to refer the the related form.</p>
<pre><code>if (this.WindowState == FormWindowState.Normal)
{
this.WindowState = FormWindowState.Minimized;
}
else
{
this.WindowState = FormWindowState.Normal;
}
</code></pre>
<p>You should not use ActiveForm when your code doesn't depends on the form being active.</p>
http://stackoverflow.com/questions/61487/do-you-use-uml-in-agile-development-practices8Do you use UML in Agile development practices?chakrit2008-09-14T17:28:29Z2009-10-30T17:43:18Z
<p>It feels like an artifacts of an earlier days, but UML sure does have its use. However, agile processes like Extreme Programming advocates "embracing changes", does that also means I should make less documents and UML models as well? Since they gives the impression of setting something in stone.</p>
<p>Where does UML belongs in an Agile development practice? Other than the preliminary spec documents, should I use it at all?</p>
<p><strong>EDIT:</strong> Found this: <a href="http://www.agilemodeling.com/artifacts/" rel="nofollow">Potential artifacts for agile modeling</a></p>
http://stackoverflow.com/questions/1616801/how-they-build-the-identical-game-on-mac-pc-and-flash-for-example-plants-vs-z/1616833#16168332Answer by chakrit for How they build the identical game on Mac, PC, and Flash? For example: Plants VS Zombieschakrit2009-10-24T03:21:28Z2009-10-24T03:21:28Z<p>Well, for one thing, you definitely <em>can</em> write Flash apps in C/C++.</p>
<p>See this video: <a href="http://www.youtube.com/watch?v=0hX-Uh3oTcE" rel="nofollow">http://www.youtube.com/watch?v=0hX-Uh3oTcE</a></p>
<p>And I suppose with some C macros you can make it cross-compile between 3 platforms simultaneously with some effort.</p>
<p>Other possibilities would including using something like <a href="http://haxe.org/doc/intro" rel="nofollow">haXe</a> or the <a href="http://nekovm.org/" rel="nofollow">NekoVM</a> sort of thing.</p>
http://stackoverflow.com/questions/1582602/how-to-view-the-controllers-resulting-html-in-debug-with-asp-net-mvc/1583604#15836041Answer by chakrit for How to view the controller's resulting html in debug with ASP.NET MVC?chakrit2009-10-18T00:35:15Z2009-10-18T00:35:15Z<p>What prevents you from just hitting the Route that renders the partial view and view source?</p>
http://stackoverflow.com/questions/1558514/asp-net-mvc-uses-a-delegate-field-as-an-action-method3ASP.NET MVC: Uses a delegate field as an action method?chakrit2009-10-13T06:39:32Z2009-10-13T11:40:40Z
<p><strong>Is it possible in ASP.NET MVC via some extension/override points to allow a "delegate field" to be used as an "action"?</strong></p>
<p>Something like:</p>
<pre><code>using System;
using System.Web.Mvc;
namespace Company.Web.Controllers
{
public class SwitchboardController : BaseController
{
public Func<ActionResult> Index, Admin, Data, Reports;
public SwitchboardController()
{
// Generic views
Index = Admin = Data = Reports =
() => View();
}
}
}
</code></pre>
<p>I know I'm a little hell-bent for this one but if this is possible it'd open up many new ways of making actions. You could, for example, have Django-style generic views in MVC with only a single line of code to define the action or have different ways to factor duplicate logic across multiple controllers.</p>
<p>I'm not quiet sure where would be the place to slap this logic into or how much work would be required to alter something so fundamental in the framework.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/28811#28811203Answer by chakrit for Hidden Features of C#?chakrit2008-08-26T18:34:44Z2009-10-10T13:46:35Z<p>Read all the answers but I think <strong>lambdas and type inferrence</strong> is underrated.</p>
<p>Havn't seen anyone mentioned that <strong>Lambdas can have multiple statement</strong> and they <strong>double as a compatible delegate object</strong> automatically (just make sure the signature match) as in:</p>
<pre><code>Console.CancelKeyPress +=
(sender, e) => {
Console.WriteLine("CTRL+C detected!\n");
e.Cancel = true;
};
</code></pre>
<p>Note that I don't have a <code>new CancellationEventHandler</code> nor do I have to specify types of sender and e, they're inferrable from the event. Which is why this is less cumbersome to writing the whole <code>delegate (blah blah)</code> which also requires you to specify types of parameters.</p>
<p><strong>Lambdas doesn't need to return anything</strong> and type inference is extremely powerful in context like this.</p>
<p>and BTW, you can always return <strong>Lambdas that make Lambdas</strong> in the functional programming sense. For example, here's a lambda that make a lambda that handles a Button.Click event:</p>
<pre><code>Func<int, int, EventHandler> makeHandler =
(dx, dy) => (sender, e) => {
var btn = (sender as Button);
btn.Top += dy;
btn.Left += dx;
};
btnUp.Click += makeHandler(0, -1);
btnDown.Click += makeHandler(0, 1);
btnLeft.Click += makeHandler(-1, 0);
btnRight.Click += makeHandler(1, 0);
</code></pre>
<p>Note the chaining: <code>(dx, dy) => (sender, e) =></code></p>
<p>Now that's why I'm happy to have taken the functional programming class :-)</p>
<p>Other than the pointers in C, I think its the other fundamental thing you should learn :-)</p>
http://stackoverflow.com/questions/1485265/any-advances-on-john-resigs-javascript-micro-templating0Any advances on John Resig's "JavaScript Micro-Templating"?chakrit2009-09-28T03:24:57Z2009-09-28T03:52:35Z
<p>So I've this post on <a href="http://ejohn.org/blog/javascript-micro-templating/" rel="nofollow">JavaScript Micro-Templating</a> by John Resig and I have a need for a micro-templating engine like this.</p>
<p>But he saids in the post that he'll keep a more-refined version in his Secrets of the JavaScript ninja book and also mentions that he'd like to see it evolves.</p>
<p>So I'm wondering, is there a more stable/advanced version of this Micro-templating engine by John Resig? If so, how can I obtain it? That JavaScript book is not available in my country.</p>
http://stackoverflow.com/questions/1450882/how-to-get-to-app-relative-subdirectory-in-net-windows-app/1450926#14509261Answer by chakrit for How to get to app-relative subdirectory in .net windows app?chakrit2009-09-20T12:33:00Z2009-09-20T12:33:00Z<p>I think the recommended way in Windows is to use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.application.startuppath.aspx" rel="nofollow"><strong>Application.StartupPath</strong></a> property.</p>
<p>And with <a href="http://msdn.microsoft.com/en-us/library/fyy7a5kt.aspx" rel="nofollow"><strong>Path.Combine</strong></a> you can have your xml file path Server.MapPath-style like this:</p>
<pre><code>var appPath = Application.StartupPath;
var xmlPath = Path.Combine(appPath, "data/my_db.xml");
// xmlPath now points to app-relative data/my_db.xml file
</code></pre>
<p>...</p>
http://stackoverflow.com/questions/431343/what-programming-language-is-now-the-most-influential/431457#43145718Answer by chakrit for What programming language is now the most influential?chakrit2009-01-10T18:10:21Z2009-09-17T12:40:04Z<p><strong>Javascript.</strong></p>
<p>why not?</p>
<p>we're all programming for the web in one way or another these days, no?</p>
<p><hr /></p>
<p>To generalize, I'd say <strong>Functional Programming Languages</strong></p>
<p>I disagree with C being influential <em>now</em>. It <em>had</em> been influential, yes... but its day is literally over. Its influence still lasts and will lasts for the next decades or so, but
for <strong>now</strong> I think it's functional programming.</p>
<p>I think Python-style syntax and functional languages have even more influence now than C. </p>
<pre><code>from __future__ import braces
SyntaxError: not a chance
</code></pre>
<p>I'm starting to love not having to type a closing brace now.... I really do!</p>
<p>C# and VB folks had just been recently introduced the concepts of LINQ.... and they say LINQ queries are awesome! and then they never knew that Lisp, Caml, Haskell, Schemes and friends of Scheme have all had function as first class object literally since the beginning of time.</p>
<p>Did somebody say strong typing?</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/33271#332712Answer by chakrit for Hidden Features of C#?chakrit2008-08-28T20:07:41Z2009-09-12T20:56:44Z<p>Thought about <strong>@dp AnonCast</strong> and decided to try it out a bit. Here's what I come up with that might be useful to some:</p>
<pre><code>// using the concepts of dp's AnonCast
static Func<T> TypeCurry<T>(Func<object> f, T type)
{
return () => (T)f();
}
</code></pre>
<p>And here's how it might be used:</p>
<pre><code>static void Main(string[] args)
{
var getRandomObjectX = TypeCurry(GetRandomObject,
new { Name = default(string), Badges = default(int) });
do {
var obj = getRandomObjectX();
Console.WriteLine("Name : {0} Badges : {1}",
obj.Name,
obj.Badges);
} while (Console.ReadKey().Key != ConsoleKey.Escape);
}
static Random r = new Random();
static object GetRandomObject()
{
return new {
Name = Guid.NewGuid().ToString().Substring(0, 4),
Badges = r.Next(0, 100)
};
}
</code></pre>
http://stackoverflow.com/questions/1371119/mvc-pass-model-model-data-to-a-view-from-a-controller/1386662#13866622Answer by chakrit for MVC: pass model / model data to a view from a controller?chakrit2009-09-06T20:35:44Z2009-09-06T20:35:44Z<p>Ideally, it should "pass the data of the model to the view" so the view doesn't need to know any explicit structure of the model and thus be more reusable and designer-friendly.</p>
<p>But practically, "pass the model to the view" works as just fine. Most of the time you will need a new view anyway because clients never share favorite colors (if you know what I mean :-) so views re-usability doesn't justify having a lot of tedious code required to copy data from the model to the view.</p>
<p>What you should concern more about is the modularity of the controller itself, since many websites do share common functionalities (controllers) such as web forums or a news listing but not looks (views)</p>
http://stackoverflow.com/questions/1382016/asp-net-webcontrols-are-not-appearing-in-my-vs-2008-toolbox/1382070#13820701Answer by chakrit for ASP.NET WebControls are not appearing in my VS 2008 toolboxchakrit2009-09-05T00:32:45Z2009-09-06T19:14:36Z<p>Have you tried repairing the Visual Studio installation?</p>
<p>Pops-in the disc and select "Repair"?</p>
<p>If that doesn't work, then I think you should just re-install Visual Studio... It seems like a plugins/add-on corrupted the toolbox</p>
http://stackoverflow.com/questions/1382091/how-to-read-google-ajax-feed-api-results-from-c-code/1382147#13821473Answer by chakrit for How to read Google AJAX Feed API results from C# code? chakrit2009-09-05T01:19:46Z2009-09-05T01:27:24Z<p>I've just looked at the examples, and here is how I'd go about it.</p>
<ol>
<li>Construct the feed Url (read the documentation)</li>
<li>Use the <a href="http://msdn.microsoft.com/en-us/library/system.net.webclient.aspx" rel="nofollow">WebClient</a> to <a href="http://msdn.microsoft.com/en-us/library/system.net.webclient.downloadstring.aspx" rel="nofollow">Download the URL as a String</a>.</li>
<li>Use Json.NET to reads the string.</li>
<li>Use a for-loop to read each entries</li>
</ol>
<p>For example, a quick untested hack:</p>
<pre><code>// 1.
var url = "'http://ajax.googleapis.com/ajax/services/feed/load?q=http%3A%2F%2Fwww.digg.com%2Frss%2Findex.xml&v=1.0";
// 2.
var wc = new WebClient();
var rawFeedData = wc.DownloadString(url);
// 3.
var feedContent = JObject.Parse(rawFeedData);
// ...
var entries = feedContent["entries"];
for (int i = 0; i < entries.Length; i++) {
var entry = entries[i];
// insert entry into your desired collection
}
</code></pre>
<p>If however, you want strongly-typed class, you must first make a class that "looks like" the data that is returned from the feed api first, i.e.</p>
<pre><code>public class FeedApiResult {
public FeedApiFeedObj responseData { get; set; }
// snip ...
}
public class FeedApiFeedObj {
public string title { get; set; }
public string link { get; set; }
// snip ...
}
</code></pre>
<p>Then in step #3, you can use the deserializing method like this:</p>
<pre><code>var apiResult = JsonConvert.DeserializeObject<FeedApiResult>(feedContent)
</code></pre>
<p>...</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1382106/research-question-on-programming-language-and-writing-software/1382134#13821342Answer by chakrit for Research question on programming language and writing software.chakrit2009-09-05T01:08:12Z2009-09-05T01:08:12Z<p>Regarding "less code", you might have better luck searching for <a href="http://en.wikipedia.org/wiki/KISS%5Fprinciple" rel="nofollow">The KISS principle</a>.</p>
<p>And for a "website" that may have information you're looking for, I must recommend sifting through the works of <a href="http://martinfowler.com/" rel="nofollow">Martin Fowler</a> and be sure to look at <a href="http://martinfowler.com/articles.html" rel="nofollow">his list of articles</a>.</p>
<p>He writes a lot about code quality an OOP, but I believe that you might find what you're looking for there or atleast get some pointers.</p>
http://stackoverflow.com/questions/1382074/running-console-application-from-asp-net/1382078#13820781Answer by chakrit for Running Console application from ASP.NETchakrit2009-09-05T00:36:53Z2009-09-05T00:51:59Z<p>Just start it like you'd start any normal EXE.</p>
<pre><code>var proc = Process.Start(@"C:\myconsole.exe");
</code></pre>
<p>You should place the console EXE file at a proper place though.</p>
<p>And you can end it with:</p>
<pre><code>proc.Kill();
</code></pre>
<p>...</p>
<p><strong>Note:</strong> that starting the process on <em>a single request</em> might not be a good idea. It might be better to start it on another thread and lets it spin so you can <em>response</em> to your users faster.</p>
http://stackoverflow.com/questions/1382034/asp-net-mvc-role-based-security-and-other-person-based-data/1382043#13820432Answer by chakrit for ASP.Net MVC, role based security and other person-based datachakrit2009-09-05T00:19:59Z2009-09-05T00:27:49Z<p>Since you are already using ASP.NET Forms Authentication the <strong><a href="http://msdn.microsoft.com/en-us/library/ms998314.aspx" rel="nofollow">ASP.NET RoleProvider</a></strong> which can be integrated into MVC via the <strong><a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.authorizeattribute.aspx" rel="nofollow">Authorize</a></strong> attribute is just as easy to setup.</p>
<p>And you get something like this:</p>
<pre><code>[Authorize(IsInRole="Chef")]
public ActionResult Cook() { // snip ...
</code></pre>
<p>And if you did use all that, there's also the <strong><a href="http://msdn.microsoft.com/en-us/library/0580x1f5.aspx" rel="nofollow">ProfileProvider</a></strong> for ASP.NET which generates profile code for you with full intellisense support. You can customize which fields you want and what data types it should be stored in etc. etc.</p>
<p>Both the Role Provider and Profile Provider can be customized or roll-your-own, there are many many articles on the internet that will tell you how.</p>
<p>Using the ASP.NET providers also gives you the benefits that the data is maintained automatically throughout the ASP.NET request processing pipeline, e.g. you can access this property:</p>
<pre><code>HttpContext.Current.Profile
</code></pre>
<p>...from almost anywhere.</p>
http://stackoverflow.com/questions/1382016/asp-net-webcontrols-are-not-appearing-in-my-vs-2008-toolbox/1382032#13820320Answer by chakrit for ASP.NET WebControls are not appearing in my VS 2008 toolboxchakrit2009-09-05T00:11:48Z2009-09-05T00:11:48Z<p>Have you tried the "Reset Toolbox" command?</p>
<p><img src="http://chakrit.net/files/stackoverflow/so%5Freset%5Ftoolbox.png" alt="reset toolbox" /></p>
<p>...</p>
http://stackoverflow.com/questions/1369471/c-suspend-resume-process/1369488#13694881Answer by chakrit for C# - Suspend/Resume Processchakrit2009-09-02T18:51:13Z2009-09-02T18:51:13Z<p>Duplicate: <a href="http://stackoverflow.com/questions/71257/suspend-process-in-c">http://stackoverflow.com/questions/71257/suspend-process-in-c</a></p>
http://stackoverflow.com/questions/1369438/object-not-releasing-objective-c/1369457#1369457-1Answer by chakrit for Object not releasing objective Cchakrit2009-09-02T18:45:24Z2009-09-02T18:45:24Z<p>You are de-allocating the chunk of memory the pointer's pointing at, <strong>but the data is still there</strong>.</p>
<p>Releasing it doesn't automatically zeroes out that part of the memory.</p>
<p>So you can still read the data out just fine but it's just might be snapped (allocated) by something else down the line... but just not yet.</p>
<p>I'm not an ObjC coder by trade but as since its compatible with C that's I'm guessing from my C experience.</p>
http://stackoverflow.com/questions/411668/what-can-we-learn-from-your-most-recent-cataclysmic-paradigm-shift/411700#411700Comment by chakrit on What can we learn from your most recent cataclysmic paradigm shift?chakrit2009-12-04T06:26:46Z2009-12-04T06:26:46ZIt got upvotes because everyone knows what TDD is about. There's no need to add a lot of noises. If you don't know what it is, then that's what the link is for.http://stackoverflow.com/questions/1838839/windows-server-2008-x86-install-failsComment by chakrit on Windows server 2008 x86 install failschakrit2009-12-03T09:48:13Z2009-12-03T09:48:13ZPlease ask this question on superuser.com .http://stackoverflow.com/questions/1813746/should-i-put-custom-code-inside-microsofts-bcl-fcl-namespaces/1813840#1813840Comment by chakrit on Should I put custom code inside Microsoft's BCL/FCL namespaces?chakrit2009-11-28T21:38:46Z2009-11-28T21:38:46ZTo the novice with a hammer...http://stackoverflow.com/questions/1813746/should-i-put-custom-code-inside-microsofts-bcl-fcl-namespaces/1813810#1813810Comment by chakrit on Should I put custom code inside Microsoft's BCL/FCL namespaces?chakrit2009-11-28T21:26:52Z2009-11-28T21:26:52ZJon's you know you should spare us some reps sometimes... :)http://stackoverflow.com/questions/1773283/why-cant-you-send-multiple-emails-asynchronously-using-the-same-smtpclient-insta/1773293#1773293Comment by chakrit on Why can't you send multiple emails asynchronously using the same SmtpClient instance?chakrit2009-11-20T21:30:17Z2009-11-20T21:30:17ZI think that's an intentional design limiting to you to think about sending emails. Not just fire up the SmtpClient and locks up the response stream while you're at it but <i>think</i> about really doing the Async stuff right.http://stackoverflow.com/questions/1696680/starting-a-new-career-as-freelancer-is-php-a-mustComment by chakrit on Starting a new career as freelancer. Is PHP a must?chakrit2009-11-16T01:44:04Z2009-11-16T01:44:04ZThose who closes this question as subjective have simply never really tried a freelancing gig for a living.http://stackoverflow.com/questions/1696742/c-property-refactoring-should-i-care/1696767#1696767Comment by chakrit on C# property refactoring - Should I care?chakrit2009-11-09T09:14:04Z2009-11-09T09:14:04Z@SeeR Oh.. I understand your problem now... let's see what I can do...http://stackoverflow.com/questions/1696742/c-property-refactoring-should-i-care/1696767#1696767Comment by chakrit on C# property refactoring - Should I care?chakrit2009-11-09T01:16:11Z2009-11-09T01:16:11Z@SeeR You can overloads conversion operator from T to Encrypted<T> for the property setters part, but I'm not sure. Will get back to it and update this post when I have time.http://stackoverflow.com/questions/1432111/how-to-write-onshow-event-using-javascript-jquery/1432140#1432140Comment by chakrit on How to write onshow event using javascript/jquery?chakrit2009-11-09T01:10:29Z2009-11-09T01:10:29ZWhat about WebKit?http://stackoverflow.com/questions/1696672/how-to-use-ssh-from-shell-script-without-waiting-for-password/1696676#1696676Comment by chakrit on How to use ssh from shell script without waiting for password? chakrit2009-11-08T14:11:26Z2009-11-08T14:11:26ZPlease read the first sentence of the question.http://stackoverflow.com/questions/1696672/how-to-use-ssh-from-shell-script-without-waiting-for-passwordComment by chakrit on How to use ssh from shell script without waiting for password? chakrit2009-11-08T14:10:36Z2009-11-08T14:10:36ZYou might get better answers if you asked this question on serverfault.com http://stackoverflow.com/questions/1694200/arguments-against-using-open-source-frameworks/1694243#1694243Comment by chakrit on Arguments *against* using open source frameworks?chakrit2009-11-08T14:07:51Z2009-11-08T14:07:51Z@Rasmus Kaj that depends on the project. Some projects are left stagnated for years with no body responding. Take the WMD editor used on SO for example. It's not simply a black and white thing.http://stackoverflow.com/questions/1694200/arguments-against-using-open-source-frameworks/1694213#1694213Comment by chakrit on Arguments *against* using open source frameworks?chakrit2009-11-07T20:17:11Z2009-11-07T20:17:11Z@joemoe +1... and it gets worse when your customer doesn't know any tech but just hearing FUDs from his/her friends..http://stackoverflow.com/questions/1694200/arguments-against-using-open-source-frameworks/1694239#1694239Comment by chakrit on Arguments *against* using open source frameworks?chakrit2009-11-07T20:15:16Z2009-11-07T20:15:16Z@marcgg It's just my own personal issue... but the question was more about the general schemes of <i>not</i> using OSS frameworks/softwares.http://stackoverflow.com/questions/1694200/arguments-against-using-open-source-frameworks/1694239#1694239Comment by chakrit on Arguments *against* using open source frameworks?chakrit2009-11-07T20:11:20Z2009-11-07T20:11:20ZJust wanted to add that "a bit" might actually be "a gigabit" especially with regards to some complicated OSS technologies... like server hardware drivers... you can't expect your sysadmins to switch over to linux and be able to support those kind of issues... not even inside a month or two.