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
/** | |
* Just for fun, hacking Dualshock4 with node.js | |
* Most of the code comes from https://npmjs.org/package/dualshock-controller | |
* Just wanted to play with the low level hid protocol. | |
* Next step: EV3 Control via Bluetooth with Dualshock4 (PC still required). | |
* Future step: EV3 node.js onboarding with Dualshock4 remote control (Autonomous). | |
*/ | |
var HID = require('node-hid'); | |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>APP_BASE_PACKAGE</groupId> | |
<artifactId>APP_NAME</artifactId> | |
<packaging>war</packaging> | |
<version>0.1</version> | |
<name>APP_NAME</name> | |
<url>http://maven.apache.org</url> | |
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
@Singleton | |
public class AppAuthRequest implements AuthRequest<User>{ | |
@Inject | |
private UserDao userDao; | |
@Override | |
public AuthToken<User> authRequest(RequestContext rc) { | |
AuthToken<User> authToken = null; | |
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
<html> | |
<body>first test</body> | |
</html> |
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/sh | |
# | |
# openresty adapted script to start and stop the openresty compiled | |
# nginx daemon | |
# --- original nginx comment --- | |
# nginx - this script starts and stops the nginx daemon | |
# | |
# chkconfig: - 85 15 | |
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \ |
NewerOlder