I hereby claim:
- I am marcusgadbem on github.
- I am tm_marcusgadbem (https://keybase.io/tm_marcusgadbem) on keybase.
- I have a public key ASAho_gb0n3bqH29BUEkgnzBtMId4pp4BfXMj4BNR9BoHgo
To claim this, I am signing this object:
# lib/my_project/task.ex | |
defmodule MyProject.Task do | |
@moduledoc """ | |
TODO: run async task on tests will not work, with unpredictable side effects | |
""" | |
@adapter Keyword.get( | |
Application.compile_env(:my_project, __MODULE__, []), | |
:adapter, | |
Task |
import { DynamoDBClient, DynamoDBClientConfig } from '@aws-sdk/client-dynamodb' | |
import { DynamoDBDocumentClient } from '@aws-sdk/lib-dynamodb' | |
// @aws-sdk (v3) has keepAlive enabled by default | |
export const DynamoClient = new DynamoDBClient({}); | |
const marshallOptions = { | |
convertEmptyValues: false, | |
removeUndefinedValues: false, | |
convertClassInstanceToMap: false, |
I hereby claim:
To claim this, I am signing this object:
export class APIRateLimitError extends Error { | |
constructor(err) { | |
super('API Rate limit.'); | |
} | |
} |
/** | |
* Documentation: http://docs.azk.io/Azkfile.js | |
*/ | |
// Adds the systems that shape your system | |
systems({ | |
umrum: { | |
// Dependent systems | |
depends: ["redis", "mongodb"], | |
// More images: http://images.azk.io |
# config/environments/development.rb | |
MyApp::Application.configure do | |
# Tell Rails to log to STDOUT instead Rails::Rack::LogTailer | |
config.logger = Logger.new(STDOUT) | |
config.logger.level = Logger.const_get( | |
ENV['LOG_LEVEL'] ? ENV['LOG_LEVEL'].upcase : 'DEBUG' | |
) | |
end |
/* globals module */ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
watch: { | |
gruntfile: { |
### Authors | |
Autrijus Tang |