User aprilchild - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:21:33Zhttp://stackoverflow.com/feeds/user/25339http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/172753/embedding-javascript-engine-into-net-c16Embedding JavaScript engine into .NET (C#)aprilchild2008-10-05T22:15:44Z2009-10-26T12:30:36Z
<p>Hi,
just wondering if anyone has ever tried embedding and actually integrating any js engine into the .net environment. I could find and actually use (after a <strong>LOT</strong> of pain and effort, since it's pretty outdated and not quite finished) spidermonkey-dotnet project. Anyone with experience in this area? Engines like SquirrelFish, V8.. </p>
<p>Not that I'm not satisfied with Mozilla's Spidermonkey (using it for Rails-like miniframework for custom components inside the core ASP.NET application), but I'd still love to explore a bit further with the options. The command-line solutions are not what I'd need, I cannot rely on anything else than CLR, I need to call methods from/to JavaScript/C# objects.</p>
<pre><code>// c# class
public class A
{
public string Hello(string msg)
{
return msg + " whatewer";
}
}
// js snippet
var a = new A();
console.log(a.Hello('Call me')); // i have a console.log implemented, don't worry, it's not a client-side code :)
</code></pre>
<p>Just to clarify - I'm not trying to actually program <strong>the application itself</strong> in server-side javascript. It's used solely for writing custom user subapplications (can be seen as some sort of DSL). It's much easier (and safer) to allow normal people programming in js than C#.</p>
http://stackoverflow.com/questions/914416/use-canvas-tag-or-create-a-bunch-of-divs-whats-faster/914473#9144731Answer by aprilchild for Use canvas tag or create a bunch of <div's> Whats faster?aprilchild2009-05-27T07:52:41Z2009-05-27T07:52:41Z<p>I'd personally go for canvas (excanvas.js for VML emulating in IE will do the job). For simplicity and future code expansion reasons. </p>
<p>The trouble is, while browsers with native canvas implementation will perform better with the 1st option, IE should be faster using DIVs (2nd method). It's due the emulation practice, that is creating VML elements on the fly (there are simply more elements to be created than DIVs only method assumes).</p>
<p>It's just a speculation though:), write some tests and compare.</p>
http://stackoverflow.com/questions/555785/ruby-cms-blog-mephisto-vs-radiant/555830#5558301Answer by aprilchild for Ruby CMS/blog: Mephisto vs. Radiantaprilchild2009-02-17T07:44:22Z2009-02-17T07:44:22Z<p>Try <a href="http://github.com/karmi/marley/tree/master" rel="nofollow">Marley</a> used (among others) by <a href="http://restafari.org/" rel="nofollow">http://restafari.org/</a> (the author). very, very nice :). Mephisto is kind of messy (its root are very old). Radiant, well, ... I used both of them, never liked any that much.</p>
http://stackoverflow.com/questions/517799/what-is-the-problem-with-this-ajaxwith-prototype/537002#5370022Answer by aprilchild for What is the problem with this ajax(with prototype)?aprilchild2009-02-11T14:24:54Z2009-02-11T14:24:54Z<p>Have you tried another version of Prototype? It seems to me, there's a weird bug in constructing the post request body effectively creating invalid (partly) request the server cannot properly parse. Use Fiddler (easy to grasp http sniffer) and see what exactly is being sent to the server. </p>
<p>If this is not the case (I admit it would be really weird if Prototype would be broken), try reading raw post data via the PHP (should be enabled in php.ini). If you can and they are not populated into the <code>$_POST</code> collection, try <code>$_REQUEST</code> instead.</p>
<p>Also, try to consult the following thread, maybe this is your case: <a href="http://bugs.php.net/bug.php?id=41349" rel="nofollow">http://bugs.php.net/bug.php?id=41349</a> .</p>
http://stackoverflow.com/questions/376373/pretty-printing-xml-with-javascript/376438#3764380Answer by aprilchild for Pretty printing XML with javascriptaprilchild2008-12-17T23:26:43Z2008-12-17T23:26:43Z<p>what about creating a stub node (document.createElement('div') - or using your library equivalent), filling it with the xml string (via innerHTML) and calling simple recursive function for the root element/or the stub element in case you don't have a root. The function would call itself for all the child nodes.</p>
<p>You could then syntax-highlight along the way, be certain the markup is well-formed (done automatically by browser when appending via innerHTML) etc. It wouldn't be that much code and probably fast enough.</p>
http://stackoverflow.com/questions/372955/best-way-to-filter-domain-objects-for-json-output-in-an-asp-net-mvc-application/373288#3732881Answer by aprilchild for Best way to filter domain objects for json output in an ASP.NET MVC applicationaprilchild2008-12-17T00:31:53Z2008-12-17T00:31:53Z<p>You could use the <a href="http://james.newtonking.com/pages/json-net.aspx" rel="nofollow">Newtonsoft</a> library and [JsonIgnore] attribute for marking properties of your class you don't want to expose. There are other libraries (with possible different property ignore attribute name), I personally prefer this one since it's very flexible in JSON converter extensions etc + it can easily serialize anonymous objects.</p>
<pre><code>public class Customer
{
...
[JsonIgnore]
public string UrlIn { get; set; }
public string FirstName { get; set; }
// following example of a converter, you could write your own as well
[JsonConverter(typeof(Newtonsoft.Json.Converters.JavaScriptDateTimeConverter))]
public DateTime Created { get { return _created; } }
}
</code></pre>
http://stackoverflow.com/questions/335460/is-net-mvc-must-learn-technology/335634#3356340Answer by aprilchild for Is .NET MVC must learn technology?aprilchild2008-12-02T22:04:49Z2008-12-02T22:04:49Z<p>if using ASP.NET, yes it's definitely worthy. if not, pick Rails, ASP.NET MVC still feels like Rails'06 to me, but it's getting better pretty fast.</p>
http://stackoverflow.com/questions/331976/how-do-i-serialize-a-c-anonymous-type-to-a-json-string/331995#3319951Answer by aprilchild for How do I serialize a C# anonymous type to a JSON string?aprilchild2008-12-01T19:54:52Z2008-12-01T19:54:52Z<p>Use the <a href="http://james.newtonking.com/pages/json-net.aspx" rel="nofollow">Newtonsoft</a> JSON library.</p>
http://stackoverflow.com/questions/294355/php-yaml-parsers/294460#294460-1Answer by aprilchild for PHP YAML Parsersaprilchild2008-11-16T22:03:02Z2008-11-16T22:03:02Z<p>if you want to just a simple yaml parser written in PHP itself, I could provide simple free script you may want to adjust if you want.</p>
<p><a href="http://www.april-child.com/temp/yaml.php.txt" rel="nofollow">view/download here</a></p>
<p>i'm using it quite extensively on <a href="http://www.april-child.com/amy/amy.php" rel="nofollow">Amy Editor</a> for storing bundle definitions. it's easy and with Ruby-like API (Simple YAML::load(..) :).</p>
http://stackoverflow.com/questions/33897/online-php-ide/41084#41084Comment by aprilchild on Online PHP IDEaprilchild2009-06-16T11:17:09Z2009-06-16T11:17:09Zthe link to Amy Editor should maybe point at <a href="http://www.amyeditor.com/api/embed/test_php.html" rel="nofollow">amyeditor.com/api/embed/test_php.html</a>
Although you can open your FTP project (and open/save files etc) via Amy, you could use the embedded example for your own purposes.
Well, the editor is dead anyway, having better things to do than working on it :). It was just a showcase for other project anyway.http://stackoverflow.com/questions/384683/if-you-are-working-in-a-non-english-speaking-country-do-you-write-your-developmen/384698#384698Comment by aprilchild on If you are working in a non-English speaking country do you write your development documentation in your mother tongue?aprilchild2008-12-22T10:20:09Z2008-12-22T10:20:09ZYep, one of the first things doing there was force them to remove all stuff like this. I was in charge, Czech-native and knowing nada en espanol, so couldn't make any sense out of it:) It was back in 2000, ASP VBScript with Spanish everywhere, you can imagine the torture;)http://stackoverflow.com/questions/331976/how-do-i-serialize-a-c-anonymous-type-to-a-json-string/331988#331988Comment by aprilchild on How do I serialize a C# anonymous type to a JSON string?aprilchild2008-12-01T19:56:46Z2008-12-01T19:56:46ZJSON.Net works just fine. I would argue that you shouldn't :), I think it's pretty legitimate in many cases.http://stackoverflow.com/questions/172753/embedding-javascript-engine-into-net-c/212116#212116Comment by aprilchild on Embedding JavaScript engine into .NET (C#)aprilchild2008-11-25T13:43:57Z2008-11-25T13:43:57Znope, I'm using Spidermonkey at the moment, still not convinced about the production quality though.. Managed.JSCript has no source code available (appart from IronRuby, IronPython), so it's pretty much useless (tied with silverlight, linking against old dlls and such).http://stackoverflow.com/questions/172753/embedding-javascript-engine-into-net-c/172804#172804Comment by aprilchild on Embedding JavaScript engine into .NET (C#)aprilchild2008-10-06T10:34:40Z2008-10-06T10:34:40Zactually Managed JScript is the closest thing to my needs. I knew it was in Silverlight, didn't know it was released. JScript.NET is not an option. I really don't want to give users access to the whole .NET stack. I just need couple of core built-in objects they can use for their applications.http://stackoverflow.com/questions/172753/embedding-javascript-engine-into-net-c/172824#172824Comment by aprilchild on Embedding JavaScript engine into .NET (C#)aprilchild2008-10-06T10:31:08Z2008-10-06T10:31:08Zinteresting, but not quite what i'd like to do. the idea is to allow a universal language for writing server-side components that are actually running on server.http://stackoverflow.com/questions/172753/embedding-javascript-engine-into-net-c/173160#173160Comment by aprilchild on Embedding JavaScript engine into .NET (C#)aprilchild2008-10-06T10:26:59Z2008-10-06T10:26:59Zyes, all major engines are generally embeddable, but there are simply too many obstacles. studying the embedding guide, learning the C(++) API.. i was hoping there already would be some work on integration done. JScript.NET cannot be used, the actual code is written and executed by internet users.