I hereby claim:
- I am androa on github.
- I am androa (https://keybase.io/androa) on keybase.
- I have a public key whose fingerprint is 2104 BC35 29BD 4965 4C88 0D75 643C B2AA EAE7 E977
To claim this, I am signing this object:
Person & | |
Behandling | |
Behandles | |
fatt -> Fattet | |
Fattet | |
Utfall true -> Har meldeplikt | |
Utfall false -> Ikke meldeplikt | |
Meldeplikt | |
Har meldeplikt |
Behandling | |
UnderBehandling | |
ferdig -> Avklaringer? | |
ForslagTilVedtak | |
kvitter avklaring -> Avklaringer? | |
rediger -> Redigert | |
Redigert | |
ferdig -> Avklaringer? | |
TilGodkjenning | |
godkjenn -> Krever totrinnskontroll? |
FROM navikt/java:8 | |
RUN wget -O /dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64 | |
RUN chmod +x /dumb-init | |
WORKDIR /app | |
COPY . /app/ | |
ENTRYPOINT ["/dumb-init", "--", "/app/entrypoint.sh"] |
I hereby claim:
To claim this, I am signing this object:
static final String ZIPCODES = "zipcodes"; | |
final KTable<Long, Zipcode> | |
zipcodeTable = | |
builder.table(ZIPCODE_TOPIC Materialized.<Long, Zipcode, KeyValueStore<Bytes, byte[]>>as(ZIPCODES) | |
.withKeySerde(Serdes.Long()) | |
.withValueSerde(Serdes.String)); | |
final ReadOnlyKeyValueStore<Long, Zipcode> zipcodeStore = streams.store(ZIPCODES, | |
QueryableStoreTypes.<Long, Zipcoe>keyValueStore()); |
I hereby claim:
To claim this, I am signing this object:
# DOCKER-VERSION 1.0.1 | |
FROM ubuntu:14.04 | |
# Install necessary software for Imbo Web servers. | |
RUN apt-get update && apt-get -y install curl php5 apache2 php5-json php5-imagick php5-mongo php5-memcached | |
# Add the source code of Imbo | |
COPY . /imbo | |
# Install necessary Imbo dependencies. |
#!/bin/bash | |
curl -sS https://getcomposer.org/installer | php | |
php composer.phar create-project -sdev --no-interaction androa/imbo-bootstrap $1 |
<?php | |
$cnn = new AMQPConnection(); | |
$cnn->connect(); | |
$ch = new AMQPChannel($cnn); | |
$ex = new AMQPExchange($ch); | |
$ex->setName('exchangeName'); | |
$ex->setType(AMQP_EX_TYPE_DIRECT); | |
$ex->declareExchange(); |
diff --git a/library/Zend/I18n/Translator/Translator.php b/library/Zend/I18n/Translator/Translator.php | |
index 5b2c156..bd717ac 100644 | |
--- a/library/Zend/I18n/Translator/Translator.php | |
+++ b/library/Zend/I18n/Translator/Translator.php | |
@@ -232,6 +232,18 @@ class Translator | |
} | |
/** | |
+ * Check if the translator has the sufficient configuration to actually | |
+ * perform translations. |