-> SuperDirt Found 0 LADSPA plugins jackdmp 1.9.12 Copyright 2001-2005 Paul Davis and others. Copyright 2004-2016 Grame. Copyright 2016-2017 Filipe Coelho. jackdmp comes with ABSOLUTELY NO WARRANTY This is free software, and you are welcome to redistribute it under certain conditions; see the file COPYING for details JACK server starting in realtime mode with priority 10
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
fun files2delete(args: List<String>) { | |
return args.flatMap { arg -> | |
walkFiles("~$arg*.*").map { pythonFile -> | |
styledEcho(fgRed, fgBlack, pythonFile) | |
pythonFile | |
} | |
} | |
} |
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
package net.borak.support.csv | |
import kotlinx.coroutines.* | |
import kotlinx.coroutines.channels.ReceiveChannel | |
import kotlinx.coroutines.channels.produce | |
import org.slf4j.Logger | |
import org.slf4j.LoggerFactory | |
import java.io.BufferedReader | |
class CSVParser { |
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
package net.borak.support.csv | |
import kotlinx.coroutines.CoroutineScope | |
import kotlinx.coroutines.Dispatchers | |
import kotlinx.coroutines.async | |
import kotlinx.coroutines.channels.ReceiveChannel | |
import kotlinx.coroutines.channels.produce | |
import kotlinx.coroutines.runBlocking | |
import org.slf4j.Logger | |
import org.slf4j.LoggerFactory |
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
var WHITE = 255; | |
var readimage = require("readimage"); | |
var fs = require("fs"); | |
var gm = require("gm"); | |
var load = function (file, callback) { | |
var buffer = fs.readFileSync(file); | |
var stream = fs.createReadStream(file); |
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
package foo.test; | |
import org.eclipse.jetty.server.Server; | |
import org.eclipse.jetty.server.handler.ResourceHandler; | |
import org.eclipse.jetty.servlet.ServletContextHandler; | |
import org.eclipse.jetty.util.resource.Resource; | |
/** Steps to reproduce the issue: | |
* | |
* 1. Run the application |
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
#!/bin/bash | |
# usage: pandoc-document [pandoc options] | |
wget --quiet -O document-A4.template https://gist.githubusercontent.com/seykron/9688447/raw/b52bcead0d78cef033a5eec5f92b5f9a4a8ca050/pandoc-document-template-A4.html | |
pandoc --template document-A4.template $@ |
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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>$title$</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta name="generator" content="pandoc"> | |
<style type="text/css"> | |
body { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Widget test</title> | |
</head> | |
<body> | |
<div id="js-toolbar-email"> | |
<a class="js-action-edit" href="javascript:void(0)">Edit</a> | |
<a class="js-action-delete" href="javascript:void(0)">Delete</a> |
NewerOlder