Posts

Showing posts from April, 2025

pss laws basics.

Core Concepts: Two States of Existence: Before Universe: No visible matter exists. After Universe: Matter becomes visible; the discussion begins from this state. Three Entities (Souls): Paramatma (Supreme Soul): Omnipresent energy form. Exists as the entire universe. Beyond human mind’s comprehension. Created matter and soul. Becomes silent after creation, lets the universe operate through his script. Exists to provide knowledge to beings, without interfering directly. Atma (Soul): Assistant to Paramatma. Executes Paramatma’s script based on karma. Ruling authority, creator of ruling and ruled entities. Functions only within the individual physical body. Owner and doer of all actions via the body. Not present outside the body. Jeevatma (Living Entity/Individual Self): Experiences happiness and sorrow through karma. Appears as a dust-like particle bound by layers (wisdom 1st layer,chitta 2nd, aham 3rd). Has freedom to choose between: Seeking knowledge of Paramatma, or Remaining attached...

2nd pss draft

Soul uses matter and prepare 24 parts, among 10 are visible, 24 are not visible, 5 sense(eye, hear, skin, toung, nose), 5 movie (hands, legs,..)+ not visible : 5(sense energies : eye energy..), 5 gases, 4(wisdom layer around jeevatama, chiitam layer, aham layer, mind( occupied entire body in awake, not function in sleep and disappear ), soul uses 4wheel symbol, which root part situated in side forehead of all being, four wheels size similar to human hand 4fingers, lower wheel is called guna chakra(4sections again : big circle named as tamasa, next inside circle called rajo guna, next inside circle satva, next very narrow circle, similar size of jeevatama is gunaaateta place, where no guna are there, (all beside 3circle are having gunas(6 good, and its opposition 6 bad), based on intrest of jeevatama, he moves among these 3 circles, (3 circles we compare as our house rooms), humans always(jeevatama is in mostly in these 3circle getting influenceed by these gunas as per karma chakra, wh...

draft: laws for ai, to mistakes of presenta gita , ai can not identifyt these mistakes

 there are two states before universe exists, after univer exists(matter is visible); we discuss after universer exists; there are 3 souls are there, 1 soul is called  paramatma(existance is entire universe, humanmind can not think, using his wisdom, as energy form),  second person is atma( he is assitance to paramatma, execute his preplaned script, as ruleing party(bhoota, grahas), to be rulled( all living beings, having death and brith, using karma rule) thrid person called, joyer(both happiness and sarrow in lifespan); ----------------- the same logic is represented in siva linga having 3 lines in upper part(linga), lower part (panipatta: two parts;lower part (bhoota,graha  rulling party bodies matter; upper panipatta(living beings body matter contents(matter); this matter is used by soul to do rulling party bodies and function. this matter is used by soul to do (to be rulled party) party bodies and function( as per karma); -------------------- bhoota,sub bhootas,...

bhagawat gita slokas, by ai after basic pillers

[30/04, 10:01 pm] Pdp: Without understanding basic laws, bhagawat gita slokas, explained by human minds. to explanation these sloks in right meaning, i have those basic laws, considering those only, all sloks will give Right meaning, else one sloka meaning will be conflict another sloka explanation (now same with human written explanation), i want give these basic laws to ai(promt ai), so after considering these laws, ai will rewrite all sloka meaning again, how to tell my intention to chatgpt? [30/04, 10:01 pm] Meta AI: To convey your intention to ChatGPT, you can use the following prompt: Prompt "I want to provide a set of basic laws or principles that govern the interpretation of Bhagavad Gita slokas. These laws will serve as a framework for understanding the true meaning of the slokas. I'd like you to consider these laws when rewriting the explanations of the slokas. Please use these laws to ensure consistency and accuracy in your interpretations. Can you help me with this...

draft : text to speed , offline code.in java(key) instead of pyton, reason why pyton (not asking subkey), where java asks?

  //not testing, for java it is asking subscription key. import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.HttpResponse; import org.apache.http.util.EntityUtils; import org.json.JSONObject; import javax.sound.sampled.*; import java.io.*; import java.nio.file.*; import java.util.ArrayList; import java.util.List; public class TextToSpeechEdgeTTS {     static final String INPUT_FILE = "input.txt";     static final String VOICE = "te-IN-ShrutiNeural";     static final int CHUNK_SIZE = 4000;     static final String TEMP_DIR = "temp_chunks";     static final String FINAL_MP3 = "output.mp3";     public static void main(String[] args) throws Exception {         String text = readText(INPUT_FILE);         if (text.isEmpty()) r...

draft : code for text to mp3 convertion.

  code for text to mp3 convertion. ! pip install edge-tts pydub --quiet ! apt install ffmpeg --quiet import os import asyncio import edge_tts from pydub import AudioSegment # Constants INPUT_FILE = "/content/input.txt" VOICE = "te-IN-ShrutiNeural"   # Telugu Female voice CHUNK_SIZE = 4000 TEMP_DIR = "/content/temp_chunks" FINAL_MP3 = "/content/output.mp3" # Speed mapping: 1 (slow) to 7 (fast) def map_speed_to_rate ( value ) :     mapping = { 1 : "-75%" , 2 : "-50%" , 3 : "0%" , 4 : "+25%" , 5 : "+50%" , 6 : "+75%" , 7 : "+100%" }     return mapping.get ( value , "0%" ) # Read input text and clean it def read_text ( file_path ) :     try :         with open ( file_path , 'r' , encoding= 'utf-8' ) as f :             return " " .join ( f.read () .split ())   # single-line, cleaned     except Exception as e :      ...