Notes, abstracts, papers, exams and problems of Baccalaureate

Sort by
Subject
Level

Passionate Nursing Student Seeking Neuro Floor Position

Classified in Medicine & Health

Written at on English with a size of 2.64 KB.

Tell me about you:

My name is Rachelle. I'm currently at University of Memphis Lambuth studying in my second semester of nursing. I am Social Chair for the Student Nurses' Association. I've always been fascinated in the human brain and why it works the way it does, and what happens when it isn't working. Following taking care of my diabetic grandfather, I always knew I wanted to be a nurse, and I have overcome many obstacles to get here. When I earn my degree, I want to be working on this floor. If I should summarize myself, I would say I am a leader, responsible, compassionate and very detail-oriented, though sometimes I can be too hard on myself to strive for perfection. I switched from the law field to healthcare because I want a career with... Continue reading "Passionate Nursing Student Seeking Neuro Floor Position" »

The Road Not Taken

Classified in Physics

Written at on English with a size of 1.11 KB.

Robert Frost - 1874-1963

Two roads diverged in a yellow wood. And sorry I could not travel both, And be one traveler, long I stood, and looked down one as far as I could, to where it bent in the undergrowth.

I took the other, as just as fair, and having perhaps the better claim, because it was grassy and wanted wear, though as for that the passing there, had worn them really about the same.

And both that morning equally lay, in leaves no step had trodden black, oh I kept the first for another day, yet knowing how way leads on to way, I doubted if I should ever come back.

I shall be telling this with a sigh, somewhere ages and ages hence, two roads diverged in a wood, and I, I took the one less traveled by, and that has made all the difference.

Setting Up a Backend Project with Node.js

Classified in Computers

Written at on English with a size of 5.14 KB.

To start a backend project.

- npm init

Then make a file with whatever entry point you named it as, for example, server.js

Once package.json is created:

  • npm i <package>
  • connect-mongo (store sessions in DB)
  • dotenv (for config files, environment variables)
  • express
  • mongoose
  • express-sessions (sessions and cookies)
  • method-override (to use PUT, UPDATE, DELETE requests)
  • moments (date formatting)
  • morgan (logging)
  • passport (authentication)

npm i -D <package>

  • nodemon (Update every file change instantly without having to restart the server)
  • cross-env (To update environment variables in script definition itself)

After installing the dependencies, edit the scripts in package.json

"start": "cross-env NODE_ENV=production node server.js",
"dev": "cross-env NODE_ENV=
... Continue reading "Setting Up a Backend Project with Node.js" »

Doubly Linked List Implementation in C

Classified in Computers

Written at on English with a size of 4.75 KB.

Types definition


#include <stdbool.h>


#include <stdlib.h>


Struct Definition


typedef int tItemL;
typedef struct tNode* tPosL; //Ptr to tNode
struct tNode {
tItemL data;
tPosL next;
tPosL prev;
};
typedef tPosL tList;


Prototypes


void createEmptyList(tList *L);
bool createNode(tPosL* p);
bool insertItem(tItemL d, tPosL p, tList *L);
void updateItem(tItemL d, tPosL p, tList* L);
tPosL findItem(tItemL d,tList L);
bool isEmptyList(tList L);
tItemL getItem(tPosL p, tList L);
tPosL first(tList L);
tPosL last(tList L);
tPosL previous(tPosL p, tList L);
tPosL next(tPosL p,tList L);
void deleteAtPosition(tPosL p , tList *L);
void deleteList(tList *L);


Function Definitions


#include "doubly_linked_list.h"
bool isEmptyList(tList L) { return (L == NULL); }
void... Continue reading "Doubly Linked List Implementation in C" »

Vocabulary and Grammar Practice for English Learners

Classified in Teaching & Education

Written at on English with a size of 4.33 KB.

Passionate, ambitious, loyal, optimistic, loyal, ambitious, television, influential, pessimistic.

At risk, creature, endangered, extinct, hunt, protected, rare, species, environment, habitat natural survive, dangerous, attack, vulnerable, fight, scared, danger, provided, tiger, mattress, hut, forest, wounded, shot, killed, boots, endangered, extinct, protected, desert, mountain, harmless, pepper spray, punch, seal, vertical, panic, unless, provided, survive, careful, drag, impressive, work out, record, take revenge, killed, provided, wounded.

Vocab- Affect, as a result, cause, effect, influence, is caused by, lead, result.

Arduous, strict, demanding, rigorous, testing, tricky, punishing, tough, gruelling, straightforward, awkward, struggle, stretch,... Continue reading "Vocabulary and Grammar Practice for English Learners" »

Understanding Canadian Law: Substantive, Procedural, Public, and Private

Classified in Law & Jurisprudence

Written at on English with a size of 130.22 KB.

Substantive and Procedural Law in Canada

Substantive Law

Substantive law encompasses the rights and rules that govern behavior and set limits on conduct.

Procedural Law

Procedural law determines how substantive laws will be enforced.

Public and Private Law

Public Law

Public law includes constitutional law and determines how the country is governed. It also regulates our relationship with the government.

Private Law

Private law governs personal, social, and business relationships.

Canada's Constitution

The Constitution Act, 1982, formerly known as the British North America Act, created Canada in 1867. It serves as the "rulebook" that the government must follow. It includes the Charter of Rights and Freedoms.

Canada's Constitution has three elements:

  • Statutes
  • Case
... Continue reading "Understanding Canadian Law: Substantive, Procedural, Public, and Private" »

Anatomy of the Eye: Retina, Vitreous Body, Accommodation, and Hemidecussation

Classified in Physics

Written at on English with a size of 643 bytes.

Anatomy of the Eye

The retina of the eye, lining the posterior two-thirds of the eyeball, is located within the inner tunic.

The jelly-like substance located between the lens and retina is the vitreous body.

True or false: Accommodation refers to the change in lens thickness in order to provide fine focus of an image. The answer is true.

Functions of the Vitreous Body:

  • Maintains shape of eyeball
  • Refracts rays of light
  • Keeps retina smoothly pressed against inner surface of eye chamber

Hemidecussation occurs within the visual projection pathway at the optic chiasm.

Review of Toys R Us, Cuerpo Norte Gym, and Parque del Retiro in Madrid

Classified in English

Written at on English with a size of 755 bytes.

Review of Toys R Us

On May 9th I bought a remote control car as a gift for my brother, but it was made of plastic, without a remote control. I made a complaint and hope to get it resolved. Thank you for your service.

Cuerpo Norte Gym

It's a very special gym, familiar and welcoming. It's a great place to relax and work out. I highly recommend it to everyone.

Parque del Retiro in Madrid

The Parque del Retiro is a historic garden and public park located in Madrid, Spain. It's a large green space with architectural figures and gardens. It's a great place to visit with children and enjoy the views and different activities.

English Grammar Cheat Sheet: Conditionals, Passive Voice, and More

Classified in English

Written at on English with a size of 7.22 KB.

Conditionals

0 Conditional

if + Present Simple + Present Simple

Situations that are always true or happen repeatedly.

1st Conditional

if + Present Simple + will (verb)

Describes what happens if a condition is met.

2nd Conditional

if + Past Simple + would (verb)

Imaginary future situations, hypothetical cases, unlikely events.

3rd Conditional

If + Past Perfect, would have + Past Participle

Impossible conditions as they refer to the past.

The Passive Voice

Present Simple: The waiter serves the customers (A) --> The customers are served by the waiter (P)

Present Continuous: ...is serving... --> ...are being served...

Past Simple: ...served... --> ...were served...

Past Continuous: ...was serving... --> ...were being served...

Present Perfect Simple:

... Continue reading "English Grammar Cheat Sheet: Conditionals, Passive Voice, and More" »

The Policy of Appeasement and the Road to World War II

Classified in History

Written at on English with a size of 4.32 KB.

THE POLICY OF APPEASEMENT

Chamberlain returns from Munich and says he has saved world peace for a long time, waving a paper in which Hitler promised he didn't have more territorial demands in Czechoslovakia. A year later, Germany invades Czechoslovakia.

What is Appeasement?

A diplomatic policy of making political or material concessions to an aggressive power to avoid conflict. It was a total failure. It is applied to the foreign policy of the UK governments in the 1930s, towards the Nazis and Fascists in Italy.

Failure (future perspective):

Why appease Hitler?

  • The League of Nations abandoned Czechoslovakia
  • Britain is not prepared for war with the Luftwaffe
  • Munich was followed by more Nazi demands and attacks
  • The Czechs had 36 divisions ready to fight
... Continue reading "The Policy of Appeasement and the Road to World War II" »