Node-Red
This flow is Using Chart node & Http node (Restful API)
Youtube link
https://youtu.be/athPUUQ1r58
https://youtu.be/xFyxScXKllI
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; | |
import java.util.Scanner; | |
public class BCryptPasswordEncoderRun { | |
public static void main(String[] args) { | |
System.out.println("Generate BCrypt encoded string of a raw password."); | |
System.out.println("Enter raw password:"); | |
Scanner s = new Scanner(System.in); | |
String rawPassword = s.nextLine(); |
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; | |
import java.util.Scanner; | |
public class BCryptPasswordEncoderRun { | |
public static void main(String[] args) { | |
System.out.println("Generate BCrypt encoded string of a raw password."); | |
System.out.println("Enter raw password:"); | |
Scanner s = new Scanner(System.in); | |
String rawPassword = s.nextLine(); |
to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice | |
stun: | |
stun.l.google.com:19302, | |
stun1.l.google.com:19302, | |
stun2.l.google.com:19302, | |
stun3.l.google.com:19302, | |
stun4.l.google.com:19302, | |
stun.ekiga.net, | |
stun.ideasip.com, |
version: "2" | |
services: | |
# Reverse Proxy and Let's Encrypt | |
traefik: | |
container_name: traefik | |
image: traefik:alpine | |
restart: always | |
networks: | |
- srv |
from IPython.core.display import display, HTML, Markdown, clear_output | |
import json | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import ipywidgets as widgets | |
# Defining Widgets: | |
equation = widgets.Text( | |
value='np.sin(X*Y)+np.cos(X+Y)', | |
placeholder='Type something', |
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
username = pksunkara | |
[core] | |
editor = vim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore | |
[sendemail] | |
smtpencryption = tls |
pkg upgrade | |
# Install runtime deps | |
pkg install python libzmq libcrypt | |
# Add build deps | |
pkg install python-dev libzmq-dev libcrypt-dev clang | |
pip3 install -U pip | |
pip3 install pyzmq --install-option="--zmq=/usr/lib" | |
pip3 install jupyter |
Node-Red
This flow is Using Chart node & Http node (Restful API)
Youtube link
https://youtu.be/athPUUQ1r58
https://youtu.be/xFyxScXKllI