This work would take around thirty minutes
This work would take around two hours
This work would take around half a day
{ user { fullName }} | |
query do | |
field :user, :user do | |
resolve fn _, _ -> | |
{:ok, %{first_name: "Bruce", last_name: "Williams"}} | |
end | |
end | |
field :hello, :string do |
Little Kidogo is a distributed collective of world-class professionals on an ambitious mission to enhance lives through enabling African artisans to live off their work. We spend our time building bleeding-edge products that we believe will enrich our lives and the lives of the communities we live in. We are working to enable more Africans to become producers of digital content rather than consumers. We believe we can achieve this goal by actively sharing our learnings and the methods we utilize day by day to build great products.produce and exchange value. | |
At Little Kidogo we work with you to develop the tools that you need to sustainably produce and exchange value. We believe we can enhance your life by enabling you to become a producer in the knowledge economy. |
zacck 😈 oss $ Running 30s test @ http://localhost:4098/pixel?param1=value1 | |
12 threads and 400 connections | |
Thread Stats Avg Stdev Max +/- Stdev | |
Latency 228.68ms 188.27ms 1.58s 91.85% | |
Req/Sec 174.45 76.22 360.00 66.33% | |
Latency Distribution | |
50% 170.82ms | |
75% 211.77ms | |
90% 349.97ms | |
99% 1.17s |
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: bitwalker/alpine-elixir-phoenix | |
environment: | |
MIX_ENV: test | |
steps: | |
- checkout | |
- restore_cache: # restores saved mix cache |
defmodule Collision do | |
@callback collide(any, any) :: any | |
def collide(any, any) do | |
IO.puts "Boom Collision ... You can fine tune this with your own implementation" | |
end | |
end |
defmodule SomeMap do | |
Use Collision | |
def collide(asteroid, spaceship) do | |
IO.puts "An asteroid collided with a spaceship" | |
end | |
def collide(spaceship, asteroid) do | |
IO.puts "A spaceship collided with an asteroid" | |
end |
defmodule Collision do | |
@callback collide(any, any) :: any | |
end |
defmodule StateProcess do | |
@process :process | |
# Server Process | |
def start(initial_state \\ []) do | |
pid = spawn(__MODULE__, :handle_state, [initial_state]) | |
Process.register(pid, @process) | |
pid | |
end |
defmodule StateProcess do | |
@process :process | |
def start(initial_state \\ []) do | |
pid = spawn(__MODULE__, :handle_state, [initial_state]) | |
Process.register(pid, @process) | |
pid | |
end | |