Status: kernel bug confirmed at the raw
AF_VSOCKlayer (no NIO, no third-party deps). Ready to file with Apple. Workarounds exist on the consumer side. This file is the full handoff to anyone picking this up.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Windows.Forms; | |
| namespace WindowsFormsApp1 | |
| { | |
| static class Program | |
| { | |
| [STAThread] | |
| static void Main() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Current TS File", | |
| "type": "node", | |
| "request": "launch", |
$ brew install pdfsandwich
$ pdfsandwich FILE
Hi! Our team is hiring for electronjs.
- Do you like c++? Want to work with node.js and Chromium?
- Do you like building tooling, full-stack web apps, and new prototypes?
Got questions?
- Ask below
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct kevent { | |
| uintptr_t ident; /* identifier for this event */ | |
| int16_t filter; /* filter for event */ | |
| uint16_t flags; /* general flags */ | |
| uint32_t fflags; /* filter-specific flags */ | |
| intptr_t data; /* filter-specific data */ | |
| void *udata; /* opaque user data identifier */ | |
| } kevent; | |
| ::kevent:entry |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <iostream> | |
| // A simple container class for holding results | |
| class Item { | |
| using str = std::string; | |
| private: | |
| str _item; | |
| public: | |
| Item(str k): _item {k} {} | |
| const str value() const { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <stdio.h> | |
| template<int i> | |
| class Integer { | |
| public: | |
| static const int value = i; | |
| }; | |
| template<class Left, class Right> | |
| class Add { |
NewerOlder