Category: Programming

  • Before you start to learn AI, know this!

    Ultimate Unix/Linux Command Cheat Sheet Introduction Many users, especially beginners, struggle with AI tutorials and managing their Unix/Linux environments. To help my non-tech friends, I’ve compiled this Unix/Linux cheat sheet. It’s okay not to know everything—just keep it handy! 1. Installing & Updating Linux 🌟 WSL Installation on Windows (Using PowerShell) 🖥️ ISO Installation on… Read.

  • Mapping the Flames: Satellite Analysis of Fire Hotspots in Northern India

    In the heart of India’s agricultural belt, an environmental challenge burns bright—literally. The annual practice of crop residue burning has transformed the Indo-Gangetic Plain into a critical hotspot of air quality degradation, threatening both human health and environmental sustainability. The Silent Environmental Crisis Every year, as the harvest season transitions from October to November, farmers… Read.

  • Context Encryption using Natural Language Processing

    I’ve drafted a proposal for context encryption using NLP. It is a draft and might need a revision. Abstract: With the advancement in Natural Language processing, it is now possible to devise schemes to change the context of sentence, paragraph or article so that the original context is hidden. Such schemes would be required in… Read.

  • Can we predict earthquake?

    Earthquake prediction at 1 May 2013 1o:20 AM Scientists since ages have  said that earthquakes cannot be accurately predicted. I tried to develop a simple program which might tell where the next earthquake  might happen in next 3 days.   I  used the following assumptions to draw the earthquake prediction map. Assumption 1: smaller earthquakes… Read.

  • Breaking myth about C and C++

    Breaking Myths about C and C++ – Part 1 Myth C++ is a high level Language Reality The Answer is NO. Both C and C++ is middle level language. Though, C++ tends toward high –level languages but still it has some middle-level languages feature like pointers. If there are pointers, we can interact with address; we can… Read.

  • The ‘Maya’ of static

    What if you want to implement main() function in the program. What should be the syntax? public static void main( string[] args) is the customary declaration of main() function followed by its definition. Why to declare main() function static? The reason is that there is only one main() method in a particular class and it… Read.

  • updating xml stored in oracle tables

    REM ********************************************************************** REM Set Environment parameters REM ********************************************************************** SET scan off; set serveroutput on size 100000; select ‘START TIME: ‘||to_char(sysdate,’mm/dd/yyyy hh24:mi:ss’) from dual; DECLARE xml_text1 clob; xml_text2 clob; xml_text3 clob; xml_text4 clob; xml_column_name VARCHAR2(50) := ‘demo.xml’; sql_stmt1 VARCHAR2(2000); sql_stmt2 VARCHAR2(2000); sql_stmt3 VARCHAR2(2000); sql_stmt4 VARCHAR2(2000); BEGIN xml_text1 :=’ –….. put your xml data here… ‘; xml_text2… Read.

  • how to handle _root with mutliple swf

    I was working to create a  flash-based football game application.  Inside the game, a football player moves in various direction when I press the arrow keys. However, it was not working fine after I dd some changes. The code of football player goes like this. function step(who) { //check to see if the football player… Read.

  • Writing your first JDBC Application?

    Ok, after a long time, here is core technical blog for all of u. If u r wondering how to access MySQL database using JAVA program. The answer is JDBC application! Before going to coding, u must understand certain aspects of JDBC programming. 1. You must include Jconnector in the classpath of ur machine so… Read.