Sunday, May 16, 2021

Python (1) (virtualenv and condaenv) [20210516]



Hello friends, to begin with the first thing we have to do is installation:

% You can download and install 'Python' from here: Python Downloads
% Or, you can download Anaconda from here: Anaconda Downloads

For those who do not know what Anaconda is, here is a one-liner: It is your data science toolkit. [As written on the Anaconda website]

You should note that knowledge of both Python and Anaconda is important as Anaconda makes things very simple and manageable, but some organization will not allow you to install 'Anaconda' and you would have to work with Python only.

Today as this is the first session that I am taking, we would be discussing about installation of Python on Windows and Linux machines. That is because this is an especially important step as in future you would have to install and work with a lot of Python packages and at times there would conflicts as you would keep on increasing the number of package installations in your system.
For example: if you do a “pip install tensorflow” on your system that will install the latest version of the TensorFlow and now if you try to install a package (let us say) Elephas that would lead to conflict in packages as the dependencies of Elephas require you to have an incredibly old version of TensorFlow.

The dependencies of the Elephas as of 2020-July were:

Flask==1.0.2
hyperas==0.4
pyspark==2.4.0
six==1.11.0
tensorflow==1.15.2
pydl4j>=0.1.3
keras==2.2.5

Now we check the current version of TensorFlow available:

CMD>pip install tensorflow==

ERROR: Could not find a version that satisfies the requirement tensorflow== (from versions: 1.13.0rc1, 1.13.0rc2, 1.13.1, 1.13.2, 1.14.0rc0, 1.14.0rc1, 1.14.0, 1.15.0rc0, 1.15.0rc1, 1.15.0rc2, 1.15.0rc3, 1.15.0, 1.15.2, 1.15.3, 1.15.4, 1.15.5, 2.0.0a0, 2.0.0b0, 2.0.0b1, 2.0.0rc0, 2.0.0rc1, 2.0.0rc2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.1.0rc0, 2.1.0rc1, 2.1.0rc2, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.2.0rc0, 2.2.0rc1, 2.2.0rc2, 2.2.0rc3, 2.2.0rc4, 2.2.0, 2.2.1, 2.2.2, 2.3.0rc0, 2.3.0rc1, 2.3.0rc2, 2.3.0, 2.3.1, 2.3.2, 2.4.0rc0, 2.4.0rc1, 2.4.0rc2, 2.4.0rc3, 2.4.0rc4, 2.4.0, 2.4.1, 2.5.0rc0, 2.5.0rc1, 2.5.0rc2, 2.5.0rc3, 2.5.0)
ERROR: No matching distribution found for tensorflow==

Latest version of TensorFlow is 2.5.0.

Ref: Distributed Deep Learning Using Python Packages Elephas, Keras, Tensorflow and PySpark

This problem of dependencies is not only between packages but also between the version of Python you are using and a package such as Rasa.

As of Rasa 2.6.x, you need a Python from one of the following versions only: 3.6, 3.7 or 3.8 
[ Ref: 
% rasa/installation  
% rasa/2.5.x/installation ]

Even though the current version of Python is: 3.9

What is the solution? 
To deal with this we have a solution called:
1. 'virtual environment' in Python
2. 'conda environment' in Anaconda

We have an older version of Python in my system:


C:\Users\Ashish Jain>python
Python 3.7.1 (default, Dec 10 2018, 22:54:23) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> print("Hi")
Hi
>>>
>>> exit()
C:\Users\Ashish Jain>

On a sidenote, if you want to see where your Python.exe is:
1. On Ubuntu, use "which python"
2. On Windows, use "where python"


C:\Users\Ashish Jain>where python
E:\programfiles\Anaconda3\python.exe
C:\Users\Ashish Jain\AppData\Local\Microsoft\WindowsApps\python.exe 

Setting up "virtualenv"

Step 1: Install "virtualenv" C:\Users\Ashish Jain>pip install virtualenv Collecting virtualenv Downloading virtualenv-20.4.6-py2.py3-none-any.whl (7.2 MB) |███| 7.2 MB 1.6 MB/s Collecting appdirs[2,>=1.4.3 Downloading appdirs-1.4.4-py2.py3-none-any.whl (9.6 kB) Requirement already satisfied: importlib-metadata>=0.12; python_version < "3.8" in e:\programfiles\anaconda3\lib\site-packages (from virtualenv) (1.7.0) Requirement already satisfied: six[2,>=1.9.0 in e:\programfiles\anaconda3\lib\site-packages (from virtualenv) (1.15.0) Collecting distlib[1,>=0.3.1 Downloading distlib-0.3.1-py2.py3-none-any.whl (335 kB) |███| 335 kB 3.2 MB/s Requirement already satisfied: filelock[4,>=3.0.0 in e:\programfiles\anaconda3\lib\site-packages (from virtualenv) (3.0.12) Requirement already satisfied: zipp>=0.5 in e:\programfiles\anaconda3\lib\site-packages (from importlib-metadata>=0.12; python_version < "3.8"->virtualenv) (3.1.0) Installing collected packages: appdirs, distlib, virtualenv Successfully installed appdirs-1.4.4 distlib-0.3.1 virtualenv-20.4.6 Step 2: Check where it is installed. C:\Users\Ashish Jain>where virtualenv E:\programfiles\Anaconda3\Scripts\virtualenv.exe Step 3: "virtualenv" creates a directory so you need to (additionally) set up a folder (like "my_workspace") where you would create virtual environments. Related projects, that build abstractions on top of virtualenv: % virtualenvwrapper - a useful set of scripts for creating and deleting virtual environments % pew - provides a set of commands to manage multiple virtual environments % tox - a generic virtualenv management and test automation command line tool, driven by a tox.ini configuration file % nox - a tool that automates testing in multiple Python environments, similar to tox, driven by a noxfile.py configuration file Ref: virtualenv Documentation C:\Users\Ashish Jain>cd OneDrive/Desktop/my_workspace Important difference between "Conda environment" and "Virtualenv": With "virtualenv" you cannot install lower (or previous) versions of Python but a higher (or newer) version. While, this limitation is not there in "conda env". C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>virtualenv rasa_env --python=python3.8 RuntimeError: failed to find interpreter for Builtin discover of python_spec='python3.8' C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>virtualenv rasa_env_2 --python=python3.8 RuntimeError: failed to find interpreter for Builtin discover of python_spec='python3.8' C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>virtualenv rasa_env_2 --python=python3.6 created virtual environment CPython3.6.6.final.0-64 in 12325ms creator CPython3Windows(dest=C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env_2, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=C:\Users\Ashish Jain\AppData\Local\pypa\virtualenv) added seed packages: pip==21.1.1, setuptools==56.0.0, wheel==0.36.2 activators BashActivator,BatchActivator,FishActivator,PowerShellActivator,PythonActivator,XonshActivator C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>virtualenv rasa_env_3 --python=python3.8 RuntimeError: failed to find interpreter for Builtin discover of python_spec='python3.8' Step 4: We locate our "activate" file if we are on Ubuntu and "activate.bat" file if we are on Windows. C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>dir /s "activate" Volume in drive C is Windows Volume Serial Number is 8139-90C0 Directory of C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts 05/16/2021 12:54 AM 2,179 activate 1 File(s) 2,179 bytes Total Files Listed: 1 File(s) 2,179 bytes 0 Dir(s) 62,928,424,960 bytes free View 1: C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>dir /s "activate*" Volume in drive C is Windows Volume Serial Number is 8139-90C0 Directory of C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts 05/16/2021 12:54 AM 2,179 activate 05/16/2021 12:54 AM 1,052 activate.bat 05/16/2021 12:54 AM 3,102 activate.fish 05/16/2021 12:55 AM 1,755 activate.ps1 05/16/2021 12:55 AM 1,193 activate.xsh 05/16/2021 12:55 AM 1,193 activate_this.py 6 File(s) 10,474 bytes Total Files Listed: 12 File(s) 20,956 bytes 0 Dir(s) 62,889,410,560 bytes free View 2: C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>dir /s /b "activate*" C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts\activate C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts\activate.bat C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts\activate.fish C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts\activate.ps1 C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts\activate.xsh C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts\activate_this.py C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts>activate.bat (rasa_env) C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace\rasa_env\Scripts> Do you see this "(rasa_env)"? This means you are in venv "rasa_env".

Activate 'Python CLI' (Command Line Interface). Python CLI is also known as Python shell.

And Try Some Commands... (rasa_env) C:\Users\Ashish Jain\OneDrive\Desktop\my_workspace>python Python 3.7.1 (default, Dec 10 2018, 22:54:23) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32 Type "help", "copyright", "credits" or "license" for more information. >>> Dealing with numeric data Addition >>> >>> 7 + 3 10 >>> Division >>> 7 / 3 2.3333333333333335 >>> >>> 7 // 3 2 >>> Modulo (returns the remainder from division operation) >>> 7 % 3 1 >>> Data Type: Strings >>> username = "Ashish" >>> print(username) Ashish >>> Note: You can do indexing on a String. >>> username[0] 'A' >>> But a Python String is immutable like a 'Tuple'. >>> username[0] = 'I' Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'str' object does not support item assignment >>> Output Formatting in Four Ways: Output Formatting #1 >>> print(F"Logged in as: {username}") Logged in as: Ashish >>> Output Formatting #2 >>> print("Logged in as: {}".format('Ashish')) Logged in as: Ashish >>> >>> print("Logged in as: {}".format(username)) Logged in as: Ashish >>> Output Formatting #3 >>> firstname = 'Ashish' >>> lastname = 'Jain' >>> print("Logged in as: %s %s" % (firstname, lastname)) Logged in as: Ashish Jain >>> Output Formatting #4 >>> print("Logged in as:", firstname, lastname) Logged in as: Ashish Jain >>> >>> print("Logged in as:", username) Logged in as: Ashish >>> Data Type: List List is a collection of elements (may not be of similar type as you would see in programming language C or C++). >>> l = ['a', 1] >>> l[0] 'a' >>> l[1] 1 >>> Data Type: Tuple Tuple is like the List data type with one difference that it is immutable. >>> my_tuple = (1, 2, 3) >>> my_tuple[0] 1 >>> my_tuple[0:3] (1, 2, 3) >>> >>> my_tuple[0] = 4 Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'tuple' object does not support item assignment >>> Data Type: Dict (Dictionary) Important Note: What you are seeing as error for an attempt to concatenate two "dict" using "|" pipe character has been added as a feature in Python 3.9.0. >>> {'a': 'b'} | {'c': 'd'} Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: unsupported operand type(s) for |: 'dict' and 'dict' >>> Multi-line String and Printing it. >>> >>> print("""Hi! ... I am Ashish! ... I love Python!""") Hi! I am Ashish! I love Python! >>> Checking the type of a variable: >>> type(username) <class 'str'> >>> >>> isinstance(username, str) True >>> >>> isinstance(username, int) False >>> isinstance(5, int) True Sometimes, the error logs of Python are not very clear. For example, in the example below we entered second argument as ('str') that is a string, instead of the keyword (str), so Python returns an error log TypeError: isinstance() arg 2 must be a type or tuple of types. Here by "type" it means "Data Type". >>> isinstance(username, 'str') Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: isinstance() arg 2 must be a type or tuple of types Immutability of Strings and Tuples % TypeError: 'tuple' object does not support item assignment % TypeError: 'str' object does not support item assignment

Working with "conda" (with Anaconda)

Launch 'Anaconda Prompt'. (base) C:\Users\Ashish Jain>conda create -n py39 python=3.9 Collecting package metadata (repodata.json): done Solving environment: done ==> WARNING: A newer version of conda exists. <== current version: 4.8.5 latest version: 4.10.1 Please update conda by running $ conda update -n base -c defaults conda ## Package Plan ## environment location: E:\programfiles\Anaconda3\envs\py39 added / updated specs: - python=3.9 The following packages will be downloaded: package | build ---------------------------|----------------- ca-certificates-2021.4.13 | haa95532_1 150 KB certifi-2020.12.5 | py39haa95532_0 144 KB openssl-1.1.1k | h2bbff1b_0 5.7 MB pip-21.0.1 | py39haa95532_0 2.0 MB python-3.9.4 | h6244533_0 19.8 MB setuptools-52.0.0 | py39haa95532_0 930 KB sqlite-3.35.4 | h2bbff1b_0 1.2 MB tzdata-2020f | h52ac0ba_0 123 KB vc-14.2 | h21ff451_1 8 KB vs2015_runtime-14.27.29016 | h5e58377_2 2.2 MB wheel-0.36.2 | pyhd3eb1b0_0 31 KB wincertstore-0.2 | py39h2bbff1b_0 15 KB ------------------------------------------------------------ Total: 32.3 MB The following NEW packages will be INSTALLED: ca-certificates pkgs/main/win-64::ca-certificates-2021.4.13-haa95532_1 ... tzdata pkgs/main/noarch::tzdata-2020f-h52ac0ba_0 ... wheel pkgs/main/noarch::wheel-0.36.2-pyhd3eb1b0_0 wincertstore pkgs/main/win-64::wincertstore-0.2-py39h2bbff1b_0 Proceed ([y]/n)? y Downloading and Extracting Packages... Preparing transaction: done Verifying transaction: done Executing transaction: done # # To activate this environment, use # $ conda activate py39 # To deactivate an active environment, use # $ conda deactivate Note: conda create -n py39 -c conda-forge python=3.9 (base) C:\Users\Ashish Jain>python Python 3.7.1 (default, Dec 10 2018, 22:54:23) [MSC v.1915 64 bit (AMD64)] :: Anaconda, Inc. on win32 Type "help", "copyright", "credits" or "license" for more information. >>> exit() Note here: We were in "base" environment with Python 3.7.1 but we were still able to create an environment with higher version (Python 3.9.4). (base) C:\Users\Ashish Jain>conda activate py39 (py39) C:\Users\Ashish Jain>python Python 3.9.4 (default, Apr 9 2021, 11:43:21) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32 Type "help", "copyright", "credits" or "license" for more information. >>> exit() (py39) C:\Users\Ashish Jain> The concatenation of two "dict" using "pipe" (|) character: (py39) C:\Users\Ashish Jain>python Python 3.9.4 (default, Apr 9 2021, 11:43:21) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32 Type "help", "copyright", "credits" or "license" for more information. >>> >>> {'a': 'b'} | {'c': 'd'} {'a': 'b', 'c': 'd'} >>>

Putting all of the above in a '.py file' or a 'Python script'.

print(7 + 3, end='\n\n') print(7 / 3, end='\n\n') print(7 // 3, end='\n\n') print(7 % 3, end='\n\n') username = "Ashish" print(username, end='\n\n') print(F"Logged in as: {username}") Output: (base) C:\Users\Ashish Jain\OneDrive\Desktop>python script.py 10 2.3333333333333335 2 1 Ashish Logged in as: Ashish (base) C:\Users\Ashish Jain\OneDrive\Desktop>

Putting all of the above in a 'Jupyter Notebook'.

The way to start Jupyter Notebook is through the command: "jupyter notebook" (base) C:\Users\Ashish Jain\OneDrive\Desktop>jupyter notebook [I 2021-05-16 17:00:42.136 LabApp] JupyterLab extension loaded from E:\programfiles\Anaconda3\lib\site-packages\jupyterlab [I 2021-05-16 17:00:42.136 LabApp] JupyterLab application directory is E:\programfiles\Anaconda3\share\jupyter\lab [I 17:00:42.172 NotebookApp] Serving notebooks from local directory: C:\Users\Ashish Jain\OneDrive\Desktop [I 17:00:42.172 NotebookApp] Jupyter Notebook 6.3.0 is running at: [I 17:00:42.173 NotebookApp] http://localhost:8888/?token=b9833146c3b56e7dc6632be0e513c541a436d84ff42b1511 [I 17:00:42.173 NotebookApp] or http://127.0.0.1:8888/?token=b9833146c3b56e7dc6632be0e513c541a436d84ff42b1511 [I 17:00:42.174 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation). [C 17:00:42.370 NotebookApp] To access the notebook, open this file in a browser: file:///C:/Users/Ashish%20Jain/AppData/Roaming/jupyter/runtime/nbserver-764-open.html Or copy and paste one of these URLs: http://localhost:8888/?token=b9833146c3b56e7dc6632be0e513c541a436d84ff42b1511 or http://127.0.0.1:8888/?token=b9833146c3b56e7dc6632be0e513c541a436d84ff42b1511 This opens up a window in your browser:
In the image above, you can see the dropdown named "New". Click on this dropdown and select something like "Python 3" (the option coming for me). The items in this dropdown are your kernels that is an advanced concept for this post.
Link to the session recording: YouTube Tags: Technology,Python,Anaconda,Windows CMD,

Tuesday, May 11, 2021

Word Meanings 2021-05-21 [8 Words]



1.
drop the ball
phrase of drop

INFORMAL•NORTH AMERICAN
make a mistake; mishandle things.
"I really dropped the ball on this one"

---
2.
creepy
/ˈkriːpi/

adjectiveINFORMAL
causing an unpleasant feeling of fear or unease.
"the creepy feelings one often gets in a strange house"
Similar:
frightening
scaring
terrifying
hair-raising
spine-chilling
blood-curdling

--- 
3.
bonkers
/ˈbɒŋkəz/

adjectiveINFORMAL•BRITISH
mad; crazy.
"you're stark raving bonkers!"

---
4.
be climbing the walls
phrase of climb

INFORMAL
feel frustrated, helpless, and trapped.
"his job soon had him climbing the walls"

---
5.

be for the high jump
phrase of high jump
INFORMAL•BRITISH
be about to be severely reprimanded or punished.
"you're for the high jump"

---
6.
bogged down
ADJECTIVE [verb-link ADJECTIVE]
If you get bogged down in something, it prevents you from making progress or getting something done.
But why get bogged down in legal details? [+ in]
Sometimes this fact is obscured because churches get so bogged down by unimportant rules.
Synonyms: entangled, involved, overwhelmed, mixed up   More Synonyms of bogged down
Ref: https://www.collinsdictionary.com/dictionary/english/bogged-down

---
7.
out of the frying pan into the fire
phrase of frying pan
from a bad situation to one that is worse.
"he may find himself jumping out of the frying pan into the fire"

---
8.
bogged down; bogging down; bogs down

1: to cause (something) to sink in wet ground
The mud bogged down the car.
The car got bogged down in the mud.
—often used figuratively
It's easy to get bogged down in details.

2: to become stuck in wet ground
The car bogged down in the mud.
—often used figuratively
The story bogs down after the second chapter.

Ref: https://www.merriam-webster.com/dictionary/bog%20down

~

be/get bogged down [https://dictionary.cambridge.org/dictionary/english/be-get-bogged-down]

— phrasal verb with bog verb

UK  /bɒɡ/ US  /bɑːɡ/

 
to be/become so involved in something difficult or complicated that you cannot do anything else:

# Let's not get bogged down with individual complaints

# UK Try not to get too bogged down in the details.

SMART Vocabulary: related words and phrases
# Experiencing difficulties

# be (caught) between a rock and a hard place
[If you are caught between a rock and a hard place, you are in a difficult situation where you have to choose between two equally unpleasant courses of action.] 

idiom
# be climbing the walls 

idiom
be for the high jump 

idiom
be/come up against a brick wall 
[to arrive at a situation in which something is stopping you from doing what you want]

idiom
fall into sth

[1 : to go down quickly into (something) 
# She fell into the swimming pool. 

2 : to pass to (a less active or less desirable state or condition) 
# This word has fallen into disuse. 
# His theories have now fallen into disrepute/disfavor.]

idiom
on a razor edge 
[—used in various phrases to refer to a dangerous position or a position in which two different things are carefully balanced 
# He's a thrill-seeker who likes living on the razor's edge. 

# The country's future is balanced on a razor's edge. 

# He walks a/the razor edge between humor and bad taste in his comedy.]

idiom
out of the frying pan into the fire 

---
Tags: Word Meanings,

Register for free weekly session on 'Python For Beginners'





Once you have registered, your email and phone number will be used to send you information about:
1. Date of the session (this will be only on one of the weekends)
2. PowerPoint presentation used during the session will be mailed to you after the session is over.
3. To allow you to reach out to us from the above two channels.

Also, in case, if you miss the session, the video recording of the session will made available through our YouTube channel.

About the Trainer

Aniket Sawant works as a Senior Technology Analyst at a Fortune 500 company in Mumbai (India). He is an expert in Python, Angular, Web Development, SQL and NoSQL Databases. He has a total of 10 years of experience in IT industry. He is certified from CDAC and holds multiple professional certifications from companies such as Microsoft. Aniket will be taking these sessions to not only clear your concepts of Python programming but will alongside cover the related topics of data structures and algorithms. Apart from coding, Aniket enjoys interacting with people and watching movies. On an additional note, Aniket and I have been friends for years and I assure you that you will enjoy these sessions. If you already have some familiarity with Python, you can still join us to allow us to answer your queries. Thank you! Tags: Python,Technology,

Monday, May 10, 2021

Want a virus, here's one (Ref # Microsoft Security Intelligence)



What is a PUA?
A potentially unwanted program (PUP) or potentially unwanted application (PUA) is software that a user may perceive as unwanted. It is used as a subjective tagging criterion by security and parental control products. Such software may use an implementation that can compromise privacy or weaken the computer's security.    

1 - Doing Google search for a movie torrent
2 - yifymovies.net homepage
3 - Entire homepage has an overlay like an invisible wall
4 - The magnet link which was not clickable earlier is now clickable with also the cursor hover effect
5 - The new window that opens when you click on magnet link behind the invisible wall
6 - Windows Defender Alerts That You Start Getting Now On
7 - The fake app opener redirection page and the anti-virus defender alert for it
8 - The real choose an application window (that is coming from the browser built-ins)
9 - When you launch the torrent, your anti-virus defender alerts you for unwanted software
10 - Defender found threats
11 - More description and file location from Defender
12 - Description of PUA on Microsoft Security Intelligence site [ Microsoft Security Intelligence ]
13 - Actual file that was detected as PUA
14 - Details after action by Defender
15 - After all this, my utorrent stopped working and was failing to uninstall too
16 - after forced delete by deleting files instead of using appwiz.cpl, the file association is still there
Tags: Technology,Cyber Security,

Saturday, May 8, 2021

Git Error in 'git add' command wrt Long File Names



~\my_repo>git add -A

error: open("Lessons in Technology/Cyber Security/Polymorphism in Google Drive and Google Chrome (wrt Handling an Exe File)/11 - incognito, User2, you do not get remove rights on a file but you do get remove rights on the entire directory shared with you.png"): Filename too long
error: unable to index file 'Lessons in Technology/Cyber Security/Polymorphism in Google Drive and Google Chrome (wrt Handling an Exe File)/11 - incognito, User2, you do not get remove rights on a file but you do get remove rights on the entire directory shared with you.png'
fatal: adding files failed

Does not give all the "Long File Name Errors in One Go", see this new error in second try:

~\my_repo>git add -A

error: open("Lessons in Technology/Cyber Security/Polymorphism in Google Drive and Google Chrome (wrt Handling an Exe File)/9 - inconito firefox, User2, potentially infected exe file not downloadable from incognito chrome is allowed to be downloaded here.png"): Filename too long
error: unable to index file 'Lessons in Technology/Cyber Security/Polymorphism in Google Drive and Google Chrome (wrt Handling an Exe File)/9 - inconito firefox, User2, potentially infected exe file not downloadable from incognito chrome is allowed to be downloaded here.png'
fatal: adding files failed

Tags: Technology,GitHub,

Polymorphism in Google Drive and Google Chrome (wrt Handling an Exe File)



Important Note: We are not trying to arrive at a very concrete conclusion or result here. The testing was done to identify the behavior of 'Google Drive' and 'Google Chrome' when 'Google Drive' thinks a file could be a virus.

User1: This user is the original author of the file and has shared the folder with User2.

1 - incognito, no-user, two virus alerts
2 - incognito, no user - A virus was detected you can't download this file (gmat2.zip)
3 - incognito, User2, virus detected, can't download
4 - incognito, User2, polymorphism, cannot delete file in shared folder from other person
5 - normal view, User1, file with virus alert can still be downloaded from original author's account
6 - incognito, User2, different type of alert for an exe file that gdrive says could be virus but did not alert before
7 - incognito, User2, can't download file, enable third-party cookies for GDrive
8 - normal view, User1, original author can remove a file from folder shared by him
9 - inconito firefox, User2, potentially infected exe file not downloadable from incognito chrome is allowed to be downloaded here
10 - a view of gdrive trash of original author User1 with removed files
11 - incognito, User2, you do not get remove rights on a file but you do get remove rights on the entire directory shared with you
12 - Incognito chrome, User2, Still cannot download the suspected folder, asks to enable third party cookies
The Files That Were Causing Virus Alerts in Google Drive When Scanned on Windows 10's 'Anti-Virus Defender' Did Not Produce Alert List View: 1 ~\110809IMS_Student_CD_Setup.exe ~\files.html ~\gmat1 ~\gmat1.zip ~\gmat2 ~\gmat2.zip ~\gmat1\gmat1mx.exe ~\gmat1\gmat1vx.exe ~\gmat1\gmat2mx.exe ~\gmat1\gmat2vx.exe ~\gmat1\gmat3mx.exe ~\gmat1\gmat3vx.exe ~\gmat1\gmat4mx.exe ~\gmat1\gmat4vx.exe ~\gmat2\gmat5mx.exe ~\gmat2\gmat5vx.exe List View: 2 Volume in drive C is Windows Volume Serial Number is 8139-90C0 Directory of ~ 05/08/2021 10:00 PM <DIR> . 05/08/2021 10:00 PM <DIR> .. 05/08/2021 09:12 PM 42,742,301 110809IMS_Student_CD_Setup.exe 05/08/2021 10:00 PM 766 files.html 05/08/2021 10:00 PM 0 files2.html 05/08/2021 08:52 PM <DIR> gmat1 05/08/2021 08:49 PM 880,985 gmat1.zip 05/08/2021 08:52 PM <DIR> gmat2 05/08/2021 01:01 PM 210,131 gmat2.zip 5 File(s) 43,834,183 bytes Directory of ~\gmat1 05/08/2021 08:52 PM <DIR> . 05/08/2021 08:52 PM <DIR> .. 10/30/2000 05:41 PM 486,400 gmat1mx.exe 03/21/2001 01:29 AM 504,320 gmat1vx.exe 05/17/2001 09:21 PM 418,816 gmat2mx.exe 03/29/2001 07:54 PM 501,760 gmat2vx.exe 05/17/2001 09:18 PM 424,448 gmat3mx.exe 03/09/2001 11:17 AM 485,376 gmat3vx.exe 05/17/2001 09:27 PM 432,128 gmat4mx.exe 03/21/2001 01:35 AM 631,808 gmat4vx.exe 8 File(s) 3,885,056 bytes Directory of ~\gmat2 05/08/2021 08:52 PM <DIR> . 05/08/2021 08:52 PM <DIR> .. 05/17/2001 09:32 PM 425,984 gmat5mx.exe 03/09/2001 11:47 AM 486,912 gmat5vx.exe 2 File(s) 912,896 bytes Total Files Listed: 15 File(s) 48,632,135 bytes 8 Dir(s) 70,736,945,152 bytes free Tags: Technology,Cyber Security,Cloud,

Friday, May 7, 2021

September 28, 2012 (Day of heavy surveillance and reminders)



Index of Journals
28-Sep-12

I was up on time to the alarm sound by 0815. I did deep-breathing 20 times and got just before 0830. I didn’t want to be late today so I was not able to brush as Anu had been in the bathroom. I had got the brush out from Anu but driver was standing here, and waiting for babaji to indicate to ‘let us go’ thing. Anu was coming along because she had to go to the temple in Tri-Nagar and do donation for the occasion of one of the ten-holy-days that are going on. Buaji is easy in talking to Anu. Babaji dropped me on Laxmi Nagar. I was at HCL on time, maybe 10 minutes late and there was no one in the class-room. I needed sleep; I just sat on the chair and rested my head on the back-rest. I was just taking a look at the alignment of the room and the reflecting-glass panes and the camera in the first cabin that is separated by our room by glass-panes. Sir came at 0930 and I now sent messages to Sneha and Gaurav. Sneha tells me that she was not coming as she has an exam on Sunday, and she had told this to Gaurav yesterday. These idiots didn’t bother to tell that to me. Gaurav didn’t reply.

Sir came and told me to study the interview questions on Java-collection API. Also then, he wanted his computer, actually the computer that he uses. I sat on the one on the side. Well, I was just sitting there and there was nothing to do, so I just started to read about the very old confusion of mine about the spellings of the words ‘receive’ and ‘believe’, wow.

HERE IT IS I GOT AN IDEA, JUST NOW, I WILL BE USING A FUNNY TONE JUST TO EASE UP MY MIND LITTLE BIT AND TRY TO RELAX, OF COURSE. I MEAN, I AM GONNA CONSIDER THE BRAD-PITT STYLE/ FUNNY-AMERICAN STYLE OF SPEAKING OUT AS I WOULD THINK.

Okay, so wow, I was looking at it and remising what I had in that letter to the funny-communication-skills staff, it’s almost like I love to abuse, damn it, I shouldn’t start talking to myself at the end of the day. All these days I have been writing like some horror-psychological fiction or something, duh-damn-it. Okay so where was I, now, I was reading the thing, yeah, it goes like, “I before E except after C”, sounds funny but that is all it, yeah, all it. I think I had become too drowned in the past and I was thinking about the time that had been and no matter how much I tried it never got any better but only got worse. Well, I don’t even have to care about it now. My eyes had turned wet when I was thinking of Anshu ma’am, how it had been, it was feeling pathetic for being like whatever.

A student came for 11:00 AM-batch and I too wanted to go. I got up and just asked sir what was all left now for us to study. After that, it was just ‘yes sir’ - ‘yes sir’ as sir told me about my phone and PD (pen drive). It opens like Swiss-knife so sir looked at it cautiously this time as if I had taken out something new and also that I take it out of polythene that is also odd.

I came down and as I reached the stop the same old shit of people, playing around me started (yeah must be from college Discipline Committee).

There I saw a number of things, a number of people and I just had my psyche focused with a point-of-view, a point of vision, that I am being followed and that I should just stay aware of my surroundings, or whatever. In order to objectify them, I am going to use a table to list them, much better way than to write them in continuous form and just not able to get away with the emotions that might arouse, the heart that gets heavy.

I was expecting the woman and the neural-diseased-kid, but they were not here.

1. Four five old men on the bus stand, I thought what the hell, I considered it normal after a second, thinking that I should not be too much bothering into just believing that everything around here is a fake. They were gone, all out after a while. It was not just the four-five old men on the bench; it was also on the platform that I felt that even in the crowd that was standing I could see one-or-two middle-aged old men. Well, I didn’t want to mess up my mind right up then so I just waved it off of my head, considering it as a coincidence.

2. There was a mother and a girl-child sitting there on the bench. I just looked at the girl and her face somewhat matched with her mother. I just looked at her and she and her mother were dark-brown. It was just normal; I considered them just as ‘people on a bus-stand’.

3. Those three young boys, they were dressed like they were hanging out or that was just the convention in the boys of their age today. I was walking on the road while waiting for the bus and a boy pointed out on me while telling his friend to get a hair-do like mine, yeah, this clean-bald-hair-do, small tiny hair seen just as the surface of the head. I just looked at the two once and the one to whom the comment was made had his back to me, so just as I walk back, I could now face him and he was checking my head out, to what his friend had just suggested.

4. I noticed the stylish way keeping their ear-phones plugged into their ears and wire coming down to enter their pockets. The two who had passed suggestion were. Why a show of phone accessories?

5. a) The girl in the lemon-colored suit. It was a suit with particular design, I don’t know the name. I can try to describe it, it fits tight, but doesn’t look skin-fitted, yes maybe, it does but it looks extremely sexy if it fits to the physique of the girl on the breasts and waist. It fits closely on the shoulder to give them an edge, like men’s-tuxedos. The sleeves coming down to the fore-arm make the woman appear to have even broader shoulders. I asked Srishti to name such a design but she said there is not a name defined for the definitions I gave her and sleeves of suits are of arbitrary length and are not fixed already. Maybe she doesn’t know enough. I had seen this type of suits on Anshu ma’am (Communication Skills). The one that this girl was wearing looked exactly like the one I think I had seen on the teacher last time or before, she looked extremely hot as always, actually her skin is also bright so it kind of glows and her suit are like this clean and well maintained, perfectly fitted, she looks hot.

The first time I saw it was just like okay, its fine, she wearing a bright color suit. Then I just looked at her other things and started doing the comparison a minute or two later, it wasn’t instantaneous.

b) This girl was thinner, and yeah shorter by an inch or two from Anshu ma’am, who is closely as tall as me or one or two inch shorter, I can’t really tell. Well, simply speaking, this was a girl, and Anshu is a woman, must be 29 or something.

c) This girl had cheek bones that made her face-contour look similar to that of Anshu ma’am. I think this girl had a comparatively small face so that I doubt to consider it to a squared-face like that of Anshu or the film-star Anushka.

d) She was standing with her back against the pole, just the way that I do. She was on the pole that was just before mine. She stood facing the opposite side window and her back to the pole, I stood facing in the direction of the bus and watching her, at a distance lesser than 1 meter.

e) She wore these lose black slacks with the Ladies-suit and I think the color combination of lime-and-black was sexy. She wore regular sandals, the sandals seemed just regular for a young-woman, I never really saw what Anshu wore in her foot.

f) This girl had this Nokia qwerty-keypad phone and it was fine, purple handset. It was just fine in the girl’s hand. I don’t know why these people would be showing me cell-phones do they want me show up some phone that I don’t have, or either do they want me to break in one now while they are on the watch. I think this is very pathetic and an old trick to get the crime out of criminals, but this is so stupid if they are trying to hit that on me.

On 24th, that woman with the kid was brandishing the huge-touch screen; she had seen my phone with flap-and-keys and small-body when she had asked me time. Two days later, the hot-chick in the metro-feeder showed of the Blackberry phone with QWERY keys. Now today, even this girl had a QWERTY keypad phone. The psyche-readers had learned of my taste and then chosen phone-models in the hands of the girls.

g) I think I liked her hair but these weren’t straightened like falling down to the gravity, like how Anshu has. This girl’s hairs were fine but were natural lose curls near the end and fell to the point just below her shoulders. She had put eye-liner and I saw her face when she looked at the street-entertainer man who was singing behind me. I found her face a little too close to average, maybe just fine. I didn’t really get her face into my head; I just didn’t do it for my own mental-health’s sake. She had these irregular, little out-of-perfect-shape eyes that somewhat seemed similar to that of Anshu, but I didn’t really stress on her face features, because obviously it wasn’t her and I am not blind. Maybe I also wasn’t in the very mood to get around girls again, so I just minded my own self on checking her clothes out, that’s it.

There were two guys standing even ahead of her, and when the bus had jerked off on speed-breaking, she was pushed to that guy. My vision was calm and relaxed even as I literally move my neck while checking her out, which was a sign that I was just comfortable.

h) I never bothered to peruse her face the way I did to her clothes, I didn’t try to picture her nose, eyes or lips, and it was simply because I didn't want to provoke any contact.

6. This street-singer was singing in the bus, he got on just after me, I guess. Girl and I were at the front and he started to sing sometime after I had already got around the girl to watch. Okay the girl also had got on the bus later, probably, she wasn’t on the stand. She didn’t go behind and just stood there, yes. The singer had got on even later. When he had started to sing the girl had looked at him like ‘what-is-it’. I didn’t turn behind, I was just getting to see the girl’s face now and all that I mapped out was that though her clothes were, her face wasn’t similar to Anshu. I had quite an enough of checking this girl now I just turn my face to the window on the opposite side, just parallel to this girl’s facing, she had never looked up or around, she always was into her phone. This man sung this quite an awesome filmy-song on god, I think it was loveable, its tune was awesome. I was just drowned a bit into hearing it after I had turned my attention off of the girl. I noticed that this man sitting below me, had looked at me when I drew my eyes off of her, and later he himself had glimpsed her, and the man who sat one seat at his front had also checked her out in one quick view, the girl was cute, simply.

7. The man had sung one more after this but I didn’t really like it, rather it was funny. When he finished, he started to collect money, people gave him coins. I just raised my hand to say ‘it is fine’ then bringing it to my chest to denote ‘it was fine, and I am sorry, spare me’. He had moved on but just immediately thought that I was being rude somewhat. I didn't notice when the girl got down, but I was quick to notice the space that she had freed.

8. I was cursing 'what the hell' 'why the hell' when he got my attention but his second song had a very nice tune, and it was actually a Bollywood-made.

9. I was standing in my place just I had after getting my attention off of the cute-girl. I was actually not holding onto anything, I was standing against the pole. There was this girl, of brown complexion but she was cleanly dressed in her brown Ladies-suit and nicely done hair, all tied combed and tied. It was only in one momentary glance that I got this information about her looks. It was when she was coming to the front and bus speed-broke to jerk and throw onto me. I was to the pole and was unmoved. She had come way too close but she got to me with her arms folded, which I thought wasn’t good for a moment. I didn’t take more than that momentary second to let the thoughts clear. I didn’t even watch her back. I was just on my own with my head tilted to the pole and eyes to the buildings passing by.

10. The woman who sat with her husband behind me was breast-feeding and I just noticed it later. I noticed one guy watching it and other watching him to get an indirect enjoyment. I just turned my face away from that all.

11. There was a man of about six-foot-four-inch height. He had stopped just over my head so that I turn my neck like ‘what-the-hell, go-pass’. He went ahead and sat on the seats behind the driver. Later he was standing on the first pole in the way I do, with his back against the pole and looking out from the front-glass-pane, but I just noticed the distance of his head from the top of the bus and compared it with Salil-fufaji’s. He could stretch his other arm to the pole next to the driver, something that I couldn’t have done, and he was so comfortable.
One important thing to notice is that other than those boys on the stand there was no one who ever made eye-contacts today. They don’t, they didn’t match eyes because had they eye-balled and tried to lie, it would have allowed me a direct way catch their lie. That is how liar are doubted, if their eyes dodge, involuntary contraction, expansion of pupil. This was probably the reason why shape-changer-Megha-ma’am (Operating Systems, Database Management and Systems, Data Warehousing and Data Mining) had not matched eyes when I had been to the college on 26th, faggot. The chick or anyone in the bus had made eye-contacts on that day either while returning home. The other healthy girl who wore black-shirt and over-size aviator-glasses had done that to prevent eye-contact. On yesterday, the woman-with-child-with-neural-disease on the bus-stand near HCL center had deep-sighted and we had caught the glance of each other momentarily from still an unusually large distance and she had retracted the sight off quickly, showing that she was a fake and happenings of today are a proof.

Today, the psyche-watchers must be in the background, probably sitting comfortable on one of the seats in the elevation at the end of the bus. These people have gone total nuts; I hope they feel like wasting time once they can’t catch my pride.

They are trying to use ‘Classical-conditioning’ to make me learn to control my reflexive actions, involuntary stimuli on seeing girls. They had tried to use girls, along with mobile-phones and references to God, both today and on 26th. Now when I would think about girls my thoughts would somewhat be redirected to mobile-phones even though there is no connection between the two.

In the morning, when I was writing my attendance in the register just as I had got on the top floor, there came out the only lady teacher (for Dot-NET) in the reception from inner room and she looked at me through the glass-pane. That glance wasn’t a normal, casual one; it was like ‘okay, so he has come’, sounds like a very vague guess, but yes that is how I felt, like she knew something.

Why just her, even the driver had matched eyes thrice times today. Once before I had got into the car in the parking in the morning, but it was casual, not really inciting anything, it was absorptive, yes which was why I never really sensed anything. Even later, the second time, we got to match the eyes was when he looked here back at me from the rear-view mirror to ask if he should stop and let me out. I didn’t sense anything; he was naturally in absorptive (or confirming-mode) mode being the driver, like working for me, in this case. It was in the afternoon that he was putting down the keys on the table and he just looked to say ‘okay’ and I felt that his eyes were questioning, yes, his sight was questioning. He too is doped in that case, so now most information about the inside of the home should be out there known whoever is running the witch-hunt on me, damn it.

He has seen me number times in the afternoon, and at home I wear these stupid clothes, many times this six year old yellow check shirt, which now even fits closely. The thing is if driver would go telling that I wear shirt at home, it will be a new thing for college Discipline Committee to know as I never wear a shirt while getting outside the house, one reason behind it is that I don’t really own too many shirt.

The driver had asked for an increment of R1000 at the starting of this month when Seema aunt had left to see off Yashvir uncle in Gujarat. Seema aunt made the increment and the driver retained the job here, was that cooked too.

Another strange thing that came to my mind while writing was the gay-type act of Gaurav (from HCL), I don’t know how far in time, he had twice or thrice times acted like gaily groping me, WTF. If he is involved already, I was right to doubt the beep that blows whenever I would be beginning to talk to him on phone. Yesterday, he had called from an unknown number and had not mentioned his name when I asked ‘who’ and said ‘one who makes you laugh’. 

I don’t why my phone would be automatically restarting sometimes. I don’t know if it is because of its battery and SIM holding part is on the verge of going down, or if there is some way to make the SIM re-install itself from outside using some hack, then my phone is under attack as I have been thinking that most probably my phone is under watch.

This isn’t all after all, they had checked me for homosexuality, yes and it wasn’t when the college was on. It had started in the times of summer-training back in June; the two guys who would walk in the opposite direction to me in the morning could very possibly be set-ups. The first one that goes just after I get on the track after turning, is the fat-one, shorter and literally over-weight with his fat coming out on the belly. The second one would pass me after I am in last half of the way; he would be taller, just as much as the first one would be shorter than me. He would wear a shirt, and looks healthy, dark and kind of, home-boy.
When I got a tiny-bald-hair-do, I recognized his short hair, damn it.

What’s the after-effect of all this shit, I have seen homos giving **** to each other sometimes while my thoughts would just be going in every direction.

More than that, it has been long time since the classmates in the class have also been infected to an extent. I cannot really name too much now, but here is a list:

• Aditya in fifth semester. He had told me open up a blog in which he was to put his crime-fiction short stories and I could have put up my songs. I had always considered that his real interest. Today it so much seems that it wasn’t, he wanted me to see his talent to write down crime-stories. I was being checked for my interest in the crime. The college Discipline Committee was testing if I was only in about writing on crime-stories or my interest in crime was practical. They did not find much, as there wasn’t. My FB and the blog were being watched back in the first quarter of this year, when I finally closed it down and un-faced my FB profile.

• Apurva Sood in fifth semester. She used to cross-eye me from the last row; it was for a reason and not just a coincidence. The lady was into getting to me, she was trying to bait, and she was inquiring my behavior.

• Shruti Barahpuria in sixth semester. She would be taking bus with us Laxmi Nagar boys; she would be standing with us. It was for her to listen to our talk, our conversation, know our group interests and to also an attempt to curb my abusive Hindi-tongue.

• Apurva Sood in sixth semester. Once or twice, she would eye on doing something good, like after the results are declared or something, it was to create a feeling of jealousy. It was also Shruti Barahpuria, and not just her.

• Saurabh Banga in sixth. The T2 guy was stalking me for my actions, behavior whatever. He had seen about a dozen times, around the canteen or in common areas when I would be around girls. 

• People from my summer-training class were surely questioned. Like my group, Rakhi was surely questioned as she was asked for how she had known me and if she still were on any terms with me, back in March after I openly split with Tanuja Nautiyal (backstabber) ma’am. Nidhi Garg and her Shorty friend were told to interest me. Well, I didn’t really go after them, or showed interest.

• Then people from Ahlcon School were also questioned if they recognized me and my reaction on seeing them, like ALINA RIZVI (one year senior at school), Anurag SAXENA (classmate from XI, XII), Shreya SOOD (same batch).

• Just fifteen days back on 13, 14 and 15, I felt that there were like each day a ‘hi’, ‘hello’ thing with Arushi, who is a nice person to talk to, and eye-matches and sort-of-opportunities with Apurva Sood. It was of course unusual.

I was back at home on time and amma was complaining as usual to ask me why was I back so early and hadn’t been to college. I was eating by 1200, and Seema aunt cooks fine food in the morning, I mean I don’t have to force it into me. I would be enjoying eating. I was resting until 1400. I was then on internet and I never got up from Notebook. I was downloading a movie until 1900 and doing stuff whatever felt like. I had food on time, and as I was sitting in the living-room, I too got to hear the speeches of Jain-Muni on cable-TV. I didn’t really like it at first, but out of respect I was still hearing and I think, I liked it as the time passed. It was fine, relieving for my messed up soul up to a whole lot, in the evening it was on celibacy, which I really needed to hear.

I was on FB and I read this news that Dell is coming to the college for recruiting and Gareema Sethi had told students to meet. Well, it doesn’t concern me as I am not even eligible. I felt a lot it is fake, now it is only Dell and the 'Training and Placement Officer' who knows the truth.

I never got off of Notebook, the day had been busy and I started to write about the day around 1900 and I was just casual in the approach in between to not let myself stress-out like how it happens on the usual. I have learnt that when it comes to writing about one particular event or something like a bus-ride it is far more easy and better to make a table and write down in points. No point of introducing cooked-up continuity.

At 0030, I was on internet to download some songs and then I was FB. I just typed in Tanuja Nautiyal’s (backstabber) name and it showed her up. Her profile was very open, public, so she is exactly 15 years older than me. Her last name is same as her husband’s who seems like a cutie-pie just like her, it’s NAUTIYAL. Anshu ma’am wasn’t found in search, good for her. I was seeing the change in hair-styles that Tanuja Nautiyal brought in her hair in last two years. Well, for Anshu I only remember that after she got her hair straight, there had also been change in her, attitude, face, and friends (she was now seen alone sometimes, without the Shweta Sharma). Her straight hair and the new avatar was a sign of some big change in her life. When she would pass from around here, she looked like as if she fantasized a lot about me.

The profile picture she had used was a cartoon. The cartoon showed a girl from above her shoulders, seemed Chinese, her hair was a bob cut, head bend down, and a side view in which her hair covered her face. The cartoon was cute showing the gloomy girl, with creamy white background, big chinky eyes half closed looking down, and her brown hair falling down to her cheeks.

Sometimes these days when I would think about Anshu ma’am or about the Tanuja Nautiyal, my eyes would be watery, and it is pathetic but still like I will actually be thinking about her while listening to some stupid Bollywood sad-romantic song. Back in March, the very short meetings when we had that brake introduced between us, it was like as if she had come over to tell me ‘dude, you were good’ and I walked over yelling ‘lady, I am the best’.

Tarang Mahajan, F2 section, rich fatso had put a status that seemed to be a work of college Discipline Committee. It read, “I would rather die on my legs, than live on my knees”. It had garnered like over 16-17 likes, and as many comments. I didn’t really get it on my head, as I know it is philosophy. I want to go literal into it and say something, Stephen Hawking is full-body paralyzed and he is getting praise from the entire universe. In that case, this fatso who got admission into this lame college for dot-4 million INR (0.4 million or 4,00,000) of his father; he should die even if he had eight legs.

I had called Nishant sir (from HCL) just randomly around 2100 and I asked him for exam and he said it should be over by next Saturday.
One holyshit news, Prashant was back here until Monday around 2100, damn it; okay let’s just not talk about that, crazy, ha-ha, remember funny-American style.
There is something tied to the railing just next to the guard-room outside my window, crazy, it is something that I in my mind imagine to be a camera, shitty.
I stopped writing by 0245, went down to sleep by 0315.

Tuesday, May 4, 2021

Asomak Variants For Pain Management (P, XP and T)



Dated: May 2021

1: Asomak (P) 

Asomak P Tablet belongs to the therapeutic classification of:
% Non-Opioid Analgesics and 
% Antipyretic Drugs, 
% Non-steroidal Anti-Inflammatory Drugs (NSAIDs). 

The primary composition for this medicine is Aceclofenac 100 MG, Paracetamol 325 MG. [Ref]


2: Asomak-XP Tablet [Ref]

MANUFACTURER: Trimak Lifesciences 

SALT COMPOSITION: Aceclofenac (100mg) + Paracetamol (325mg) + Serratiopeptidase (15mg)

STORAGE: Store at room temperature (10-30°C)

BENEFITS OF ASOMAK-XP TABLET

In Pain relief:

Asomak-XP Tablet is a combination medicine that is used for short term relief of pain, inflammation, and swelling in conditions that affect joints and muscles. It works by blocking chemical messengers in the brain that tell us we have pain. It can help relieve pain in conditions like rheumatoid arthritis and osteoarthritis. 

Along with painkillers, this medicine also contains an active ingredient called Serratiopeptidase, which is an enzyme that promotes the overall healing process and speeds up recovery.

Take it as it is prescribed to get the most benefit. Do not take more or for longer than needed as that can be dangerous. In general, you should take the lowest dose that works, for the shortest possible time. This will help you to go about your daily activities more easily and have a better, more active, quality of life.

Side Effects

Nausea, vomiting, stomach pain, indigestion, heartburn, loss of appetite and diarrhea are some of the common side effects that might be observed on taking this medicine. Your doctor may regularly monitor your kidney function, liver function, and levels of blood components if you are taking this medicine for long-term treatment. Long-term use may lead to serious complications such as stomach bleeding and kidney problems. Asomak-XP Tablet is not recommended if you are pregnant or breastfeeding.

HOW ASOMAK-XP TABLET WORKS 

Asomak-XP Tablet is a combination of three medicines: Aceclofenac, Paracetamol and Serratiopeptidase. 

% Aceclofenac is a non-steroidal anti-inflammatory drug (NSAID).

% Paracetamol is an antipyretic (fever reducer). They work by blocking the release of certain chemical messengers in the brain that cause pain and fever. 

% Serratiopeptidase is an enzyme which works by breaking down abnormal proteins at the site of inflammation and promotes healing.

3: Asomak-T Tablet [Ref]

MANUFACTURER: Trimak Lifesciences

SALT COMPOSITION: Aceclofenac (100mg) + Thiocolchicoside (4mg)

Asomak-T Tablet is a combination medicine used in the treatment of pain due to muscle spasm. It improves the movement of muscles and provide relief from pain and discomfort associated with muscle spasms.

Asomak-T Tablet should be taken with food. This will prevent you from getting an upset stomach. You should take it regularly as advised by your doctor. Do not take more or use it for longer duration than recommended by your doctor.

Some of the common side effects on of this medicine includes nausea, vomiting, heartburn, stomach pain, loss of appetite, and diarrhea. If any of these side effects bother you or do not go away with time, you should let your doctor know. Your doctor may help with ways to reduce or prevent these side effects.

The medicine may not be suitable for everybody. Before taking it, let your doctor know if you have any problems with your heart, kidneys, and liver. To make sure it is safe for you, let your doctor also know all the other medicines you are taking. Pregnant and breastfeeding mothers should first consult their doctors before using the medicine.

USES OF ASOMAK-T TABLET: Pain due to muscle spasm

HOW ASOMAK-T TABLET WORKS

Asomak-T Tablet is a combination of two medicines: Aceclofenac and Thiocolchicoside, which relieves pain and relaxes the muscles. 

% Aceclofenac is a non-steroidal anti-inflammatory drug (NSAID) which works by blocking the release of certain chemical messengers that cause pain and inflammation (redness and swelling). 

% Thiocolchicoside is a muscle relaxant. It works on the centres in the brain and spinal cord to relieve muscle stiffness or spasm and to improve pain and movement of muscles.

Tags: Science,Medicine,

Body Weight Exercises



1. Jumping Jack

2. Wall Sit

3. Step Ups

4. Push Ups (Regular)

5. Abdominal Crunches

6. Sit Ups (Squats)

7. Triceps Dips

8. Plank

9. Engine Run

10. Lunges

11. Pushups and Rotate (Right)

12. Pushups and Rotate (Left)

13. Side Planks (Right)

14. Side Plank (Left)

~ ~ ~

1. Flutter Kicks [For the legs and core (abdomen)]

2. Side Flutter Kicks (Right) [For the legs and core (abdomen)]

3. Side Flutter Kicks (Left) [For the and core (abdomen)]

4. Diamond Push-ups [For Chest]

5. Inclined Push-ups [For Chest]

6. Reverse Abdominal Crunches [For the core (abdomen)]

7. High Rise Plank 

8. Spread legs to form inverted V. Now bend backbone forward to touch left feet from right hand. Then go back up straight. Then bend backbone forward to touch right feet with left hand.

9. Character '4' with legs (Stretching exercise) (Right and Left)

10. Burpees [Full body exercise]

~ ~ ~ ~

1. Climbing stairs up and down.

2. One hand plank (right and left)

3. 'Alternating Feet Lift'

4. Sun Salutation

5. Side Lunges
Tags: Science,Medicine,