I hereby claim:
- I am codewithpassion on github.
- I am codewithpassion (https://keybase.io/codewithpassion) on keybase.
- I have a public key whose fingerprint is B7AC 972F 6435 F9FF 6F7A AD59 7067 48F6 AF49 5AF9
To claim this, I am signing this object:
| the build server prayer (loosely based on The Lord's Prayer), by @chrisrbooth: | |
| Our build, who art on the build server, | |
| Hallowed be thy name, | |
| Thy tasks be done, | |
| Thy tests be run, | |
| On the build server, | |
| As it they are on my dev pc | |
| Give us this day, no weird exceptions | |
| Forgive us our breaking check-ins |
| namespace ConsoleApplication1 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var cat = new AssemblyCatalog(typeof(Program).Assembly); | |
| var container = new CompositionContainer(cat); | |
| var someObject = container.GetExportedValue<SomeClass>(); |
| public class Book : ICloneable | |
| { | |
| public string Title { get; set; } | |
| public String Description { get; set; } | |
| object ICloneable.Clone() | |
| { | |
| return new Book { Title = Title , Description = Description }; | |
| } | |
| } |
| public class EventBrokerSubscriptionStrategy : ActivationStrategy | |
| { | |
| public override void Activate(IContext context, InstanceReference reference) | |
| { | |
| reference.IfInstanceIs<IHandle>(messageHandler => Subscribe(messageHandler, context)); | |
| } | |
| private static void Subscribe(IHandle messageHandler, IContext context) | |
| { | |
| IEventBrokerSubscriber eventBroker = context.Kernel.Get<IEventBrokerSubscriber>(); |
| using Ninject; | |
| using Ninject.Extensions.Factory; | |
| public interface ICommand | |
| { | |
| void Execute(); | |
| } | |
| public interface INameProvider |
| public class Author | |
| { | |
| public string Name { get; set; } | |
| } | |
| public class Book | |
| { | |
| public string Title { get; set; } | |
| } |
| tar xf ../../ubuntu-saucy-console-armhf-2013-07-22.tar.xz | |
| cd ubuntu-saucy-console-armhf-2013-07-22/ | |
| mkdir root | |
| cd root | |
| tar xf ../armhf-rootfs-ubuntu-saucy.tar | |
| mount --bind /dev/ dev/ | |
| mount --bind /proc/ proc/ | |
| mount --bind /sys/ sys/ | |
| mount --bind /run/ run/ | |
| mount --bind /etc/resolv.conf etc/resolv.conf |
| ================================================================================ | |
| Error executing action `run` on resource 'bash[migrate database]' | |
| ================================================================================ | |
| Mixlib::ShellOut::ShellCommandFailed | |
| ------------------------------------ | |
| Expected process to exit with [0], but received '1' | |
| ---- Begin output of "bash" "/tmp/chef-script20141007-1189-7ksn3t-0" ---- | |
| STDOUT: <style type="text/css"> | |
| #kohana_error { background: #ddd; font-size: 1em; font-family:sans-serif; text-align: left; color: #111; } |
| (function() { | |
| 'use strict'; | |
| window.Cockpit.SystemPlugins = window.Cockpit.SystemPlugins || { PluginFinder: {} } | |
| window.Cockpit.SystemPlugins.PluginFinder.PluginFinderConfig = function PluginFinderConfig() { | |
| var self = this; | |
| self.get = function (pluginName, callback) { | |
| $.get('/system-plugin/plugin-finder/config/' + pluginName, function (config) { | |
| if (callback !== undefined) | |
| callback(config); | |
| }); |
I hereby claim:
To claim this, I am signing this object: