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
[package] | |
name = "cairo-rs-stride-fix" | |
version = "0.1.0" | |
authors = ["Christer Sandberg <[email protected]>"] | |
edition = "2018" | |
[dependencies] | |
cairo-sys-rs = "0.9.1" | |
[dependencies.cairo-rs] |
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
./configure --host=wasm32-wasi CFLAGS="-DHB_NO_MT" CXXFLAGS="-DHB_NO_MT" CC="/opt/wasi-sdk-5.0/bin/clang --sysroot=/opt/wasi-sdk-5.0/share/sysroot" CXX="/opt/wasi-sdk-5.0/bin/clang++ --sysroot=/opt/wasi-sdk-5.0/share/sysroot" AR="/opt/wasi-sdk-5.0/bin/llvm-ar" RANLIB="/opt/wasi-sdk-5.0/bin/llvm-ranlib" --prefix=/opt/harfbuzz-build-wasi-sdk-5.0 --enable-static=yes --enable-shared=false |
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
package main | |
import ( | |
"bufio" | |
"io" | |
"log" | |
"os" | |
"strconv" | |
"strings" | |
) |
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
package main | |
// Fetch dependencies: go get golang.org/x/net/html | |
// Run as a shell script: go run joker.go -h | |
// Build as a static binary: go build joker.go && ./joker -h | |
// | |
// '-h' displays the command line flags | |
// | |
// Author: chrsan |
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
package se.fishtank; | |
import java.net.URI; | |
import java.util.Map; | |
import ch.qos.logback.classic.spi.ILoggingEvent; | |
import ch.qos.logback.core.sift.Discriminator; | |
import ch.qos.logback.core.spi.ContextAwareBase; | |
public class AkkaSourceDiscriminator extends ContextAwareBase implements Discriminator<ILoggingEvent> { |
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
package akka.unfiltered | |
import akka.actor._ | |
import akka.dispatch.Future | |
import akka.pattern.ask | |
import akka.util.duration._ | |
import akka.util.Timeout | |
import unfiltered.Async | |
import unfiltered.request._ |