This came about thanks to Mark on the Renoise forum. Thanks for finally pointing me in the right direction for this.
http://forum.renoise.com/index.php?/topic/38738-renoise-linux-and-pulseaudio/
import std.conv; | |
import std.stdio; | |
import std.traits; | |
import std.range; | |
struct Element | |
{ | |
string _name; | |
string[string] _attributes; | |
string _content; |
Striata Reader End User Agreement <https://reader.striata.com/user-agreement.html> | |
This Agreement: | |
This Agreement between Striata and the end user covers all your use of the Striata Reader from any terminals where the Striata Reader has been installed, by the end user or by third parties. You accept this Agreement by installing the Striata Reader. | |
License: | |
Subject to the terms of this Agreement, Striata hereby grants you a limited, personal, non-commercial, non-exclusive, non-sub licensable, non-assignable, and free of charge license to download, install and use the Striata Reader on your computer for the sole purpose of personally using the Striata Reader to access your encrypted content. | |
No Granting of Rights to Third Parties: | |
You will not sell, assign, rent, lease, export, import, act as an intermediary or provider, or otherwise grant rights to third parties with regard to the Striata Software or any part thereof. |
# Maintainer: Rory McGuire <rjmcguire at gmail dot com> | |
# Contributor: Gerald Nunn <gerald dot b dot nunn at gmail dot com> | |
# Contributor: Davi da Silva Böger <dsboger at gmail dot com> | |
pkgname='terminix-build' | |
pkgdesc="A tiling terminal emulator based on GTK+ 3 (binary distribution)" | |
pkgver='1.5.0' | |
pkgrel=1 | |
epoch=1 | |
conflicts=('terminix') |
package main | |
import ( | |
"bytes" | |
"code.google.com/p/go.crypto/openpgp" | |
"code.google.com/p/go.crypto/openpgp/armor" | |
"fmt" | |
"io/ioutil" | |
"log" | |
) |
package main | |
import ( | |
"bytes" | |
"code.google.com/p/go.crypto/openpgp" | |
"code.google.com/p/go.crypto/openpgp/armor" | |
"fmt" | |
"io/ioutil" | |
"log" | |
) |
# Maintainer: Rory McGuire <[email protected]> | |
# Contributor: Mihails Strasunse <[email protected]> | |
# Contributor: Sven-Hendrik Haase <[email protected]> | |
# Contributor: Chris Brannon <[email protected]> | |
# Contributor: Andrea Scarpino <[email protected]> | |
# Contributor: Anders Bergh <[email protected]> | |
# Contributor: Alexander Fehr <pizzapunk gmail com> | |
pkgname=('dmd' 'libphobos-devel' 'libphobos' 'dmd-devel-common') | |
pkgdesc="D programming language compiler and standard library" |
module lockfree; | |
import std.stdio; | |
import per_thread_id; | |
shared class Map(int SIZE) { | |
import core.atomic; | |
// maxContension: the number of times we allow our slot to be stolen from under us | |
bool set(size_t key, size_t value, ref size_t contended, size_t maxContension=3) { | |
import std.exception; |
This came about thanks to Mark on the Renoise forum. Thanks for finally pointing me in the right direction for this.
http://forum.renoise.com/index.php?/topic/38738-renoise-linux-and-pulseaudio/
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
import javax.crypto.Cipher; | |
import java.security.NoSuchAlgorithmException; | |
public class KeyLengthDetector { | |
public static void main(String[] args) { | |
int allowedKeyLength = 0; | |
try { | |
allowedKeyLength = Cipher.getMaxAllowedKeyLength("AES"); | |
} catch (NoSuchAlgorithmException e) { |