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
commit 989ecf2db1b2c5aaa21299e7c78108eb29935e11 | |
Author: Marius Eriksen <[email protected]> | |
Date: Tue Jan 4 12:29:12 2022 -0800 | |
acme: acmesrv | |
diff --git a/src/cmd/acme/acme.c b/src/cmd/acme/acme.c | |
index d001a2a8..2ebe5d3d 100644 | |
--- a/src/cmd/acme/acme.c | |
+++ b/src/cmd/acme/acme.c |
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
diff --git a/src/cmd/fontsrv/osx.c b/src/cmd/fontsrv/osx.c | |
index e1c3ff69..154f0bf1 100644 | |
--- a/src/cmd/fontsrv/osx.c | |
+++ b/src/cmd/fontsrv/osx.c | |
@@ -388,6 +388,9 @@ mksubfont(XFont *f, char *name, int lo, int hi, int size, int antialias) | |
Memsubfont *sf; | |
CGFloat whitef[] = { 1.0, 1.0 }; | |
CGColorRef white; | |
+ char bufx[20]; | |
+ CFStringRef baseString ; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// This is an example modules to demonstrate how to process large | |
// numbers of files in Reflow, as outlined here: | |
// | |
// https://github.com/grailbio/reflow/issues/22 | |
// First, we define a number of parameters that provide the input | |
// and output data locations as well as the location of the reference | |
// we'd like to use. | |
param ( |
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
/* | |
How to manipulate and export file trees. | |
The system module $/dirs contains a number of utilities for creating | |
and copying directories: | |
% reflow doc $/dirs | |
Declarations | |
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
diff --git a/src/cmd/acme/acme.c b/src/cmd/acme/acme.c | |
index 2f4fe3a..fa74df9 100644 | |
--- a/src/cmd/acme/acme.c | |
+++ b/src/cmd/acme/acme.c | |
@@ -42,11 +42,14 @@ char *fontnames[2] = | |
"/lib/font/bit/lucm/unicode.9.font" | |
}; | |
+long *theme = nil; | |
+ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/bin/bash | |
set -e | |
prev=$1 | |
shift | |
for b | |
do | |
if ! git checkout $b >/dev/null 2>&1 | |
then |
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
#!/bin/bash | |
norm(){ | |
gawk ' | |
/^import/ { | |
if(current) print current | |
current = $0 | |
} | |
$0 !~ /^import/ { | |
current = current $0 |
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
/* | |
* We're going to demonstrate how to use Finagle's Stack facilities to inject behavior | |
* deep down in Finagle's stack. Namely, we want to capture the address of a remote | |
* server in that server's response. | |
* | |
* While retrieving a client address is something that perhaps deserves a first-class | |
* API, it's nevertheless interesting to exercise the flexbility of the Stack mechanism. | |
* | |
* This code uses only public APIs. | |
* |
NewerOlder