šŖ½ SCAPULA BONE 01 | BASIC INFORMATION Feature Details Bone Scapula Part of Appendicular skeleton Number 2 ā paired Shape Triangular Other name Wing bone Surface emphasized in lecture Posterior surface š§ Memory: SCAPULA ā WING BONE ā TRIANGULAR ā POSTERIOR 02 | PROCESSES OF SCAPULA A process = bony prominence / ą¤ą¤ą¤¾ą¤° The scapula has 2 important processes: ā Acromion Process Bony prominence of scapula Forms the acromioclavicular joint with clavicle. ā” Coracoid Process Hook-like projection Another important bony prominence of scapula. ā Exam Point Scapula ā 2 processes Acromion + Coracoid š§ Memory: A + C = 2 Processes 03 | GLENOID CAVITY The scapula has a pear-shaped cavity called: šµ GLENOID CAVITY Glenoid cavity ā receives head of humerus ā¬ļø Head of humerus + Glenoid cavity ā¬ļø Glenohumeral Joint ā¬ļø Shoulder Joint ā Exam Question: Which cavity receives the head of humerus? ā Glenoid cavity Which bone's head fits into it? ā Humerus 04 | SHOULDER / GLENOHUMERAL JOINT Glenohumeral joint = Shoulder joint This joint allows multiple movements: Abduction Adduction Flexion Extension Internal rotation External rotation Circumduction ā Important The shoulder joint has a large range of movement, but is considered the least stable major joint and is therefore prone to dislocation. 05 | DISLOCATION & SUBLUXATION š“ Dislocation ā Complete loss of normal contact between the articular surfaces. š Subluxation ā Partial loss of contact. š§ Memory: DISLOCATION ā COMPLETE SUBLUXATION ā PARTIAL Shoulder dislocation may be associated with nerve and blood-vessel injury and severe pain. 06 | PERI-CAPSULITIS According to the lecture: Inflammation around the shoulder capsule ā¬ļø Peri-capsulitis ā¬ļø Frozen shoulder ā Important movement Abduction ā restricted š§ Memory: Peri-capsulitis ā Frozen shoulder ā Abduction restricted 07 | CODMAN EXERCISE For shoulder rehabilitation, the lecture mentions: Codman Exercise Also known as a pendulum exercise. ā Lecture connection: Frozen shoulder ā Codman exercise 08 | CODMAN TRIANGLE ā ļø Do not confuse Codman exercise with Codman triangle. Codman Triangle A characteristic radiographic appearance associated with: Osteosarcoma Osteosarcoma ā Codman triangle š§ Memory: CODMAN EXERCISE ā SHOULDER CODMAN TRIANGLE ā OSTEOSARCOMA generate an image for me or i have to give norcet so provide me accordingly
Which item should I make into a NORCET-focused image/study aid next?
A single high-yield NORCET nursing exam revision infographic on the scapula and shoulder. Show a clean labelled posterior view of the scapula with the acromion process, coracoid process, and pear-shaped glenoid cavity. Beside it, show the head of humerus fitting into the glenoid cavity, labelled glenohumeral (shoulder) joint. Include short fact boxes: 'Scapula: paired triangular wing bone'; '2 processes: Acromion + Coracoid'; 'Glenoid cavity receives head of humerus'; 'Dislocation = complete loss of contact; Subluxation = partial loss'; 'Frozen shoulder (peri-capsulitis): abduction restricted; Codman pendulum exercise'; and a clearly separated red warning box: 'Codman triangle = osteosarcoma'. Use accurate anatomy, large legible spellings, simple arrows, and concise exam-oriented wording.

i have to write i want image aesthetic for notes writing
An aesthetic handwritten study-notes page template about the scapula for a nursing student to write on. Portrait A4 white paper, soft pastel lavender, sky blue, and pale peach highlights, neat brush-pen title at top: 'SCAPULA BONE'. Include a small accurate posterior scapula line drawing in one upper corner with only thin labels for acromion, coracoid, and glenoid cavity. Make the rest of the page mostly blank with spacious ruled writing sections and empty boxes titled: 'Basic information', 'Processes', 'Glenoid cavity', 'Shoulder joint', 'Dislocation vs Subluxation', 'Frozen shoulder', and 'Exam traps'. Add subtle washi-tape and tiny wing doodles in the margins. No dense text, no filled answers, no extra medical facts. Clean, minimal, legible, suitable for printing and handwriting notes.

Create a printable PDF notes page
~/
mkdir -p "/tmp/workspace/scapula-notes-pdf/src" "/tmp/workspace/scapula-notes-pdf/output" && python - <<'PY' from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor, white from reportlab.pdfbase.pdfmetrics import stringWidth from pathlib import Path out = Path('/tmp/workspace/scapula-notes-pdf/output/Scapula_NORCET_Notes_Page.pdf') W,H=A4 c=canvas.Canvas(str(out), pagesize=A4) c.setTitle('Scapula NORCET Notes Page') # palette ink=HexColor('#25324A'); lavender=HexColor('#EAE4FA'); blue=HexColor('#DDF1FA'); peach=HexColor('#FBE6D8'); mint=HexColor('#E0F3EA'); line=HexColor('#B9C4D6'); lilac=HexColor('#8B77B7'); coral=HexColor('#D98477') # background c.setFillColor(HexColor('#FFFDFB')); c.rect(0,0,W,H,stroke=0,fill=1) # margin vertical faint pink line c.setStrokeColor(HexColor('#F1CDD1')); c.setLineWidth(.8); c.line(56,46,56,H-44) # small decorations c.setFont('Helvetica',7); c.setFillColor(lilac); c.drawString(61,H-30,'N O R C E T ⢠A N A T O M Y R E V I S I O N') # title c.setFillColor(ink); c.setFont('Helvetica-Bold',25); c.drawString(62,H-64,'SCAPULA BONE') c.setStrokeColor(lilac); c.setLineWidth(2); c.line(62,H-70,220,H-70) c.setFont('Helvetica-Oblique',9); c.setFillColor(HexColor('#65708A')); c.drawString(62,H-86,'Posterior surface ⢠printable notes page') # tiny wings c.setFont('Helvetica',17); c.setFillColor(lilac); c.drawRightString(W-58,H-67,'ā§ ā”') # helper def rounded_box(x,y,w,h,fill,title,lines=0): c.setFillColor(fill); c.setStrokeColor(HexColor('#D7DCE6')); c.setLineWidth(.55) c.roundRect(x,y,w,h,9,stroke=1,fill=1) c.setFillColor(ink); c.setFont('Helvetica-Bold',10); c.drawString(x+11,y+h-17,title.upper()) c.setStrokeColor(HexColor('#C6D0DD')); c.setLineWidth(.45) top=y+h-33 for i in range(lines): yy=top-i*14 if yy>y+11: c.line(x+11,yy,x+w-11,yy) # scapula mini diagram (upper right) on white circle cx,cy=469,H-126 c.setFillColor(white); c.setStrokeColor(HexColor('#D7DCE6')); c.circle(cx,cy,51,fill=1,stroke=1) # simplified posterior scapula c.setStrokeColor(ink); c.setLineWidth(1.5); c.setFillColor(HexColor('#F5F1FD')) p=c.beginPath(); p.moveTo(cx-20,cy+27); p.curveTo(cx+2,cy+34,cx+29,cy+17,cx+23,cy-13); p.curveTo(cx+18,cy-37,cx-7,cy-37,cx-28,cy-17); p.curveTo(cx-42,cy-3,cx-38,cy+16,cx-20,cy+27); p.close(); c.drawPath(p,fill=1,stroke=1) # spine/acromion/coracoid/glenoid c.line(cx-31,cy+4,cx+15,cy+4); c.line(cx+15,cy+4,cx+32,cy+12); c.line(cx+18,cy+4,cx+30,cy-2) c.setFillColor(blue); c.circle(cx+24,cy-7,5,fill=1,stroke=1) c.setFont('Helvetica',5.6); c.setFillColor(ink) c.drawString(cx+17,cy+22,'Acromion'); c.drawString(cx+25,cy+2,'Coracoid'); c.drawString(cx+27,cy-15,'Glenoid') # layout left=62; gap=12; col=(W-124-gap)/2; right=left+col+gap rounded_box(left,H-221,col,112,blue,'01 Basic information',5) rounded_box(right,H-221,col,112,lavender,'02 Processes',5) rounded_box(left,H-348,col,112,peach,'03 Glenoid cavity',5) rounded_box(right,H-348,col,112,mint,'04 Shoulder joint',5) rounded_box(left,H-475,col,112,lavender,'05 Dislocation vs subluxation',5) rounded_box(right,H-475,col,112,blue,'06 Frozen shoulder',5) # bottom larger rounded_box(left,88,W-124,155,peach,'07 Codman exercise & codman triangle',7) # clear comparison box c.setFillColor(white); c.setStrokeColor(HexColor('#E2C5B7')); c.roundRect(left+12,109,(W-148)/2,45,6,fill=1,stroke=1) c.roundRect(W/2+6,109,(W-148)/2,45,6,fill=1,stroke=1) c.setFillColor(coral); c.setFont('Helvetica-Bold',8); c.drawString(left+20,139,'CODMAN EXERCISE') c.setFillColor(ink); c.setFont('Helvetica',7.5); c.drawString(left+20,125,'_________________________________') c.setFillColor(coral); c.setFont('Helvetica-Bold',8); c.drawString(W/2+14,139,'CODMAN TRIANGLE') c.setFillColor(ink); c.setFont('Helvetica',7.5); c.drawString(W/2+14,125,'_________________________________') # foot c.setStrokeColor(HexColor('#D8DDE8')); c.line(62,66,W-62,66); c.setFont('Helvetica-Oblique',7.4); c.setFillColor(HexColor('#788196')); c.drawString(62,51,'Quick memory cue: A + C = Acromion + Coracoid | Write your own facts, mnemonics and MCQs here.') c.drawRightString(W-62,51,'Scapula ⢠page 1') c.save() print(out) PY python - <<'PY' from pypdf import PdfReader p='/tmp/workspace/scapula-notes-pdf/output/Scapula_NORCET_Notes_Page.pdf' r=PdfReader(p) print('pages',len(r.pages),'size',__import__('os').path.getsize(p)) PY
Scapula NORCET Notes Page
PDF Document Ā· PDF
i want notes like notes withnwritten description
"adhesive capsulitis"
scapula anatomy glenoid cavity acromion coracoid shoulder joint official anatomy resource
~/scapula-notes-pdf/
python - <<'PY' from reportlab.pdfgen import canvas from reportlab.lib.pagesizes import A4 from reportlab.lib.colors import HexColor, white from reportlab.pdfbase.pdfmetrics import stringWidth from pathlib import Path out=Path('/tmp/workspace/scapula-notes-pdf/output/Scapula_NORCET_Filled_Notes.pdf') W,H=A4 c=canvas.Canvas(str(out),pagesize=A4) c.setTitle('Scapula Bone - NORCET Filled Notes') # palette ink=HexColor('#26334B'); muted=HexColor('#69758B'); lavender=HexColor('#EEE9FB'); blue=HexColor('#E4F4FA'); peach=HexColor('#FCE9DF'); mint=HexColor('#E4F5ED'); border=HexColor('#CED6E3'); accent=HexColor('#8069B2'); red=HexColor('#B9535A'); paper=HexColor('#FFFDFC') c.setFillColor(paper);c.rect(0,0,W,H,fill=1,stroke=0) # notebook margin and top elements c.setStrokeColor(HexColor('#F0C9CF'));c.setLineWidth(.7);c.line(51,36,51,H-35) c.setFont('Helvetica-Bold',7);c.setFillColor(accent);c.drawString(60,H-28,'N O R C E T ⢠M U S C U L O S K E L E T A L ⢠R E V I S I O N') c.setFont('Helvetica-Bold',24);c.setFillColor(ink);c.drawString(60,H-59,'SCAPULA BONE') c.setStrokeColor(accent);c.setLineWidth(1.8);c.line(60,H-65,215,H-65) c.setFont('Helvetica-Oblique',8.5);c.setFillColor(muted);c.drawString(60,H-79,'Posterior surface | High-yield filled notes') # scapula drawing, upper right cx,cy=474,H-120 c.setFillColor(white);c.setStrokeColor(border);c.setLineWidth(.7);c.circle(cx,cy,48,fill=1,stroke=1) c.setStrokeColor(ink);c.setLineWidth(1.2);c.setFillColor(HexColor('#F7F4FF')) p=c.beginPath();p.moveTo(cx-16,cy+27);p.curveTo(cx+8,cy+31,cx+30,cy+13,cx+23,cy-13);p.curveTo(cx+18,cy-33,cx-9,cy-35,cx-29,cy-16);p.curveTo(cx-41,cy-1,cx-37,cy+17,cx-16,cy+27);p.close();c.drawPath(p,fill=1,stroke=1) c.line(cx-31,cy+4,cx+15,cy+4);c.line(cx+15,cy+4,cx+32,cy+12);c.line(cx+17,cy+4,cx+29,cy-2) c.setFillColor(blue);c.circle(cx+23,cy-7,4.3,fill=1,stroke=1) c.setFillColor(ink);c.setFont('Helvetica',5.3);c.drawString(cx+16,cy+21,'Acromion');c.drawString(cx+26,cy+1,'Coracoid');c.drawString(cx+27,cy-15,'Glenoid') # function def box(x,ytop,w,h,fill,num,title,body,emphasis=None): y=ytop-h c.setFillColor(fill);c.setStrokeColor(border);c.setLineWidth(.55);c.roundRect(x,y,w,h,8,fill=1,stroke=1) c.setFillColor(accent);c.setFont('Helvetica-Bold',8);c.drawString(x+10,ytop-15,num) c.setFillColor(ink);c.setFont('Helvetica-Bold',9.2);c.drawString(x+30,ytop-15,title.upper()) c.setStrokeColor(HexColor('#D8DEE8'));c.setLineWidth(.45);c.line(x+10,ytop-21,x+w-10,ytop-21) text=c.beginText(x+11,ytop-33);text.setFont('Helvetica',7.45);text.setFillColor(ink);text.setLeading(9.6) for line in body: text.textLine(line) c.drawText(text) if emphasis: c.setFillColor(white);c.setStrokeColor(HexColor('#C7BEDF'));c.setLineWidth(.4);c.roundRect(x+10,y+8,w-20,16,4,fill=1,stroke=1) c.setFillColor(accent);c.setFont('Helvetica-Bold',7.1);c.drawCentredString(x+w/2,y+13,emphasis) left=60;gap=10;cw=(W-120-gap)/2;right=left+cw+gap # row positions (top, h) box(left,H-99,cw,102,blue,'01','Basic information',[ '⢠Scapula is a paired bone of the appendicular skeleton.', '⢠It is a flat, triangular bone, also called the wing bone.', '⢠For posterior identification: scapular spine is visible.', '⢠The glenoid cavity faces laterally.' ],'SCAPULA = WING BONE = TRIANGULAR') box(right,H-99,cw,102,lavender,'02','Processes',[ '⢠Two important processes are acromion and coracoid.', '⢠Acromion is the lateral continuation of scapular spine.', '⢠It articulates with clavicle to form the AC joint.', '⢠Coracoid is an anterior hook-like projection.' ],'A + C = 2 PROCESSES') box(left,H-211,cw,102,peach,'03','Glenoid cavity',[ '⢠A shallow, pear-shaped articular surface on lateral angle.', '⢠It receives the head of humerus.', '⢠Head of humerus + glenoid cavity = glenohumeral joint.', '⢠Glenoid labrum deepens the shallow socket.' ],'HUMERAL HEAD FITS INTO GLENOID') box(right,H-211,cw,102,mint,'04','Shoulder joint',[ '⢠Glenohumeral joint is a synovial ball-and-socket joint.', '⢠Movements: flexion, extension, abduction, adduction,', ' medial rotation, lateral rotation and circumduction.', '⢠Very mobile joint, therefore relatively unstable.' ],'MOST MOBILE MAJOR JOINT') box(left,H-323,cw,107,lavender,'05','Dislocation & subluxation',[ '⢠Dislocation: complete loss of normal articular contact.', '⢠Subluxation: partial loss of articular contact.', '⢠Shoulder dislocation is commonly anterior.', '⢠Assess pain, pulses, sensation and motor function.' ],'DISLOCATION = COMPLETE | SUBLUXATION = PARTIAL') box(right,H-323,cw,107,blue,'06','Frozen shoulder',[ '⢠Correct term: adhesive capsulitis (frozen shoulder).', '⢠Painful stiffness with reduced active AND passive motion.', '⢠Classically, external rotation is markedly restricted.', '⢠Pendulum (Codman) exercise may be used in rehabilitation.' ],'FROZEN SHOULDER = PAIN + STIFFNESS') # bottom exam trap and blank recall x=left;top=H-441;w=W-120;h=123;y=top-h c.setFillColor(peach);c.setStrokeColor(border);c.roundRect(x,y,w,h,8,fill=1,stroke=1) c.setFillColor(ink);c.setFont('Helvetica-Bold',10);c.drawString(x+11,top-17,'07 CODMAN: DO NOT CONFUSE') c.setStrokeColor(HexColor('#D8DEE8'));c.line(x+11,top-23,x+w-11,top-23) # two column cards cardw=(w-33)/2 for xx,head,lines,col in [ (x+11,'CODMAN EXERCISE',['⢠Pendulum exercise used for shoulder rehabilitation.','⢠It is associated with shoulder conditions such as',' painful stiffness / frozen shoulder rehabilitation.'],blue), (x+22+cardw,'CODMAN TRIANGLE',['⢠A triangular periosteal elevation seen on X-ray.','⢠Classically associated with osteosarcoma.','⢠This is an imaging sign, not an exercise.'],lavender)]: c.setFillColor(white);c.setStrokeColor(HexColor('#D5C9E9'));c.roundRect(xx,y+44,cardw,43,5,fill=1,stroke=1) c.setFillColor(accent);c.setFont('Helvetica-Bold',7.6);c.drawString(xx+8,y+76,head) t=c.beginText(xx+8,y+66);t.setFont('Helvetica',6.9);t.setLeading(8.2);t.setFillColor(ink) for li in lines:t.textLine(li) c.drawText(t) # recall strip c.setFillColor(HexColor('#FFF9F5'));c.setStrokeColor(HexColor('#E5CBBE'));c.roundRect(x+11,y+10,w-22,24,5,fill=1,stroke=1) c.setFillColor(red);c.setFont('Helvetica-Bold',7.7);c.drawString(x+19,y+24,'NORCET EXAM RECALL:') c.setFillColor(ink);c.setFont('Helvetica',7.5);c.drawString(x+117,y+24,'Glenoid cavity receives humeral head | Acromion + clavicle = AC joint | Codman triangle = osteosarcoma') # footer c.setFont('Helvetica-Oblique',7);c.setFillColor(muted);c.drawString(60,45,'Tip: Read each highlighted strip aloud three times before attempting MCQs.') c.drawRightString(W-60,45,'Scapula ⢠NORCET notes') c.save() print(out) PY python - <<'PY' from pypdf import PdfReader p='/tmp/workspace/scapula-notes-pdf/output/Scapula_NORCET_Filled_Notes.pdf' r=PdfReader(p) text=r.pages[0].extract_text() assert len(r.pages)==1 and 'SCAPULA BONE' in text and 'CODMAN' in text print('Verified:', len(r.pages), 'page; chars=',len(text)) PY
Scapula NORCET Filled Notes
PDF Document Ā· PDF