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
| package com.markdcorner.app; | |
| import java.util.Timer; | |
| import java.util.TimerTask; | |
| import dji.common.error.DJIError; | |
| import dji.common.mission.hotpoint.HotpointHeading; | |
| import dji.common.mission.hotpoint.HotpointMission; | |
| import dji.common.mission.hotpoint.HotpointMissionEvent; | |
| import dji.common.mission.hotpoint.HotpointMissionState; |
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
| package benchmark2; | |
| public class BitTests { | |
| public static void main(String[] args) { | |
| new BitTests().run(); | |
| } |
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 | |
| # | |
| # nginx - this script starts and stops the nginx daemon | |
| # | |
| # chkconfig: - 85 15 | |
| # description: Nginx is an HTTP(S) server, HTTP(S) reverse \ | |
| # proxy and IMAP/POP3 proxy server | |
| # processname: nginx | |
| # config: /opt/nginx/conf/nginx.conf | |
| # config: /etc/sysconfig/nginx |
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
| desision.rb: | |
| require 'aws-sdk' | |
| config_path = File.expand_path(File.dirname(__FILE__)+"/aws.yml") | |
| AWS.config(YAML.load(File.read(config_path))) | |
| swf = AWS::SimpleWorkflow.new |