Skip to content

Instantly share code, notes, and snippets.

@ismell
ismell / nginx.conf
Last active August 29, 2015 13:56
NGiNX SSL Proxy config
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
@ismell
ismell / dscr.asm
Last active August 29, 2015 13:57
CyAPI Corruption Issue
;;-----------------------------------------------------------------------------
;; File: dscr.a51
;; Contents: This file contains descriptor data tables.
;;
;; $Archive: /USB/Examples/Fx2lp/bulkloop/dscr.a51 $
;; $Date: 9/01/03 8:51p $
;; $Revision: 3 $
;;
;;
;;-----------------------------------------------------------------------------
@ismell
ismell / gallery when.js
Created November 1, 2011 19:45
When example
@ismell
ismell / SoyUtils.java
Created January 13, 2012 21:35
RubyObject to SoyData
package com.test;
import org.jruby.RubyHash.Visitor;
import org.jruby.runtime.builtin.IRubyObject;
import org.jruby.RubyArray;
import org.jruby.RubyBignum;
import org.jruby.RubyBoolean;
import org.jruby.RubyFixnum;
import org.jruby.RubyFloat;
import org.jruby.RubyHash;
@ismell
ismell / events.js
Created July 31, 2012 19:33 — forked from Takazudo/events.js
lazy event implementation
/* eventmodule */
/* Events */
var Events = {
on: function(events, callback) {
if(!this._observer) {
this._observer = $({});
}
this._observer.bind(events, callback);
@ismell
ismell / JsonSoyUtils.java
Created September 11, 2012 15:18
SoyToJson
package helloworld;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.Charset;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
@ismell
ismell / Log
Last active December 20, 2015 15:49
Nginx not implemented error using 1.5.3
2013/08/02 17:01:11 [warn] 26#0: *7 a client request body is buffered to a temporary file /var/lib/nginx/client_body_temp/0000000001, client: 172.16.42.1, server: , request: "POST /tenants/cwstest/stunts/51fbe5d696bb27002d000001/uploads/51fbe5d796bb27002d000002/encrypt HTTP/1.1", host: "localhost:49172"
2013/08/02 17:01:11 [crit] 26#0: *7 writev() "/var/lib/nginx/client_body_temp/0000000001" failed (38: Function not implemented), client: 172.16.42.1, server: , request: "POST /tenants/cwstest/stunts/51fbe5d696bb27002d000001/uploads/51fbe5d796bb27002d000002/encrypt HTTP/1.1", host: "localhost:49172"
@ismell
ismell / docker-registry.log
Last active December 21, 2015 02:18
docker-registry debug logs
2013-08-15 18:06:45,908 DEBUG: check_session: Session is empty
2013-08-15 18:06:45,908 DEBUG: api_error: Image is being uploaded, retry later
2013-08-15 18:06:46,127 DEBUG: check_session: Session is empty
2013-08-15 18:06:51,862 DEBUG: check_session: Session is empty
2013-08-15 18:06:51,906 DEBUG: put_image_layer: Error when computing checksum file could not be opened successfully
2013-08-15 18:06:51,906 DEBUG: Writing Stream to images/e9aa60c60128cad1/layer
2013-08-15 18:06:51,911 DEBUG: Wrote Stream to images/e9aa60c60128cad1/layer
2013-08-15 18:06:51,912 DEBUG: Getting image checksum at images/e9aa60c60128cad1/_checksum
2013-08-15 18:06:51,912 DEBUG: Got checksum sha256:42cda75d80ad4acff590a2b872588bf159ffc67fd3d594825e1c765d6e2e6be3
2013-08-15 18:06:51,912 DEBUG: Comparing to calculated checksums: ['sha256:5f86f088a51ebfd114a34e44aa0eb7af478803ef2e8df8f7d156a3e4640df298']
@ismell
ismell / README.md
Last active September 10, 2016 15:39
Docker Ubuntu upstart scripts

Production Ready Process Monitoring

  1. Install docker-manger.conf and docker-instance.conf in /etc/init

  2. Create a containers file in /etc/docker/ with the following format

     name: image cmd
    

    The name must be unique.

  3. sudo service docker-manager start

@ismell
ismell / circle.yml
Created May 8, 2014 16:56
Precompile and cache rails assets on CircleCI
dependencies:
# Compute the assets once and cache them
post:
- bundle exec rake assets:precompile assets:clean_expired:
environment:
RAILS_GROUPS: assets
cache_directories:
- "public/assets"