$ brew install pdfsandwich
$ pdfsandwich FILE
This file contains 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 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", |
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 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 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 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 { |
servicification, service-oriented-architecture, mircroservice, oh-my
Choose your term, but many organizations are building complex applications by decomposing them into discrete logical groups. These groups are often uniqe teams, code bases, and processes running in a cluster of machines.
This design is often pursued for commonly agreed upon benefits, such as:
NewerOlder