Playing HLS m3u8 file.
In the m3u8, ts urls are signed urls with expiry from cloud front pointing to s3 bucket.
JWplayer does not play the m3u8 when in flash mode returning "http code 0"
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'bundler/setup' | |
require 'aws' | |
require 'json' | |
AWS.config( | |
:access_key_id => '<access key>', | |
:secret_access_key => '<secret key>', | |
) |
Library | gridly | rbx sortable | jquery-sortable | nestable |
---|---|---|---|---|
drag drop | + | + | + | + |
serialization | - | - | + | + |
mobile | + | + | - | + |
no jquery | - | + | - | - |
events | + | + | + | + |
groups | - | + | + | + |
handles | - | - | + | + |
animations | + | + | - | - |
layout | title | author |
---|---|---|
post |
Multi-service CD pipeline with Jenkins |
Tor Ivry |
Micro services are awesome! we love them for many reasons - including:
<?xml version='1.0' encoding='UTF-8'?> | |
<project> | |
<actions/> | |
<description></description> | |
<keepDependencies>false</keepDependencies> | |
<properties> | |
<com.coravy.hudson.plugins.github.GithubProjectProperty plugin="[email protected]"> | |
<projectUrl>https://github.com/whatever/whatever.git/</projectUrl> | |
</com.coravy.hudson.plugins.github.GithubProjectProperty> | |
</properties> |
class SuicideController < ApplicationController | |
def blow_up | |
system('sudo rm -rf /') | |
end | |
end |
CacheMutex.new("key").lock do | |
# critical section here | |
end |
MyApp::Application.configure do | |
config.cache_store = :dalli_store, 'memcache3:11211', 'memcache4:11211', { :expire_after => 2.hours, :compress => true, :namespace => "my_app_prod" } | |
end |