The XML IDE ... modeling, editing, transforming, and debugging XML-related technologies, including an awesome graphical schema designer, code generation tools, file converters, debuggers, profilers, database integration, and explicit support for XSLT, XPath, XQuery, WSDL, SOAP, and Office Open XML (OOXML) documents. It even included Visual Studio and Eclipse plug-ins...
CodeRun Studio is a cross-platform Integrated Development Environment (IDE), designed for the cloud. It enables you to easily develop, debug and deploy web applications using your browser. CodeRun Studio can be used instead or alongside your existing desktop IDE. You can upload existing code in order to test it in the cloud or for sharing with your peers. CodeRun Studio also enables you to instantly compile, package and deploy your code to the CodeRun Cloud .\n
WP RSS Aggregator version 3.1 is out now!
There are some bug fixes and enhancements. As for new features, these are:
Option to set the number of feed items imported from every feed (default 5)
Import and Export aggregator settings and feed sources
Debugging page allowing manual feed refresh and feed reset
I hope you like how the plugin is developing, and as usual feedback is welcome.
An official release of the thumbnails and excerpts premium add-on will follow soon.
Approve software
only if they have a well-founded belief that it is safe, meets specifications,
passes appropriate tests, and does not diminish quality of life, diminish
privacy or harm the environment. The ultimate effect of the work should be to
the public good.
Not knowingly use
software that is obtained or retained either illegally or
unethically.
Ensure proper and
achievable goals and objectives for any project on which they work or
propose.
arrays of reference types are covariant in their element type, but not safely
where did that exception come from? It came from the runtime, which was in a unique position to know what the real type of the array object was, and the real type of the element. It needed to determine if the assignment was allowable and throw if not. Now if you think about this for a minute, you can see that it’s going to have to perform that check for every assignment to an array element
So if I want to have an array of reference types, but get the runtime to treat it like an array of value types, what have I got to do? Just wrap the reference type in a value type
So I got rid of that check, right? But I added the initialization of a value type. Did I win or lose? Let’s do some timing to figure it out.
when I build Debug binaries, the Reference<T> trick makes my example about three times SLOWER.
Arrays are covariant only for reference types. If you use a struct wrapper to turn a reference type into a value type, the initialization of the value type takes less time than array assignment.
JavaScript Lint based on the JavaScript engine from Firefox ... check JavaScript syntax, examine coding techniques, and warn against questionable practices. Has online and dowloadable versions you can run from your IDE or CLI.
Everyone will benefit, even the Java community: Now that there's competition
again, new constructs are—surprise!—again being considered for Java
Do languages have to sacrifice anything?
.NET goes
much further:
A routine written in a language L1 may call another routine written in a
different language L2.
A module in L1 may declare a variable whose type is a class declared in
L2, and then call the corresponding L2 routines on that variable.
If both languages are object oriented, a class in L1 can inherit from a
class in L2.
Exceptions triggered by a routine written in L1 and not handled on the L1
side will be passed to the caller, which—if written in L2—will process
it using L2's own exception-handling mechanism.
During a debugging session, you may move freely and seamlessly across modules
written in L1 and L2.
I don't know about you, but I've never seen anything coming even close to this
level of interoperability.
This ability to mix languages offers great promise for the future of programming languages, as the practical advance of new language designs will no longer be hindered by the library issue ...
All of the tools you need to poke, prod, and monitor your JavaScript, CSS, HTML and Ajax are brought together into one seamless experience, including a debugger, error console, command line, and a variety of fun inspectors.