Skip to main content

Drug and Alcohol Prevention


This article is based on the speech and the presentation about “Drug and Alcohol Prevention” was delivered by Mr. Pubudu Sumanasekara, who is executive director of Alcohol and Drug center (ADIC) of Sri Lanka. He made this valuable speech at the UCSC auditorium, under Enhancement program for the 1st year student of UCSC undergraduate program on 7th November 2018.
As I understood, this lecture was mainly based on Drugs, alcohol and their influence on life. This speech has contained more facts, advice and social issues and science beyond the drugs through his experience.
Drug menace is a serious problem among the youth of the world. Unfortunately, so many young generations of the present world have addicted to using drugs. It is comprised young generation of Sri Lanka. This leads to many social problems. The way reason is that they get addicted the drugs because of the parent’s default. Because they don’t attend to children, they refer to a fault. As a result, children campaign according to their self-will. Another reason is that bad child is associated. In addition, the young generation drops out of their education addition to drugs. Further, they err at a very lower age this matter. As a lack of education, they have not seen the correct path to make their living.
Actually, in Sri Lanka, there are 20000 premature people who claim the dead because of drugs and alcohol. So, drug companies have to get addicted to the young generation to drugs continuously. They have launched many secret programs to get you into the drugs.     
If it is a ziggurat, it will definitely make you tear, cough if it is heroin, the person who smokes has to face a more uncomfortable situation that I can’t describe. If someone feels so uncomfortable the first time his body will make some adjustments to contain the situation. Then most probably he will think that he can manage this so well. He won’t think about that unpleasantness, he uses some snacks and sandy with alcohol.
Actually, the thing is most people make their privilege or a social excuse after getting some drugs. They have “Don’t hit him because he is drunk ” as the excuse of abusing others after drunk. Actually, they are do not abuse others or behave badly because they are drunk. They have taken drugs because they have to behave like that, which for their social excuse. Doing that makes them cheater too. Because they are not because of a chemical effect, this is all about that social excuse. It means they actually know what they are doing.
While taking drugs for a long time makes you addictive to that. You will miss enjoying other things after starting enjoying drugs and alcohol. And why people do not enjoy alcohol/tobacco/other drugs anytime? They set it for the weekend for the evening, for party times. It is because they do not enjoy drugs. It is because that they set the environment for the drugs and take drugs to enjoy that environment.
When it comes to effect on health the mental process of drug addicts is disturbed mainly and they become unconscious. As a  result of this, they can not conduct their life. On the other hand, when drugs use, falls down kidney problems. Therefore, they get sick undiscoverable diseases. Drugs are weakened their bodies. Drug users commit very harmfully, dangerous severe anti-social crimes like murders, rapes and the like.
Mr. Sumanasekara made us understood the science beyond alcohol/tobacco/other drugs. It was very helpful for us to make our lives happier. Actually, we understood that drugs do not stimulate, it is depressant. That will harm our health and personality.

Comments

Popular posts from this blog

Java Introduction

Welcome to my blog. Here, I think to write a very important article about the java programming language. Java language is a very important popular programming language for computer science students and also that is a platform. Java is used to develop web applications, mobile applications, games, and much more. It is developed by Sun Microsystem in 1995. A Java code is executed by Java Virtual Machine(JVM). JVM  is an abstract computing machine virtual machine interface. It is written by C programming language and it is operating system dependent. Java virtual machine is the main component in java language. we called java is a platform-independent and reason is that, Java virtual machine.  when we compile a java source file(java program) a Byte code is generated. This byte code can be used to run on any platform. Java Features and Benefits Java is an object-oriented language  Platform independent language It is open-source and free  Memory management Huge ...

OOP Concepts

What is OOP??? 👇 OOP stands for Object-Oriented Programming and that concept is a programming paradigm based on the concept of "Objects" that contain data and methods. The main purpose of object-oriented programming is to increase the flexibility and maintainability of programs. Modularity for easier troubleshooting, reuse of code, flexibility, and effective problem solving are advantages of the OOP concept.   Now, let us consider what an object is... An object is anything that has state and behavior. For example, a car, a dog, a person, etc. At runtime, when the Java Virtual Machine (JVM) encounters the new keyword, it will use the appropriate class to make an object that is an instance of that class. Consider the car object it has state color, model, brand, weight, and as behaviors we can consider a break, accelerate, gear change. Classes A class can be defined as a template/ blueprint describes the behavior/state that the object of its type support. On th...

Stack data structure

Welcome to  imalshablog.blogspot.com . In my first blog, I decided to write about the stack data structure. It is a very easy and basic data structure as well as it is a linear data structure. A stack is a list of elements in which an element may be inserted or deleted only at one end, called the top of the stack. The insertion or deletion is happened according to the  LIFO principle.  LIFO stands for Last-In-First-Out. Mainly, there are five basic operations have in the stack. Push -: This operation is used for inserting an element in the stack.        Before happening push operation, check whether the stack is full. if the stack is full, display the error message and exit. if the stack is not full, increment top to point next empty space and inserts the next element to stack top.  Push Algorithm       IF top = max - 1           print overflow      END IF ...