Video stream url for VLC/DVR:
- rtsp://192.168.1.93:554/user=admin&password=&channel=&stream=.sdp?real_stream--rtp-caching=100
Telnet access
- telnet 192.168.1.10 23
- Localhost login: root
- Password: xmhdipc
<?php | |
/* | |
1.- Create an App. | |
2.- Go to: https://developers.facebook.com/tools/explorer/ | |
+ Select your new created app on the right top. | |
+ Select "Get App Token" |
Step 1: Generate first ssh key Type the following command to generate your first public and private key on a local workstation. Next provide the required input or accept the defaults. Please do not change the filename and directory location.
workstation 1 $ ssh-keygen -t rsa
Finally, copy your public key to your remote server using scp
alias weather='curl -s wttr.in | sed -n "1,7p"' |
// Add user agent classes | |
(function() { | |
var ua = navigator.userAgent, | |
d = document.documentElement, | |
classes = d.className; | |
// Replace 'no-js' class name with 'js' | |
classes = classes.replace('no-js','js'); | |
// Detect iOS (needed to disable zoom on form elements) |
I have a similar setup, wherein I load different main entry files for the admin area and the main app. I use the following setup:
//webpack.mix.js .
if (process.env.section) {
require(`${__dirname}/webpack.mix.${process.env.section}.js`);
}