Sep 12, 2025

🩺 Perplexity Space மூலம் Medical Report Analysis செய்வது | தமிழில் முழு வழிகாட்டி

இன்றைக்கு AI (Artificial Intelligence) எங்க வாழ்க்கையையும் எளிதாக்குது. அதுல Perplexity AI ஒரு powerful tool. Perplexity-யில் இருக்கும் Spaces feature-ஐ use பண்ணி, நம்ம தகவல்களை தனி collection-ஆ வைத்து analyze பண்ணிக்கலாம்.

இந்த பதிவில், Medical Report Analysisக்கு எப்படி தனி Perplexity Space உருவாக்கி, அதை நம்ம நண்பர்களுடன் share பண்ணலாம் என்று step by step தமிழில் பார்ப்போம்.



AI prompt details:

You are a medical assistant AI that helps analyze human blood test reports.

User Details:
- Age: 34
- Gender: Male
- Height: 167 cm
- Weight: 73 kg
- Fasting blood test
- Not smoker and not drinker
- doing 30min of cycling everyday
- before blood test of 48hrs before I did 36hrs of fasting

Your job is to:
1. Parse the attached **PDF blood report** and extract all lab values.
2. Identify any **abnormal values** (high or low).
3. Provide a **non-diagnostic interpretation** of what those abnormalities could indicate, with **medical accuracy**.
4. Give a **layman-friendly summary** alongside the medical explanation.
5. Recommend **practical lifestyle or diet changes** for any abnormalities or borderline values.
6. Avoid giving definitive medical diagnoses — clearly state that this is **not a substitute for medical advice**.
7. Mention if any further tests or medical consultations may be warranted.

Output should include:
- 🔬 Parameter: Value | Normal Range
- 📊 Interpretation (Medical + Layman)
- 🍎 Lifestyle/Diet Suggestions (if applicable)
- ❗ Flagged items that may need attention

Ensure the tone is helpful, balanced, and easy to understand for a non-doctor user, but also includes technical notes for health-savvy users.

Apr 9, 2024

Install JTV in Raspberry pi

 Install JTV in Raspberry pi


Step 1: (Not needed if server restarted)

Check service is running in background
Goto to profile directory first

cd ~
then hit the following

Sep 25, 2023

Android Reverse Engineering


 Android Reverse Engineering


Tools Required (PC Method):




Follow the Steps :

1. Decompile the APK using the following command

$ apktool d test.apk


2. Open the full project in vs-code

3. Install the  APKLab extension 

4. Right-Click on or inside apktool.yml file ➜ APKLab: Rebuild the APK

5. Debug the smali code use the following extension - https://marketplace.visualstudio.com/items?itemName=chaos.asd 



APK signature killer - https://github.com/aimardcr/APKKiller 

Mar 15, 2021

Installing PostgreSQL on Windows using zip archive without the installer

 

Steps to download and install PostgreSQL as portable version (Zip File):



 

 
1. Download the PostgreSQL Zip File.
2. Unzip the file to preferred location

3. Open Cmd and goto the location

4. Then goto bin directory

5. First we need to initialize the database. Use the following command

        initdb.exe -D ../data --username=postgres --auth=trust

6. After that start the server using the following command

        pg_ctl -D ../data -l logfile start

7. login to database

        psql --username=postgres

8. Create a password for your user:

        ALTER USER postgres WITH PASSWORD 'YourSecurePasswordHere';


9. Install adminpack extension:

        CREATE EXTENSION adminpack;


Note:
After the next time pc restart the 6th step only required.



  

May 5, 2020

Block a Program from accessing Internet

Block a Program from accessing Internet

Step 1:

Open Power-Shell as Administrator

Step 2:

Copy & Paste the following code into the Power-shell. Replace the Program which you want to block internet.

Remove-NetFirewallRule -DisplayName "Block Adobe x86"
Remove-NetFirewallRule -DisplayName "Block Adobe"
New-NetFirewallRule -DisplayName "Block Adobe x86" -Direction Outbound -Program "C:\Program Files (x86)\Adobe" -Action Block
New-NetFirewallRule -DisplayName "Block Adobe" -Direction Outbound -Program "C:\Program Files\Adobe" -Action Block 

Replace the Adobe with your program name.

Reference : https://gist.github.com/consti/8022703

Apr 23, 2020

Pycharm Professional Trial Reset


Pycharm Professional Trial Reset


For me => delete the following folder

C:\Users\Thiru\AppData\Roaming\JetBrains
C:\Users\Thiru\.PyCharm2016.1


Delete reg Key

HKEY_CURRENT_USER\Software\JavaSoft


Open the pycharm again.


Reference :

https://gist.github.com/suzp1984/a6b408e9f903f4e7611c8feb6a4075d1

https://gist.github.com/kyberdrb/85ed63f2a0ca6bd553090f8c22e9b947

Apr 13, 2020

JAVA Installation in Linux Machine


JAVA Installation in Linux Machine

Steps:

  1. Download installation script
  2. Download the JDK
  3. Apply Execute permission for the script
  4. Run the Script.


First download the installation script from this link


$ wget https://archive.org/download/install-java/install-java.sh$ wget https://archive.org/download/jdk-8u221-linux-x64.tar/jdk-8u221-linux-x64.tar.gz$ sudo chmod +x install-java.sh$ sudo ./install-java.sh -f jdk-8u221-linux-x64.tar.gz



This script will do the magic for you...! 

For Uninstalling Java download the following script and run


$ wget https://archive.org/download/install-java/uninstall-java.sh $ sudo chmod +x uninstall-java.sh $ sudo ./uninstall-java.sh

Enjoy !.



If you are going to install JRE alone then you can download this


$wget https://archive.org/download/jdk-8u221-linux-x64.tar/jre-8u221-linux-x64.tar.gz



* Tips:
For Windows JAVA Environment Variable Setup follow this link:
https://stackoverflow.com/questions/1672281/environment-variables-for-java-installation

* Shell script Credits
https://github.com/chrishantha/install-java