This file contains 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
%{ | |
"__v" => 0, | |
"_id" => #BSON.ObjectId<63937fbee42d79b14046ad0f>, | |
"access_restriction_data" => 32, | |
"ambr" => %{ | |
"downlink" => %{"unit" => 3, "value" => 1}, | |
"uplink" => %{"unit" => 3, "value" => 1} | |
}, | |
"imsi" => "001010000000004", | |
"network_access_mode" => 0, |
This file contains 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
IO.puts("I'm here! Sleeping for 2 seconds") | |
Process.sleep 2_000 # waiting for the other node | |
nodes = MapSet.new([:app@app1, :app@app2]) | |
other_node = | |
nodes | |
|> MapSet.delete(Node.self()) | |
|> MapSet.to_list() | |
|> List.first() |
This file contains 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
# Find eligible builder and runner images on Docker Hub. We use Ubuntu/Debian instead of | |
# Alpine to avoid DNS resolution issues in production. | |
# | |
# https://hub.docker.com/r/hexpm/elixir/tags?page=1&name=ubuntu | |
# https://hub.docker.com/_/ubuntu?tab=tags | |
# | |
# | |
# This file is based on these images: | |
# | |
# - https://hub.docker.com/r/hexpm/elixir/tags - for the build image |
This file contains 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 ChessPhxWeb.MatchMainLive do | |
@moduledoc """ | |
List all orgs for the current_user. | |
""" | |
use ChessPhxWeb, :live_view | |
@impl true | |
def mount(_params, _session, socket) do | |
case Chex.new_game() do |
This file contains 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 SwiftUI | |
struct PinEntryView: View { | |
var pinLimit: Int = 4 | |
var isError: Bool = false | |
var canEdit: Bool = true | |
@Binding var pinCode: String | |
private var pins: [String] { |
This file contains 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
let Uploaders = {} | |
Uploaders.S3 = function (entries, onViewError) { | |
entries.forEach(entry => { | |
let xhr = new XMLHttpRequest() | |
onViewError(() => xhr.abort()) | |
xhr.onload = () => (xhr.status === 200 ? entry.done() : entry.error()) | |
xhr.onerror = () => entry.error() | |
xhr.upload.addEventListener("progress", event => { | |
if (event.lengthComputable) { |
This file contains 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 SimpleS3Upload do | |
@moduledoc """ | |
Dependency-free S3 Form Upload using HTTP POST sigv4 | |
https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-post-example.html | |
""" | |
@doc """ | |
Signs a form upload. | |
The configuration is a map which must contain the following keys: | |
* `:region` - The AWS region, such as "us-east-1" |
This file contains 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
# Stop all containers | |
docker stop `docker ps -qa` | |
# Remove all containers | |
docker rm `docker ps -qa` | |
# Remove all images | |
docker rmi -f `docker images -qa ` | |
# Remove all volumes |
We can't make this file beautiful and searchable because it's too large.
This file contains 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
id,verse_number,verse_text,verse_ordinal,chapter_number,book_name,book_ordinal,testament,inserted_at,updated_at | |
3c94a2e3-79f6-4f1c-b3d0-449ebdafff21,1,"Now it came to pass in the days when the judges ruled, that there was a famine in the land. And a certain man of Bethlehemjudah went to sojourn in the country of Moab, he, and his wife, and his two sons.",7129,1,Ruth,8,old,2022-03-18 12:05:15.599759,2022-03-18 12:05:15.599759 | |
952f5809-fa27-4290-bf15-df1163804b98,2,"And the name of the man was Elimelech, and the name of his wife Naomi, and the name of his two sons Mahlon and Chilion, Ephrathites of Bethlehemjudah. And they came into the country of Moab, and continued there.",7130,1,Ruth,8,old,2022-03-18 12:05:15.60342,2022-03-18 12:05:15.60342 | |
edffd9dc-9cbe-4700-9cb9-55b332e068a9,3,"And Elimelech Naomi’s husband died; and she was left, and her two sons.",7131,1,Ruth,8,old,2022-03-18 12:05:15.606126,2022-03-18 12:05:15.606126 | |
70359367-8538-4ccc-b383-ddcbce521b54,4,"And they took them wives of the women of Moab; |
This file contains 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 SwiftUI | |
import os.log | |
struct ContentView: View { | |
@StateObject var viewModel: ImageGalleryViewModel = ImageGalleryViewModel() | |
var body: some View { | |
ZStack { | |
TabView { |