This file contains hidden or 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
| // Can be used with https://github.com/xcv58/Custom-JavaScript-for-Websites-2 | |
| // This snippet is released under the terms of the CC0 license: https://creativecommons.org/publicdomain/zero/1.0/deed.en | |
| const cache_key = 'hn_comments_views' | |
| const cache = JSON.parse(localStorage.getItem(cache_key) || '{}') | |
| document.querySelectorAll('.athing.comtr').forEach(comm => { | |
| if (!cache[comm.id]) { | |
| const span = document.createElement('span') | |
| span.innerHTML = '🔔' // :bell: emoji |
This file contains hidden or 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 Config | |
| config :datapio_cluster, | |
| service_name: [env: "MYAPP_SERVICE_NAME", default: nil], | |
| app_name: [env: "MYAPP_APP_NAME", default: "my_app"], | |
| cache_tables: [ | |
| some_set: [:id, :attr1, :attr2], | |
| some_other_set: [:id, :attr] | |
| ] |
This file contains hidden or 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 MyApp.MixProject do | |
| use Mix.Project | |
| def project do | |
| [ | |
| app: :my_app, | |
| version: "0.1.0", | |
| elixir: "~> 1.12", | |
| start_permanent: Mix.env() == :prod, | |
| deps: deps() |
This file contains hidden or 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 MyApp.Application do | |
| use Application | |
| def start(_type, _args) do | |
| topologies = [ | |
| default: [ | |
| strategy: Cluster.Strategy.Kubernetes.DNS, | |
| config: [ | |
| service: "my-elixir-app-svc-headless", | |
| application_name: "my_app" |
This file contains hidden or 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
| --- | |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: my-elixir-app-svc-headless | |
| namespace: default | |
| labels: | |
| app.kubernetes.io/name: my-elixir-app | |
| app.kubernetes.io/instance: myapp-svc-headless | |
| spec: |
This file contains hidden or 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
| --- | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: my-elixir-app | |
| namespace: default | |
| labels: | |
| app.kubernetes.io/name: my-elixir-app | |
| app.kubernetes.io/instance: myapp-cluster | |
| spec: |
This file contains hidden or 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
| FROM elixir:1.12-alpine AS builder | |
| ARG BUILD_ENV=prod | |
| ARG BUILD_REL=my_app | |
| # Install system dependencies | |
| RUN mix local.hex --force | |
| RUN mix local.rebar --force | |
| # Add sources |
This file contains hidden or 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
| baseURL = "https://example.com" | |
| languageCode = "en-us" | |
| title = "Example of Standard Web Component" |
This file contains hidden or 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
| {match,[ | |
| {variable_name,"Mega"}, | |
| {assign_operator,"="}, | |
| {identifier,"graph"}, | |
| {left_parenthesis,"("}, | |
| {identifier,"id"}, | |
| {assign_operator,"="}, | |
| {left_bracket,"["}, | |
| {variable_name,"Help"}, | |
| {list_separator,","}, |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| from setuptools import setup, find_packages | |
| import sys | |
| import os | |
| NAME = '<package name>' | |
| KEYWORDS = '<keyword 1> <keyword 2>' | |
| DESC = '<package description>' |