#emc-devel | Logs for 2007-11-11

Back
[00:00:47] <tissf> jepler: You are not incompetent, it is fixed :)
[00:00:58] <jepler> good
[00:01:39] <jepler> but you can see that I disobeyed my rule to test the change before committing it :(
[00:02:12] <jepler> bbl
[00:03:16] <tissf> The good teacher shows what not to do
[00:25:05] <jepler> after switching to the lower speed grade and playing with P&R options, I can get up to 166MHz on my design
[00:25:27] <SWPadnos> cool
[00:25:41] <SWPadnos> that's probably fast enough :)
[00:25:45] <jepler> yeah probably
[00:25:55] <jepler> SWPadnos: does it seem backwards to you that -4 is the slow grade and -5 is the fast one?
[00:26:22] <SWPadnos> hmm. yes and no. it depends on how I'm thinking of it at the time
[00:26:38] <SWPadnos> "higher number = better" vs "number = propagation time"
[00:27:24] <jepler> yeah
[00:28:15] <jepler> I tried to read peterw's fpga cpu design (dumbass8?) but that was all waaaaaay over my head
[00:28:26] <SWPadnos> heh
[00:28:47] <SWPadnos> it was funny that his IRC client was still set to "PeterDumbassW"
[00:28:52] <jepler> I didn't notice
[00:29:03] <SWPadnos> he changed it just after connecting
[00:29:24] <SWPadnos> I haven't looked at the processor yet
[00:29:42] <jepler> It's only 300 lines so how hard can it be to understand?
[00:29:52] <SWPadnos> that's a good theory
[00:30:21] <jepler> http://pastebin.ca/768962
[00:30:30] <jepler> as though you need to be distracted from whatever it is you're doing
[00:31:03] <jepler> 'THE BAD NEWS: pipelined processor with no locks'
[00:31:30] <SWPadnos> heh - I'm concentrating hard on what to do with all the resources I have in OGame at the moment ;)
[00:31:39] <SWPadnos> ie, goofing off
[00:36:14] <SWPadnos> hmmm. that first data hazard is a doozy
[00:36:24] <SWPadnos> "Stored data requires 3 instructions before fetch"
[00:36:43] <jmkasunich_> peter isn't going to let me off the hook for that comment is he
[00:36:50] <SWPadnos> heh
[00:36:54] <jepler> particularly as I don't see a NOP instruction
[00:37:09] <SWPadnos> the dumbass8 processor - from PeteW and JohnK :)
[00:37:34] <jmkasunich_> jepler: JMP <here+1> == NOP
[00:37:50] <jepler> not in a branch delay slot I'm guessing
[00:38:00] <jmkasunich_> true
[00:38:03] <SWPadnos> except that it always executes two instructions after a jump
[00:38:05] <jmkasunich_> there's probably something that would work
[00:38:10] <SWPadnos> there are no delay slots
[00:38:21] <jepler> SWPadnos: well, whatever you call those two instructions after the jmp
[00:38:50] <SWPadnos> oh, if they weren't executed I'd call them delay slots. I don't know what they are if they do get executed :)
[00:38:52] <jepler> hm, I don't see any way to transfer the saved pc counter so you're limited to one level of subroutine?
[00:39:14] <jmkasunich_> says two in the comments
[00:40:06] <jepler> I see that
[00:43:05] <jepler> vhdl sure is verbose
[00:43:08] <SWPadnos> heh
[00:43:34] <SWPadnos> and then it has constructs like this:
[00:43:43] <SWPadnos> when '0' => idn0 <= idx;
[00:43:53] <jepler> hee hee
[00:43:59] <jepler> there really should be a 'downto' in there
[00:44:02] <SWPadnos> there is
[00:44:15] <jepler> I mean on that particular line
[00:44:19] <jepler> it's too terse
[00:44:22] <SWPadnos> oh, that's not what it means
[00:44:26] <jepler> also, why is everybody ganging up on idn0?
[00:44:32] <SWPadnos> heh
[00:45:42] <SWPadnos> here's a good one:
[00:45:53] <SWPadnos> if accum = x"00" then
[00:45:55] <SWPadnos> zero <= '1';
[00:45:56] <SWPadnos> else
[00:45:58] <SWPadnos> zero <= '0';
[00:46:00] <SWPadnos> end if;
[00:46:14] <jepler> -- operate instructions
[00:46:14] <jepler> constant nop : std_logic_vector (3 downto 0) := x"0";
[00:46:20] <SWPadnos> it's obvious what it does, but it sure lookd funny assigning 1 to Zero
[00:46:22] <jepler> oh good, there is an explicit nop
[00:46:30] <jepler> that's why it should be called Zf or something
[00:46:53] <SWPadnos> yeah, ZFlag
[00:47:30] <SWPadnos> I wonder hw much logic it adds to have an internal flag to skip the 2 instructions after a jump
[00:47:45] <SWPadnos> called "Branching" or something terse
[00:48:35] <tissf> jepler: sorry, juste a comment,
[00:48:36] <tissf> Some error message displayed not translated
[00:48:36] <tissf> ie: emc/task/emctask.cc 312: interp_error: Selected tool slot number too large in place of Numero d'outil trop grand
[00:49:54] <jepler> yes, that's a known but that nobody's gotten around to fixing. http://sourceforge.net/tracker/index.php?func=detail&aid=1650938&group_id=6744&atid=106744
[00:50:22] <tissf> ok sorry, time to bed here, good night all :)
[00:50:54] <jepler> see you
[01:15:36] <CIA-18> 03tissf 07v2_2_branch * 10emc2/src/po/ (fr.po fr_axis.po fr_rs274_err.po): French translation update
[03:27:09] <SWPadnos> hey Ray. how goes the stepper thingie?
[09:56:47] <CIA-18> 03tissf 07v2_2_branch * 10emc2/docs/src/ (5 files): French translation
[09:56:48] <CIA-18> 03tissf 07v2_2_branch * 10emc2/docs/src/hal/ (intro_fr.lyx tutorial_fr.lyx): French translation
[12:15:53] <awallin_emc> is there a scratch.txt somewhere for testing cvs access?
[12:19:05] <awallin_emc> cvs [commit aborted]: could not open lock file `/cvs/emc2/,TODO,': Permission denied
[12:19:13] <awallin_emc> does this mean I have an anon checkout?
[12:20:54] <alex_joni> awallin_emc: probably
[12:21:12] <alex_joni> there is another module (not emc2) where there is a scratchpad
[12:21:43] <alex_joni> I think it was in documents/
[12:23:03] <awallin_emc> hmm, maybe I'll do some playing around today only and fix cvs later...
[12:23:34] <awallin_emc> cvs is not supposed to as about passwords right? (when the .ssh keys are configured correctly)
[12:23:38] <awallin_emc> ask
[12:35:05] <awallin_emc> when someone (cradek?) is around who can update my ssh-keys, let me know! (I've switched machines again...)
[12:40:28] <alex_joni> ok
[13:13:52] <CIA-18> 03tissf 07TRUNK * 10emc2/src/po/ (fr_axis.po fr_rs274_err.po): French transaltion update
[13:21:12] <fenn> you can copy ~/.ssh/id_* to the new machine
[13:22:00] <alex_joni> yeah, unless he reinstalled, and lost the old id's
[13:22:08] <CIA-18> 03tissf 07v2_2_branch * 10emc2/src/po/fr_axis.po: French translation update
[13:22:29] <awallin_emc> can HAL pins be RW? or is RW only for parameters?
[13:22:38] <alex_joni> I think for pins it's IO
[13:22:48] <alex_joni> (but yes, they can be bidirectional)
[13:24:17] <alex_joni> http://www.linuxcnc.org/docview/2.2/html/man/man3/hal_pin_bit_new.3hal.html#ARGUMENTS
[13:24:54] <awallin_emc> ok, thanks
[13:25:04] <awallin_emc> is there a conceptual difference between RW and IO ?
[13:27:53] <alex_joni> nope
[13:28:22] <alex_joni> and we plan to replace params with pins
[13:28:40] <alex_joni> there is no real advantage for a param :)
[13:29:02] <awallin_emc> yes, I'm trying to work on PID-tuning via pyvcp right now
[13:29:29] <awallin_emc> I think a tree-like explorer gui for pins would be nice for halmeter/scope in the future (there are a _lot_ of pins on a big machine)
[13:29:40] <alex_joni> check out halshow
[13:29:53] <awallin_emc> right, something like that.
[13:30:14] <fenn> halshow with wires!
[13:30:29] <fenn> we could take a cue from msn and call it 'halshow Live Edition'
[13:30:31] <awallin_emc> is halshow built in the standard package? bin/halshow?
[13:30:51] <alex_joni> it's in tcl somewhere
[13:31:00] <fenn> tcl/bin/halshow.tcl
[14:54:36] <CIA-18> 03jepler 07v2_2_branch * 10emc2/configs/sim/servo_sim.hal: the linkxx -> net conversion had broken the servo_sim configuration
[14:55:08] <CIA-18> 03jepler 07TRUNK * 10emc2/configs/sim/servo_sim.hal: merge from v2_2_branch: make this config run again
[14:55:32] <awallin_emc> jepler: this is the 0 0 0 to 1 2 3, and the wcomp.9 to wcomp.8 ?
[14:56:04] <jepler> yeah
[14:56:13] <jepler> I could have sworn I tested that after I changed it, but clearly I didn't...
[14:59:49] <awallin_emc> jepler: do you remember anything about RW pins in pyvcp?
[15:00:40] <jepler> no, should I?
[15:01:12] <awallin_emc> hm, I just want to use a scale widget, but have it initialized to whatever the signal value already is
[15:01:22] <awallin_emc> now it forces the signal value to 0 when it starts
[15:02:26] <jepler> searching, I found this -- no idea who wrote it. http://pastebin.ca/337671
[15:04:27] <jepler> but that doesn't fit your needs
[15:04:47] <jepler> it's an unavoidable feature of the Tk slider that it sets the variable to some undesired value when it is first displayed
[15:05:26] <jepler> axis has some workarounds (the feed override and spindle override sliders are affected by this) but it looks like they just force it to 100% at start ..
[15:06:38] <awallin_emc> would a numerical control be easier in this respect?
[15:08:14] <jepler> I wouldn't be sure without testing
[15:09:19] <awallin_emc> I'm trying to work on PID tuning through pyvcp. would be nice if the PID values wake up with what is in the ini file and then allow the user to tweak them
[15:34:26] <jepler> darn, awallin left. http://pastebin.ca/769581
[15:37:09] <awallin> I have dual personalities...
[15:37:41] <awallin> thanks, I'll try that.
[15:45:40] <CIA-18> 03awallin 07TRUNK * 10emc2/TODO: m5i20 todo list
[15:46:04] <awallin> yay, my vmware ubuntu still has ssh configured right!
[15:50:50] <alex_joni> awallin: then it's simple to replicate that
[15:54:35] <awallin> alex_joni: just move everything in ~/.ssh ?
[15:59:33] <awallin> did someone work on include-files for pyvcp already?
[16:39:20] <DanielFalck> hi rayh
[16:39:44] <rayh> Hi Dan
[16:39:54] <DanielFalck> how are things?
[16:40:31] <rayh> Good. Been working on a pick-and-place using HAL.
[16:40:38] <DanielFalck> great
[16:40:55] <rayh> How you and the family been?
[16:41:11] <DanielFalck> great. the kids are getting taller and taller....
[16:41:19] <DanielFalck> Ben is a lot taller than me now
[16:41:51] <rayh> I remember that as a real difficult thing for me.
[16:43:13] <rayh> You working with EMC these days?
[16:43:30] <DanielFalck> not at the moment. I've been working on cam stuff more than anything
[16:43:39] <DanielFalck> learning more about python
[16:43:51] <DanielFalck> still working with apt
[16:44:16] <rayh> Ah okay.
[16:44:29] <DanielFalck> but, I'm still very interested in emc
[16:44:29] <CIA-18> 03awallin 07TRUNK * 10emc2/src/hal/components/pid.c: change P,I,D,FF0,FF1,FF2 to pins to allow tuning with a pyvcp panel
[16:44:43] <DanielFalck> I see cradek has done some work with probing lately
[16:45:13] <rayh> Have not had a chance to see it but sounds good.
[16:58:58] <jmkasunich__> jmkasunich__ is now known as jmkasunich
[17:58:40] <alex_joni> awallin: previous configs shouldn't be affected by the pid change, right?
[18:06:09] <jmkasunich> seems to me that as long as the param values were being set by "setp param [AXIS_0]P_GAIN" it will still work
[18:06:29] <jmkasunich> setp switches from "set parameter" to "set pin" if the param doesn't exist and nothing is connected to the pin
[18:15:34] <alex_joni> jmkasunich: I know the theory .. was a bit too lazy to test it out :)
[18:17:25] <jmkasunich> heh
[19:41:17] <tomp2> regarding the 'axis.N' component, will there be an axis.N >and< a 'motion' component for each joint?
[19:43:39] <awallin> axis.N is just the name of some pins sticking out of motmod
[19:43:46] <awallin> afaik
[19:44:41] <alex_joni> yup
[19:45:50] <tomp2> i just read thru 'man 9 motion' to see what was created, and the pins are named axis.N >and< others are named motion.blah, not motion.N.blah. are there 2 comps created? is there numbering on motion?
[19:46:26] <alex_joni> motion.blah is only one-fold
[19:46:35] <alex_joni> there is only one component called 'motion'
[19:46:39] <tomp2> ok, 'global'
[19:46:42] <alex_joni> it exports the motion.blah stuff
[19:47:04] <alex_joni> and besides that it exports joint specific information, called "axis.N"
[19:47:42] <tomp2> so 2 comps, motion may already exist, right axis is joint specific, thanks
[19:48:32] <alex_joni> not really 2 comps
[19:48:42] <alex_joni> it's just one comp, creating different pinnames
[19:50:43] <tomp2> i'm trying to make linkable symbols for gEDA, and thats visually troublesome... visually i'll make 'motion' separate
[20:01:21] <tomp2> thx
[20:04:19] <jmkasunich> are any of the documents or drawings at http://home.att.net/~jmkasunich/EMC_Docs/EMC_Home.htm still meaningful?
[20:04:33] <jmkasunich> I'm going to be changing ISPs, and the hosting will be going away
[20:04:41] <jmkasunich> should I bother copying the stuff elsewhere?
[20:04:51] <alex_joni> jmkasunich: I think so
[20:05:03] <jmkasunich> was afraid you'd say that
[20:05:05] <alex_joni> if you want, I can duplicate it to linuxcnc.org
[20:05:23] <jmkasunich> that would be fine by me
[20:05:37] <jmkasunich> I haven't maintained that page in years
[20:17:43] <alex_joni> http://www.linuxcnc.org/content/view/42/13/lang,en/
[20:17:48] <alex_joni> moving pictures now
[20:18:12] <jmkasunich> thanks
[20:22:24] <SWPadnos> jmkasunich, if ou want to copy it to your DH account, that's fine by me
[20:22:29] <SWPadnos> you
[20:22:43] <jmkasunich> having it under linuxcnc is better IMO
[20:23:08] <SWPadnos> oh sure - just backing it up somewhere first is a good thing
[20:23:17] <SWPadnos> then moving stuff around where we want it
[20:25:10] <jmkasunich> it looks like alex already found a place
[20:25:42] <SWPadnos> ok then
[20:26:33] <SWPadnos> hmmm. if I do it, may I rip off your images for a presentation on EMC?
[20:26:39] <jmkasunich> sure
[20:26:42] <SWPadnos> thanks.
[20:26:45] <jmkasunich> be advised that they are somewhat out of date
[20:26:46] <SWPadnos> proper attribution of course
[20:26:48] <SWPadnos> heh
[20:26:50] <alex_joni> SWPadnos: only if you update them :D
[20:26:56] <SWPadnos> damn. I may have to update them
[20:26:57] <alex_joni> darn.. too late
[20:26:58] <SWPadnos> :)
[20:27:11] <alex_joni> http://www.linuxcnc.org/content/view/42/13/lang,en/
[20:27:12] <jmkasunich> they were drawn with easycad, but that was several computers ago
[20:27:18] <alex_joni> jmkasunich: can you please look if I didn't miss anything?
[20:27:21] <SWPadnos> but to do that, I'd have to figure out how it works now ;)
[20:27:32] <jmkasunich> if I can find them, I'd be happy to convert to dxf to allow for future updates
[20:27:55] <alex_joni> SWPadnos: the first one is quite good, (only the IO controller is a single thing now)
[20:27:59] <alex_joni> not divided in 3 anymore
[20:28:04] <SWPadnos> no biggie. I may just redo it in OODraw or something that runs natively
[20:28:10] <alex_joni> and the spindle control is in motion now
[20:28:18] <jmkasunich> alex_joni: looks identical to the original
[20:28:20] <jmkasunich> thank you!
[20:28:35] <SWPadnos> only a little formatting needs to be done, fro mwhat I see here
[20:28:42] <SWPadnos> the image widths need to be reduced
[20:28:44] <alex_joni> ditto for the second one
[20:29:09] <SWPadnos> yep, I think they're pretty darned close still, though some of the names may have changed
[20:29:27] <alex_joni> that's why I said we should definately keep them
[20:29:40] <jmkasunich> the widths are what they are (gifs created from the vector originals)
[20:29:53] <alex_joni> I can make them smaller..
[20:30:00] <alex_joni> but it won't read as nice
[20:30:00] <SWPadnos> but the image <width=xxx> needs to be reduced
[20:30:29] <jmkasunich> I guess since you can click and get the full size ones it doesn't matter
[20:30:31] <SWPadnos> on my machine, the images are already compressed, but are wide enough that the text above them ends up overlaying the right side panel (the poll)
[20:30:35] <SWPadnos> right
[20:30:53] <jmkasunich> yeah. if I make my browser window narrow things get messy fast
[20:31:19] <SWPadnos> hmmm. this isn't exactly "narrow" - it's on a 1280x1024 monitor, but not quite full width
[20:31:22] <jmkasunich> I think the center pane width is determined by the widest fixed width thing in it, which is the drawings
[20:31:35] <jmkasunich> 1600x1200 here ;-)
[20:31:35] <alex_joni> I reduced them
[20:31:37] <SWPadnos> right
[20:31:39] <SWPadnos> heh
[20:31:42] <alex_joni> 1680 here
[20:31:44] <alex_joni> :P
[20:31:50] <SWPadnos> I could load it up on the 3840x2400 monitor and see what happens ;)
[20:32:08] <SWPadnos> the internet would be 5" wide instead of 3 then :)
[20:32:12] <alex_joni> yeah, the full version would be great for that
[20:32:12] <jmkasunich> the reduced ones are ugly, but I'm not sure what else can be done
[20:32:26] <alex_joni> jmkasunich: you still get the big ones when clicking
[20:32:31] <SWPadnos> about the only thing would be to use something like imagemagick to make a better small version
[20:32:30] <alex_joni> so I'll leave it at that for now
[20:32:31] <jmkasunich> right
[20:33:52] <alex_joni> jmkasunich: one day you'll have to learn how to use joomla :D
[20:34:01] <jmkasunich> * jmkasunich runs away
[20:34:05] <alex_joni> some things work surprisingly well :D
[20:34:24] <alex_joni> (like copy paste from another browser into the new content field)
[20:34:29] <alex_joni> it even preserved formatting and links
[21:51:45] <CIA-18> 03jmkasunich 07TRUNK * 10infrastructure/farm-scripts/index.shtml: adding the 2.2 branch
[22:00:59] <alex_joni> jmkasunich: cool
[22:01:17] <jmkasunich> ?
[22:01:30] <alex_joni> 23:49 < CIA-18> jmkasunich TRUNK * infrastructure/farm-scripts/index.shtml:
[22:01:30] <alex_joni> adding the 2.2 branch
[22:01:43] <jmkasunich> oh - I didn't see that, thought CIA was sleeping again
[22:01:49] <jmkasunich> I was disconnected
[22:01:52] <SWPadnos> heh
[22:01:57] <alex_joni> you were having your little hickups again
[22:02:01] <jmkasunich> I sure hope that changes when I get my new ISP
[22:02:02] <alex_joni> btw.. they are like clockwork :D
[22:02:25] <CIA-18> 03compile-farm 07Ubuntu 5.10 (breezy) non-realtime (2.6.12-10-386) * 10emc2.2branch/: build PASSED
[22:02:27] <jmkasunich> I should be getting connected on Wednesday
[22:02:28] <SWPadnos> I thought it was a little funny that we got the commit, and 1 minute later the disconnect message
[22:02:35] <SWPadnos> yay
[22:02:55] <alex_joni> http://www.linuxcnc.org/compile_farm/
[22:02:59] <jmkasunich> the disconnect isn't visible (to you or to me) until after the IRC timeout
[22:03:01] <alex_joni> it's starting to populate :D
[22:05:17] <jmkasunich> the most time consuming part is getting the new checkout
[22:06:25] <alex_joni> can't you copy the whole dir over? once it's checked out?
[22:06:38] <jmkasunich> from one VM to another?
[22:06:44] <alex_joni> yeah
[22:06:50] <jmkasunich> I suppose thats possible, but more trouble than its worth
[22:06:52] <alex_joni> I suspect that works faster then cvs up
[22:07:11] <jmkasunich> it only takes a few minutes
[22:07:27] <jmkasunich> and by doing a fresh checkout, I know all the CVS/foo is correct
[22:07:30] <alex_joni> right
[22:07:58] <jmkasunich> I wonder if I should eliminate emc-2.0 from the farm?
[22:08:35] <alex_joni> does it use up lots of resources?
[22:08:40] <jmkasunich> not really
[22:08:53] <alex_joni> some vm disk space
[22:08:54] <jmkasunich> disk space, which I believe I have plenty of
[22:08:56] <alex_joni> and cpu once in a while
[22:09:07] <alex_joni> (if? there is a commit there..)
[22:09:09] <jmkasunich> a few seconds to do the cvs up each time
[22:09:12] <jmkasunich> no compile unless there is a commit
[22:09:31] <jmkasunich> (last compile was in Aug for one slot, and in Feb for the other two)
[22:10:15] <alex_joni> wonder why the big difference
[22:10:26] <jmkasunich> I think the last commit was in Feb
[22:10:38] <jmkasunich> I may have restarted the farm in Aug, and forced a compile
[22:10:58] <alex_joni> nope there are lots of compiles on the bdi platform
[22:11:05] <alex_joni> http://www.linuxcnc.org/compile_farm//emc2.0branch_slot6_history.txt
[22:11:38] <jmkasunich> hmm
[22:12:04] <jmkasunich> lemme get 2.2 working on all slots, then I'll investigate
[22:12:32] <alex_joni> not really something to lose sleep over
[22:12:45] <alex_joni> on that note.. I'm off to bed
[22:13:31] <alex_joni> good night all
[22:14:34] <jmkasunich> goodnight
[22:16:16] <SWPadnos> night Alex
[22:17:08] <CIA-18> 03compile-farm 07BDI-4.51 (2.6.16.20-rtai) * 10emc2.2branch/: build PASSED
[22:24:57] <jmkasunich> third one building now
[22:25:32] <jmkasunich> the 4th one is my other machine, which (a) isn't running at the moment, and (b) isn't connected to the net the last week or so since my router started misbehaving
[22:26:01] <jmkasunich> the new ISP's new DSL modem is supposed to contain a built in router, so I'm not gonna do anything in the meantime
[22:26:13] <cradek> holy crap
[22:26:17] <jmkasunich> crap?
[22:26:18] <cradek> moving 2000 lb of shingles onto the roof is not easy.
[22:26:25] <jmkasunich> lol
[22:26:31] <SWPadnos> heh
[22:26:40] <jmkasunich> is it all sheathed?
[22:26:42] <cradek> I suppose I should have guessed that was the case.
[22:26:43] <SWPadnos> they have forklifts for that
[22:26:43] <cradek> yes
[22:26:47] <cradek> shingles go on tomorrow
[22:26:50] <jmkasunich> roofer coming tomorrow
[22:26:53] <CIA-18> 03compile-farm 07Ubuntu 5.10 (breezy) realtime (2.6.12-magma) * 10emc2.2branch/: build PASSED
[22:32:01] <jmkasunich> so you were carrying bundles up a ladder?
[22:32:11] <jmkasunich> or did you work out some labor saving thing?
[22:32:13] <cradek> the first two, yes
[22:32:17] <jmkasunich> hoist, etc
[22:32:39] <cradek> after that, I figured I had to pick lever, pulley, or wheel to help
[22:32:39] <SWPadnos> doesn't matter, you still do all the work unless you use motors
[22:32:45] <cradek> so, pulley it was
[22:32:52] <cradek> SWPadnos: the motor was attached to a large Ford
[22:32:55] <SWPadnos> heh
[22:33:19] <SWPadnos> after doing my mother's porch manually, we hired roofers to come and do our house
[22:33:27] <jmkasunich> SWPadnos: carrying up ladder means moving 50 lb bundle of shingles + 190 lb bundle of human flesh up to the roof, and then taking the 150 back down again
[22:33:35] <jmkasunich> 190
[22:33:37] <cradek> I weigh about the same as two bundles of shingles, so I had devised a system where I would climb the ladder and ride the rope down, lifting two bundles
[22:33:42] <SWPadnos> 175 - who are you kidding? :)
[22:33:57] <jmkasunich> well, I'm 190
[22:33:58] <SWPadnos> heh
[22:34:02] <cradek> but, I chickened out (i.e. got smart) and used the truck instead
[22:34:24] <jmkasunich> the hard part of the system must have been attaching the pulley
[22:34:37] <cradek> I made a tripod/triangle that went above the peak
[22:34:39] <SWPadnos> you need an assistant on the roof to move the bundles over
[22:34:46] <SWPadnos> with the rope-riding scheme
[22:34:59] <cradek> yes it would have been harder, but possible, with just one person
[22:35:06] <SWPadnos> or you tie the end, and climb the ladder
[22:35:47] <cradek> these bundles were 80-85lb
[22:36:03] <SWPadnos> hmmm. that sounds bigger than the standard ones
[22:36:12] <SWPadnos> usually you use 3 bundles per "square"
[22:36:14] <cradek> they seemed plenty big.
[22:36:20] <SWPadnos> which I believe is 10x10 feet
[22:36:21] <jmkasunich> its been a while since I lugged shingles - I pulled 50 lbs out of my rear
[22:36:34] <SWPadnos> ewww
[22:36:37] <cradek> I think they said 245lb/"square"
[22:36:37] <SWPadnos> :)
[22:36:54] <SWPadnos> hm. they could have been 85 poounds, but I don't think I'm that strong
[22:36:56] <jmkasunich> I realised shortly after I hit enter that "out of the air" would have been better
[22:36:58] <SWPadnos> we must have been using cheaper shingles
[22:37:18] <SWPadnos> are these asphalt shingles or slate or something?
[22:39:18] <cradek> I'm not sure
[22:39:36] <jmkasunich> ?
[22:39:42] <jmkasunich> if they're slate or something you'd know
[22:39:49] <SWPadnos> they're the standard "kinda flexy with little pebbles in them" kind?
[22:39:50] <cradek> oh
[22:39:56] <cradek> yeah that
[22:39:54] <jmkasunich> (twice the price and special skills to install)
[22:39:57] <SWPadnos> ok, they're asphalt
[22:40:01] <SWPadnos> yep
[22:40:07] <SWPadnos> but they don't burn
[22:40:26] <cradek> what is slate?
[22:40:35] <jmkasunich> rock
[22:40:39] <cradek> oh
[22:40:46] <SWPadnos> right - sorry
[22:41:25] <jmkasunich> http://en.wikipedia.org/wiki/Slate has a photo of a slate roof
[22:41:32] <jmkasunich> my parents house used to have slate
[22:41:47] <SWPadnos> that's one ugly roof they have in that photo
[22:41:52] <SWPadnos> but it's probably 200 years old
[22:42:22] <jmkasunich> yeah
[22:42:41] <jmkasunich> I think the roof on my parents house was about 75 years old when they decided to replace it
[22:42:49] <cradek> I haven't seen that around here
[22:43:04] <jmkasunich> unless you have houses approaching 100 years old you won't
[22:43:05] <SWPadnos> heh - here's why I've seen it, I think: http://www.vtslate.com/
[22:43:21] <SWPadnos> there was a pile of shingles across the street when I was growing up
[22:43:23] <cradek> we have lots of houses that old in lincoln
[22:43:30] <SWPadnos> someone had probably replaced their roof not many decades before
[22:44:17] <SWPadnos> wow. those specials are pretty darned good
[22:44:35] <SWPadnos> $100-$150/sq. is only 2-3 times the cost of asphalt
[22:44:46] <SWPadnos> I think. how much are normal shingles these days?
[22:44:50] <jmkasunich> yeah, but that doesn't include labor
[22:45:08] <SWPadnos> no, but it also doesn't include replacing the roof in 10-20 years
[22:45:14] <jmkasunich> I bet installed price for slate is 5x or more compared to asphault
[22:45:35] <jmkasunich> cost per year is another story, but few people think that far ahead these days
[22:45:48] <SWPadnos> if it's uncommon, yes, but here it's only ~3x, including the shingle cost
[22:45:53] <SWPadnos> yep
[22:46:04] <SWPadnos> it's still a big chunk of change though
[22:46:45] <SWPadnos> we lokoed into standing seam metal, slate, and asphalt (as well as DIY asphalt), and the range was $2000 or so (DIY) to $12000 or so (metal)
[22:47:18] <tissf> good night all
[22:47:23] <SWPadnos> see you
[22:48:54] <jmkasunich> yay - finally finished my trash can
[22:49:02] <SWPadnos> heh. what does that mean?
[22:49:45] <jmkasunich> I needed to make a lid
[22:49:48] <SWPadnos> ah
[22:50:07] <jmkasunich> the can is an antique 10 gallon pickle crock
[22:50:13] <jmkasunich> the lid keeps the dog out
[22:52:18] <SWPadnos> oh, interesting
[22:52:36] <SWPadnos> 10 gallons. that's kind of small for a pickling crock, isn't it?
[22:52:50] <jmkasunich> I think they made 10 thru 15 or so
[22:53:03] <SWPadnos> I think we used to make sauerkraut and pickles in 30 gallon crocks
[22:53:04] <jmkasunich> we used to have a 12, it went away in the divorce
[22:53:07] <jmkasunich> the 10 is big enough
[22:53:15] <SWPadnos> but they may have looked biugger because I was 6 years old
[22:53:19] <jmkasunich> heh
[22:53:33] <jmkasunich> the 10 is 16" OD and 17" tall
[22:53:41] <jmkasunich> plenty big for a kitchen can
[22:53:57] <SWPadnos> yep
[22:54:03] <SWPadnos> ok, ours were considerably bigger
[22:54:18] <SWPadnos> maybe 20" across or a bit more, and 30-36" tall
[22:54:24] <jmkasunich> wow
[22:54:37] <jmkasunich> crocks are expensive these days
[22:54:41] <SWPadnos> I'm sure
[22:54:50] <jmkasunich> I was searching for a while, and not finding anything under $100
[22:54:56] <jmkasunich> I got luck and got this one for $48
[22:54:57] <SWPadnos> wow
[22:55:11] <SWPadnos> and with pickles only $2/gallon at Wal-Mart, who needs them ;)
[23:04:39] <fenn> wonder which is more expensive, slate or solar panels
[23:04:58] <SWPadnos> solar, I bet
[23:05:11] <SWPadnos> 100 square feet of slate is a few hundred $
[23:05:32] <SWPadnos> a 1 square meter solar panel (~10 sq.ft.) is more than that, I think
[23:05:38] <fenn> oh, thought you said $150/sq. foot
[23:05:48] <SWPadnos> no, per "square"
[23:05:51] <SWPadnos> 10x10