Search results for all lists

10000 messages found
Sort by
List: time-nuts@lists.febo.com
From: paul swed
 
HP 5061a top and bottom covers available?
Sun, Feb 26, 2017 9:00 PM
List: ctbirds@lists.ctbirding.org
From: Paul Desjardins
 
Re: [CT Birds] 10 top birds to see in Ct
Sat, Jul 13, 2013 11:49 AM
List: ctbirds@lists.ctbirding.org
From: Dan Rottino
 
Re: [CT Birds] Top 10 Birds to see in CT
Sat, Jul 13, 2013 5:05 PM
List: hbcu-lib@lists.hbculibraries.org
From: sphoenix@hbculibraries.org
 
Lawson State’s Top Ranked Nursing Program Continues to Excel
Mon, Aug 15, 2022 1:13 PM
. But thanks to those who are, lives are saved, babies are born and life-changing bonds are made between the nurses and patients. As we all know, there’s a long journey that requires hard work even before becoming a nurse. Hello nursing school! LSCC’s prestigious nursing program boasts incredible students and alumni. We sat down and talked with a few of them about choosing to be a nurse and why LSCC was the best choice to do so. Tiesha Finley, registered nursing student Finley has always been interested in the medical field and even worked in it for a while before deciding to study nursing. She found such motivation and inspiration in the nurses she worked with, she knew she wanted to take a leap of faith and become one herself. “The most rewarding part is looking back, seeing where I came from, and where I am now,” said Finley. “It’s amazing to learn and experience becoming a nurse. It give me a sense of pride to be on this journey. You have to change the way you think in a critical way. You have to be kind and compassionate even in the tough times.” Autumn Cox, licensed practical nursing student For many students, there may not be a specific moment or role model that led them to nursing. Many students have a more gradual realization that nursing is the perfect fit. For some students, like Cox, nursing was the dream career from the get-go. “I chose a career in nursing as I was inspired when my younger siblings who are twins were born. They are fraternal twins and one had to stay in the NICU for a month or so,” said Cox. “During that time, I watched nurses help my family and of course my siblings. I liked the idea of being in medical field and being able to help others. I also would say I am very personable, so I like building relationships with others.” Brantley Hale, registered nursing student All jobs and fields of study have their challenges, but the stresses that nurses face are unique. As essential healthcare workers, nurses are responsible for the health and lives of their patients. Talk about responsibility! But for nursing student Hale, the challenges are well worth the rewards. “It’s no secret that nursing students sacrifice quality time with loved ones, events, milestones—basically our personal life, to study for the next big exam,” said Hale. “So the most rewarding part of studying nursing for me is receiving a passing grade. It reassures me that all of those sacrifices aren’t in vain, and that I’m heading down the right path.” Why LSCC? LSCC is well known for its nursing program. So, it comes as no surprise that the school is so many students’ first choice when it comes time to decide where they will earn their degree. “I chose Lawson State because I heard so many acquaintances describe it as a positive experience,” Cox said. “I also knew that Lawson was rankled #1 for their practical nursing program in the state of Alabama, so I wanted to be a part of the best program to ensure I would be a successful nurse.” For Hale, fourth semester nursing student, there was a list of reasons LSCC was the best choice, including: a reasonable tuition rate; smaller classroom sizes; more personable learning and the prestigious reputation that Lawson State’s nursing program currently holds. Challenging + Rewarding As with earning any degree, balancing work, school and social life can be exhausting. LSCC’s professors help students maintain that balance. “The most challenging part of being a student at Lawson for me was balancing my work and school life,” said Cox.  “The coursework was heavy and learning to balance was an adjustment for me. But with the help of my professors, I was able to stay afloat. For that, I am very thankful.” With LSCC’s amazing nursing program, students leave the school confident in their ability to show off what they’ve learned and change lives. Through practical, hands-on training as well as the life skills they’ve learned at Lawson, grads are ready to take on the world when they leave. “Lawson State has prepared me for post college simply by the hands-on learning,” Hale said. “My nursing instructors play a huge part in my post-college prep as well. They encourage questions and admire curiosity. Not only do they share their knowledge, but also their wisdom they’ve accumulated throughout their careers, so that we can take heed and carry them out throughout our career.”
List: discuss@lists.openscad.org
From: William F. Adams
 
Re: How to round the top inner and outer edges?
Sun, Sep 3, 2023 1:37 PM
de-using-openscad/35153     //!OpenSCAD     Endmill_Diameter = 6.35;     Detail = 100;     $fn = Detail * 1;     tool_radius_tip = 0.79375;    tool_radius_width = 3.175;     feedrate = 600;    plungerate = 150;    safeheight = 8;     module radiuscut(bx, by, bz, ex, ey, ez) {    n = Detail;    step = 360/n;    endmillradius = Endmill_Diameter / 2;     hull(){    translate([bx,by,bz])    cylinder(step,tool_radius_tip,tool_radius_tip);    translate([ex,ey,ez])    cylinder(step,tool_radius_tip,tool_radius_tip);    }     hull(){    translate([bx,by,bz+tool_radius_width]) cylinder(tool_radius_width*2,tool_radius_tip+tool_radius_width,tool_radius_tip+tool_radius_width);        translate([ex,ey,ez+tool_radius_width])  cylinder(tool_radius_width*2,tool_radius_tip+tool_radius_width,tool_radius_tip+tool_radius_wi dth);    }     for (i=[0:step:90]) {        angle = i;        dx = tool_radius_width*cos(angle);        dxx = tool_radius_width*cos(angle+step);        dzz = tool_radius_width*sin(angle);        dz = tool_radius_width*sin(angle+step);        dh = dz-dzz;        hull(){        translate([bx,by,bz+dz])           cylinder(dh,tool_radius_tip+tool_radius_width-dx,tool_radius_tip+tool_radius_width-dxx);        translate([ex,ey,ez+dz])           cylinder(dh,tool_radius_tip+tool_radius_width-dx,tool_radius_tip+tool_radius_width-dxx);            }    }    }     radiuscut(0, 0, 0, 20, 20, 0); which previews as: https://community.carbide3d.com/uploads/default/original/3X/5/4/540b04fcd2dbfebb78c08a748ff980aa3238c8e2.png and then you subtract that from the design which you are modeling. William
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: How to round the top inner and outer edges?
Sun, Sep 3, 2023 12:40 PM
ake a section and offset it multiple times to generate a solid. > > I am sure this explanation is not enough. Will create a visual description > and send it to you. > > For approach 2: > The key is writing a function to offset a section, which I think is not so > easy. >
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: How to round the top inner and outer edges?
Sun, Sep 3, 2023 12:05 PM
ill create a visual description > and send it to you. > > For approach 2: > The key is writing a function to offset a section, which I think is not so > easy. >
List: discuss@lists.openscad.org
From: Jordan Brown
 
Re: How to round the top inner and outer edges?
Tue, Sep 5, 2023 2:58 PM
the built in. PR#4478 will, among other things, let you render a 2D object into a list of lists of points, which achieves that goal.
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: How to round the top inner and outer edges?
Wed, Sep 6, 2023 8:37 AM
l curve. It > seems like this information isn't likely to be available, so there will be > quick native offset and then some slow, not-entirely-robust algorithm to do > association. (Note: my vertex association algorithm is O(N^3), so it's > pretty darn slow.) > > On Tue, Sep 5, 2023 at 5:43 PM Revar Desmera wrote: > >> As I recall, it was overcomplicating what is supposed to be a simple >> language. Of course, I’m currently hoping to get this functionality via >> the far more complicated object/module literals PR. >> >> -Revar >> >> >> > On Sep 5, 2023, at 7:59 AM, Jordan Brown >> wrote: >> > >> >  >> >> On 9/5/2023 3:35 AM, nop head wrote: >> >> Would be great if OpenSCAD exposed the Clipper offset module as a >> function. It seems very fast and robust. I think it has been requested >> before and all the 2D geometry modules are fast enough to be functions and >> I can't see any downsides. Even if somebody has a function with the same >> name it would just override the built in. >> > PR#4478 will, among other things, let you render a 2D object into a >> list of lists of points, which achieves that goal. >> > >> > _______________________________________________ >> > OpenSCAD mailing list >> > To unsubscribe send an email to discuss-leave@lists.openscad.org >> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org >> > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >
List: discuss@lists.openscad.org
From: Adrian Mariano
 
Re: How to round the top inner and outer edges?
Wed, Sep 6, 2023 11:23 PM
ves to make the polyhedron. On Wed, Sep 6, 2023 at 4:37 AM Sanjeev Prabhakar wrote: > Sorting and matching offset points based on the distance from the original > polygon points is a fairly good way and in most of the cases it works. > > On Wed, 6 Sept, 2023, 3:19 am Adrian Mariano, wrote: > >> One issue I see is that many of the uses of an offset() require that you >> associate points on the offset curve with points on the initial curve. It >> seems like this information isn't likely to be available, so there will be >> quick native offset and then some slow, not-entirely-robust algorithm to do >> association. (Note: my vertex association algorithm is O(N^3), so it's >> pretty darn slow.) >> >> On Tue, Sep 5, 2023 at 5:43 PM Revar Desmera wrote: >> >>> As I recall, it was overcomplicating what is supposed to be a simple >>> language. Of course, I’m currently hoping to get this functionality via >>> the far more complicated object/module literals PR. >>> >>> -Revar >>> >>> >>> > On Sep 5, 2023, at 7:59 AM, Jordan Brown < >>> openscad@jordan.maileater.net> wrote: >>> > >>> >  >>> >> On 9/5/2023 3:35 AM, nop head wrote: >>> >> Would be great if OpenSCAD exposed the Clipper offset module as a >>> function. It seems very fast and robust. I think it has been requested >>> before and all the 2D geometry modules are fast enough to be functions and >>> I can't see any downsides. Even if somebody has a function with the same >>> name it would just override the built in. >>> > PR#4478 will, among other things, let you render a 2D object into a >>> list of lists of points, which achieves that goal. >>> > >>> > _______________________________________________ >>> > OpenSCAD mailing list >>> > To unsubscribe send an email to discuss-leave@lists.openscad.org >>> _______________________________________________ >>> OpenSCAD mailing list >>> To unsubscribe send an email to discuss-leave@lists.openscad.org >>> >> _______________________________________________ >> OpenSCAD mailing list >> To unsubscribe send an email to discuss-leave@lists.openscad.org >> > _______________________________________________ > OpenSCAD mailing list > To unsubscribe send an email to discuss-leave@lists.openscad.org >