Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mofle
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Show HN: Menu Bar World Clocks
(sindresorhus.com)
2 points
by
mofle
10mo ago
|
0 comments
2.
▲
by
mofle
11mo ago
The app just triggers AirDrop. AirDrop itself is provided by macOS.
3.
▲
Show HN: Drag to AirDrop
(sindresorhus.com)
3 points
by
mofle
11mo ago
|
3 comments
4.
▲
Show HN: CSS Extras
(github.com)
104 points
by
mofle
11mo ago
|
63 comments
5.
▲
by
mofle
1y ago
I'm sindresorhus. I collaborate well with people on GitHub every day. My GitHub activity is open and anyone can take a look if they doubt it. If you are going to make personal attacks, at least include some proof. I tried searching and
6.
▲
Show HN: Run Shortcuts
(sindresorhus.com)
1 points
by
mofle
1y ago
|
0 comments
7.
▲
The Micro-Benchmark Fallacy
(sindresorhus.com)
2 points
by
mofle
1y ago
|
0 comments
8.
▲
by
mofle
1y ago
Like OpenAI's Codex and Anthropic's Claude Code, this one is also built with Ink, React for the terminal. https://github.com/vadimdemedes/ink
9.
▲
Show HN: Simple Color Palette
(github.com)
2 points
by
mofle
1y ago
|
0 comments
10.
▲
Show HN: Switch Default Browser
(sindresorhus.com)
1 points
by
mofle
2y ago
|
0 comments
11.
▲
Show HN: Supercharge Your Mac
(sindresorhus.com)
27 points
by
mofle
2y ago
|
20 comments
12.
▲
The Micro-Benchmark Fallacy
(sindresorhus.com)
1 points
by
mofle
2y ago
|
0 comments
13.
▲
Show HN: Customize the gap between macOS menu bar items
(sindresorhus.com)
2 points
by
mofle
2y ago
|
0 comments
14.
▲
by
mofle
2y ago
Why not just use the Paste and Match Style menu item or ⌥⇧⌘V? - This app can make it the default behavior. - That menu item is not available in all apps. - The keyboard shortcut is hard to remember and type. - In some apps, like Chrome, the
15.
▲
Paste as Plain Text by Default
(sindresorhus.com)
2 points
by
mofle
2y ago
|
4 comments
16.
▲
by
mofle
3y ago
It could indeed be faster. The app does not currently use the neural engine (ANE) because it has a tendency to crash the app, so it uses only CPU and GPU. The app also does upscaling, which adds ~10 seconds.
17.
▲
by
mofle
3y ago
See: https://sindresorhus.com/amazing-ai#why-does-the-app-require...
18.
▲
Show HN: Run Stable Diffusion Directly on iPhone
(apps.apple.com)
162 points
by
mofle
3y ago
|
42 comments
19.
▲
Show HN: Second Menu Bar Clock
(sindresorhus.com)
2 points
by
mofle
3y ago
|
1 comments
20.
▲
Show HN: Supercharge Shortcuts
(github.com)
4 points
by
mofle
3y ago
|
0 comments
21.
▲
by
mofle
3y ago
Also One Task: https://sindresorhus.com/one-task
22.
▲
Modernizing DOM APIs
(twitter.com)
3 points
by
mofle
3y ago
|
0 comments
23.
▲
by
mofle
3y ago
TypeScript had years to prepare for ESM, but they did not. Same with Jest. ESM was developed in the open and anyone could participate, including the TypeScript team. You are talking like ESM just happened overnight. It had been in developme
24.
▲
Show HN: SamoyedGPT
(chat.openai.com)
3 points
by
mofle
3y ago
|
0 comments
25.
▲
Show HN: SindreGPT
(twitter.com)
1 points
by
mofle
3y ago
|
0 comments
26.
▲
by
mofle
3y ago
You are reading the wrong spec. That is `Array#slice`, not `TypedArray#slice`. Correct spec: https://tc39.es/ecma262/multipage/indexed-collections.html#s... Steps 14.g.i to 14.g.ix detail the transfer of data from
27.
▲
by
mofle
3y ago
No one is forcing you to use it. You can choose to reimplement the code yourself or you can choose to copy-paste the code. I made the package for my own convenience as I need to transition a lot of packages from `Buffer` and I don't wa
28.
▲
by
mofle
3y ago
Completely different behavior is not an implementation detail. Changing method behavior in subclasses is part of inheritance, but it shouldn't confuse or mislead. In the case of Buffer and Uint8Array, the altered `.slice()` functionali
29.
▲
by
mofle
3y ago
- Blob: Immutable raw data container with a size and MIME type, not directly readable. - File: Like a Blob, but with additional file-specific properties (e.g., filename). - ArrayBuffer: Fixed-length raw binary data in JavaScript, not direct
30.
▲
by
mofle
3y ago
https://weizmangal.com/2022/10/28/what-is-a-realm-in-js Examples of this are frames in the browser and the `vm` module in Node.js.
More ›