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
Registrar | Registration | Renewal | Transfer | Multiyear Cost * | Included | |
---|---|---|---|---|---|---|
Porkbun | $10.87 | $10.87 | $10.87 | 3 years: $32.61 - 5 years: $54.35 | dns • email forwarding • ssl • whois privacy • dejigamaflipper | |
GoDaddy | $20.17 | $20.17 | $20.17 | 3 years: $60.51 - 5 years: $100.85 | dns • whois privacy | |
Google Domains | $12.00 | $12.00 | $12.00 | 3 years: $36.00 - 5 years: $60.00 | dns • email forwarding • whois privacy | |
Domain.com | $14 | $21.99 | n/a | 3 years: $58.97 - 5 years: $102.95 | dns • email forwarding | |
Name.com | $14.99 | $16.99 | $16.99 | 3 years: $48.97 - 5 years: $82.95 | dns | |
Namecheap | $13.16 | $12.96 | $17.16 | 3 years: $47.28 - 5 years: $81.60 | dns • email forwarding • whois privacy | |
101domain | $16.17 | $19.17 | $15.17 | 3 years: $54.51 - 5 years: $92.85 | dns | |
Hover | $16.17 | $16.17 | $16.17 | 3 years: $48.51 - 5 years: $80.85 | dns • whois privacy | |
Gandi.net | $16.39 | $16.39 | $16.39 | 3 years: $49.17 - 5 years: $81.95 | dns • email account • email forwarding • ssl • whois privacy |
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
THIS GIST IS OUT OF DATE! Please use my new project template here to get started with Zig on Playdate: | |
https://github.com/DanB91/Zig-Playdate-Template | |
The rest of this is preservied for historical reasons: | |
This is a small snippet of some code to get you started for developing for the Playdate on Zig. This code should be used as a starting point and may not compile without some massaging. This code has only been tested out on macOS and you'll need to modify the addSharedLibrary() portion of build.zig to output a .dll or .so instead of a .dylib, depending on you platform. | |
This code will help you produce both an executable for the Playdate simulator and also an executable that actually run on the Playdate hardware. |
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
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 Example.Application do | |
@moduledoc false | |
use Application | |
def start(_type, _args) do | |
children = [ | |
Example.Repo, | |
ExampleWeb.Telemetry, | |
{Phoenix.PubSub, name: Example.PubSub}, |
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
<div class="container"> | |
<video controls crossorigin playsinline poster="https://bitdash-a.akamaihd.net/content/sintel/poster.png"></video> | |
</div> | |
<!-- Plyr resources and browser polyfills are specified in the pen settings --> | |
<!-- Hls.js 0.9.x and 0.10.x both have critical bugs affecting this demo. Using fixed git hash to when it was working (0.10.0 pre-release), until https://github.com/video-dev/hls.js/issues/1790 has been resolved --> | |
<script src="https://cdn.rawgit.com/video-dev/hls.js/18bb552/dist/hls.min.js"></script> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 MyAppWeb.HealthController do | |
use MyAppWeb, :controller | |
alias MyAppWeb.Heartbeat | |
def root(conn, _) do | |
send_resp(conn, :no_content, "") | |
end | |
def show(conn, _) 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
// Configs | |
var origConfig = { | |
p: { | |
a: 23, | |
b: 92, | |
c: { | |
num: 1 | |
} | |
}, | |
q: { |