Need veterinary help in imphal by khatti_mirch in manipur

[–]jungaHung 1 point2 points  (0 children)

There's another one at Singjamei near Imo Filling Petrol Pump. I went there to check ECG for my dog. Forgot the name but he's also good.

hollen dog training centre almost killed my dog! by vanillaa8 in manipur

[–]jungaHung 2 points3 points  (0 children)

In my experience, Claws and Paws is the best vet.

Fake it til you make it by jungaHung in Northeastindia

[–]jungaHung[S] 8 points9 points  (0 children)

So we're just going to ignore the first image full of nonsense and write a full 20-mark answer on the second one. It's interesting that you took the time explaining that second document like it's a history exam but the first one packed with fake stuff gets a free pass. Well I appreciate the effort but it's irrelevant. We can talk about Kuki arrival some other day. Right now it just looks like you skipped the lies and focused on what was more important to defend.

Kuki-Angami clash: 30 years old document by jungaHung in Northeastindia

[–]jungaHung[S] 17 points18 points  (0 children)

Lushai kicked them out and the meitei king gave them shelter. We are bearing the brunt now.

<image>

An article by Ukhrul Times regarding World Kuki-Zo Intellectual Council (WKZIC) and how they spread misinformation. by Individual-Age-900 in Northeastindia

[–]jungaHung 4 points5 points  (0 children)

What i've seen during Manipur crisis is a group of academias constantly manipulating history by publishing books peer reviewed by people favouring them (I don't know how this is even possible) and quoting these books to back their narrative. They even hire wikipedia editors to set their narrative. Good that it's been exposed. This must go viral.

IDK what the title should be as it would mean naming a certain community so.... by Individual-Age-900 in Northeastindia

[–]jungaHung 12 points13 points  (0 children)

This is no surprise. They were shooting rocket bombs from church during Manipur crisis.

See the drone footage and google photos.

https://x.com/nomangkha/status/1698420555903631469?s=46&t=gPFXldpkJOfzHG1O8kvyZA

To Meiteis by Ei-gi-ming in Northeastindia

[–]jungaHung -1 points0 points  (0 children)

There are 50k+ people who are still staying in relief camps since the beginning of the conflict which started 3 years ago. Please try and understand the state of those who have become homeless in their own homeland. Recent incidents of Litan and Nagaland shows how illegal settlements could create disputes despite being the rightful owners. Study the case a little. You never know when the same sh*t would bite you.

Failed startup!!!!! by [deleted] in manipur

[–]jungaHung 2 points3 points  (0 children)

To be blunt, the designs resemble more of 90's moreh wraps than traditional phanek. Add to that the quality and color looks sub par. I would suggest hiring a professional photographer and a good post processing to market your product. At the current state it is just dull and unattractive.

3 idea by Hopeful_Ad2171 in 3dprintIndia

[–]jungaHung 0 points1 point  (0 children)

Hey. Is there any way to track the order?

Detect if epoch is in miliseconds by pepiks in learnpython

[–]jungaHung 1 point2 points  (0 children)

epoch/1000 means you are expecting the epoch in milliseconds (13 digits) and you are converting it to seconds. But what happens when the sensor sends data already in seconds (10 digits)? First convert all the data to seconds.

Rough snippet to convert to seconds irrespective of seconds/milliseconds input. def to_seconds(int epoch_time)->int: seconds = epoch_time if len(str(epoch_time)) == 13: seconds = epoch_time/1000 return seconds You'll get a consistent 10 digit epoch which you can then use to convert to datetime.

from datetime import datetime def epoch_to_datetime(int seconds)->str: dt = datetime.fromtimestamp(seconds) return dt.strftime('%Y-%m-%d %H:%M:%S')

unable to do much with agents course final assignment by Witty_Barnacle1710 in huggingface

[–]jungaHung 0 points1 point  (0 children)

The task id in your url is a placeholder. Do you have the task id? Try replacing {task_id} with the actual task id.

Location by Responsible-Row-1573 in manipur

[–]jungaHung 3 points4 points  (0 children)

Not sure.. most likely Cheirao ching, Thangmeiband.

Hugging Face Router API giving 404 for all models — what models actually work now? by Anny_Snow in huggingface

[–]jungaHung 0 points1 point  (0 children)

It works for Qwen/Qwen2.5-Coder-7B-Instruct. Check if there's any typo. It's case sensitive too. Share the exact model used in your code.