Viewing profile — weissi
weissi
HN member- Joined
- Thu, Aug 14, 2014, 9:00 PM UTC
- HN karma
- 9
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About weissi
Recent public activity
-
comment
Comment #48707047
Swift has `@_noAllocation`: @_noAllocation func foo() -> Int { return [1,2,3].randomElement()! } fails with "error: Using type 'Int' can cause metadata allocation or locks" but @_n…
-
comment
Comment #41345079
Interesting, maybe ChatGPT got more reluctant to spit out ics? Didn't have to try very hard back in May: https://chatgpt.com/share/0848349d-4b0b-40f8-9d24-e9c4ffc065...
-
comment
Comment #40696321
We leave our bedroom door open whilst we sleep which pretty much solves the issue. Leaving the ensuite bathroom door open also helps but not quite as much as the door to the hallwa…
- story
- story
- story
-
comment
Comment #14149273
no mention or picture of Windows Phone?!
-
comment
Comment #13552572
for int m[2][3] = { {1, 2, 3}, {4, 5,6}}; int *n[2]; n[0] = &m[0][0]; //equivalent to n[0] = m[0] n[1] = &m[1][0]; //equivalent to n[1] = m[1] it lists that What is n[1][1]? //2 Wh…
- story