- Apache Hadoop: MapReduce framework
- Cloudera: Hadoop support and tools
- Zookeeper: Distributed coordination
- Celery: Distributed task queue (Python)
- MongoDB: Document database
- 10gen: Company behind MongoDB
- Morphia: ORM / Object-Document Mapping for MongoDB
- Morphia Fork: Fork since the original Morphia is "dead"
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am xeraa on github. | |
* I am xeraa (https://keybase.io/xeraa) on keybase. | |
* I have a public key whose fingerprint is 9254 E53A BB94 A09A A698 522D A938 3B28 6A71 0E7D | |
To claim this, I am signing this object: |
This file contains hidden or 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
error_page 404 /assets/error-404.html; | |
error_page 500 /assets/error-500.html; | |
location / { | |
try_files $uri @silverstripe; | |
} | |
location @silverstripe { | |
fastcgi_keep_conn on; | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; |
This file contains hidden or 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 | |
# Check if our important or publicly communicated URLs are available | |
set -e | |
URLS=( | |
"http://test.com" | |
"http://test.com/foo" | |
) |
- Download the JCE extension from http://www.oracle.com/technetwork/java/javase/downloads/jce-6-download-429243.html
- Upload the files inside the archive to your private repository on Cloudbees forge ( /private/jce/ ) so that you have /private/jce/local_policy.jar,...
- On the Jenkins configuration page ([https://YourAccountName.ci.cloudbees.com/configure](https://.ci.cloudbees.com/configure) (use your real account name / subdomain) create a new JDK Installation and set JAVA_HOME to
$HOME/openjdk6.unlimited
(or any other version you want to use). - Add a Pre Step and add the following shell script. First, it copies the JDK version you are using to your home folder. Second, it patches your copy - this should copy local_policy.jar and US_export_policy.jar. Be sure to use your real account name / subdomain.
if
This file contains hidden or 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
ISeries a = new NumberSeries("Series A").setData(new Number[]{7.0, 6.9, 9.5, 10.2, 12.2, 13.9}); | |
ISeries b = new NumberSeries("Series B").setData(new Number[]{1.0, 3.5, 5.5, 1.22, 4.2, 1.9}); | |
Highchart highchart = new Highchart(new LineChart(), a, b); | |
highchart.setTitle(new ChartTitle("LineChart")); | |
highchart.setSubtitle(new Subtitle("Mixed Series")); | |
highchart.getXAxis().setTitle(new AxisTitle("Time")); | |
highchart.getYAxis().setTitle(new AxisTitle("Amount")); | |
highchart.getChart().setZoomType(ZoomType.x); |
This file contains hidden or 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
<?xml version="1.0"?> | |
<cloudbees-web-app xmlns="http://www.cloudbees.com/xml/webapp/1"> | |
<!-- For details see http://wiki.cloudbees.com/bin/view/RUN/CloudBeesWebXml --> | |
<appid>xeraa/ubercharts</appid> | |
<context-param> | |
<param-name>configuration</param-name> | |
<param-value>deployment</param-value> |
This file contains hidden or 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
<repositories> | |
<repository> | |
<id>[ID]</id> | |
<name>[Name]</name> | |
<url>[Protocol, server URL, and path to the repository]</url> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
</repositories> |
This file contains hidden or 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
<repositories> | |
<repository> | |
<id>xeraa-cloudbees-release</id> | |
<name>Cloudbees releases of xeraa</name> | |
<url>dav:https://repository-xeraa.forge.cloudbees.com/release/</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
</repository> | |
<repository> |
NewerOlder