Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am cyberkni on github.
  • I am cyberkni (https://keybase.io/cyberkni) on keybase.
  • I have a public key ASDtmL4PoFZUI10F1JsVyiHFnc9CPeZ_oS0ykvSb9MvKBQo

To claim this, I am signing this object:

This file has been truncated, but you can view the full file.
; generated by Slic3r 1.2.9 on 2015-10-04 at 16:52:02
; external perimeters extrusion width = 0.40mm
; perimeters extrusion width = 0.67mm
; infill extrusion width = 0.67mm
; solid infill extrusion width = 0.67mm
; top infill extrusion width = 0.67mm
M190 S65 ; set bed temperature
M104 S205 ; set temperature
This file has been truncated, but you can view the full file.
; generated by Slic3r 1.2.9 on 2015-10-01 at 20:51:53
; external perimeters extrusion width = 0.40mm
; perimeters extrusion width = 0.67mm
; infill extrusion width = 0.67mm
; solid infill extrusion width = 0.67mm
; top infill extrusion width = 0.67mm
M107
M190 S65 ; set bed temperature
@cyberkni
cyberkni / rtl_macos_guide
Created June 5, 2012 12:46
Getting the DealExtreme EZCap 668 Working on Mac OS X 10.7
These directions are cobbled together from a variety of sources I found on the web. This worked for me last night and I verified functionality by tuning in a local FM station with gnuradio.
The prerequisites:
1) A working install of MacPorts: http://www.macports.org/install.php
2) XQuartz, I installed this because the X11.app was not working correctly for me: http://xquartz.macosforge.org/landing/
The install:
---[GNURadio]---
1) sudo port install gnuradio - Go get a coffee, work a day, have a beer, check on it
This will currently give you an install of gnuradio 3.3.0 - which does work even though the docs indicate it won't.
class SampleController < ApplicationController
layout :local
def new
# some setup code here but its not relevant to the view issues I'm having
end
end
## Configuration
This is on Rails 2.3.2.1 running on ruby 1.8.4
## in config/routes.rb
map.somecontroller_show 'somecontroller/:id.:format',
:requirements => {:id => /\w[^\/?;]*/ },
:controller => 'somecontroller', :action => 'show',
:conditions => { :method => :get }
## the problem