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
const net = require('net'); | |
// | |
// A Node.js port of this original Gist: https://gist.github.com/danielfaust/998441 | |
// To find hosts on the network: nmap -Pn -p55000 192.168.12.1/24 | |
// | |
// Note: This is for Samsung TVs circa 2012-2015 that use a service running on port 55000 | |
// Samsung TV's circa 2016 and later use a WebSocket service on port 8001 which is different | |
// |
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
# | |
# Oracle Java8 Dockerfile | |
# | |
FROM ubuntu | |
RUN apt-get update; \ | |
apt-get install -y \ | |
software-properties-common |
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
# | |
# CORS header support | |
# | |
# One way to use this is by placing it into a file called "cors_support" | |
# under your Nginx configuration directory and placing the following | |
# statement inside your **location** block(s): | |
# | |
# include cors_support; | |
# | |
# As of Nginx 1.7.5, add_header supports an "always" parameter which |