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
| -------- DVR e Mibo Smart Intelbras ------------------------------------------------------- | |
| rtsp://usuário:senha@ip:porta/cam/realmonitor?channel=1&subtype=0 | |
| Ps minha mibo smart im4c só funcionou com esse link: | |
| rtsp://admin:chave de acesso@ip:554/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif | |
| -------- Luxvision ------------------------------------------------------- | |
| rtsp://ip:porta/user=[usuário]&password=[senha]&channel=1&stream=0.sdp |
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
| version: "3.7" | |
| services: | |
| vmq: | |
| image: vernemq/vernemq:latest | |
| environment: | |
| DOCKER_VERNEMQ_ACCEPT_EULA: "yes" | |
| DOCKER_VERNEMQ_ALLOW_ANONYMOUS: "on" # Turn off for production | |
| DOCKER_VERNEMQ_SWARM: "1" | |
| DOCKER_VERNEMQ_USER_USERNAME: password | |
| networks: |
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
| version: '3' | |
| networks: | |
| mynetwork: | |
| ipam: | |
| config: | |
| - subnet: 172.20.0.0/24 | |
| services: | |
| nodered1: | |
| image: nodered/node-red-docker | |
| ports: |
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 React, { useMemo, useState } from "react"; | |
| import { LayoutChangeEvent, StyleSheet } from "react-native"; | |
| import { | |
| PinchGestureHandler, | |
| PinchGestureHandlerGestureEvent, | |
| } from "react-native-gesture-handler"; | |
| import Animated, { | |
| useAnimatedGestureHandler, | |
| useAnimatedStyle, | |
| useSharedValue, |
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
| /// <summary> | |
| /// Random Number Generator based on Mersenne-Twister algorithm | |
| /// | |
| /// Usage : | |
| /// RandomNumberGenerator.Instance.Generate()); | |
| /// RandomNumberGenerator.Instance.Generate(1.1,2.2); | |
| /// RandomNumberGenerator.Instance.Generate(1,100) | |
| /// | |
| /// inspired from : http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/C-LANG/980409/mt19937-2.c | |
| /// </summary> |
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
| """ | |
| Render form using admin/includes/fieldset.html | |
| """ | |
| ############## File: forms.py | |
| class Example(forms.Form): | |
| fieldsets = ( | |
| (None, { | |
| 'fields': (('company', 'year'),) |