HN user

topsycatt

921 karma
Posts16
Comments33
View on HN
Microsoft AI 7 months ago

I work on that team! We're growing extremely rapidly (I joined 4 months ago from GDM and I'm at the 50th percentile of tenure), if you're interested in E2E model training reach out at https://microsoft.ai/careers/

Canvas actually has a mix of this sandbox (with a different container) and fully client-side.

The "run" option for generated code was removed due to underutilization, but the sandbox is still used for things like the data analysis workflow and running extensions amongst other things. It's really just a general purpose sandbox for running untrusted code server-side.

Very cool, but some basic stuff is broken having used the app. For example, I'm unable to create a new conversation since I'm unable to click on a contact after having searched for their name in the "New Chat" flow. Looking forward to using it once this is fixed!

Edit: Seems like I have to double tap instead? Not super easy to use but it works so I'll take it!

Bard Extensions 3 years ago

Hey I work on that! I can only share information that's already public unfortunately, which isn't much beyond what's on that page...

I'm working on it, but part of the motivation for the question is wanting to find people to get ideas / guidance / friendship from who are more interesting than myself.

Kind of an “If you're the most interesting person in the room, you're in the wrong room.” vibe.

Defining interesting is an exercise that's left up to the reader ;)

I personally think it's fascinating to talk to people who are unlike myself, but your approach is definitely valid (if a bit "draw the rest of the f**ing owl") for a given interest.

No, I actually do conform to a rote/traditional lifestyle fairly closely. I'm actively trying to branch out with some success, but I'm also looking to talk to people who are unlike myself to get outside perspective, ideas for growth, and just to have a fun discussion!

I like to think I don't come across as aloof, self-centered, and dismissive, but -- like I mentioned in another comment -- who really knows what another thinks of them? Perhaps that's a good area to validate my assumptions so that I'm not shooting myself in the foot.

And on your last point, I definitely agree. Sometimes however you can find yourself in a situation where those barriers don't really apply and you can have a deep, interesting conversation with little prompting. I guess the heart of my question is about where people find those interesting conversations with greater regularity.

Both are fair questions. For the former, I'm personally looking for new friends and the novelty of meeting strangers. Some of my favorite memories are from meeting strangers and getting to know them over the course of an evening.

For the latter, I like to think not (but who really knows someone else's experience of themselves?). I enjoy talking to strangers for it's own sake and I'm not generally bracing for boredom, my question was primarily about good places to explore that have a higher ratio of interesting interactions to non-interesting interactions.

I understand the classification is very subjective, so I left the question somewhat subjective to hear not only answers to the core question, but also answers to the implicit question of "what do you find to be interesting".

Link to the current list of restrictions: http://pe.usps.com/cpim/ftp/manuals/imm/full/imm.pdf

A few actual quotes that I've found in just 10 minutes of browsing:

San Marino: "Toys not made wholly of wood"

Qatar: "Musical greeting cards"

Albania: "Extravagant clothes and other articles contrary to Albanians' taste" (already in the article but I thought the literal quote was even better)

The list is a gold mine, it seems every 5th country has some strange restriction

Yes, they still are useless, at least for the -O3 and -O4 sections.

The compiler removing the loop is due to a bad test setup in which the function in the loop does nothing and compiler can figure that out and skip the whole calculation. In a real scenario the function in the loop would (presumably) actually do some work so it could not be elided. Also, note that the compiler does this for BOTH the Duff's device version and the non Duff's device version.

Also, I'm neither attacking nor defending Duff's device. I'm just saying that we can't draw any useful conclusions from this article because of poor methodology.

I think the author is making a fairly critical mistake here. If I understand correctly, they missed the fact that the -O2 and -O3 results are several orders of magnitude faster... Likely meaning the compiler optimized away the whole loop in those cases, rendering their results useless.

Edit: Yeah, looking at the godbolt link they provided, at least the execute_loop_basic function does essentially no work.

Interesting article! I think there's an error though, where the first constraint should be expressed as "(5-x) + (x-5) = 10" (the author has "(x-5) + (x-5) = 10" currently).