Skip to content

Instantly share code, notes, and snippets.

fun files2delete(args: List<String>) {
return args.flatMap { arg ->
walkFiles("~$arg*.*").map { pythonFile ->
styledEcho(fgRed, fgBlack, pythonFile)
pythonFile
}
}
}

-> 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

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 {
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
@seykron
seykron / gist:6732836
Created September 27, 2013 18:17
Frontend Developer Interview

Frontend Developer Interview

General

  1. Are you on Github? If so, what are some examples of repos you follow (and who are you in there :).

  2. Can you describe your workflow when you create a web page?

  3. Explain what “Semantic HTML” means. Is this important? why?

@seykron
seykron / Widget.html
Created September 15, 2013 19:15
Shows the basic structure and behaviour of a widget.
<!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>
@seykron
seykron / Rendering.html
Last active December 23, 2015 03:28
Initial and dynamic rendering test.
<!DOCTYPE html>
<html>
<head>
<title>Rendering test</title>
</head>
<body>
<div id="js-toolbar">
<a class="js-action-edit" href="javascript:void(0)">Edit</a>
<a class="js-action-delete" href="javascript:void(0)">Delete</a>
@seykron
seykron / JsonPTest.js
Created September 15, 2013 14:03
Simple JSONP request example.
var addScript = function (url) {
var script = document.createElement("SCRIPT");
var parentNode = document.getElementsByTagName("HEAD")[0];
script.async = true;
script.type = "text/javascript";
script.src = url;
script.addEventListener("load", function () {
parentNode.removeChild(script);
});
parentNode.appendChild(script);
@seykron
seykron / JavaScriptScopeTest.js
Last active December 23, 2015 02:29
Test for JavaScript lexical scope and first-class functions.
var logger = function (level) {
return function (message) {
console.log(level + " " + message);
};
};
var info = logger("INFO");
var debug = logger("DEBUG");
info("Information event");
debug("Debugging event");
@seykron
seykron / EventModelTest.html
Created September 15, 2013 00:42
Test to show how event bubbling works in DOM.
<!DOCTYPE html>
<html>
<head>
<title>DOM Event Bubbling Test</title>
</head>
<body>
<div id="toolbar">
<a id="edit" href="#">Edit</a>
<a id="delete" href="#">Delete</a>