Where do I test the tutorial 3 of Datameer Developer Guide - hadoop

I am working for the Datameer plugin development and I am struck at Tutorial 3 of it. Does anybody know where do I see that Freemarker widget that I build in tutorial 3 working in Datameer UI???
I don't have the permission to create new tags and hence putting it under Hadoop. If anybody has the appropriate privileges, please create one for Datameer

Unfortunately the tutorial was for Datameer v1.4. We introduced an entirely new data visualization module in v2.0 and we are working on providing the same customizability for it in a near future release.

Sorry for the delayed response on this post. It turns out that in version 2.0+ of Datameer the visualization (now called Infographics) module has been rewritten leveraging the power of HTML5 to more intuitively visualize your data analysis.
I recommend that you take a look at the new features that 2.0 has to offer under http://www.datameer.com/learn/videos.html.

Related

BDD Framework - Can't Remember Which One Had HTML Integration

I remember learning about a framework when BDD was first getting a lot of attention. This framework had the concept of using the rows or cells of an HTML table to document and run tests/features. So, I'm thinking there was an engine that would walk the cells/rows of the table "executing" each one, and perhaps recording the result. This could also serve as your report of the testing results.
Can someone point me in the right direction for what this framework was? or the ecosystem it came out of? I thought it was related to Ruby gems or concepts but I may be wrong on that.
I'm in interested in recycling some of the ideas that were used in that project / framework.

Wanting to make an Xposed module

So I'm wanting to make an xposed module but cannot find any good video tutorials out there let alone an updated one also I know C# Decently and hardly any Java... Any help to help me get started would be appreciated. Thanks
You will need Java to create any Xposed modules. Android itself is based on (primarily) Java, so you will need Java knowledge to make Xposed modules.
That said, C# and Java are extremely similar languages, and you can quickly pick up the other if you know one.
As for Tutorials, Rovo89 (the creator of Xposed) has a simple tutorial here at https://github.com/rovo89/XposedBridge/wiki/Development-tutorial. This tutorial is almost completely upto-date, and you can use this to create your first module.
You will find another detailed tutorial here - https://forum.xda-developers.com/showthread.php?t=2709324. Keep in mind that this link is very old, so wherever there are any conflicts, go by Rovo89's tutorial.
After going through the beginner tutorial mentioned by Akhil, you will want to look at the API docs http://api.xposed.info/reference/packages.html and read through source code of some huge modules like GravityBox to get an idea of how the Framework is used. For teaching purpose mod some app which is open source and then move on to closed source app by reverse engineering them. For reverse engineering I use ByteCodeViewer.

Migrate a Magento 1.X module to 2.0

We're developing a module for Magento 1.9 and want to support Magento 2.0 quickly after that.
I discovered https://github.com/magento/code-migration and wondered if anyone had experience with it?
Should we expect a full rewrite of the module to support that 2.0? Does anybody have experience in that task?
Thank you.
I'm currently trying to migrate my module for Magento 1.x to support 2.0, and done some research in this area. However, my code-migration isn't completed yet.
As I know, after we use this tool to convert the structure and code, we still require to test and modify the module. The toolkit is a tool to simplify our process, not helping us to create a 100%-fit module to the Magento 2.0 version.
You may refer to the following video for further explanation by the toolkit developer team:
Imagine 2016 - Developer Deep Dive: Magento 1.x to Magento 2 Code Migration Tool
Hope this helps!

What is a Parse Collection?

I'm learning Parse (the Javascript flavor) using their Todo App tutorial. I'm trying to write my first query. In the tutorial, I found this code:
var TodoList = Parse.Collection.extend({ ... });
I can't find any info about Parse.Collection in their JS Guide nor their API docs.
Can someone shed some light on what a Parse.Collection is and when I should use it?
You're not seeing anything in the docs because Parse.Collection was removed from the JavaScript SDK in v.1.6.0.
Downloads Page and JavaScript Changelog
SDK no longer contains Backbone-specific behavior. Moving forward, the core SDK will not be tied to any single framework, but we will work with the community to produce up-to-date bindings like Parse+React. The major changes are the removal of Parse.Collection, and allowing Parse.Objects to act as event channels.
In previous versions of the SDK, Parse.Collection was used almost identically to Backbone.Collection, as the Parse SDK was based on Backbone. Things are particularly confusing right now because tutorials on parse.com use pre-1.6.0 versions of the SDK.

OpenERP basic reports

OpenERP is one of the best ERP applications I ever used.
I found that almost everything must be built from the beginning to meet the specific needs for each one including the analysis reports, but there are some basic packages already built.
Since I am new to OpenERP functionality and still haven't learned how to create reports in OpenERP, I need to know if there is any addons/extra module that provides me some basic and ready to print reports and listings for the several modules. This reports and listings will help me to better understand and learn the functional part of the application and will allow me on a future to better understand how to build reports and listings in OpenERP.
If anyone can provide me a link or repository with such information I will be greatfull.
Thank you very much
Regards
Paulo Matos
There are various ways of creating reports with openerp. They are (i've prioritized)
Webkit (for html,web designers - this will be a great utility)
OpenOffice (for any office person with minimal technical skills)
RML (Strictly for programmers :))
Jasper Report (good for people with java-reporting base)
Aeroo (Rich functionality of exporting to excel,word etc, still i am not comfortable in aeroo with openerp 7)
Pentaho Report Designer (A reporting tool from pentaho )
These links will help you in understanding better, setup environment and learn from the sample modules and reports. However you need to design what u need with one of the reporting type.
What's the best way to create a report on OpenERP
http://www.schenkels.nl/2013/02/custom-reports-in-openerp-what-will-you-use/
http://colinnewell.wordpress.com/2012/01/04/adding-new-reports-to-openerp/
https://doc.openerp.com/v6.1/developer/05_reports/
https://doc.openerp.com/6.1/book/8/8_20_Config/8_20_Config_reports/
Google more. You'll get everything u need. Good Luck!!
Reporting from Odoo / OpenERP can be very frustrating at times. We have found over the years that no single solution is great for every need.
The built in reporting mechanisms mentioned in the first answer (rml / openoffice) have been somewhat deprecated and replaced with qweb reporting which renders similarly in HTML or PDF. They can be difficult to get fine-grained control and alignment, a lot of work to achieve non-regular reporting structures and cross tab reports, but are fast and easy to use for straightforward "document" type reports (such as orders / invoices).
I cannot comment on Jasper or Aeroo, as I have not used them.
Using Pentaho Reports for Odoo can be great because they are primarily reporting engines. They can do wonderful things with data, present them in great ways.
One upside with this connector is its ability to access Data using the object layer, or SQL, or both in one report if necessary (using sub-reports for example), as well as custom methods!
One downside we have found with Pentaho Reporting is that as the code base changes for OpenERP/Odoo, the connector changes, and configuration has to be continually re-vesited.
The latest version supports Odoo version 8 and version 5.4 of Pentaho reporting engine.

Resources