As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
AdmingeneratorGeneratorBundle vs. SonataAdminBundle
I am starting a new Symfonfy2.2 Project and I need a Admin Backend. I used the old AdminGenerator in Symonfy1.4, and was quite happy with it. Everything worked more or less out of the box. If you check KNPBundles for Admin Backends, then you will most likely find two Admin Backends, that have enough score, to be relevant in a buisiness critical application.
The Question is,
which one would you prefer and why? Especially when it comes to things like:
customizability
effort to install and maintain
number of bugs or errors
long term development
The only thing I can say is that IMHO the AdmingeneratorGeneratorBundle generate cached code that is specific to the entity you're CRUD'ing, while SonataAdminBundle does all at runtime.
Sonata has already been reused in other extra libraries like smyfony-CMF.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
We are planing to do some visualization for our existing data its a political and news domain.
After doing my initial research I came to conclusion for using R and D3.
My requirement is the tool should be able to give dynamically, since it is web based visualization (Visualization should be able to change upon change in value)
I have following questions and need help in those.
Is there any other tool which I can use.
R can be use for dynamic visuals? (My application is in php, python based solution can also be ok)
Then you'd need to look into Rook, How to set up an R based service on a web page, or (better) Shiny, How to integrate R shiny into current application.
If your application (or some parts) is already in python you can use rpy2 as a bridge between R and python.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I googled a lot but could not get a suitable tool.
I have a .NET application. To make the reporting feature much better, I am trying to find a third party tool for reporting as well as capable to generate the reports as pdf, jpg etc.
The main thing is to design the reports by the end-user as per their needs. I checked Cognos, I found that it gives the output as grid like style but I need in a customized manner too.
I got the below third party tools.
Fast Reports
Jreport
Cognos
Combit
I need a tool, that is very easy from end-user's prospect.
Any suggestion will be helpful.
If you want end users to design their own reports on demand, have you tried the new Power View (SQL Serves 2012)?
http://www.microsoft.com/en-us/bi/Products/PowerView.aspx
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Given Meteor's support for eventually-consistent offline writes to data objects, automatically merging concurrent edits to the same text field seems like a natural next step. This might be done by integrating some of all of an operational transformation library (list) such as ShareJS.
Is there a desire in the Meteor team to support this functionality in the core product at some point, or would it more likely appear as a third-party add-on module?
Also, since ShareJS actually seems to provide the basic functionality of the Meteor data architecture (they mention in their documentation that it works with arbitrary JSON objects), would it perhaps be possible to do something like Meteor using ShareJS for data syncronization?
I'm guessing it might be something they might add or could be done with packages.
In the meantime however:
You could use Meteor.methods to expose an api to communicate to the same field back and forth.
The method could do a diff on the change and merge it to the Collection before returning what should be changed on the clients computer.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
There are a lot of opensources build systems, and most of them are multiplatform, multilanguage, cross-everything.
I'm not interested on which one is the best (which would be offtopic by the way), but I'd like to know which ones are used most.
So, do we have any kind of statistic about their actual usage? Could you provide any link?
As there is no tracking process, I doubt that this kind of information is available. You could check the number of artifacts in maven central for example, but it won't tell that much about actual usage and may be viewed rather as a trend. Some build tool developers list some of the most reknowned users on their sites, most don't
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
As reported by Slashdot, MS issued an update to ASP.NET to fix the hash collision attack today. (Listed as "Collisions in HashTable May Cause DoS Vulnerability - CVE-2011-3414" on the linked Technet page.)
The problem is that the POST data are converted into a hash table that uses a known hashing algorithm. And if an attacker uses this by crafting a request that contains lots of collisions, he can easily cause a Denial of Service.
Does anyone know how exactly does that update fix the issue?
The update is not a complete fix, but rather a workaround. It limits the number of POST parameters accepted.