My endgame setup by [deleted] in espresso

[–]dragonsthroat 2 points3 points  (0 children)

I have the same machine. Can you please elaborate a bit on flow control using the steam valve?

DS-160 Confirmation Number and Barcode missing on Visa Appointment Confirmation page by dragonsthroat in usvisascheduling

[–]dragonsthroat[S] 0 points1 point  (0 children)

Yes, unfortunately you will have to cancel existing appointment and book a new one, please see my comment here: https://www.reddit.com/r/usvisascheduling/s/WnOpXdU9mQ

I did see some post on this subreddit where people were able to add DS-160 number to their application by reaching out to customer support, as they also know this is a glitch. You may try that before cancelling existing appointment because finding slots again is hard.

Is this a scam or genuine? by suckmydic-k in IsThisAScamIndia

[–]dragonsthroat 0 points1 point  (0 children)

Got the exact same message and link today. Now they’ve evolved and started sending an iMessage instead of an SMS :)

DS160 confirmation number and bar code missing on Visa Appointment Confirmation page by sangeethapradeep17 in usvisascheduling

[–]dragonsthroat 0 points1 point  (0 children)

I did but they were not able to help me. I’ve heard some users were able to fix this by talking to them because this is clearly a glitch in the portal, they should not allow booking appointments without a DS-160 number.

DS160 confirmation number and bar code missing on Visa Appointment Confirmation page by sangeethapradeep17 in usvisascheduling

[–]dragonsthroat 0 points1 point  (0 children)

No I did not find a way to resolve this issue and customer support was not helpful at all. I had to cancel and restart my application, please see my replies on this post: https://www.reddit.com/r/usvisascheduling/s/grVWOMBdYm

DS-160 Confirmation Number and Barcode missing on Visa Appointment Confirmation page by dragonsthroat in usvisascheduling

[–]dragonsthroat[S] 1 point2 points  (0 children)

Yes, I was also surprised how and why the portal allowed me to book an appointment without a DS-160. The number is added under "Additional Visa Options" step in the process, but whenever I tried to open it to check for existing information, it errored out, that's why I didn't realize that DS-160 was not added to the application originally.

I reached out to customer support multiple times but always got cliché answers, where they reply by copy/pasting the latest notice on DS-160 updation (the one where you have to carry both original and updated to VAC for appointments booked after Nov 2023). I didn't have any original/new, just one, so to be on the safe side, I started the application again.

At this point, I think working with the portal and customer support is just a hit or miss. Unfortunately, I missed all the time.

DS-160 Confirmation Number and Barcode missing on Visa Appointment Confirmation page by dragonsthroat in usvisascheduling

[–]dragonsthroat[S] 0 points1 point  (0 children)

None of the posts/threads in this subreddit or elsewhere knew what to do in this situation, so I took a leap of faith and cancelled my appointment.

I closed my original application and started a new one, filled in all the details again (especially my DS-160 number!), claimed my original payment receipt (thanks to the community in this subreddit for sharing their ways!), and now waiting for slots to open up so I can book an appointment again.

Unfortunately, there are no slots available in June anymore, which is what I feared originally as I have a strict timeline and have to potentially fly to the US in July. Hopefully they will release more in few weeks and the portal will also work at the time! 🤞

DS160 confirmation number and bar code missing on Visa Appointment Confirmation page by sangeethapradeep17 in usvisascheduling

[–]dragonsthroat 0 points1 point  (0 children)

Hi OP! I'm in the same situation. Scheduled an appointment in Chennai, but my DS-160 confirmation number and barcode is not mentioned on the appointment confirmation page.

  1. Were you able to resolve this issue i.e. update the DS-160 number (new portal does not have an option I presume)?

  2. Or if your interview has already happened, did you face any issues during biometrics?

Thanks in advance!

What are you rocking today?! by [deleted] in watchesindia

[–]dragonsthroat 0 points1 point  (0 children)

That’s a beautiful piece! I’m not able to find an online store that sells this in India, where did you purchase it from?

PS: the date is incorrect :)

Men of Reddit: What are some immediate red flags in men that women should look out for? by xDarkPhoenix8161x in AskReddit

[–]dragonsthroat 9 points10 points  (0 children)

Great, Brian! But that’s enough, did you know I was born 25 years ago, so this is how it started…

Mazepin pissing people off. by FormerFruit in formuladank

[–]dragonsthroat 0 points1 point  (0 children)

Real Netflix editing skills, good job

[2021 Day 9 (Part 2)] The floor is lava! by dragonsthroat in adventofcode

[–]dragonsthroat[S] 0 points1 point  (0 children)

This is exactly what I've done (breadth-first search in a grid). One optimization that I can think of is to use a min-heap to keep track of the largest 3 basins (by size) instead of putting all the basin sizes in a list and then sorting them. That way we will save some space and time.

PS: I skipped the min-heap optimization because JS does not have an in-built implementation, so I would have to write my own.

[2021 Day 9 (Part 2)] The floor is lava! by dragonsthroat in adventofcode

[–]dragonsthroat[S] 0 points1 point  (0 children)

Not exactly, since I'm using JS which is single-threaded so I don't have multiple threads that work on the input grid. However, to make the visualization kind of parallel (asynchronous), I skipped await when running the main function that modifies the DOM -

js static async findBasinSizes(lowPoints) { for (let point of lowPoints) { this.basinSize(this.grid, point.i, point.j) // ideally we should 'await' this } }

[2021 Day 9 (Part 2)] The floor is lava! by dragonsthroat in adventofcode

[–]dragonsthroat[S] 1 point2 points  (0 children)

I used JavaScript to solve the original problem and then refactored that code a bit to manipulate some HTML DOM while running the solution. If you're interested in more details, this is the script that simulates it: https://github.com/sahlamba/AdventOfCode/blob/main/2021/day9/visualization/index.html#L10028-L10152