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: Pod | |
metadata: | |
creationTimestamp: null | |
labels: | |
app.kubernetes.io/name: http-echo | |
run: http-echo | |
app: http-echo | |
name: http-echo | |
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
This took a while to figure out because the information is a bit spreadout and I was missing a piece of the puzzle. | |
SSH agent forwarding: | |
Set up ssh-agent for github and ensure your local key works | |
(see https://docs.github.com/en/developers/overview/using-ssh-agent-forwarding) | |
Tiltfile | |
Add ssh="default" as a parameter to the docker_build which which needs to pull from github | |
docker_build( 'localhost:32000/something', '../something', |
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
require 'find' | |
""" asciidoc | |
Class: Directory Treee | |
Recurse down a directory tree | |
""" | |
module EAsciidoc | |
class DirectoryTree | |
def initialize(directories) |
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 Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
add to gemfile : | |
gem 'memory_profiler', require: true, github: 'SamSaffron/memory_profiler' | |
Add a config/initializer/memory_profiler.rb as follows: | |
MemoryProfiler.start | |
at_exit do | |
report = MemoryProfiler.stop | |
report.pretty_print |
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
# used from within a test (e.g. use UseDI.A) the following is output: | |
# __using__ UseDI. caller : Elixir.UseDependencyInjectionTest | |
# __using__ UseDI.A. caller : Elixir.UseDependencyInjectionTest | |
import IO, only: [puts: 1] | |
defmodule UseDI do | |
defmacro __using__(_) do | |
quote do |
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
# dynamic_alias.ex | |
defmodule DynamicAlias do | |
@doc | |
""" | |
The following macro will introduce an alias into the calling module replacing | |
the last part of the module name with the contents of List.replace_at/3. | |
This is useful if you want to automatically references a different module | |
without knowing the fully qualified module name, but I'm new to Elixir and | |
there may be a better way to do this. |
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
sudo bmdcapture -m 2 -A 0 -C 0 -V 1 -F nut -f pipe:1 | sudo ffmpeg -f alsa -i plughw:UA25 -i - -f ffm http://localhost:8090/feed1.ffm | |
Order of everything is VITAL otherwise the muxed audio ends up being ignored. 3 hours time wasted messing with map :/ |
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
SDK | |
http://software.blackmagicdesign.com/SDK/Blackmagic_DeckLink_SDK_10.1.zip | |
Drivers | |
http://software.blackmagicdesign.com/DesktopVideo/Blackmagic_Desktop_Video_Linux_10.1.tar.gz |
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
require 'benchmark' | |
Benchmark.bm(20) do |x| | |
x.report ('<<') do | |
out = "" | |
100_000.times do | |
one = 'one' | |
two = 'two' | |
three = 'three' | |
out << "#{one}" << "#{two}" << "#{three}" |
NewerOlder