Saturday, January 25, 2020

The Existing System For Payslip Generation

The Existing System For Payslip Generation The purpose of the proposed project is to automate the Payslip generation process which replaces the traditional system of Payslip generation that used to print the employee salary details onto a paper. This project includes a single user who is authorized to initiate the application. The privileges are given only to the individual in a department who is responsible for generating the PaySlips for the employees. The application takes in the Excel Spreadsheet as input and generates an encrypted PDF PaySlip for each employee. This PDF PaySlip is mailed to the respective employee by using their mail-id which is provided in the Excel sheet. This application generates PaySlips of each employee every month. The PaySlip spreadsheet is uploaded to the system. The application uses an excel parser to read this spreadsheet. The excel parser parses the excel sheet in a row-wise fashion and generates an xml string for each row. This xml string contains the salary data of each employee. The salary data is converted into a password-protected PDF document as per a pre-defined template. These salary statements (in PDF) are emailed to respective users. The email process is logged. 1.2 Existing System: The existing System for PaySlip generation includes manual entry of the pay details of all the employees in an excel sheet and converting them to word document. Each row from the excel sheet is taken and then converted into the word document. This word document contains the Pay details of the employee. This document is printed on to a paper and then distributed to all the employees. The Existing System requires manual effort in converting the excel sheet data into the word document. The word document which contains the salary details should be generated for all the employees which in turn delays the whole process of distributing the payslips. As the paper is used in distributing the payslips this even includes the wastage of paper. This is till the part of generation of pyslips itself. When talking about distribution each and every paslip has to be signed by the authority, stamped and then folded which is placed in the envelope.this has to be distributed to all the employees near the desk has to take an acknowledgement that the employee has received by signing on paper. If the employee is not at the desk or out of station then distribution has to be postponed for that employee till he is available. That is he cant check it immediately after its been issued. Making it remotely accessible is also another aspect of it. 1.3 Proposed System: The proposed System for generating the PaySlips is a Web based Automated System for generation and distribution of PaySlips. Proposed System is efficient enough as it includes Less Manual effort. Manual effort is needed in only logging into the application and uploading the appropriate excel sheet into the application. Just a click on the upload button is sufficient, then the application itself will generate the payslips and distribute them to the respective employees mailid. Optimal performance of the application is achieved as delay is reduced in generation of Payslips with the existing system. Paper conservation is achieved, as the PaySlips are sent to the employees through mails, This makes the payslip remotely accessible 2.1 Functional Requirements Modules: Authentication/Authorization Upload File Excel Parser PDF Generation Email Module Description: Authentication/Authorization Module: This application is used to generate payslips of the employees for every month. Payslips, that depict all the salary details, is very confidential and hence this work should be carried out by an authorized person. For this purpose the user is presented with a login and is granted access to the application only after supplying a valid username and password. This needs database connectivity that stores all the details of the users who can use the application with their password. This module is implemented using Struts. As this partitions the presentation and implementation the login UI is built using Java server pages. When the user submits the user name and password the servlet gets invoked handling the process that connects to the database, verifies and accordingly an action is taken that forwards to another UI. Upload File: This module uploads the Excel spread sheet into the application in which details of all the employees are present with the present months salary details. The details of the employee includes the name, empid, designation etc .The Excel spread sheet that is needed to be uploaded should be in a specified format i.e., all the details should be in the same chronological order according to the specifications. The uploaded spread sheet will not be saved any where as the data in the Excel sheet is very confidential. This module is implemented using Struts. The File Upload UI is built using Java server pages. When the user uploads an Excel file a servlet gets invoked handling the process that directs an action. Excel Parser: This module takes the uploaded excel sheet as input and parses it in a row wise fashion, organizes the data in xml format For this a special software tool is used In this module we also retrieve the employee-id, mail-id and month for which the payslip is generated. The software tool used for parsing the Excel document is POI. This needs a POI.jar added in the library where some predefined methods are defined. The POI consists of APIs for manipulating various file formats based upon Microsofts OLE 2 Compound Document format, and Office OpenXML format, using pure Java. In short, you can read and write MS Excel files using Java. In addition, you can read and write MS Word and MS PowerPoint files using Java. POI is your Java Excel solution (for Excel 97-2007). However, we have a complete API for porting other OLE 2 Compound Document formats and welcome others to participate. OLE 2 Compound Document Format based files include most Microsoft Office files such as XLS and DOC as well as MFC serialization API based file formats. Office OpenXML Format based files include the new (2007+) xml based file formats, including Microsoft office files such as XLSX, DOCX and PPTX. PDF Generation: This module creates a PDF file per employee based on pre-defined template and a randomly generated Password is used to encrypt the PDF file. This password is used by the employees to retrieve the PaySlips. The template is designed using XSL independently and values are taken from the Excel and filled into PDF using java. The PDF is encrypted using a random generated password and the password is attached to the mail. The encrypted PDF document is mailed to the employee. The software tool used for generating a PDF document is XSL-FO. XSL-FO is a language for formatting XML data . XSL-FO stands for Extensible Stylesheet Language Formatting Objects . XSL-FO is a W3C Recommendation . XSL-FO is now formally named XSL . XSL-FO is an XML-based markup language describing the formatting of XML data for output to screen, paper or other media. Styling is both about transforming and formatting information. When the World Wide Web Consortium (W3C) made their first XSL Working Draft, it contained the language syntax for both transforming and formatting XML documents. Later, the XSL Working Group at W3C split the original draft into separate Recommendations. XSLT, a language for transforming XML documents . XSL or XSL-FO, a language for formatting XML documents. XPath, a language for navigating through elements and attributes in XML documents. This is more advantageous because this seperates the presentation or template of the PDF and the implementation how the data is filled in. Email Module: This Module emails the Payslips (Password protected PDF files) to the respective employee by using their mail id. The mailing details are saved in a batch log with the time and date at which the mail is sent to the employee for verification. This module sets the mail attributes like the subject, from_address, to_address and message body. Also a partial random generated password is sent in the mails which need to be personalized by the employee. This module also inserts values into the email log with the details of mailing. The Protocol used for mailing the PDF document to a particular employee is SMTP. The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications.This is binded with Simple Mail Transfer Protocol for mailing. 2.2 Non-Functional Requirements Accessibility This application is easily accessible by the user who is authorized to use the system for generating PaySlips every month. Performance This system can generate PaySlips for any number of employees considering the same speed. Reliability This system is consistent and performs required functions under stated conditions. Security Unauthorized access to the system and its data is not allowed. The person who wants to access the system is authenticated against a username and password. The PaySlip mailed to the employee is also password protected. This ensures unauthorized access of the PaySlip. Usability This system enhances usability by incorporating well structured user interfaces, end-user interactions, informative error messages etc. 2.3 System Requirement Specification: Software Requirements: Language: Java/J2EE Operating system: Win 2000/XP or higher Web Server: Apache Tomcat Server Excel Parsers: POI(Poor Obfuscation Implementation) PDF Generator Tools: XSL-FO(Extensible Style sheet Language-Formatting Object) Back End: MySQL Database Hardware Requirements: Processor: P4 or higher RAM: 1 GB or higher Hard disk: 10 GB 3.1 Technical Architecture A Technical Architecture breaks down operational (business) processes into functional components and capabilities. It describes the structure and behaviour of the technology infrastructure of an enterprise, solution or system. The following diagram depicts functional components of the application. Browser Web Container (Tomcat) MySQL PaySlip Generation System The web container in detail handles the following operations as depicted in the following diagram As the web container receives the request from the browser it invokes the parser functionality and does the excel parsing row-wise and generates an xml String. The string data is used in generating the PDF. These PDFs which are generated are mailed to the respective employees by the mailer component. The entire email process is logged in a file. Once the application is deployed in the server we can access it locally or from remote using public IP or giving some domain name to the application. 3.2 Software Architecture Software architecture alludes to the overall structure of the software and the ways in which the structure provides conceptual integrity for a system. In the simplest form software architecture is the hierarchical structure of program components (modules), the manner in which these components interact and structure of data that are used by these components. The software architecture of a program or computing system is the structure or structures of the system, which comprise software components, the externally visible properties of those components, and the relationships between them. 4.1 Design Objectives: Design is the first step in the development phase of a process or system in sufficient details to permit its physical realization. Without design specifications, the design will be unguided. It is difficult to know when the process is complete and to measure the progress. Design is used to plan what information needs to be displayed and entered and how it relates to other information. Design is the only way to translate the requirements into a finished system. A well designed program will be easier to implement, distribute and maintain. 4.2 UML Diagrams 4.2.1 Usecase Diagram: 4.2.2 Class Diagram: 4.2.3 Sequence Diagram: 4.2.4 Collaboration Diagram: 4.2.5 Activity Diagram: 4.3 Data Flow Diagrams: Level 1 4.4 Database Design: 4.4.1 E-R Diagrams 4.4.2 Database Tables: Database Tables: 5.1 Pseudo Code Login Module Login form: public class LoginForm extends ActionForm { /**Declare two string variables that holds the username and password values entered in the form Define getter and setter methods **/ } Login Action: public class LoginAction extends Action { Public ActionForward execute(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { /**Create an object to the login form Retrieve the username and password entered in the form and save in some variables Create an object for the implementation and call the function validate() with the retrieved username and password as arguments Savetoken() Depending on its return value forward the action to success page or failure page**/ } Login Interface: public interface LoginDAO { /**Declare th method validate(string , string)**/ } Interface Implementation: public class LoginDAOimpl extends BaseDAO implements LoginDAO { Constructor() { } Validate () { /**Declare two string variables that holds the values of the username and password from he database Get the connection to the database using the predefined method in java Retrieve the username and password from the database using a SQL query(select) Compare both username, password from form and database Return a Boolean value according to the comparision**/ } } Login.jsp: CTE Pay Slip Generation System Employee Login function validateLogin(){ if(document.loginForm.username.value!=""&& document.loginForm.password.value!="") { return true; } else { alert("Please Enter UserName and Password."); return false;} } Login UserName : Password : Copyright  © 2009 Cambridge Technology Enterprises. All rights reserved. Upload File Module: Upload form: public class UploadForm extends ActionForm { /**Define a variable file of type file Also define the getter and setter methods **/ } Upload Action: public class StrutsUploadAction extends Action { public ActionForward execute ( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { /** If the token is valid then Create an object for upload form to retrieve parameters like contentType, fileName, fileSize. Create an object to interface to all the method parseExcel(file) Return success Else Return failure **/ Upload.jsp CTE Pay Slip Generation System Employee Login function isFileName() { var fileName = document.forms[0].theFile.value; // uploadform is the form name if (fileName =="") { alert("Please select a file"); return false; } Else { if(fileName.substr((fileName.length)-3,fileName.length) == "xls") { document.forms[0].action = "FileUpload.do"; document.forms[0].method = "post"; document.forms[0].submit(); return true;} Else { alert("Please Upload an Excel file"); return false; }}} File Upload value= > Select File Copyright  © 2009 Cambridge Technology Enterprises. All rights reserved. window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","licenseKey":"de6e6cfad9","applicationID":"221047987","transactionName":"bl0HMhMFDEYCWhJeWlcXMBQISwdGEFgfRBpYShEPAggHGxNRFg==","queueTime":0,"applicationTime":1,"atts":"QhoERFsfH0g=","errorBeacon":"bam.nr-data.net","agent":""} Upload interface: public interface PaySlipDAO { declare a method parseExcel() } /**Upload interface implementation(Excel Working and PDF Generation Modules **/ ) public class PaySlipDAOImpl extends BaseDAO implements PaySlipDAO { Constructor() { } public String parseExcel(String fileName) throws Exception { Define a String array str[]={sno,month,NoofDays,empid,empname,desg,Basic,HRA,à ¢Ã¢â€š ¬Ã‚ ¦Ãƒ ¢Ã¢â€š ¬Ã‚ ¦} That defines the sequence in which Excel file should be in. /**Define a string variable that holds the root tag declare an input stream and initialize it to null now define a new input stream and initialize it to file (Excel file) initialize POIFSFileSystem to inputstream define a new HSSFworkbook get the sheet count get the sheet with count zero iterate the rows if the sheet has rows then iterate the cells from that retrieve the 4th,2nd and 21st cell values. 4-mployeeid 2-month 21-Email id For every cell value append the opening tag using the string array**/ /**According to the cell value get the value Like Numeric Formula String After adding the value append the closing tag Like wise iterate till all the cells are completed At the end append the closing root tag With this we are ready with our xml string. Using this xml string as the argument make the call to the generatPDF() Return empids of employees for whom the mail is sent and to whom the mail is not sent with a # appended in between.**/ } PDF Generation Module: public int genPDF( HSSFCell empid, HSSFCell mailid, HSSFCell monthyear, String xmlStr ) /**Set the path of the base directory to the current directory Define a file in which we save the xslt file that is used in designing the payslip Also define a PDF file with parameters like where to save(current directory),with what name(employee-id) and with what extension(.pdf) Create new instances for fop factory and fo user agent Get the random generated password which is of six characters length Now define two random numbers and retrieve th characters at that ndex in the employee id Append these two characters to the random generated password Encrypt the pdf using method PDFEncryptionParams() and set the Boolean parameters like allow print, allowCopyContent, allowEditContent, allowEditAnnotations and also the keys to encrypt configure foUserAgent as desired. Setup output. Construct fop with desired output format Setup XSLT Setup input for XSLT transformation Resulting SAX events (the generated FO) must be piped through to FOP Start XSLT transformation and FOP processing**/ /**Call the sendmail method by creating its object Save the returnvalue in a variable If that is equal to one then save that email id as sentmailid and append all other of this kind in the Excel sheet to this**/ /**If thats is equal to zero save that email id as failedmailid and append all others of this kind in the Excel sheet to this After mail is sent save that in the log using the user defined method insertIntoEmailLog (mailid, monthYear,status)**/ } private void insertIntoEmailLog(HSSFCell mailid, String monthYear, int status) { /**Get the data base connection Insert into table the values of status,month nd the mailed**/ } public static String getPassword(int n) { /**Generate n random characters may it be alphabets(upper and lower),numbers and symbols Return a string of length n characters**/ } MailService Module: public class MailService { MailService (); { } /**Define the host, transport_protocol, authentication needed, debugging needed etc.**/ public int sendMail(String empId,String monthYear,String emailid,byte[] pdfBytes,String randompwd,int randomposition1,int randomposition2) { /**Set the parameters like frommail, tomail, subject, messagetext, content type etc Define a new mail session Declare a new MIMEmessage() for this mail session set the source to PDF bytes send that message as mail to the tomailid**/ } } Failure.jsp CTE Pay Slip Generation System Employee Login response.setHeader(Cache-Control,no-cache); //HTTP 1.1 response.setHeader(Pragma,no-cache); //HTTP 1.0 response.setDateHeader (Expires, 0); //prevents caching at the proxy server response.setHeader(Cache-Control,no-store); //HTTP 1.1 %> Invalid username or password Please Try Again Copyright  © 2009 Cambridge Technology Enterprises. All rights reserved. Uploadsuccess.jsp CTE Pay Slip Generation System Employee Login response.setHeader(Cache-Control,no-cache); //HTTP 1.1 response.setHeader(Pragma,no-cache); //HTTP 1.0 response.setDateHeader (Expires, 0); //prevents caching at the proxy server response.setHeader(Cache-Control,no-store); //HTTP 1.1 %> File Successfully Uploaded EMail sent to: String maildata = (String)request.getAttribute(emailEmpId); int splitCount= maildata.indexOf(#); String sentEmailIds=maildata.substring(0,splitCount); String failedEmailIds=maildata.substring(splitCount+1,maildata.length()); %> EMail failed to:

Friday, January 17, 2020

Life of Rabindra Nath Tagore Essay

Tagore’s international travels also sharpened his opinion that human divisions were shallow. During a May 1932 visit to a Bedouin encampment in the Iraqi desert, the tribal chief told him that â€Å"Our prophet has said that a true Muslim is he by whose words and deeds not the least of his brother-men may ever come to any harm †¦ † Tagore noted in his diary: â€Å"I was startled into recognizing in his words the voice of essential humanity. [1] In his last decade, Tagore compiled fifteen volumes of writings, including works of prose-poems such as Punashcha (1932), Shes Saptak (1935), and Patraput (1936). He also continued his experimentations by developing prose-songs and dance-dramas, including Chitrangada (1936), Shyama (1939), and Chandalika (1938). He also wrote the novels Dui Bon (1933), Malancha (1934), and Char Adhyay (1934). Tagore also took an interest in science in his last years, writing Visva-Parichay (a collection of essays) in 1937. He wrote on topics ranging from biology to physics, and astronomy; meanwhile, his poetry — containing extensive naturalism — underscored his respect for scientific laws. He also wove the process of science (including narratives of scientists) into many stories contained in such volumes as Se (1937), Tin Sangi (1940), and Galpasalpa (1941). [2] [edit]Illness of 1937-1941 Tagore’s last four years (1937–1941) were marked by chronic pain and two long periods of illness. These began when Tagore lost consciousness in late 1937; he remained comatose and near death for an extended period. This was followed three years later in late 1940 by a similar spell, from which he never recovered. The poetry Tagore wrote in these twilight years are distinctive for their preoccupation with death; these more profound and mystical experimentations allowed Tagore to be branded a â€Å"modern poet†. 3] After extended suffering,[4] Tagore died on August 7, 1941 (22 Shravan 1348) in an upstairs room of the Jorasanko mansion in which he was raised. [5] This date is still mourned in public functions held across the Bangla-speaking world. The last person to see Tagore alive was Amiya Kumar Sen (brother of Sukumar Sen, the first chief election commissioner); Tagore dictated his last poem to Sen, who wrote it down. Sen later donated the resulting draft to a museum in Kolkata.

Thursday, January 9, 2020

tupacs music Essays - 526 Words

MUSIC ANALYSIS: Changes by Tupac Shakure nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; For most people that listen to music, a song can be classified as simply a plethora of words constructed into verses in the midst of an appealing tune playing in the backdrop. But it is when an artist can take all of this and add even more to it to make it memorable and even sometimes controversial he or she is considered a great artist. Perhaps one of the most misunderstood rap, along with hip hop artist of the 20th century is the late Tupac Shakure. ... However, to his fans and critics, he was perceived as a political poet and a lyrical genius. Though I wasn’t supposed to, I have listened to Pac since I was a child...and Ill have to†¦show more content†¦That is a great aspect of Pac’s rapping style. Tupac has released around 15 albums and an uncountable amount of underground tracks. I have chosen to look at one of Tupac’s song that I think is the most concentrated on Black and White race relations in America. This song is called Changes, this song was released on his Greatest hits CD in 1998. In this song Tupac addresses this issue he begins the second verse with the lines; â€Å"And still I see no changes all I see is racist faces†¦.† (verse2). This verse is very powerful in that it addresses political racial issues, society’s justice system and how things in society are set up in a way that blacks will remain at the bottom of society and how that is accepted as the norm. He addresses in this verse the American presidency and how we aren’t ready to see a black man occupy the white house. Tupac says â€Å"we aint ready to see a black president†¦..huu† (verse2) I interpret this as him using sarcasm in that he laughs at the end and uses the term â€Å"we† when in all reality he knows that the majority of blacks in the U.S. are patiently waiting for that day. In his first verse Pac also addresses the law enforcement issues based on racial inequalities in our society. He addresses the fact that the life of and African American is notShow MoreRelatedProtest Music In Dear Mama By Tupac Shakur733 Words   |  3 PagesWhat is protest music? Well to me protest music is a song that talks about social change. The song dear mama by Tupac Shakur is a good example of a protest song. The song talks about how he was raised by his single mother while on welfare. It also talks about how him and his mother never really got along growing up and how poor he was doing in school. He was very thankful for his mama despite what they may have gone through. Listeners can gain insight into the song â€Å"Dear Mama† by Tupac Shaker by closelyRead MoreTupac Shakur - Turning Struggles Into Success1646 Words   |  7 PagesTupac Shakur – Turning Struggles into Success Violent lyrics, a bad-boy image, and a long criminal record are what attracted and connected millions of young adults to the now legendary rapper Tupac Shakur. Tupac was a man of contradictions; for example, his music degraded and also praised strong women. Tupac Shakur rapped about problems that inner-city black Americans could relate to, along with his legal and personal drama; you could not get away from Tupac in the 1990’s. From the womb to theRead MoreTupac: The Best Rapper Ever516 Words   |  3 Pagesname Tupac Amaru Shakur (2pac) you think of a rapper maybe a â€Å"Thug†. But Tupac just didn’t rap he was also a Poet. There is much more to his life than him rapping. Tupac positively affected society with his words in his songs and by singing. He was more than just a rapper. Tupac was born on June 16, 1971 to Afeni Shakur in New York City. His real name is Lesane Parish Crooks. Tupac was mainly raised by his mom, because his dad really didn’t have much to do with him when he was born. Tupac spentRead MoreTupac Amaru Shakur And Christopher Wallace1321 Words   |  6 Pages Tupac Amaru Shakur and Christopher Wallace also knows as â€Å"Biggie Smalls† are both male rappers who lived a pretty short but famous mid 90’s career in the music industry. Tupac and Biggie were able to escape the streets therefore, many people claim that it was the industry that killed them. Tupac and Biggie are both famously known for their rapping careers even though Tupac was more an activist and Biggie rapper. Tupac Amaru Shakur who was born Lesane Parish Cooks was an AmericanRead MoreTupac Shakur : Multi Platinum Selling Rapper And Rapper Shakur1550 Words   |  7 Pages Tupac Shakur Multi-Platinum selling rapper and actor Tupac Shakur was born on June 16, 1971 and died on September 13, 1996 at the young age of 25. His legacy lives on even 19 years past his death. He continues to be known as one of the best MCs (Master of Ceremonies) of all time. Tupac was born Lesane Parish Crooks, but his mother changed his name by the time he was two. Tupac was named after an Inca Emperor who fought against Spanish Settlers; Shakur was his step father’s last name (TheRead MoreTupac Shakur Is Still Alive1433 Words   |  6 PagesChris Zenone Tupac Shakur Is Still Alive On September 7, 1996, Tupac Amaru Shakur was riding in the passenger side of a black BMW driven by Marion Suge Knight, president of Death Row Records. Tupac and Suge had just finished watching Mike Tyson defeat Bruce Seldon at the MGM Grand in Las Vegas, Nevada. Tupac was standing up through the sunroof while the car was stopped at a traffic light. The Cadillac containing the gunmen passed an entourage of Tupacs allies, many of them bodyguards. FourRead MoreBiography on Tupac Shakur Essay1049 Words   |  5 PagesBiography on Tupac Shakur In much the same fashion that Kurt Cobain defined the alternative rock music scene, Tupac Shakur defined the hip-hop scene as we know it today. What made Tupac (also known as 2pac) so special was his enormous talent, his on-screen friendly looks, and the sense that he was real and talked the talk, while walking the walk. Since his death, theres been a deluge of speculation on who and why, and even if, but unfortunately still no concrete answers exist for any of theseRead More Suge Being Responsible for Tupacs Death and is Tupac Really Dead1282 Words   |  6 PagesSuge Being Responsible for Tupacs Death and is Tupac Really Dead The world has always been filled with certain unknowns and conspiracies that keep people debating between whether or not these unknowns are fact or fiction. History has proved that there are several occurrences that have sprouted questions within the mind. Did we really land on the moon in 1969? Did an alien spacecraft crash in New Mexico? What is going on at Area 51? There is one conspiracy that continually demands answers, especiallyRead MoreTupac as an American Icon Essay760 Words   |  4 PagesTupac Shakur Tupac was a leading American icon because he crossed cultural, racial, and economic barriers. From the child in the suburb to the former vice president of the United States, everyone recognized Tupacs iconic status. He had many traits that would make him stand out above the rest, and that is what made him the best. His traits are routed in his name because he was named after an Inca Indian revolutionary Tupac Amaru, which means shining serpent, and Shakur is Arabic for thankfulRead MoreMusic Is Too Powerful Craftsman Open The Audience s Mind It Is By Bruce Hornsby1107 Words   |  5 Pagesmonies, rhythms, and rhymes that set the air. Listening to music is extremely powerful craftsman open the audience s eyes to a wide range of things that is going on. There is a message in most of the tunes, however relying upon who the craftsman is deciding how succinct the message might be. The craftsman Tupac Shakur has an assortment of tunes and is an incredible decision of music to listen to . He has a message in every melody which he makes the message sharp for the audience. In the melody Changes

Wednesday, January 1, 2020

Lgbt Community A New Culture Of Individuals - 943 Words

Faces of American have changed, a new culture of individuals who identify as the LGBT community. LGBT stands for lesbian, bisexual, transgender and questioning. This new culture of individuals are free spirited individuals who want to be accepted as an Americans and exercise their constitutional rights. Not only is the world not acceptant of LGBT community most often the first sign of discrimination against these individuals start at home. Many cultures, races, and gender have battled it out on American soil its not going to be an easy fight for this new group of individuals. However, American is a melting pot and with time and countless protest the would will one day be acceptance of the LGBT community. With most of the world not able to look past this â€Å"Gay† issue most laws, polices, usually isn t in favor of LGBT community. According to National Coalition for the homeless (2001), 20% of the homeless youth are from the LGBT community in comparison to the general youth p opulation is 10% LGBT. Youth homeless isn t unheard of but with many youth not being accepted makes for a difficult time in their lives. The LGBT community can experience triumphs such as mental health issues, sexual abuse, and suicide. The fact that the gay community lack education on how to practice safe sex, sexual transmitted disease (STD) has had it’s impact. According to National coalition for the homeless(2001), While homeless youth typically experience severe family conflict as the primary reasonShow MoreRelatedThe Rise Of Gay Culture1004 Words   |  5 Pages2010 December 6, 2015 The Rise of Gay Culture The gay culture, which is also referred to as the LGBTQI culture by some people, is a culture that is seen to be shared by lesbian, gay, bisexual, transgender, questioning, and intersex people and thus the abbreviation LGBTQI. People also hear it being referred to as the queer culture meant to indicate that those who subscribe to this culture are queer. The culture involves works by famous members of the culture, understanding of the social movementsRead MoreMental Health And The Lgbt Community1665 Words   |  7 Pagesstudies on mental health in the LGBT community. With more people being open about their sexual orientation, the LGBT community has become a bigger target for those individuals who create difference between groups to justify discrimination of a particular group. The discrimination towards the LGBT community has caused problems for individuals in the community, mental health being among the biggest problem. Studies have shown that the discrimination of LGBT individuals can affect mental health. NotRead MoreLgbt Community s Endeavor For Equality998 Words   |  4 PagesMovement to the modern day Human Rights Campaign, the LGBT community’s endeavor for equality was granted a long-time goal on June 26, 2015 when the Supreme Court ruled same-sex marriage a nationwide right. As LGBT movements have gained popularity in the fight for equal rights, LGBT culture has struggled to find a place in mainstream media. Within the community itself, there is an underrepresentation of LGBT individuals. In particular, transgender individuals are underrepresented and more negatively portrayedRead MoreAnalysis Of The Novel Bright Lines Essay1522 Words   |  7 Pagesnovel Bright Lines tells the story of a Muslim family in the heart of New York and their trials and tribulations as they face the assimilation of American culture. Throughout the story, the young characters, Maya, El, and Charu are t he most affected by this assimilation because they clash with what their elders think is best. El is a particularly interesting character because he is the most affected by the division of the two cultures he was raised in. The audience often sees El confused about the wayRead MoreLgbt Subculture Of The Lgbt Movement1390 Words   |  6 PagesHow does this picture represent LGBT subculture in order to express the stereotypes they have faced, how far the movement has come in America, and how they continue to support the movement? The LGBT movement has been fighting for rights over the last century across the world. Members of this community have come a long way from where they started. However, stereotypes and ridicule are still pinned against these individuals that form the minority subculture of the LGBT movement. Despite the prejudiceRead MoreGay And High School Students1235 Words   |  5 Pagesbisexual and transgender (LGBT) students are more likely to be open about their sexua lities and identities today than ever before. Middle school and high school students need to be fully aware of different identities that exist in the modern world; they are going to encounter people who identify as LGBT, and need to be able to see past the mainstream stereotypes that have been placed on the community. Therefore, educators should teach issues and practices related to the LGBT community as a part of theirRead MoreThe Cultural Considerations Involved With Counseling The Lgbt Community1020 Words   |  5 Pages Counseling the LGBT Community Yvette Morales University of the Incarnate Word August 2014 Abstract The purpose of this paper is to explore various considerations when counseling members of the lesbian, bisexual, gay and transgender community (LGBT). When counseling LGBT members, the psychology professional must be aware of various factors that may influence effective treatment. For instance, the historical treatment of the LGBT community by the mental health profession is importantRead MoreAnalysis Of The Film Paris Is Burning 1628 Words   |  7 Pagesbetween them and black members of the LGBT community. From the anecdotes given by the individuals in the film, Black America was certainly not welcoming to black lgbt people. In order to survive and cope with their alienation from the black community, queer black men had created safe spaces where they could really live and be their authentic selves without having to face rejection and/or risking their personal safety. From these safe spaces emerged a new culture. â€Å"Paris Is Burning† explores the mainRead MoreHomosexuality As A Mental Disorder Essay1550 Words   |  7 Pageshomosexuality was viewed as a mental disorder that required treatment. Both counseling and aversion therapy were exercised in attempts to â€Å"cure† individuals of their sexuality. The brutal process consisted of shock therapies, lobotomies, castrations, and drugs (Scot, 2013). A device that was commonly used was the Farrall Instrument, which functioned by showing an individual of the same sex and delivering a shock until a button was pressed t o deliver another slide. The slides of the opposite sex did not deliverRead MoreThe Transgender Side Of The Lgbt Movement1170 Words   |  5 Pagesmovements in the past year, 2015, has been the lesbian, gay, bisexual, and transgender (LGBT) movement, the advocacy for equal rights between heterosexual and LGBT individuals. In this year, the LGBT movement made many crucial achievements. Starting off the year, in February of 2015, the Human Rights Campaign began a movement named the People’s Brief. The purpose of this campaign was to gain nationwide support for the LGBT movement. The group ended up gaining over 200,000 signatures which was many more