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 orienttest; | |
import com.orientechnologies.orient.core.db.document.ODatabaseDocumentTx; | |
import com.orientechnologies.orient.core.db.graph.ODatabaseGraphTx; | |
import com.orientechnologies.orient.core.db.graph.OGraphVertex; | |
import com.orientechnologies.orient.core.db.object.ODatabaseObjectTx; | |
import com.orientechnologies.orient.core.db.record.ODatabaseColumn; | |
import com.orientechnologies.orient.core.intent.OIntentMassiveInsert; | |
import com.orientechnologies.orient.core.record.impl.ODocument; |
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
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package controllers; | |
import com.google.gson.JsonArray; | |
import com.google.gson.JsonElement; | |
import com.google.gson.JsonObject; | |
import java.util.ArrayList; |
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 controllers; | |
import com.google.gson.JsonElement; | |
import play.Play; | |
import java.util.Properties; | |
import play.libs.WS; | |
import play.libs.WS.WSRequest; | |
import play.mvc.Controller; | |
/** |
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
#{extends 'main.html' /} | |
#{set title: "Results: " + iters + ": " + mongoSecs /} | |
<h1>Speed Results - ${iters} iterations</h1> | |
<h3>MongoDB (Morphia) </h3> | |
${mongoSecs} seconds |
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 neotest; | |
import hackerunderground.NanoTimer; | |
import java.util.Iterator; | |
import org.neo4j.graphdb.Direction; | |
import org.neo4j.graphdb.GraphDatabaseService; | |
import org.neo4j.graphdb.Node; | |
import org.neo4j.graphdb.Relationship; | |
import org.neo4j.graphdb.RelationshipType; |
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
@charset "UTF-8"; | |
/* ** ** forms ** ** */ | |
form fieldset { | |
-webkit-border-radius: 3px; | |
-moz-border-radius: 3px; | |
border-radius: 3px; | |
padding: 10px; | |
border: 1px solid #eee; | |
background-color: #f1f1f1; | |
} |
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
<section class="cols cols4"> | |
<article class="col first"> </article> | |
<article class="col col2" > | |
#{form @authenticate()} | |
<fieldset class="s_column"> | |
<legend>Login</legend> | |
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
/** | |
* This method will return a sorted Map | |
* @param unsortMap | |
* @return | |
*/ | |
private static Map<String, Integer> sortMapByValue(Map<String, Integer> unsortMap) { | |
List<Map.Entry<String, Integer>> list = new LinkedList(unsortMap.entrySet()); | |
//sort list based on comparator |
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
Job Category: IT | |
Location: United States, WA, Redmond | |
Job ID: 786045 | |
Product: (Not Product Specific) | |
Division: IT | |
The Data & Decision sciences Team within technology Office in MSIT, helps drive actionable business intelligence through advanced statistical modeling and business analytics, throughout Microsoft. The team focuses on enterprise level engagement, where advanced data mining and modeling skills are needed to find business insights. We have a strong team of experienced statistician with an average experience of 15+ years in various industries. Currently we are expanding our work in areas of simulation, system modeling and text mining, to support our internal clients. Our goal is to support business performance enabled through data analysis, statistical modeling - resulting into business impact. Candidate will be expected to work with internal clients on analytic projects and identify potential improvement opportunities. The candidate must possess a passion for advanced analytics and skills in areas of |
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 com.swgoof.datascience.job; | |
import java.io.BufferedReader; | |
import java.io.FileNotFoundException; | |
import java.io.FileReader; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.Comparator; | |
import java.util.HashMap; |
OlderNewer