This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Privacy Policy | |
Last updated: August 10, 2025 | |
Dreamflow (“we”, “our”, or “us”) values your privacy. This policy explains how we handle your information when you use our mobile application. | |
Information We Collect | |
Microphone Audio: We may access your device’s microphone to record audio for the purpose of providing voice-to-text functionality. | |
No Personal Information: We do not collect or store any personally identifiable information unless you voluntarily provide it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SINGLY LINKED LIST | |
class SinglyLinkedList { | |
constructor(head = null) { | |
this.head = head; | |
} | |
getFirstNode() { | |
return this.head; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('DOMContentLoaded', function () { | |
var lazyloadImages = document.querySelectorAll('img.lazy'); | |
var lazyloadThrottleTimeout; | |
function lazyload() { | |
if (lazyloadThrottleTimeout) { | |
clearTimeout(lazyloadThrottleTimeout); | |
} | |
lazyloadThrottleTimeout = setTimeout(function () { |