That's seriously strange or normal ?

So I was just normally using my laptop in my room, lights were off , and my phone was on charging , suddenly out of nowhere idk why , an ai voice started in my phone and it was saying something very random , I really got scared , ran quickly turn the lights on , take up my phone , even though that green light which shows your mic is on and ai is listening was also off !! , that ai was literally saying some thing , I couldn't remember any word because my main focus was on to stop it asap , and i quickly cleaned up the recent list first , because some apps including gpt was open , but I haven't used voice chat for days , only a simple chat was open , after clearing all recent apps , it stops after 1-2 seconds ,

But it was strange for me

Because sometime when suddenly au says some thing a green dot shows up on corner shows your mic is on, and it answers our query whatever it listens ,

But this time no one was saying anything, I was alone in my room and it was 3 am almost 😥

But Obv , it can't be any ghost or something idk how it happened, it was gpt's voice btw , when I check to talk to him after that ,

So any similar thing happened to any of you ,??

For a bit of second i was also thinking if my phone got hacked or something or some strange network access trying to send some voice msg to my phone .

reddit.com
u/TraditionalMeet3846 — 3 days ago

That's seriously strange or normal ?

So I was just normally using my laptop in my room, lights were off , and my phone was on charging , suddenly out of nowhere idk why , an ai voice started in my phone and it was saying something very random , I really got scared , ran quickly turn the lights on , take up my phone , even though that green light which shows your mic is on and ai is listening was also off !! , that ai was literally saying some thing , I couldn't remember any word because my main focus was on to stop it asap , and i quickly cleaned up the recent list first , because some apps including gpt was open , but I haven't used voice chat for days , only a simple chat was open , after clearing all recent apps , it stops after 1-2 seconds ,

But it was strange for me

Because sometime when suddenly au says some thing a green dot shows up on corner shows your mic is on, and it answers our query whatever it listens ,

But this time no one was saying anything, I was alone in my room and it was 3 am almost 😥

But Obv , it can't be any ghost or something idk how it happened, it was gpt's voice btw , when I check to talk to him after that ,

So any similar thing happened to any of you ,??

For a bit of second i was also thinking if my phone got hacked or something or some strange network access trying to send some voice msg to my phone .

reddit.com
u/TraditionalMeet3846 — 3 days ago

<100 elo games be like

My siblings were playing this game for like half and hour 😂😂

Plz suggest some best moves

u/TraditionalMeet3846 — 2 months ago
▲ 0 r/dsa+1 crossposts

Density Field Sorting: A Preliminary Research Concept

Ok guyz. ,so I was thinking about a new type of algorithm for sorting , it can be something totally new and i wanna share that in a little bit professional way , if you don't wanna read it whole you can skip to main content the core idea , and yeah Obv I have taken help of ai to write this, but I hope you will like the idea which is purely unique and new ,

​

Density Field Sorting: A Preliminary Research Concept

Abstract

This document outlines a speculative sorting framework inspired by physical equilibrium systems. Instead of relying on pairwise comparisons, swaps, or recursive partitioning, the proposed model attempts to sort data by allowing elements to move within an artificial "density field" until they reach equilibrium positions.

​

The central hypothesis is that a properly designed environment can encode ordering information, allowing elements to self-organize into sorted order.

​

This is not yet a complete algorithm. Rather, it is a research direction and computational model that may lead to new data structures, sorting methods, or self-organizing systems.

​

Motivation

​

Traditional sorting algorithms operate by explicitly comparing elements.

​

Examples:

​

QuickSort compares and partitions.

​

MergeSort compares and merges.

​

HeapSort compares through heap operations.

​

In contrast, many natural systems organize themselves without direct comparisons.

​

Examples include:

​

Objects floating at different levels according to density.

​

Sedimentation processes.

​

Gravitational equilibrium.

​

Energy minimization systems.

​

This observation motivates the following question:

​

Can a sorting process emerge naturally if elements are placed inside a computational environment that guides them toward equilibrium positions?

​

Core Idea

​

Each element possesses an intrinsic property called density.

​

For an element x:

​

Density(x) = f(x)

​

where f is initially assumed to be related to the element's value.

​

A computational environment called the Density Field is created.

​

The Density Field contains ordered density levels.

​

Each element attempts to move toward the location where its density matches the local density of the environment.

​

The final equilibrium state should correspond to a sorted arrangement.

​

Fundamental Principle

​

Traditional sorting:

​

Input → Compare → Swap → Sorted Output

​

Density Field Sorting:

​

Input → Enter Density Field → Move Toward Equilibrium → Sorted Output

​

The environment performs the organizational work.

​

Elements do not explicitly compare themselves with all other elements.

​

Density Field Data Structure (Concept)

​

Proposed abstract structure:

​

DensityField

​

Density Levels

​

Equilibrium Zones

​

Element Positions

​

Stabilization Engine

​

Element

​

Value

​

Density

​

Position

​

State

​

Possible operations:

​

insert(x) remove(x) stabilize() findEquilibrium(x) extractSorted()

​

Self-Organization Hypothesis

​

The key hypothesis is:

​

A global ordering may emerge from local interactions with the Density Field.

​

An element should only need knowledge of:

​

Its own value

​

Local field information

​

rather than the entire dataset.

​

If successful, the system behaves as a self-organizing computational structure.

​

Adaptive Density Fields

​

A major challenge is constructing the Density Field efficiently.

​

A naive field may assign one density level per value.

​

However, this becomes impractical for large domains.

​

A more advanced approach is an adaptive field:

​

Level 1: Coarse density regions

​

Level 2: Subdivision of occupied regions

​

Level 3: Further refinement

​

This resembles a hierarchical equilibrium system.

​

Research is needed to determine whether this process differs fundamentally from bucket-based methods.

​

Research Questions

​

Can equilibrium positions be computed without explicit comparisons?

​

Can local rules guarantee global sorted order?

​

Does the system always converge?

​

What is the stabilization complexity?

​

Can the field be updated dynamically after insertions?

​

Can duplicates be handled naturally?

​

Can equilibrium sorting outperform existing methods in specific domains?

​

Can the Density Field become a new data structure independent of sorting?

​

Possible Mathematical Direction

​

Let:

​

v_i = value of element i

​

d_i = density of element i

​

p_i = position of element i

​

The field defines a density function:

​

F(p)

​

An equilibrium position satisfies:

​

d_i = F(p_i)

​

The sorting problem becomes:

​

Find positions p_i such that all elements reach stable equilibrium and the resulting order corresponds to ascending values.

​

This transforms sorting into an equilibrium-finding problem rather than a comparison problem.

​

Initial Assessment

​

The concept is inspired by physical systems rather than classical sorting theory.

​

At present:

​

Novelty is unproven.

​

Complexity is unknown.

​

Correctness is unproven.

​

Practicality is unknown.

​

However, the framework provides an interesting direction for investigating self-organizing data structures and equilibrium-based computation.

​

The next milestone is defining a precise mathematical model for the Density Field and proving whether equilibrium necessarily implies sorted order.

​

Working Name

​

Density Field Sorting (DFS)

​

Alternative names:

​

Equilibrium Sort

​

Buoyancy Sort

​

Stratified Sort

​

Density Equilibrium Structure (DES)

​

Self-Organizing Density Field (SODF)

​

​

reddit.com
u/TraditionalMeet3846 — 2 months ago
▲ 1 r/JEE

Lucknow University Review

Lucknow University is the worst worst worst college you can eevr get for your btech degree

especially for CS Students

just wanna remind you all plz never play with your career and dont ever take admission in lucknow university

reddit.com
u/TraditionalMeet3846 — 3 months ago

Has anyone in UP region ,got doc verification email and then offer letter too ?

i got doc email on 20th april but waiting for OL , its been 10 days now , idk if it will even come or not

has anyone else got ol? or same situation ??

reddit.com
u/TraditionalMeet3846 — 4 months ago