Search results for all lists

10000 messages found
Sort by
List: discuss@lists.openscad.org
From: Johan Jonker
 
for statement doesn't do all the steps sometimes
Sat, Dec 17, 2016 7:59 AM
for (a7=[ 6.8:1/5:7.8]) echo(A7=a7); for (a=[ 7.2:1/5:8.2]) echo(A=a); Output is ECHO: A7 = 6.8 ECHO: A7 = 7 ECHO: A7 = 7.2 ECHO: A7 = 7.4 ECHO: A7 = 7.6 ECHO: A = 7.2 ECHO: A = 7.4 ECHO: A = 7.6 ECHO: A = 7.8 ECHO: A = 8 ECHO: A = 8.2 -- View this message in context: http://forum.openscad.org/for-statement-doesn-t-do-all-the-steps-sometimes-tp19591
List: ctbirds@lists.ctbirding.org
From: zellene
 
My all species hummer feeder
Wed, Jul 20, 2016 6:18 PM
The downy in particular stands on the feeder and drinks almost all day. I did put up a second feeder but its mate found it...then it was destroyed by a bear. Now a new threat to the hummers. A young squirrel has discovered that if he stands on it just right so it tilts a little, he can lap up the sweetness.
List: ctbirds@lists.ctbirding.org
From: Christopher Loscalzo
 
American Avocets all around us!
Thu, Jul 21, 2016 1:33 AM
It's early in the season, so all of them were still in full breeding plumage. Real beauties! We didn't have any here in CT last year, so we're due. Congratulations to whoever is the first birder to find one in our state this year! Good birding, Chris Loscalzo, Woodbridge
List: birdalert@ontbirds.ca
From: Jean Iron
 
[Ontbirds]How to age Great Gray Owls
Thu, Jan 13, 2005 3:13 PM
Dark wingtips on Oct 16 (top right) and Nov 26 (bottom) birds also indicate adults. 5. http://www.greenbackedheron.com/id.cfm?setid=1234 Four photos from Kent Nickell's website. Third bird is an adult because of dark wingtips lacking pale tips, old brownish secondaries and contrasting brownish wing coverts.
List: usrp-users@lists.ettus.com
From: Marcus D. Leech
 
Re: [USRP-users] USRP IP Address
Thu, Apr 25, 2019 10:52 PM
Here's the top of the X310 documentation tree--I believe you have a 2954R?
List: hbcu-lib@lists.hbculibraries.org
From: Sandra Phoenix
 
Grambling State Approved to Offer First Cybersecurity Program in Louisiana
Sun, Oct 28, 2018 11:48 PM
Diverse Education News October 26, 2018 Grambling State Approved to Offer First Cybersecurity Program in Louisiana Grambling State University (GSU), the top creator of African-American computer science graduates for the state of Louisiana, received University of Louisiana System Board of Supervisors approval last week to offer the state's first bachelor's in
List: trawlers@lists.trawlering.com
From: Joe Engel
 
RE: PT Boat?
Mon, Aug 9, 2004 3:46 PM
Last operational, military-configured PT boat up for sale < http://www.hometownannapolis.com/cgi-bin/read/2004/08_02-26/TOP > When I was visiting David at Worton Creek I saw another vessel in pretty bad shape. Well Marin, this is your big chance!
List: trawlers@lists.trawlering.com
From: Peter Bennett
 
Re: T&T: Windlass
Sat, Feb 11, 2012 11:36 PM
On 2/11/2012 3:26 PM, Rudy and Jill wrote: >> There is a lot of power, the wildcat turns, the clutch is strong, >> and the nut is well tight, but the chain does not grip anymore.
List: discuss@lists.openscad.org
From: Felipe Sanches
 
Re: [OpenSCAD] finding angle from a coordinate
Thu, Oct 13, 2016 1:55 AM
decompose it into a couple rotates and use some trigonometry: $fn=30; X = 3; Y = 4; Z = 5; R = 1; rotate([0,0,atan(Y/X)]) rotate([0, atan(sqrt(X*X + Y*Y) / Z), 0]) cylinder(r = R, h = sqrt(X*X + Y*Y + Z*Z)); color("red") translate([X,Y,Z]) sphere(r=R); 2016-10-12 22:26 GMT-03:00 tony873004 : > I have a column with
List: discuss@lists.openscad.org
From: otto
 
Re: [OpenSCAD] finding angle from a coordinate
Thu, Nov 17, 2016 7:36 PM
Regards Otto On Wed, 12 Oct 2016 18:26:59 -0700 (MST) tony873004 wrote: > I have a column with a radius of 1. > The column's base is located at 0,0,0, and its top is located at > 3,4,5.