Skip to content

Instantly share code, notes, and snippets.

View jrichardsz's full-sized avatar

JRichardsz jrichardsz

View GitHub Profile
@jrichardsz
jrichardsz / Binary & Artifact Management - Nexus.md
Last active February 14, 2024 16:10
Binary & Artifact Management , Build
@jrichardsz
jrichardsz / rtsp stream videos snippets.md
Created February 13, 2024 04:54
rtsp stream videos snippets

Requirements

  • docker
  • ffmpeg
  • ffplay

Steps

  • start the rtsp server with
@jrichardsz
jrichardsz / iam oauth2 providers.md
Created January 30, 2024 00:01
iam oauth2 providers auth0 okta keycloack

image

@jrichardsz
jrichardsz / github cdn.md
Created January 29, 2024 04:35
github cdn

image

image

image

@jrichardsz
jrichardsz / client.html
Last active January 10, 2024 01:15 — forked from crtr0/client.js
socket.io nodejs snippets
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.7.3/socket.io.js"
integrity="sha512-jDUVpk2awjMnyrpY2xZguylQVRDeS9kRBImn0M3NJaZzowzUpKr6i62ynwPG0vNS1+NsTk4ji+iznbc5m0ZCKQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
@jrichardsz
jrichardsz / Axios snippets - crud.md
Created December 20, 2023 20:34
Axios snippets

promises

const headers = {
  'Content-Type': 'application/json',
  'Authorization': 'JWT fefege...'
}

axios.post(Helper.getUserAPI(), data, {
 headers: headers