This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#install pip | |
sudo apt-get install python-pip | |
# | |
pip install SQLAlchemy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/may-day/olap | |
http://bkanuka.com/articles/python-connect-to-olap/ | |
http://mondrian.pentaho.com/documentation/installation.php | |
https://github.com/olap4j/olap4j | |
http://stackoverflow.com/questions/3793215/query-olap-mondrian-mdx-xmla-with-a-python-interface | |
https://research.cip.cgiar.org/docs/mondrian/Tutorial_Mondrian.pdf | |
http://lists.pentaho.org/pipermail/mondrian/2014-October/004999.html | |
http://maxrohde.com/2011/04/27/large-war-file-cannot-be-deployed-in-tomcat-7/ | |
http://pentaho.dlpage.phi-integration.com/mondrian/mysql-foodmart-database | |
https://github.com/ThoughtWorksInc/mondrian-xmla-spike |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://stormpath.com/blog/part-one-flask-authentication-problem/ | |
http://flask-stormpath.readthedocs.org/en/latest/ | |
http://blog.miguelgrinberg.com/post/restful-authentication-with-flask | |
https://github.com/miguelgrinberg/Flask-HTTPAuth | |
https://flask-login.readthedocs.org/en/latest/ | |
http://pythonhosted.org/Flask-OAuth/ | |
http://stackoverflow.com/questions/17512572/rauth-flask-how-to-login-via-twitter | |
http://www.shea.io/facebook-authentication-for-flask-apps/ | |
https://github.com/lingthio/Flask-User |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://pythonhosted.org/Flask-CMS/ | |
http://flask.pocoo.org/snippets/114/ | |
http://quokkaproject.org/ | |
http://in.pycon.org/funnel/2014/205-building-a-cms-in-flask | |
https://github.com/Opentaste/bombolone/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org.pentaho.agilebi.modeler.ModelerException: java.lang.NullPointerException | |
at org.pentaho.agilebi.spoon.XulUI.<init>(XulUI.java:76) | |
at org.pentaho.agilebi.spoon.perspective.AgileBiModelerPerspective.createTabForModel(AgileBiModelerPerspective.java:122) | |
at org.pentaho.agilebi.spoon.ModelerHelper.createEmptyModel(ModelerHelper.java:660) | |
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) | |
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) | |
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) | |
at java.lang.reflect.Method.invoke(Method.java:622) | |
at org.pentaho.ui.xul.impl.AbstractXulDomContainer.invoke(AbstractXulDomContainer.java:329) | |
at org.pentaho.ui.xul.impl.AbstractXulComponent.invoke(AbstractXulComponent.java:139) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script based on How to install mongoDB on Ubuntu Tutorial (http://www.mkyong.com/mongodb/how-to-install-mongodb-on-ubuntu/) | |
# By Fernando Felix do Nascimento Junior | |
# become superuser | |
sudo su | |
# add mongodb 10gen package to /etc/apt/sources.list.d | |
touch /etc/apt/sources.list.d/mongo.list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to install Pillow dependencies on Ubuntu based on | |
# https://pillow.readthedocs.org/installation.html#linux-installation | |
# http://askubuntu.com/questions/507459/pil-install-in-ubuntu-14-04-1-lts | |
# http://stackoverflow.com/questions/2967224/gcc-error-trying-to-install-pil-in-a-python2-6-virtualenv | |
# By Fernando Felix do Nascimento Junior | |
# become superuser | |
sudo su |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://gist.io/ | |
http://www.roughdraft.io/ | |
http://htmlpreview.github.io/ | |
https://rawgit.com/ | |
http://bl.ocks.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.saiku.web; | |
import java.net.URL; | |
import java.util.UUID; | |
import junit.framework.TestCase; | |
import org.apache.commons.httpclient.HttpClient; | |
import org.apache.commons.httpclient.UsernamePasswordCredentials; | |
import org.apache.commons.httpclient.methods.GetMethod; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://demo.analytical-labs.com/saiku/serverdocs/rest.html | |
[{ | |
"url": "http://localhost:8080/pentaho/plugin/saiku/api/admin/discover", | |
"type": "get", | |
"description": "Returns the datasources available." | |
}, | |
{ | |
"url": "http://localhost:8080/pentaho/plugin/saiku/api/admin/repository?type=saiku&path=/home/admin/001.saiku", | |
"type": "get", |