Skip to content

Instantly share code, notes, and snippets.

View azizulhasan's full-sized avatar

Azizul Hasan azizulhasan

View GitHub Profile
@azizulhasan
azizulhasan / text-to-speech-pro.json
Last active August 13, 2023 14:25
Text to speech TTS pro gist
[
{
"start":"2023-07-28 00:00:01",
"end":"2023-08-04 23:59:00",
"hash":"dec06622-980f-4674-8b08-72e23cc9e70g",
"dismissible":1,
"content":"<p>Biggest Sale of the year on this</p><h3>Black Friday & Cyber Monday</h3><p>Claim your discount on till 4th December</p>",
"wrapperPadding":"85px 0",
"backgroundImage":"https://webappick-assets.s3.amazonaws.com/notice/wapk-promo-bg.svg",
"backgroundRepeat":"no-repeat",
@azizulhasan
azizulhasan / js_linked_list.js
Created November 4, 2021 00:31 — forked from bradtraversy/js_linked_list.js
JS Linked List Class
// Construct Single Node
class Node {
constructor(data, next = null) {
this.data = data;
this.next = next;
}
}
// Create/Get/Remove Nodes From Linked List
class LinkedList {