First, connect to your camera via WiFi. Then you can send data to 192.168.42.1:7878
HELP IS APPRICIATED
Request:
{"msg_id":257,"token":0}
| ▀ checking prerequisites (0s) | |
| ▀ checking prerequisites (0s) | |
| ▄ checking prerequisites (0s) | |
| ▄ checking prerequisites (1s) | |
| ▀ checking prerequisites (1s) | |
| ▀ checking prerequisites (1s) | |
| ▄ checking prerequisites (1s) | |
| SUCCESS checking prerequisites |
| import Head from 'next/head' | |
| import Image from 'next/image' | |
| import styles from '../styles/Home.module.css' | |
| export default function Home() { | |
| return ( | |
| <div className={styles.container}> | |
| <Head> | |
| <title key="title">Debjit's Index Blog</title> | |
| <meta name="description" key="description" content="Debjits Index Blog" /> |
| name: Tests (PHP) | |
| on: [push] | |
| jobs: | |
| tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 |
| # Title of Your Project [](https://twitter.com/intent/tweet?text=Check%20out%20this%20cool%20project&url=https://github.com/Cool/Project&hashtags=project,opensource) | |
|  | |
|  | |
|  | |
|  | |
| #### Description of your project |
| /** | |
| * A Javascript module to loadeding/refreshing options of a select2 list box using ajax based on selection of another select2 list box. | |
| * | |
| * @url : https://gist.github.com/ajaxray/187e7c9a00666a7ffff52a8a69b8bf31 | |
| * @auther : Anis Uddin Ahmad <anis.programmer@gmail.com> | |
| * | |
| * Live demo - https://codepen.io/ajaxray/full/oBPbQe/ | |
| * w: http://ajaxray.com | t: @ajaxray | |
| */ | |
| var Select2Cascade = ( function(window, $) { |
| #!/usr/bin/env bash | |
| # Copy the url of the active ngrok connection to the clipboard. | |
| # Usage: | |
| # ngrok-copy # copies e.g. https://3cd67858.ngrok.io to clipboard. | |
| # ngrok-copy -u # copies e.g. http://3cd67858.ngrok.io to clipboard. | |
| if [[ "$1" == "-u" ]]; then | |
| NGROK_URL=`curl -s http://127.0.0.1:4040/status | grep -P "http://.*?ngrok.io" -oh` | |
| else | |
| NGROK_URL=`curl -s http://127.0.0.1:4040/status | grep -P "https://.*?ngrok.io" -oh` |
| #!/bin/bash | |
| export PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin | |
| ### Thanks Xream's Work XD | |
| # if you don't have several vpn servers to select, you can comment following line | |
| # and use your openvpn config file name to replace "${host}.ovpn" in while loop. | |
| read -p "Select the host: " host |