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
START=yes | |
DESC="SASL Authentication Daemon" | |
NAME="saslauthd" | |
MECHANISMS="ldap" | |
MECH_OPTIONS="" |
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
dn: ou=People,dc=wesovilabs,dc=com | |
objectClass: organizationalUnit | |
objectClass: top | |
ou: People | |
dn: uid=ivan.corrales,ou=People,dc=wesovilabs,dc=com | |
objectClass: simpleSecurityObject | |
objectClass: organizationalPerson | |
objectclass: inetOrgPerson |
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/sh | |
set -eu | |
status () { | |
echo "---> ${@}" >&2 | |
} | |
echo "Running" |
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
defmodule ExkorpionDemo.MathOperationsTest do | |
use Exkorpion | |
def sum(a,b) do | |
a + b | |
end | |
def subs a, b do | |
a - b | |
end |
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
defmodule ExkorpionSamples.MathExamplesTest do | |
use Exkorpion | |
def sum a, b do | |
a + b | |
end | |
def subs a, b do | |
a - b | |
end |
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
import random | |
from operator import itemgetter | |
GENRE = { | |
'F': 'Female', | |
'M': 'Male' | |
} | |
RANGE_9_11_MEN = { |
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
from utils import Bullying | |
import csv | |
NUM_RECORDS = 10000000 | |
INPUT_DATA_FILE_PATH= './../data/input_data.csv' | |
def generate_array(iterations = NUM_RECORDS): | |
array = [None] * NUM_RECORDS | |
for r in range(iterations): |
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
git clone https://github.com/wesovilabs/mollydb.git | |
cd samples/001-microservices_configuration | |
docker-compose docker-compose.yml up -d |
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
version: '3' | |
services: | |
mollydb: | |
image: wesovilabs/mollydb:0.0.1-alpha | |
volumes: | |
- "./mollydb/data:/var/mollydb/storage/ms" | |
ports: | |
- 7000:9090 |
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 loc | |
import ( | |
"os" | |
"testing" | |
) | |
const maxElements = 1000 | |
var elements = make([]int, maxElements) |