Skip to content

Instantly share code, notes, and snippets.

View emdadul38's full-sized avatar

Emdadul Huq emdadul38

View GitHub Profile
@emdadul38
emdadul38 / simple-start-camera.html
Created October 27, 2021 07:03 — forked from kwindla/simple-start-camera.html
Daily.co API for video chat: start camera before joining.
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>basic video call object demo</title>
<script crossorigin src="https://unpkg.com/@daily-co/daily-js"></script>
<!-- <script crossorigin src="../dist/daily-iframe.js"></script> -->
</head>
<body onload="run()">
<p> <button onclick="callFrame.startCamera()">start camera</button> </p>
@emdadul38
emdadul38 / strong-password-regex.md
Created July 13, 2021 12:44 — forked from arielweinberger/strong-password-regex.md
Strong password Regular Expression - NestJS Course
  • Passwords will contain at least 1 upper case letter
  • Passwords will contain at least 1 lower case letter
  • Passwords will contain at least 1 number or special character
  • There is no length validation (min, max) in this regex!

Regular expression for JavaScript:

/((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$/
@emdadul38
emdadul38 / List.md
Created June 21, 2016 18:29 — forked from msurguy/List.md
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

<?php
/*
SimpleXLSX php class v0.6.8
MS Excel 2007 workbooks reader
Example 1:
$xlsx = new SimpleXLSX('book.xlsx');
print_r( $xlsx->rows() );
Example 2: