Ansh Tyagi

Results 5 issues of Ansh Tyagi

### Is your feature request related to a problem? Please describe. _No response_ ### Describe the solution you'd like. _No response_ ### Describe alternatives you've considered For stopping or terminating...

enhancement

Code ```js async function getLatestPostOrReel(username) { const userFeed = ig.feed.user(username); const timelineFeed = ig.feed.timeline(); const [userMediaItems, timelineMediaItems] = await Promise.all([ userFeed.items(), timelineFeed.items() ]); const latestMediaItem = [...userMediaItems, ...timelineMediaItems].sort((a, b) =>...

bug
unconfirmed

```python import speech_recognition as sr import pyttsx3 r = sr.Recognizer() engine = pyttsx3.init() def listen(): with sr.Microphone() as source: speak("Listening...") r.pause_threshold = 1 audio = r.listen(source) try: speak("Recognizing...") query =...

Needs-Checking

```java 2024-10-17 21:39:21.399 ERROR 36237 --- [nio-8080-exec-2] w.a.UsernamePasswordAuthenticationFilter : An internal error occurred while trying to authenticate the user. org.springframework.security.authentication.InternalAuthenticationServiceException: org.hibernate.hql.internal.ast.QuerySyntaxException: customer is not mapped [from customer where username =...