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
#ifndef UDIRECT_H | |
#define UDIRECT_H | |
#if !defined(UDIRECT_VERSION) | |
#error UDIRECT_VERSION must be defined(supported: 0x000) | |
#elif (UDIRECT_VERSION != 0x000) | |
#error Unsupported UDIRECT_VERSION | |
#endif | |
#ifndef _UDI_H |
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
_PUBLIC_ verbs and incidences, from the Pump.io firehose | |
N.B. this is an incomplete sample - most non-post verbs will be sent to "followers" the majority of the time | |
post 14116 | |
update 916 | |
like 1053 | |
favorite 1629 | |
create 847 | |
share 17 | |
delete 228 |
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
_cbprintf(3) Library Functions Manual _cbprintf(3) | |
NNAAMMEE | |
__ccbbpprriinnttff, __vvccbbpprriinnttff, __ccbbwwpprriinnttff, __vvccbbwwpprriinnttff -- formatted output | |
conversion by callback | |
SSYYNNOOPPSSIISS | |
##iinncclluuddee <<ssttddiioo..hh>> | |
iinntt __ccbbpprriinnttff(_v_o_i_d _*_p, _i_n_t _(_*_c_b_)_(_v_o_i_d _*_p_, _c_o_n_s_t _c_h_a_r _*_b_u_f_, _i_n_t _s_i_z_e_), |
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
_CBPRINTF(3) Library Functions Manual _CBPRINTF(3) | |
NAME | |
_cbprintf, _vcbprintf, _cbwprintf, _vcbwprintf -- formatted output | |
conversion by callback | |
SYNOPSIS | |
#include <stdio.h> | |
int _cbprintf(void *p, |
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
{ | |
"preferredUsername": "oshepherd", | |
"url": "https://microca.st/oshepherd", | |
"displayName": "Owen Shepherd", | |
"links": { | |
"self": { | |
"href": "https://microca.st/api/user/oshepherd/profile" | |
}, | |
"activity-inbox": { | |
"href": "https://microca.st/api/user/oshepherd/inbox" |
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
/* threads.h -- header for threads library */ | |
#pragma once | |
#ifndef _THR_THREADS_H | |
#define _THR_THREADS_H | |
#ifndef RC_INVOKED | |
#include <thr/xthreads.h> | |
#pragma pack(push,_CRT_PACKING) | |
#pragma warning(push,3) | |
#pragma push_macro("new") |
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
$ git rebase ad23f89 | |
First, rewinding head to replay your work on top of it... | |
': not a valid identifiertext.sh: line 88: export: `FIRSTLINE | |
Applying: | |
': not a valid identifiertext.sh: line 88: export: `FIRSTLINE | |
Applying: | |
': not a valid identifiertext.sh: line 88: export: `FIRSTLINE | |
Applying: | |
': not a valid identifiertext.sh: line 88: export: `FIRSTLINE | |
Applying: |
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
oshepherd@Asuka ~/elfload | |
$ uname -a | |
CYGWIN_NT-6.1 Asuka 1.7.32(0.274/5/3) 2014-08-13 23:06 x86_64 Cygwin | |
oshepherd@Asuka ~/elfload | |
$ cat hi.c | |
void _start(int (*puts)(const char *s)) | |
{ | |
puts("Hello, world!"); | |
} |
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
Trying ::1... | |
Trying 127.0.0.1... | |
Connected to localhost. | |
Escape character is '^]'. | |
NOTICE: Booting Trusted Firmware | |
NOTICE: BL1: v1.0(debug):8e0bbcb | |
NOTICE: BL1: Built : 23:11:31, Oct 3 2014 | |
INFO: BL1: RAM 0x4039000 - 0x403c000 | |
WARNING: Firmware Image Package header check failed. | |
INFO: Loading file 'bl2.bin' at address 0x4016000 |
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
Local<CallExpression> Parser::parseFunctionCall(Handle<Expression> func) | |
{ | |
LocalScope<3> ls; | |
Local<CallExpression> call(new CallExpression(func)); | |
consume(Token::OpenParen); | |
for (;;) { | |
ls.resetPreserving(&call); | |
Local<Expression> param; | |
if (!(param = parseExpression(operatorPrecedence(Token::Comma) + 1))) |
OlderNewer