I hereby claim:
- I am steinermatt on github.
- I am steinermatt (https://keybase.io/steinermatt) on keybase.
- I have a public key whose fingerprint is 8887 F108 8CFC 84FC 3086 002E CDDE 4AAF CBDD C373
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
import json | |
import urllib | |
import urllib2 | |
import time | |
""" Nike plus activity log | |
https://developer.nike.com | |
Output: | |
-- May -- |
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"?> | |
<enunciate label="Enterprise Granny" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:noNamespaceSchemaLocation="http://enunciate.codehaus.org/schemas/enunciate-1.28.xsd"> | |
<namespaces> | |
<namespace id="Addressbook" uri="http://api.enterprise-granny.samples.cloud.sap.com/model" /> | |
</namespaces> | |
<services> | |
<rest defaultRestSubcontext="/api/v1" /> |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Hello World</title> | |
<script src="resources/sap-ui-core.js" | |
id="sap-ui-bootstrap" | |
data-sap-ui-libs="sap.ui.commons" | |
data-sap-ui-theme="sap_goldreflection"> | |
</script> |
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
#Tue Apr 15 09:43:56 UTC 2014 | |
Name=dest_sflight | |
Type=RFC | |
jco.client.r3name=FLI | |
jco.client.group=PUBLIC | |
jco.client.lang=EN | |
jco.destination.repository.user=DEVELOPER | |
jco.client.cloud_connector_version=2 | |
jco.client.user=DEVELOPER | |
jco.client.client=001 |
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
@Service("flightService") | |
@Path("/flight.svc") | |
@Produces({ "application/json" }) | |
public class FlightService { | |
@GET | |
@Path("/flights/{cityFrom}/{cityTo}") | |
@Produces("application/json") | |
public String getFlightList(@Context HttpServletRequest req, @PathParam("cityFrom") String cityFrom, | |
@PathParam("cityTo") String cityTo) |
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
<!-- Apache CXF --> | |
<dependency> | |
<groupId>org.apache.cxf</groupId> | |
<artifactId>cxf-rt-frontend-jaxws</artifactId> | |
<version>${org.apache.cxf.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.cxf</groupId> | |
<artifactId>cxf-rt-transports-http</artifactId> | |
<version>${org.apache.cxf.version}</version> |
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
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 | |
http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<localRepository/> | |
<interactiveMode/> | |
<usePluginRegistry/> | |
<offline/> | |
<pluginGroups/> | |
<servers/> |
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
/** | |
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) | |
*/ | |
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { | |
response.getWriter().println("Hello World!"); | |
} |
NewerOlder