config/environments/development.rb
Set raise_delivery_errors true on development
config.action_mailer.raise_delivery_errors = true
IMPORTANT
| macro _ { | |
| case ( $def:lit ( $vars ... ) $ret ) => { | |
| dis.op($def, function() {var $vars ...; return $ret;}) | |
| } | |
| case ( $def:lit $ret ) => { | |
| dis.op($def, function() {return $ret;}) | |
| } | |
| } | |
| var dis = require('./DAR4'); |
An experiment within the Visualisation Exploration series.
Exploring, techniques and practices in the field of data visualisation.
See the output: http://bl.ocks.org/tsenga/4055833.
Key history of this experiment:
| package com.thuytrinh.cardselectordemo; | |
| import android.os.Bundle; | |
| import android.support.v4.view.PagerAdapter; | |
| import android.support.v4.view.ViewPager; | |
| import android.support.v4.view.ViewPager.OnPageChangeListener; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.ImageView; | |
| import android.app.Activity; |
| .title "morse.asm" | |
| ;******************************************************************************* | |
| ; Project: morse.asm | |
| ; Author: Student Code | |
| ; | |
| ; Description: Outputs a message in Morse Code using a LED and a transducer | |
| ; (speaker). The watchdog is configured as an interval timer. | |
| ; The watchdog interrupt service routine (ISR) toggles the green | |
| ; LED every second and pulse width modulates (PWM) the speaker | |
| ; such that a tone is produced. |
| typedef struct Poly | |
| { | |
| int x, y, z, .. // etc values | |
| struct Poly* next; | |
| } Poly; | |
| Poly* g_sortArray[MaxBuckets]; | |
| static void addPoly(Poly* poly, int z) | |
| { |
| #!/usr/bin/env python | |
| """Simple HTTP Server With Upload. | |
| This module builds on BaseHTTPServer by implementing the standard GET | |
| and HEAD requests in a fairly straightforward manner. | |
| """ |
| license: gpl-3.0 |